diff --git a/cvs/objects/climate/source/hector_model.cpp b/cvs/objects/climate/source/hector_model.cpp index ba48c75700..d445ae5bab 100644 --- a/cvs/objects/climate/source/hector_model.cpp +++ b/cvs/objects/climate/source/hector_model.cpp @@ -544,7 +544,7 @@ IClimateModel::runModelStatus HectorModel::runModel( const int aYear ) { // outputs), we can bypass this and the local storage for the // yearly results. bool hadError = false; - int lastSuccessYear; + int lastSuccessYear = mLastYear; for( int year = mLastYear + 1; year <= aYear; ++year ) { if( !hadError ) { try { diff --git a/cvs/objects/containers/include/region.h b/cvs/objects/containers/include/region.h index 4bdc79c8ee..8c07109c8f 100644 --- a/cvs/objects/containers/include/region.h +++ b/cvs/objects/containers/include/region.h @@ -92,9 +92,9 @@ class Region: public INamed, public IVisitable, public IRoundTrippable, protecte virtual void completeInit(); const std::string& getName() const; - virtual void initCalc( const int period ) = 0; + virtual void initCalc( const int period ); - virtual void postCalc( const int aPeriod ) = 0; + virtual void postCalc( const int aPeriod ); virtual void csvOutputFile() const {}; virtual void dbOutput( const std::list& aPrimaryFuelList ) const {}; diff --git a/cvs/objects/containers/source/market_dependency_finder.cpp b/cvs/objects/containers/source/market_dependency_finder.cpp index b8dea2330a..c05f2c1fce 100644 --- a/cvs/objects/containers/source/market_dependency_finder.cpp +++ b/cvs/objects/containers/source/market_dependency_finder.cpp @@ -437,7 +437,7 @@ void MarketDependencyFinder::createOrdering() { (*it)->mIsSolved = isSolved; // we don't need to wory about grouping solved markets since they will just // get disconnected anyways - if( !isSolved ) { + if( !isSolved || !(*it)->mCanBreakCycle ) { marketDepGrouping[ marketNumber ].insert( *it ); } } @@ -533,7 +533,11 @@ void MarketDependencyFinder::createOrdering() { } } } - continue; + // if this depenency can not have it's dependency broken then we can't skip adding + // it's dependents even if it is solved + if( (*it)->mCanBreakCycle ) { + continue; + } } if( (*it)->mDemandVertices.empty() ) { diff --git a/cvs/objects/containers/source/region.cpp b/cvs/objects/containers/source/region.cpp index d9036943dd..6842b85c44 100644 --- a/cvs/objects/containers/source/region.cpp +++ b/cvs/objects/containers/source/region.cpp @@ -320,6 +320,16 @@ void Region::completeInit() { } } +/*! + * \brief Function to initialize objects prior to starting a model period. + * \param aPeriod The model period about to begin. + */ +void Region::initCalc( const int aPeriod ) { + for( auto currPolicy : mPolicies ) { + currPolicy->initCalc( mName, aPeriod ); + } +} + /*! \brief Function to finalize objects after a period is solved. * \details This function is used to calculate and store variables which are only * needed after the current period is complete. @@ -336,6 +346,9 @@ void Region::postCalc( const int aPeriod ){ for( ResourceIterator currResource = mResources.begin(); currResource != mResources.end(); ++currResource ){ (*currResource)->postCalc( mName, aPeriod ); } + for( auto currPolicy : mPolicies ) { + currPolicy->postCalc( mName, aPeriod ); + } } /*! \brief Update a visitor for a Region. diff --git a/cvs/objects/containers/source/region_minicam.cpp b/cvs/objects/containers/source/region_minicam.cpp index 790bb58feb..73bd1057af 100644 --- a/cvs/objects/containers/source/region_minicam.cpp +++ b/cvs/objects/containers/source/region_minicam.cpp @@ -528,6 +528,7 @@ bool RegionMiniCAM::isAllCalibrated( const int period, double calAccuracy, const */ void RegionMiniCAM::initCalc( const int period ) { + Region::initCalc( period ); for( SectorIterator currSector = mSupplySector.begin(); currSector != mSupplySector.end(); ++currSector ){ (*currSector)->initCalc( 0, mDemographic, period ); } diff --git a/cvs/objects/emissions/source/aghg.cpp b/cvs/objects/emissions/source/aghg.cpp index 72e8ecccd9..607e910654 100644 --- a/cvs/objects/emissions/source/aghg.cpp +++ b/cvs/objects/emissions/source/aghg.cpp @@ -161,7 +161,8 @@ void AGHG::completeInit( const string& aRegionName, const string& aSectorName, scenario->getMarketplace()->getDependencyFinder()->addDependency( aSectorName, aRegionName, getName(), - aRegionName ); + aRegionName, + false ); } /*! diff --git a/cvs/objects/marketplace/source/market_RES.cpp b/cvs/objects/marketplace/source/market_RES.cpp index 0b14a7a979..125d13246e 100644 --- a/cvs/objects/marketplace/source/market_RES.cpp +++ b/cvs/objects/marketplace/source/market_RES.cpp @@ -74,7 +74,7 @@ double MarketRES::getDefaultPrice() const { */ void MarketRES::initPrice() { // If price is near zero it needs to be initialized. - if( mPrice < util::getSmallNumber() ){ + if( !mPrice.isInited() ){ if( mSolveMarket ){ mPrice = getDefaultPrice(); } diff --git a/cvs/objects/marketplace/source/marketplace.cpp b/cvs/objects/marketplace/source/marketplace.cpp index 7b06e06e8c..e3666c90af 100644 --- a/cvs/objects/marketplace/source/marketplace.cpp +++ b/cvs/objects/marketplace/source/marketplace.cpp @@ -655,9 +655,9 @@ void Marketplace::init_to_last( const int period ) { } else if ( period > 0 && period < restartPeriod ) { for ( unsigned int i = 0; i < mMarkets.size(); i++ ) { - mMarkets[ i ]->getMarket( period )->set_price_to_last_if_default( mMarkets[ i ]->getMarket( period - 1 )->getPrice() ); - mMarkets[ i ]->getMarket( period )->setForecastPrice( mMarkets[ i ]->getMarket( period - 1 )->getRawPrice() ); - mMarkets[ i ]->getMarket( period )->setForecastDemand( 1.0 ); + double forecastedPrice = mMarkets[ i ]->forecastPrice( period ); + mMarkets[ i ]->getMarket( period )->set_price_to_last_if_default( forecastedPrice ); + mMarkets[ i ]->forecastDemand( period ); } } else if( period >= restartPeriod ){ diff --git a/cvs/objects/policy/include/policy_portfolio_standard.h b/cvs/objects/policy/include/policy_portfolio_standard.h index 10aab23578..c147882008 100644 --- a/cvs/objects/policy/include/policy_portfolio_standard.h +++ b/cvs/objects/policy/include/policy_portfolio_standard.h @@ -70,6 +70,8 @@ class PolicyPortfolioStandard: public INamed, public IRoundTrippable, private bo void toInputXML( std::ostream& out, Tabs* tabs ) const; void toDebugXML( const int period, std::ostream& out, Tabs* tabs ) const; void completeInit( const std::string& aRegionName ); + void initCalc( const std::string& aRegionName, const int aPeriod ); + void postCalc( const std::string& aRegionName, const int aPeriod ); protected: DEFINE_DATA( @@ -89,13 +91,13 @@ class PolicyPortfolioStandard: public INamed, public IRoundTrippable, private bo DEFINE_VARIABLE( SIMPLE, "isShareBased", mIsShareBased, bool ), //! Quantity constraint by year - DEFINE_VARIABLE( ARRAY, "constraint", mConstraint, objects::PeriodVector ), + DEFINE_VARIABLE( ARRAY, "constraint", mConstraint, objects::PeriodVector ), //! Fixed tax on Fuel by year($/GJ) - DEFINE_VARIABLE( ARRAY, "fixedTax", mFixedTax, objects::PeriodVector ), + DEFINE_VARIABLE( ARRAY, "fixedTax", mFixedTax, objects::PeriodVector ), //! Share of total or sectoral output - DEFINE_VARIABLE( ARRAY, "share-of-sector-output", mShareOfSectorOutput, objects::PeriodVector ), + DEFINE_VARIABLE( ARRAY, "share-of-sector-output", mShareOfSectorOutput, objects::PeriodVector ), //! The minimum price below which the constraint is considered non-binding. DEFINE_VARIABLE( ARRAY, "min-price", mMinPrice, objects::PeriodVector ), diff --git a/cvs/objects/policy/source/policy_portfolio_standard.cpp b/cvs/objects/policy/source/policy_portfolio_standard.cpp index b21e33ea50..db82714d9d 100644 --- a/cvs/objects/policy/source/policy_portfolio_standard.cpp +++ b/cvs/objects/policy/source/policy_portfolio_standard.cpp @@ -63,9 +63,6 @@ extern Scenario* scenario; /*! \brief Default constructor. */ PolicyPortfolioStandard::PolicyPortfolioStandard(): -mConstraint( -1.0 ), -mFixedTax( -1.0 ), -mShareOfSectorOutput( -1.0 ), mMinPrice( 0.0 ), mMaxPrice( util::getLargeNumber() ), mPriceUnits( "1975$/GJ" ), @@ -135,13 +132,13 @@ void PolicyPortfolioStandard::XMLParse( const DOMNode* node ){ mIsShareBased = XMLHelper::getValue( curr ); } else if( nodeName == "constraint" ){ - XMLHelper::insertValueIntoVector( curr, mConstraint, modeltime ); + XMLHelper::insertValueIntoVector( curr, mConstraint, modeltime ); } else if( nodeName == "fixedTax" ){ - XMLHelper::insertValueIntoVector( curr, mFixedTax, modeltime ); + XMLHelper::insertValueIntoVector( curr, mFixedTax, modeltime ); } else if( nodeName == "share-of-sector-output" ){ - XMLHelper::insertValueIntoVector( curr, mShareOfSectorOutput, modeltime ); + XMLHelper::insertValueIntoVector( curr, mShareOfSectorOutput, modeltime ); // Check to see if the output share is within valid range (between 0 and 1). double tempShare = XMLHelper::getValue( curr ); if ( tempShare <= 0 || tempShare > 1 ){ @@ -181,19 +178,22 @@ void PolicyPortfolioStandard::toInputXML( ostream& out, Tabs* tabs ) const { XMLWriteElement( mIsShareBased, "isShareBased", out, tabs ); const Modeltime* modeltime = scenario->getModeltime(); - for( int per = 0; per < modeltime->getmaxper(); ++per ){ - XMLWriteElementCheckDefault( mConstraint[ per ], - "constraint", out, tabs, -1.0 ); + for( int per = 0; per < modeltime->getmaxper(); ++per ) { + int year = modeltime->getper_to_yr( per ); + if( mFixedTax[ per ].isInited() ) { + XMLWriteElement( mFixedTax[ per ], "fixedTax", out, tabs, year ); + } + if( mConstraint[ per ].isInited() ) { + XMLWriteElement( mConstraint[ per ], "constraint", out, tabs, year ); + } + if( mShareOfSectorOutput[ per ].isInited() ) { + XMLWriteElement( mShareOfSectorOutput[ per ], "share-of-sector-output", out, tabs, year ); + } } - XMLWriteVector( mFixedTax, "fixedTax", out, tabs, modeltime, 0.0 ); XMLWriteVector( mMinPrice, "min-price", out, tabs, modeltime, 0.0 ); - XMLWriteVector( mMaxPrice, "max-price", out, tabs, modeltime, 0.0 ); + XMLWriteVector( mMaxPrice, "max-price", out, tabs, modeltime, util::getLargeNumber() ); XMLWriteElement( mPriceUnits, "price-unit", out, tabs ); XMLWriteElement( mOutputUnits, "output-unit", out, tabs ); - for( int per = 0; per < modeltime->getmaxper(); ++per ){ - XMLWriteElementCheckDefault( mShareOfSectorOutput[ per ], - "share-of-sector-output", out, tabs, -1.0 ); - } // finished writing xml for the class members. XMLWriteClosingTag( getXMLName(), out, tabs ); @@ -270,20 +270,18 @@ void PolicyPortfolioStandard::completeInit( const string& aRegionName ) { // Make sure that the market is not solved. It could have been set // to solve by an earlier run. marketplace->unsetMarketToSolve( mName, aRegionName, i ); - if( mFixedTax[ i ] != -1 ){ + if( mFixedTax[ i ].isInited() ){ marketplace->setPrice( mName, aRegionName, mFixedTax[ i ], i ); } } - // solve the market when given the read-in constraint. - // Initialize temporary vector of contraints to constraint - vector tempConstraint( convertToVector( mConstraint ) ); + objects::PeriodVector tempConstraint = mConstraint; // Override tempConstraint with shares if shared based. // Note: the share is based on the total output of the sector that the // technology is in. if( mIsShareBased ){ - tempConstraint = convertToVector( mShareOfSectorOutput ); + tempConstraint = mShareOfSectorOutput; marketInfo->setBoolean( "isShareBased", true ); } // Set either of the constraints, quantity or share, into the @@ -297,7 +295,7 @@ void PolicyPortfolioStandard::completeInit( const string& aRegionName ) { // Subtracting the current demand for this period to set the constraint // because addToDemand adds to any existing demand in the market. // Passing false to suppress a warning the first time through. - if( tempConstraint[ per ] != -1 ){ + if( tempConstraint[ per ].isInited() ){ if ( mPolicyType == "tax" ){ marketplace->setMarketToSolve( mName, aRegionName, per ); marketplace->addToSupply( mName, aRegionName, Value( tempConstraint[ per ] - @@ -323,3 +321,26 @@ void PolicyPortfolioStandard::completeInit( const string& aRegionName ) { } } } + +/*! + * \brief Perform any initializations that need to occur prior to attempting to solve + * aPeriod. + * \param aRegionName The name of the containing region. + * \param aPeriod The current model period about to begin. + */ +void PolicyPortfolioStandard::initCalc( const string& aRegionName, const int aPeriod ) { +} + +/*! + * \brief Perform any computations after a model period has found a solution. + * \param aRegionName The name of the containing region. + * \param aPeriod The current model period which just finished. + */ +void PolicyPortfolioStandard::postCalc( const string& aRegionName, const int aPeriod ) { + // if we are solving for a price because we have a constraint then we should + // save the solved price so we can write it back out in toInputXML for restart + if( mConstraint[ aPeriod ].isInited() ) { + mFixedTax[ aPeriod ] = scenario->getMarketplace()->getPrice( mName, aRegionName, aPeriod ); + } +} + diff --git a/cvs/objects/sectors/source/negative_emissions_final_demand.cpp b/cvs/objects/sectors/source/negative_emissions_final_demand.cpp index 7e96e648a4..bd86083232 100644 --- a/cvs/objects/sectors/source/negative_emissions_final_demand.cpp +++ b/cvs/objects/sectors/source/negative_emissions_final_demand.cpp @@ -152,6 +152,17 @@ void NegativeEmissionsFinalDemand::completeInit( const string& aRegionName, << " in region " << aRegionName << endl; abort(); } + const static bool isTargetFinding = Configuration::getInstance()->getBool( + "find-path", false, false ); + const bool hasTaxMarket = scenario->getMarketplace()->getPrice( mName, aRegionName, 0, false ) != + Marketplace::NO_MARKET_PRICE; + if( isTargetFinding && !hasTaxMarket ) { + ILogger& mainLog = ILogger::getLogger( "main_log" ); + mainLog.setLevel( ILogger::WARNING ); + mainLog << "Using " << getXMLNameStatic() << " wth target-finder without explicitly creating a market for " + << mName << " may hinder solution performance." << endl; + mainLog << "Please read in a policy file with a zero tax." << endl; + } MarketDependencyFinder* depFinder = scenario->getMarketplace()->getDependencyFinder(); depFinder->addDependency( mPolicyName, aRegionName, mName, aRegionName ); @@ -190,7 +201,7 @@ void NegativeEmissionsFinalDemand::setFinalDemand( const string& aRegionName, } double regionalCO2Emiss = marketplace->getDemand( mName, aRegionName, aPeriod ); double regionalCO2EmissValue = -1.0 * regionalCO2Emiss * co2Price; - if(regionalCO2Emiss > 0.0) { + if(regionalCO2EmissValue > 0.0) { double policyPrice = std::min( marketplace->getPrice( mPolicyName, aRegionName, aPeriod ), 1.0 ); double policyAdj = ( 1.0 - policyPrice ); regionalCO2EmissValue *= policyAdj; diff --git a/cvs/objects/util/base/include/version.h b/cvs/objects/util/base/include/version.h index 4a0803c4c1..0dd7deaae7 100644 --- a/cvs/objects/util/base/include/version.h +++ b/cvs/objects/util/base/include/version.h @@ -41,10 +41,10 @@ * NOTE: ADD 1 TO LATEST SUBVERSION REVISION NUMBER */ //! The latest SVN revision number for identification of the build. -#define __REVISION_NUMBER__ "gcam-v4.3" +#define __REVISION_NUMBER__ "gcam-v4.4" /*****************************************************************************/ //! GCAM model version. -#define __ObjECTS_VER__ "4.3" +#define __ObjECTS_VER__ "4.4" #endif // _VERSION_H_ diff --git a/input/gcam-data-system/_common/ModelInterface/src/ModelInterface.jar b/input/gcam-data-system/_common/ModelInterface/src/ModelInterface.jar index 821dfebf54..4ce16829d1 100644 Binary files a/input/gcam-data-system/_common/ModelInterface/src/ModelInterface.jar and b/input/gcam-data-system/_common/ModelInterface/src/ModelInterface.jar differ diff --git a/input/gcam-data-system/_common/ModelInterface/src/modelinterface b/input/gcam-data-system/_common/ModelInterface/src/modelinterface index 6c55cec842..a0b1ddeb88 160000 --- a/input/gcam-data-system/_common/ModelInterface/src/modelinterface +++ b/input/gcam-data-system/_common/ModelInterface/src/modelinterface @@ -1 +1 @@ -Subproject commit 6c55cec842a6a7cd5a08aa64dfad1de32a57a302 +Subproject commit a0b1ddeb88219886be7878998ae819a81151ea0f diff --git a/input/gcam-data-system/energy-processing-code/level2/L270.limits.R b/input/gcam-data-system/energy-processing-code/level2/L270.limits.R index 9cf2e08dec..9dc17aa1fd 100644 --- a/input/gcam-data-system/energy-processing-code/level2/L270.limits.R +++ b/input/gcam-data-system/energy-processing-code/level2/L270.limits.R @@ -32,7 +32,7 @@ L102.gdp_mil90usd_Scen_R_Y <- readdata( "SOCIO_LEVEL1_DATA", "L102.gdp_mil90usd_ L221.GlobalTechCoef_en <- readdata( "ENERGY_LEVEL2_DATA", "L221.GlobalTechCoef_en", skip=4 ) # Policy assumptions: TODO where to put these -NEG_EMISS_POLICY_NAME <- "CO2_negative_emiss" +NEG_EMISS_POLICY_NAME <- "negative_emiss_budget" NEG_EMISS_GDP_BUDGET_PCT <- 0.01 NEG_EMISS_MARKT_GLOBAL <- TRUE diff --git a/input/policy/carbon_tax_0.xml b/input/policy/carbon_tax_0.xml new file mode 100644 index 0000000000..385997a175 --- /dev/null +++ b/input/policy/carbon_tax_0.xml @@ -0,0 +1,165 @@ + + + + + global + 0 + + + + + global + + + + + global + + + + + global + + + + + global + + + + + global + + + + + global + + + + + global + + + + + global + + + + + global + + + + + global + + + + + global + + + + + global + + + + + global + + + + + global + + + + + global + + + + + global + + + + + global + + + + + global + + + + + global + + + + + global + + + + + global + + + + + global + + + + + global + + + + + global + + + + + global + + + + + global + + + + + global + + + + + global + + + + + global + + + + + global + + + + + global + + + + diff --git a/input/policy/carbon_tax_10_5.xml b/input/policy/carbon_tax_10_5.xml index 6f4babb809..536ca27ca8 100644 --- a/input/policy/carbon_tax_10_5.xml +++ b/input/policy/carbon_tax_10_5.xml @@ -3,7 +3,6 @@ global - 1 10 20.8 43.2 diff --git a/input/policy/carbon_tax_15_5.xml b/input/policy/carbon_tax_15_5.xml index 8d00d69be8..b34eb0fd44 100644 --- a/input/policy/carbon_tax_15_5.xml +++ b/input/policy/carbon_tax_15_5.xml @@ -3,7 +3,6 @@ global - 1 15 31.2 64.8 diff --git a/input/policy/carbon_tax_20_5.xml b/input/policy/carbon_tax_20_5.xml index 6b2d666ec1..966966b1fe 100644 --- a/input/policy/carbon_tax_20_5.xml +++ b/input/policy/carbon_tax_20_5.xml @@ -3,7 +3,6 @@ global - 1 20 41.6 86.4 diff --git a/input/policy/carbon_tax_25_5.xml b/input/policy/carbon_tax_25_5.xml index 12b1fc0955..4a75a517b8 100644 --- a/input/policy/carbon_tax_25_5.xml +++ b/input/policy/carbon_tax_25_5.xml @@ -3,7 +3,6 @@ global - 1 25 51.9 108 diff --git a/output/gcam_diagnostics/batch_queries/Model_verification_queries.xml b/output/gcam_diagnostics/batch_queries/Model_verification_queries.xml index 49a4e83f8f..50e71e34fd 100644 --- a/output/gcam_diagnostics/batch_queries/Model_verification_queries.xml +++ b/output/gcam_diagnostics/batch_queries/Model_verification_queries.xml @@ -41,54 +41,72 @@ - input + input[@name] demand-physical[@vintage] - *[@type='sector' and ((@name='building' or @name='industry' or @name='transportation') or (exists(child::keyword/@final-energy)))]//*[@type='input' and not (@name='renewable')]/demand-physical[@unit='EJ']/node() + *[@type='sector' and ((@name='building' or @name='industry' or @name='transportation') or (exists(child::keyword/@final-energy)))]//*[@type='input' and not(@name='trn_pass_road' or @name='limestone' or @name='process heat cement' or @name='industrial energy use' or @name='industrial feedstocks' or @name='renewable' or @name='oil-credits')]/demand-physical[@unit='EJ']/node() - + - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + @@ -183,7 +201,7 @@ technology physical-output[@vintage] - *[@type = 'sector' and ((@name='refined liquids enduse' or @name='refined liquids industrial' or @name='refining'))]/*[@type = 'subsector']/*[@type = 'technology' and not (@name='refined liquids enduse' or @name = 'refined liquids industrial')]//*[@type='output' (:collapse:)]/physical-output/node() + *[@type = 'sector' and ((@name='refined liquids enduse' or @name='refined liquids industrial' or @name='refining'))]/*[@type = 'subsector']/*[@type = 'technology' and not (@name='refined liquids enduse' or @name = 'refined liquids industrial')]//output-primary[@type='output' (:collapse:)]/physical-output/node() @@ -353,7 +371,7 @@ local:generate-sector-input-coefs(remove($outputNameQueue, 1), $currTree, $coefs $newOutputNameQueue := remove($outputNameQueue, 1), $useOutputs := $currTree//output-primary[@type='output' and @name=$outputName], $useInputs := for $out in $useOutputs[not(following-sibling::keyword[exists(@primary-renewable)])] - return $out/following-sibling::*[@type='input'], + return $out/following-sibling::*[@type='input' and not(@name='oil-credits')], $renewOutputs := for $out in $useOutputs[following-sibling::keyword[exists(@primary-renewable)]] return element output { attribute name { $out/following-sibling::keyword/@primary-renewable }, @@ -398,8 +416,8 @@ local:generate-sector-input-coefs(remove($outputNameQueue, 1), $currTree, $coefs declare function local:generate-ccs-coefs($currTree as node(), $coefs as node()*) as node()* { for $sector in $coefs/@name let $currSector := $currTree/*[@type='sector' and @name=$sector], - $useInputs := $currSector//*[@type='technology' and not(contains(@name, 'CCS')) and not(child::keyword/@primary-renewable)]/*[@type='input'], - $useInputsCCS := $currSector//*[@type='technology' and contains(@name, 'CCS')]/*[@type='input'], + $useInputs := $currSector//*[@type='technology' and not(contains(@name, 'CCS')) and not(child::keyword/@primary-renewable)]/*[@type='input' and not(@name = 'oil-credits')], + $useInputsCCS := $currSector//*[@type='technology' and contains(@name, 'CCS')]/*[@type='input' and not(@name = 'oil-credits')], $totalOutputSum := for $vintage in distinct-values($useInputs/demand-physical/@vintage | $useInputsCCS/demand-physical/@vintage) return element output { attribute vintage { $vintage }, @@ -482,7 +500,7 @@ local:generate-sector-input-coefs(remove($outputNameQueue, 1), $currTree, $coefs $region in $regionsG let $scenario_split := tokenize($scenario, ' '), $currTree := collection($collection)/scenario[@name = $scenario_split[1] and @date = $scenario_split[2]]/world/*[@type='region' and @name=$region], - $currInputs := $currTree/*[@type='sector' and (@name='unconventional oil production' or exists(child::keyword/@final-energy))]//*[@type='input' and empty(index-of(('trn_pass_road', 'limestone', 'process heat cement', 'industrial energy use', 'industrial feedstocks', 'renewable', 'trn_freight_road', 'trn_pass_road_LDV', 'trn_pass_road_LDV_2W', 'trn_pass_road_LDV_4W', 'unconventional oil'), @name))], + $currInputs := $currTree/*[@type='sector' and (@name='unconventional oil production' or exists(child::keyword/@final-energy))]//*[@type='input' and empty(index-of(('trn_pass_road', 'limestone', 'process heat cement', 'industrial energy use', 'industrial feedstocks', 'renewable', 'trn_freight_road', 'trn_pass_road_LDV', 'trn_pass_road_LDV_2W', 'trn_pass_road_LDV_4W', 'unconventional oil', 'oil-credits'), @name))], $coefs := local:generate-sector-input-coefs(distinct-values($currInputs/@name), $currTree, (), false()), $ccs_coefs := local:generate-ccs-coefs($currTree, $coefs) return @@ -503,6 +521,7 @@ local:generate-sector-input-coefs(remove($outputNameQueue, 1), $currTree, $coefs + diff --git a/output/gcam_diagnostics/diagnostics.R b/output/gcam_diagnostics/diagnostics.R index b587142e36..460fd4bb6b 100644 --- a/output/gcam_diagnostics/diagnostics.R +++ b/output/gcam_diagnostics/diagnostics.R @@ -109,7 +109,7 @@ p <- ggplot(fe.bld.d) + geom_bar(aes(x=year, y=value, fill=fuel), stat="identity p$save_args <- FIGURE_DIMS do_graph(split_neg_geom_bar(p), page_variables=c("region", "scenario")) #do_graph_yearSubset(p, page_variables=c("region", "scenario")) -#do_graph(create_diff_plot(p), page_variables=c("region", "scenario")) +do_graph(create_diff_plot(p), page_variables=c("region", "scenario")) printlog( "Final Energy Consumption: Industry" ) fe.ind.d <- getQuery(tables, "Final energy by aggregate end-use sector and fuel") @@ -127,7 +127,7 @@ p <- ggplot(fe.ind.d) + geom_bar(aes(x=year, y=value, fill=fuel), stat="identity p$save_args <- FIGURE_DIMS do_graph(split_neg_geom_bar(p), page_variables=c("region", "scenario")) #do_graph_yearSubset(p, page_variables=c("region", "scenario")) -#do_graph(create_diff_plot(p), page_variables=c("region", "scenario")) +do_graph(create_diff_plot(p), page_variables=c("region", "scenario")) printlog( "Final Energy Consumption: Transportation" ) fe.trn.d <- getQuery(tables, "Final energy by aggregate end-use sector and fuel") @@ -140,7 +140,7 @@ p <- ggplot(fe.trn.d) + geom_bar(aes(x=year, y=value, fill=fuel), stat="identity p$save_args <- FIGURE_DIMS do_graph(split_neg_geom_bar(p), page_variables=c("region", "scenario")) #do_graph_yearSubset(p, page_variables=c("region", "scenario")) -#do_graph(create_diff_plot(p), page_variables=c("region", "scenario")) +do_graph(create_diff_plot(p), page_variables=c("region", "scenario")) printlog( "Final Energy Consumption by Sector" ) fe.d <- getQuery(tables, "Final energy by aggregate end-use sector and fuel") @@ -156,7 +156,7 @@ p <- ggplot(fe.d) + geom_bar(aes(x=year, y=value, fill=sector), stat="identity", p$save_args <- FIGURE_DIMS do_graph(split_neg_geom_bar(p), page_variables=c("region", "scenario")) #do_graph_yearSubset(p, page_variables=c("region", "scenario")) -#do_graph(create_diff_plot(p), page_variables=c("region", "scenario")) +do_graph(create_diff_plot(p), page_variables=c("region", "scenario")) printlog("Primary Energy Consumption") pri.d <- getQuery(tables, "Primary energy with CCS (Direct Equivalent)") @@ -170,7 +170,7 @@ p <- ggplot(pri.d) + geom_bar(aes(x=year, y=value, fill=fuel), stat="identity", p$save_args <- FIGURE_DIMS do_graph(split_neg_geom_bar(p), page_variables=c("region", "scenario")) #do_graph_yearSubset(p, page_variables=c("region", "scenario")) -#do_graph(create_diff_plot(p), page_variables=c("region", "scenario")) +do_graph(create_diff_plot(p), page_variables=c("region", "scenario")) printlog("Electricity Production by Fuel: CCS Focus") elec.ccs.d <- getQuery(tables, "Electricity generation by aggregate technology") @@ -186,7 +186,7 @@ p <- ggplot(elec.ccs.d) + geom_bar(aes(x=year, y=value, fill=technology), stat=" p$save_args <- FIGURE_DIMS do_graph(split_neg_geom_bar(p), page_variables=c("region", "scenario")) #do_graph_yearSubset(p, page_variables=c("region", "scenario")) -#do_graph(create_diff_plot(p), page_variables=c("region", "scenario")) +do_graph(create_diff_plot(p), page_variables=c("region", "scenario")) printlog("Hydrogen Production by Fuel") h2.d <- getQuery(tables, "Hydrogen production by technology") @@ -211,7 +211,7 @@ p <- ggplot(h2.d) + geom_bar(aes(x=year, y=value, fill=fuel), stat="identity", p p$save_args <- FIGURE_DIMS do_graph(split_neg_geom_bar(p), page_variables=c("region", "scenario")) #do_graph_yearSubset(p, page_variables=c("region", "scenario")) -#do_graph(create_diff_plot(p), page_variables=c("region", "scenario")) +do_graph(create_diff_plot(p), page_variables=c("region", "scenario")) printlog("Electricity Production by Fuel: Renewables Focus") elec.renew.d <- getQuery(tables, "Electricity generation by technology (inc solar roofs)") @@ -242,7 +242,7 @@ p <- ggplot(elec.renew.d) + geom_bar(aes(x=year, y=value, fill=technology), stat p$save_args <- FIGURE_DIMS do_graph(split_neg_geom_bar(p), page_variables=c("region", "scenario")) #do_graph_yearSubset(p, page_variables=c("region", "scenario")) -#do_graph(create_diff_plot(p), page_variables=c("region", "scenario")) +do_graph(create_diff_plot(p), page_variables=c("region", "scenario")) printlog("Total Refined Liquid Fuel Production") refliq.d <- getQuery(tables, "Refined liquid fuel production by technology") @@ -259,7 +259,10 @@ refliq.d[ grepl("gas", refliq.d$technology), "fuel" ] <- "gas" stopifnot(sum(is.na(refliq.d$fuel)) == 0) regoil.d <- getQuery(tables, "Regional oil production by fuel") regoil.d <- dcast( regoil.d, scenario + region + year ~ fuel) +regoil.d[is.na(regoil.d$"crude oil"), "crude oil"] <- 0 +regoil.d[is.na(regoil.d$"unconventional oil"), "unconventional oil"] <- 0 regoil.d$total <- regoil.d$"crude oil" + regoil.d$"unconventional oil" +regoil.d[regoil.d$total == 0.0, "total"] <- 1.0 # avoid NA, zero production will get 0 fract anyway regoil.d$fract_crude <- regoil.d$"crude oil" / regoil.d$total regoil.d$fract_unconv <- regoil.d$"unconventional oil" / regoil.d$total refliq.d.temp <- subset(refliq.d, fuel == "oil") @@ -283,7 +286,7 @@ p <- ggplot(refliq.d) + geom_bar(aes(x=year, y=value, fill=fuel), stat="identity p$save_args <- FIGURE_DIMS do_graph(split_neg_geom_bar(p), page_variables=c("region", "scenario")) #do_graph_yearSubset(p, page_variables=c("region", "scenario")) -#do_graph(create_diff_plot(p), page_variables=c("region", "scenario")) +do_graph(create_diff_plot(p), page_variables=c("region", "scenario")) printlog("CO2 emissions by sector") emiss.d <- getQuery(tables, "CO2 Emissions by enduse") @@ -303,7 +306,7 @@ p <- ggplot(emiss.d) + geom_bar(aes(x=year, y=value, fill=sector), stat="identit p$save_args <- FIGURE_DIMS do_graph(split_neg_geom_bar(p), page_variables=c("region", "scenario")) #do_graph_yearSubset(p, page_variables=c("region", "scenario")) -#do_graph(create_diff_plot(p), page_variables=c("region", "scenario")) +do_graph(create_diff_plot(p), page_variables=c("region", "scenario")) printlog("Biomass Consumption by use") biouse.d <- getQuery(tables, "Biomass Consumption by use") @@ -323,7 +326,7 @@ p <- ggplot(biouse.d) + geom_bar(aes(x=year, y=value, fill=sector), stat="identi p$save_args <- FIGURE_DIMS do_graph(p, page_variables=c("region", "scenario")) #do_graph_yearSubset(p, page_variables=c("region", "scenario")) -#do_graph(create_diff_plot(p), page_variables=c("region", "scenario")) +do_graph(create_diff_plot(p), page_variables=c("region", "scenario")) printlog("Land Use by Type") landuse.d <- getQuery(tables, "Aggregated Land Allocation") @@ -342,7 +345,7 @@ p <- ggplot(landuse.d) + geom_bar(aes(x=year, y=value, fill=agg.land), stat="ide p$save_args <- FIGURE_DIMS do_graph(p, page_variables=c("region", "scenario")) #do_graph_yearSubset(p, page_variables=c("region", "scenario")) -#do_graph(create_diff_plot(p), page_variables=c("region", "scenario")) +do_graph(create_diff_plot(p), page_variables=c("region", "scenario")) printlog("Regional Fuel Prices") prices.d <- getQuery(tables, "Regional energy costs") @@ -353,7 +356,7 @@ p <- ggplot(prices.d) + geom_line(aes(x=year, y=value, color=sector), size=1.5) p$save_args <- FIGURE_DIMS do_graph(p, page_variables=c("region", "scenario")) #do_graph_yearSubset(p, page_variables=c("region", "scenario")) -#do_graph(create_diff_plot(p), page_variables=c("region", "scenario")) +do_graph(create_diff_plot(p), page_variables=c("region", "scenario")) printlog("GDP") gdp.d <- getQuery(tables, "GDP by region") diff --git a/output/gcam_diagnostics/gcam_data/Core/reference.csv b/output/gcam_diagnostics/gcam_data/Core/reference.csv index 4d51820a92..b0620aaf93 100644 --- a/output/gcam_diagnostics/gcam_data/Core/reference.csv +++ b/output/gcam_diagnostics/gcam_data/Core/reference.csv @@ -1,3744 +1,3508 @@ Final energy by aggregate end-use sector and fuel scenario,region,sector,fuel,1990,2005,2010,2015,2020,2025,2030,2035,2040,2045,2050,2055,2060,2065,2070,2075,2080,2085,2090,2095,2100,Units, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,building,1 liquids,0.0448266,0.06626972,0.07425672999999999,0.11980113,0.14127757999999999,0.17402287000000002,0.20655764,0.24662741,0.29761801,0.3615473,0.43993168,0.5362226999999999,0.64862449,0.77371597,0.9081916999999999,1.0410828,1.1627212999999998,1.2740446,1.3670122,1.4311286,1.4964775000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,building,2 gas,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,building,3 coal,3.9100001000000003E-4,5.518002E-4,5.709993E-4,6.794307E-4,7.403919E-4,7.872113E-4,8.289288E-4,8.755662999999999E-4,9.165922E-4,9.578806E-4,9.973475E-4,0.0010462601,0.0010902563999999999,0.0011319948,0.0011636875,0.0011867667,0.0011936391999999999,0.0011919759,0.0011762126,0.0011528145999999998,0.0011481954,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,building,4 biomass,0.1563437,0.22469619999999998,0.2820818,0.361818,0.45070200000000005,0.51606,0.574632,0.610872,0.599543,0.596928,0.59112,0.582916,0.5641579999999999,0.543117,0.507916,0.46826100000000004,0.422518,0.37703810000000004,0.3313442,0.28879,0.2550831,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,building,5 electricity,0.015242390000000001,0.03374176,0.05263095,0.10648944000000002,0.14276416,0.18651388000000002,0.24153430000000004,0.3114038,0.4000425,0.5144104,0.6568172000000001,0.840393,1.0653536,1.3352756000000001,1.6479523,1.9927726,2.3576307,2.7350928000000003,3.125381,3.526154,3.941789,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,building,6 hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,building,7 trad biomass,1.377214,2.0188930000000003,2.5967089999999997,2.6376340000000003,2.6608579999999997,2.670944,2.662766,2.64954,2.6081760000000003,2.4906,2.297035,2.105086,1.8748529999999999,1.647697,1.4066070000000002,1.200481,1.018971,0.87417,0.753066,0.657583,0.606448,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,building,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,industry,1 liquids,0.054588197,0.08156386700000001,0.1206729,0.2223215,0.283164,0.3730967,0.47866129999999996,0.6163912,0.7976538999999999,1.0308378999999999,1.3214838,1.6954293,2.1501170000000003,2.68172,3.267954,3.8854260000000003,4.4962480000000005,5.09063,5.63007,6.084632999999999,6.546288,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,industry,2 gas,0.0,0.00153791,0.00491755,0.010217894000000002,0.015930373,0.020867023999999998,0.026591646000000004,0.03352226,0.040547803,0.047458112999999996,0.05454905300000001,0.06072180099999999,0.067468547,0.072972761,0.076903563,0.08024445599999999,0.083338448,0.08640806200000001,0.08858778600000002,0.09022020200000003,0.09133077,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,industry,3 coal,0.0045074699999999995,0.00358983,0.00541175,0.0102899,0.0129451,0.0155019,0.0186435,0.0226807,0.027985,0.0346073,0.0429434,0.0540804,0.0674792,0.0800616,0.0901103,0.0988061,0.105313,0.110023,0.113641,0.117147,0.121304,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,industry,4 biomass,0.44015706,0.60519625,0.67671868,1.0048495,1.2705066,1.5267852,1.8114108,2.1132179,2.3984151,2.7374796,3.1088998,3.5386163,3.980072,4.427535,4.8044389999999995,5.097757,5.268681,5.331351000000001,5.280853,5.156244999999999,5.04483,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,industry,5 electricity,0.012891650000000001,0.02265804,0.0285127,0.07083679,0.09565449,0.1271449,0.1675442,0.2209317,0.2937985,0.3873552,0.5004036000000001,0.6470039000000001,0.8253066,1.0310465,1.2567909,1.4939592000000002,1.7290475,1.9534456,2.1619878000000003,2.3463651,2.5299283,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.00530133,0.010118720000000001,0.0171499,0.027565600000000003,0.0431347,0.0656316,0.0973202,0.12598900000000002,0.1635617,0.210557,0.261302,0.31831699999999996,0.378254,0.439197,0.501455,0.561774,0.5848869999999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,industry,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,industry,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,transportation,1 liquids,0.2055768013,0.294335236,0.41363129400000004,0.552173784,0.6304908069999999,0.716581434,0.807384993,0.9128423469999998,1.0290671770000002,1.1749867600000004,1.3478158949999997,1.5980315350000005,1.9099790610000005,2.295147758,2.7689358229999996,3.323148723999998,3.9494736840000004,4.6409386050000005,5.405928699000002,6.224660849,7.032285184999998,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,transportation,2 gas,0.0,0.0,0.0,0.0059674398,0.0140327635,0.026408758930000005,0.042981548630000005,0.06519029457,0.09240103874,0.12731592686999998,0.17359219681,0.22669161129999996,0.28966502459999993,0.3643402936,0.45044062790000017,0.5490521482,0.659856258,0.7841608040000002,0.9247476929999999,1.0829024050000002,1.2480533949999997,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,transportation,3 coal,1.67599E-4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,transportation,4 biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,transportation,5 electricity,0.0,1.7599920000000002E-5,1.779993E-5,9.06911723E-5,1.9762212720000004E-4,3.291856027E-4,5.028808357E-4,7.015484184999996E-4,9.49362062E-4,0.0012492058190000004,0.0016013928980000002,0.0021356913499999994,0.002807133360000001,0.0037128924199999994,0.00498838107,0.0068215275499999995,0.009451214599999999,0.013214078400000004,0.018640129799999995,0.026355171500000003,0.0337217091,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,transportation,6 hydrogen,0.0,0.0,0.0,0.0,2.9442536E-5,1.07895725E-4,2.3525776099999997E-4,4.3803424E-4,7.1433433E-4,0.00114564681,0.0018092772969999999,0.00298848041,0.00464968049,0.006988091030000001,0.010322586929999999,0.014768401850000001,0.020461887050000002,0.0274618827,0.036018120099999995,0.046150557,0.0562342292,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,transportation,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,transportation,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,building,1 liquids,0.31737679999999996,0.45582348,0.4418922,0.5363198,0.5447549,0.5793881999999999,0.5888197000000001,0.5952073,0.5965394000000002,0.6034001,0.6114711,0.6302942999999999,0.6527915000000001,0.6738736000000001,0.6912065,0.7028022,0.7054066999999999,0.7034285,0.6977028999999999,0.6839869999999999,0.6810737,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,building,2 gas,0.049185502,0.1752676,0.224411,0.2777421,0.3040367,0.31940019999999997,0.3270319,0.32801779999999997,0.3194639,0.3114574,0.3028415,0.2973947,0.2935756,0.2898852,0.2860711,0.2815443,0.2769549,0.2734364,0.2692289,0.2650301,0.2643921,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,building,3 coal,1.700006E-6,7.56700006E-4,3.499998E-6,4.0730869999999994E-6,4.1600579999999995E-6,4.1705198E-6,4.0789896E-6,3.963488E-6,3.7890021E-6,3.6456826E-6,3.5073228E-6,3.426153E-6,3.3474696000000004E-6,3.2439638E-6,3.1057387E-6,2.9421722E-6,2.7461828000000004E-6,2.5493377E-6,2.3562026E-6,2.1801278E-6,2.0947896000000002E-6,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,building,4 biomass,0.0033089001,0.0065225,0.0070573,0.00699085,0.0075869100000000005,0.00754381,0.007349919999999999,0.0068667699999999995,0.00594402,0.00532393,0.0048003,0.00439932,0.00401699,0.0036837170000000004,0.0033176990000000003,0.0029837299999999995,0.002652095,0.002349431,0.002072708,0.00182497,0.001648841,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,building,5 electricity,0.11678708,0.3554645,0.4836962,0.6224211,0.7359914000000001,0.8489575,0.9572945999999999,1.0601434,1.1430401999999997,1.2204063,1.2912768,1.3728031,1.4549155,1.5463768,1.6323422,1.7095565000000001,1.7735251,1.8285709,1.8762050000000001,1.9180169,1.9636441999999998,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,building,6 hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,building,7 trad biomass,0.062738,0.0925072,0.1004378,0.10180449999999999,0.1032082,0.104867,0.1065751,0.10851409999999999,0.1101128,0.112142,0.1146148,0.11799699,0.12230329999999999,0.12742372999999999,0.13329396,0.1390505,0.14467737,0.15022549,0.15622563,0.16272446399999999,0.169069074,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,building,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,industry,1 liquids,0.5869305,0.8191328999999999,0.7419,0.932084,0.9781000000000001,1.079719,1.1446379999999998,1.2114429999999998,1.27345,1.344869,1.417331,1.5161860000000003,1.6181009999999998,1.721934,1.810611,1.885696,1.9376110000000002,1.975412,1.997021,1.991621,1.9971830000000002,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,industry,2 gas,0.5557745000000001,0.9602778999999999,1.1113282,1.3700748999999999,1.5294293,1.6572010999999998,1.7583179,1.8363792000000005,1.872191,1.9030749999999999,1.9199961799999998,1.9527565900000001,1.98331493,2.01541925,2.03676808,2.0519424,2.0664017300000004,2.08582354,2.09389891,2.09774772,2.10407995,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,industry,3 coal,0.07924339999999999,0.0726766,0.0501127,0.0606246,0.0636411,0.0643559,0.0650797,0.0664414,0.0674009,0.0680508,0.0676808,0.0680985,0.0674922,0.0665673,0.0645606,0.0625106,0.060019,0.0575013,0.0550363,0.053085,0.0520792,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,industry,4 biomass,0.02697865,0.0438617,0.0871743,0.105923,0.1237396,0.1338176,0.1427038,0.1473496,0.1435119,0.1424145,0.14181549999999998,0.1432057,0.1441325,0.1458769,0.1456413,0.14472089999999999,0.1420919,0.13843280000000002,0.1345959,0.1312485,0.1283049,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,industry,5 electricity,0.1247622,0.2386472,0.2951302,0.3713513,0.445694,0.5191754000000001,0.5961390999999999,0.673878,0.7406912999999999,0.8020575,0.8538134,0.9105095,0.9591196,1.0128812999999999,1.0548145,1.0937355,1.1245525,1.151273,1.172222,1.188769,1.2000031,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.00231373,0.004007177,0.00603011,0.008411179999999999,0.01102651,0.01411274,0.01769057,0.019625629999999998,0.02196021,0.02461789,0.02686976,0.0291486,0.03121943,0.0330701,0.0349964,0.036925599999999996,0.0372007,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,industry,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,industry,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,transportation,1 liquids,0.73730089,1.138068019,1.5997735289999997,1.9188975619999995,2.066402112,2.2315718629999997,2.3516398900000004,2.4578916330000005,2.5222939260000006,2.590772884000001,2.641888114,2.7844718129999997,2.9504791679999998,3.1394108309999984,3.347863325,3.5522405689999994,3.7429093549999988,3.922257214,4.103615112,4.278568194000001,4.410743959000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,transportation,2 gas,0.0,0.0103799178,0.015653388,0.0386756756,0.0643639311,0.10319234349999999,0.1485480526,0.204182925,0.2603454131,0.32443202500000007,0.4097879107,0.48495774500000005,0.5645049097999999,0.6504943789999998,0.740455843,0.8322495220000004,0.9239873150000001,1.0173675419999997,1.1173004720000002,1.2233417080000002,1.3222128370000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,transportation,3 coal,6.99992E-7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,transportation,4 biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,transportation,5 electricity,0.001799988,0.00316035,0.00363956,0.004574575132,0.0053883180830000005,0.006127621236999999,0.0068065348009999985,0.007421765279,0.007932838484,0.008432281229999998,0.008911373790000001,0.009784169360000003,0.010741296499999999,0.011976619249999999,0.013612611499999998,0.015738438499999997,0.018471355199999998,0.022025363299999996,0.026801583499999997,0.0331615173,0.038558750999999995,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,transportation,6 hydrogen,0.0,0.0,0.0,0.0,1.1094088E-4,4.1882435E-4,8.5425251E-4,0.0014811710699999998,0.002133186021,0.00299665723,0.004169600119999999,0.00602300138,0.00817118896,0.01069510061,0.01393539995,0.017670200200000003,0.0218755048,0.026514126499999995,0.0318376579,0.0377441599,0.042890983,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,transportation,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,transportation,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,building,1 liquids,0.03188183,0.0405157,0.08338994999999999,0.0811859,0.08990092,0.10133584,0.10802287,0.11582669000000001,0.12819845000000002,0.14690976,0.17267664,0.20804032,0.25253479,0.30523226999999997,0.36684182,0.4332195,0.5003122999999999,0.5660689,0.6282841,0.6778331,0.7377254,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,building,2 gas,0.0,0.0,0.0028465,0.00298944,0.00351297,0.00385723,0.004108,0.00433251,0.00461011,0.00505116,0.00567544,0.0065086,0.00757425,0.00888038,0.0105013,0.0123447,0.014437,0.0167399,0.0191315,0.0215216,0.0241599,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,building,3 coal,0.010053918,0.00376001,0.0034279030000000004,0.0034658031,0.0037491119999999998,0.0038901096,0.0039546076,0.0040171575,0.004062732,0.0041565692,0.004268627400000001,0.0044531213,0.0046358645000000006,0.0048208344,0.0049722818000000005,0.005097272,0.0051540132999999995,0.005162765299999999,0.005113398599999999,0.005023257,0.0050933129,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,building,4 biomass,0.0797127,0.13983790000000001,0.15706189999999998,0.1639722,0.2010448,0.2260682,0.24458739999999998,0.2536277,0.245986,0.2445393,0.2437175,0.2447712,0.2422081,0.23835810000000002,0.22814299999999998,0.214905,0.1974278,0.1782253,0.15791110000000003,0.13770659999999998,0.1236865,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,building,5 electricity,0.02358604,0.04908358,0.06535547,0.09637099,0.12533832,0.15119199,0.18004953,0.21349187,0.25656656,0.31426993999999997,0.3902079,0.4918813,0.6193875,0.7758970000000001,0.9607254000000001,1.1664085000000002,1.3888352999999998,1.6242068,1.8686371999999998,2.1197679,2.3661668000000002,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,building,6 hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,building,7 trad biomass,0.9525201,1.331009,1.516337,1.529416,1.540284,1.5538720000000001,1.55902,1.565513,1.55833,1.54116,1.4911340000000002,1.400452,1.276456,1.143194,0.989501,0.8482449999999999,0.713704,0.597642,0.49309899999999995,0.40533299999999994,0.353637,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,building,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,industry,1 liquids,0.04276275,0.06480983,0.07667958000000001,0.0947731,0.12100670000000001,0.15453050000000002,0.188381,0.229376,0.28381839999999997,0.3589813,0.45940559999999997,0.5939117,0.7613842,0.9678768999999999,1.2107741,1.4803471,1.7647263,2.0597412,2.352174,2.6255400000000004,2.8960429999999997,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,industry,2 gas,0.01846021,0.02548748,0.03251982,0.04326381000000001,0.05431676999999999,0.06346251,0.071905044,0.08082655899999999,0.09167607400000002,0.10426634400000002,0.118794812,0.13372271800000002,0.151009722,0.17065654600000002,0.19331170199999997,0.21563239199999998,0.23791725,0.26000695999999995,0.2789475030000001,0.294470072,0.3092086500000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,industry,3 coal,0.07109597000000001,0.03916395,0.02958568,0.03652632,0.0434058,0.0486454,0.053182400000000005,0.0586628,0.0668131,0.0779636,0.0926698,0.1122667,0.1357973,0.1631445,0.1943541,0.224643,0.25129270000000004,0.2737435,0.2924822,0.3080201,0.326148,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,industry,4 biomass,0.296921395,0.476782008,0.5514989969999999,0.56495182,0.6798911,0.76470124,0.83361678,0.8927561,0.94247468,1.0242563,1.13005025,1.26217951,1.39735236,1.54113728,1.6693908,1.7742714000000002,1.8405765,1.8687784,1.8578995,1.8138335,1.7827959999999998,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,industry,5 electricity,0.0484582,0.08214114,0.08241878,0.13803987,0.17705668000000002,0.21247303,0.2528515,0.30139262,0.36792039000000004,0.45487081,0.56567,0.7092235,0.8810306999999999,1.084566,1.3129722000000001,1.5539687,1.8000261,2.0458248,2.2771124,2.4847512999999997,2.6413786,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.0022669450000000002,0.00400549,0.00609178,0.00875552,0.01245754,0.01772245,0.02516755,0.03168275,0.040078,0.0506103,0.062165399999999996,0.0751187,0.08879010000000001,0.1023926,0.1160092,0.1285571,0.1357805,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,industry,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,industry,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,transportation,1 liquids,0.15221095989999997,0.2130339799,0.316482939,0.344218529,0.384520819,0.4172720530000001,0.44402185600000005,0.4723673834000002,0.506864389,0.5567600379999998,0.6186572380000002,0.7164303589999996,0.8384523059999999,0.9883370420000005,1.17069638,1.3822412819999998,1.621084582999999,1.8854368729999993,2.1799185489999995,2.4973273590000002,2.8108141650000005,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,transportation,2 gas,0.0,0.0,0.0,0.0033916109099999996,0.009400364139999999,0.017780445080000002,0.027858023589999996,0.04071897865,0.05593853142999999,0.07612787282,0.10451762183000003,0.1348624327,0.17148533190000004,0.21511692540000008,0.26567466089999997,0.32369824640000006,0.38946449499999997,0.4638868404000001,0.5489018379999998,0.64538094,0.7470820399999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,transportation,3 coal,0.00552251,2.09295E-4,2.09296E-4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,transportation,4 biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,transportation,5 electricity,4.45992E-5,4.09995E-5,7.69992E-5,1.6071116280000003E-4,2.7389260219999996E-4,3.8934761499999994E-4,5.263217807E-4,6.681934674000003E-4,8.346790949999998E-4,0.0010334356309999995,0.001265445285,0.001616897798,0.0020465049200000004,0.0026173875699999996,0.0034165380099999997,0.00455695271,0.0062073675000000016,0.008607261500000001,0.012137170700000002,0.0172692183,0.022256276699999997,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,transportation,6 hydrogen,0.0,0.0,0.0,0.0,2.0152918E-5,6.9454237E-5,1.3644872800000002E-4,2.3614642799999998E-4,3.52278992E-4,5.506939969999999E-4,8.5658191E-4,0.00140802721,0.002191854702,0.00331373851,0.004975937150000002,0.0072569368200000005,0.010283559909999998,0.014128019700000001,0.018995403589999998,0.0249395505,0.031024439900000002,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,transportation,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,transportation,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,building,1 liquids,0.12946160099999998,0.160705604,0.185731176,0.249433758,0.301874142,0.39671011,0.4980209400000001,0.62090406,0.77410825,0.96889169,1.21470174,1.5379815300000002,1.9379947499999999,2.4076806299999998,2.95295355,3.5609024,4.17551639,4.77982249,5.36128942,5.863348500000001,6.40690722,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,building,2 gas,0.0,0.005986,0.0077441,0.0102723,0.0124127,0.0148054,0.0174848,0.0203876,0.0234824,0.0272552,0.0319634,0.0380199,0.045669,0.0549431,0.0664204,0.0794429,0.0942853,0.110808,0.128478,0.147166,0.166714,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,building,3 coal,0.002655,0.003553999909,0.003992399987,0.005645787588,0.00708017806,0.008708751727,0.010364647063,0.012125786125,0.013821374489000001,0.01553371318,0.017125262698,0.018840090525000002,0.020235318101000002,0.02129938284,0.021852729953,0.022203318331,0.021987746228,0.021426260875000002,0.020554417869000002,0.019610830985,0.01935436488,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,building,4 biomass,0.1991744,0.2311539,0.2366298,0.3106891,0.41552100000000003,0.515199,0.615817,0.6959719999999999,0.7217560000000001,0.757979,0.790524,0.8234269999999999,0.84063,0.85214,0.8401099999999999,0.822382,0.7851969999999999,0.736993,0.6809540000000001,0.623743,0.580605,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,building,5 electricity,0.048461569999999995,0.11137040000000001,0.1300411,0.17157709999999998,0.2211331,0.2907531,0.378916,0.48898549999999996,0.6219707,0.7871167,0.9912953999999999,1.2505597,1.5697780000000001,1.9645070000000002,2.435097,2.9843349999999997,3.5921089999999998,4.249397999999999,4.9497599999999995,5.693544,6.426908,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,building,6 hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,building,7 trad biomass,3.31438953,5.054457299999999,5.700202,6.025495599999999,6.2310305999999995,6.380770900000001,6.4783954,6.5579564,6.5714982,6.547805800000001,6.4520732,6.339117900000001,6.1525947,5.9342233,5.586481099999999,4.9127064,4.2231976,3.5818904000000003,2.9655616,2.4109825000000003,2.031838,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,building,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,industry,1 liquids,0.0919113,0.12798400000000001,0.1194882,0.1813443,0.2457116,0.3540332,0.4886037,0.6641305,0.8895825999999999,1.1834405,1.559553,2.053083,2.6694809999999998,3.414664,4.266198,5.197654,6.167821,7.1575500000000005,8.125983,9.021548000000001,9.908909999999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,industry,2 gas,0.046632190000000004,0.17940138,0.14319431999999999,0.20178372899999997,0.24910755299999998,0.31338893399999995,0.386870406,0.47339466500000005,0.5776961270000001,0.6984704664,0.8393975679999999,1.010421388,1.212344148,1.437606793,1.684697411,1.9344027029999997,2.195498498,2.4622056570000006,2.7044928919999998,2.917400402,3.1127641020000003,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,industry,3 coal,0.00928509,0.0129947,0.0181149,0.0278184,0.035222859999999995,0.043779120000000005,0.05418518,0.06688947,0.08223103000000001,0.10127474,0.1253355,0.1574536,0.1978975,0.2413369,0.2806691,0.31450979999999995,0.3424306,0.36437240000000004,0.38185179999999996,0.39910300000000004,0.4177212,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,industry,4 biomass,0.65619142,1.10237948,1.25090791,1.61733915,2.00651955,2.46590858,2.96718816,3.4939337000000004,3.9897676,4.5848608,5.2606461,6.0670722999999995,6.9267642,7.8351843,8.6737036,9.3951465,9.916420200000001,10.2339976,10.3595526,10.3119432,10.268910700000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,industry,5 electricity,0.04768488,0.050792989999999996,0.06320081999999999,0.09114530000000001,0.123819,0.1740875,0.2395641,0.32561860000000004,0.4384253,0.5756011,0.7390942,0.9409721,1.1820928000000002,1.4663099000000002,1.7797729999999998,2.115903,2.461856,2.808548,3.137765,3.430897,3.6608430000000003,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.00633502,0.01244361,0.021435710000000004,0.03476456,0.0545765,0.083147,0.1237669,0.1619498,0.2124678,0.2763813,0.34844,0.430296,0.5183220000000001,0.608143,0.702448,0.794967,0.8481460000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,industry,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,industry,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,transportation,1 liquids,0.4134070389999999,0.7722052100000001,0.7672579799999999,0.9018171140000002,1.0171317519999998,1.1690883620000003,1.3276901850000005,1.5051458530000008,1.6925469759999996,1.9191701470000004,2.179433379,2.5596480780000017,3.026742578999999,3.5931695740000005,4.274806059999999,5.053919919,5.911394517000002,6.832887360000003,7.828799720000001,8.866967690000001,9.86069035,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,transportation,2 gas,0.0,0.0,0.0,0.009716103399999999,0.0251159867,0.0506075678,0.0844927624,0.12949198851000002,0.18324426801999996,0.2521848783000001,0.3441281588999998,0.4488368001,0.5742730747999999,0.7237215791,0.8969988009999997,1.0958330520000001,1.3193292119999998,1.5691102650000002,1.8504698370000003,2.164136790999999,2.4882768569999993,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,transportation,3 coal,2.52794E-4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,transportation,4 biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,transportation,5 electricity,0.0,1.959982E-5,5.85995E-5,2.2647164800000002E-4,4.798767950000001E-4,8.042948214000001E-4,0.0012277183756000001,0.0017018161067999997,0.002261793638999999,0.0029106961200000003,0.00365824592,0.0047908249899999995,0.006215648090000001,0.00818855929,0.011039963899999998,0.015198826500000002,0.0212118193,0.0298373064,0.0422691146,0.05987698699999999,0.076463842,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,transportation,6 hydrogen,0.0,0.0,0.0,0.0,5.49623E-5,2.1741796E-4,4.7692757E-4,8.903917589999999E-4,0.001437804126,0.002319589428,0.0036876264300000007,0.00612409303,0.00957813486,0.014451761559999998,0.02145353363,0.030787401099999997,0.0427358048,0.057406527299999996,0.07536335950000002,0.0965865761,0.11763735400000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,transportation,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,transportation,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,building,1 liquids,0.0809572,0.05584122,0.06752019000000001,0.07870909,0.08080005,0.08407564000000001,0.08536293,0.08662260000000001,0.08945377,0.09225096,0.09609523,0.09971901000000001,0.10448216999999999,0.1087173,0.11341190000000001,0.11705360000000001,0.1193224,0.12031109999999999,0.1197281,0.1162786,0.1151769,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,building,2 gas,0.21289954,0.30026179999999997,0.3653123099999999,0.4612575,0.48189165000000006,0.49774281,0.51042482,0.51441194,0.5166680499999999,0.5136897,0.5136192,0.50804269,0.50718259,0.50456248,0.50640496,0.50614148,0.50636642,0.50679525,0.50247252,0.492484148,0.48929262799999995,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,building,3 coal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,building,4 biomass,0.0036417999999999997,0.016199799999999997,0.0115951989,0.00950197,0.009982808000000001,0.009809513,0.009566265000000001,0.008935387000000001,0.007818701999999999,0.0070694499,0.006465502800000001,0.0059394296,0.0054411539,0.004995250400000001,0.004506197200000001,0.00402341,0.0035327039,0.0030745523999999996,0.0026836751000000004,0.0023666807,0.0021048433999999996,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,building,5 electricity,0.06391749,0.15595868,0.20692470000000002,0.3014286,0.3513271,0.40505929999999996,0.4659681,0.5264957,0.5925094999999999,0.6529429,0.7215203,0.7837969,0.8562635000000001,0.9338191,1.023317,1.1126018,1.2020016999999998,1.283598,1.3519253999999998,1.3989150000000001,1.4515362,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,building,6 hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,building,7 trad biomass,0.005148801,0.0028465,0.0020511,0.001269993,0.0011008860000000001,9.51548E-4,8.25114E-4,7.29457E-4,6.473550000000001E-4,5.83278E-4,5.162284E-4,4.628227E-4,4.0416530000000005E-4,3.471711E-4,2.875774E-4,2.349568E-4,1.874453E-4,1.4836019999999998E-4,1.179641E-4,9.5576E-5,7.883489999999999E-5,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,building,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,industry,1 liquids,0.19623962,0.48063700000000004,0.47314339999999994,0.5678424000000001,0.6088911,0.6551866,0.6915694,0.7279541,0.7738404,0.8191398,0.8722324,0.924849,0.9853978000000001,1.0465202999999998,1.1147361,1.1809193999999998,1.2466544000000002,1.3101223,1.3675008,1.405863,1.4577686,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,industry,2 gas,0.28787105,0.46724465,0.45276187,0.55308255,0.5891107200000001,0.6170569499999998,0.64477871,0.66303788,0.6768480299999999,0.6831934900000001,0.690129543,0.6902109969999999,0.69380244,0.6973201000000002,0.7065674039999998,0.716334653,0.7329155060000002,0.7543168899999999,0.7729244059999999,0.7886721449999999,0.8097803409999998,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,industry,3 coal,0.02473931,0.01063244,0.00766045,0.0110068,0.011844,0.0125424,0.0133867,0.0142365,0.0152331,0.0160431,0.016874,0.0176068,0.018333,0.0189453,0.019544,0.0200262,0.020387,0.020597,0.0207823,0.021057,0.0215548,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,industry,4 biomass,0.058771409999999996,0.05098543,0.038758230000000005,0.04784855,0.05430949,0.05866715,0.06313385,0.0655452,0.06565019999999999,0.0662657,0.0679357,0.0693566,0.071353,0.07356030000000001,0.075982,0.0780082,0.0795703,0.08048129999999999,0.081211,0.08180269999999999,0.082894,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,industry,5 electricity,0.07634254,0.15035727000000002,0.16188983,0.20439667,0.23355836,0.26304905,0.2976419,0.33212101,0.36729318,0.39809671999999996,0.4285614,0.4547617,0.4814538,0.509771,0.5394076,0.5701627,0.6028538,0.6351502,0.6667525000000001,0.6950071,0.723831,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.001223711,0.002022966,0.002973572,0.004060455,0.005317550000000001,0.00673502,0.00841391,0.00912486,0.01003234,0.011049119999999999,0.01202246,0.013057949999999999,0.01413936,0.015198360000000001,0.01632989,0.01744223,0.01789549,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,industry,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,industry,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,transportation,1 liquids,0.4180661689,0.4871503766,0.6195451658999999,0.8122985732000001,0.8817417453999998,0.9474172785999997,1.0121682040000002,1.066240838,1.1214555706,1.1657337398999994,1.21580766487,1.2684804255099997,1.3415518700500004,1.4230913323799992,1.5305818912200002,1.6440183844099996,1.765124154089999,1.8835730363700005,1.9928382287800002,2.07363553051,2.1584901002399994,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,transportation,2 gas,0.007575793,0.11095770000000002,0.09329499999999999,0.120983913,0.127016905,0.13548814799999997,0.15128735599999998,0.1729892176000001,0.20388212900000002,0.23860292119999996,0.28721027899999996,0.3241514268999999,0.36589793900000006,0.4103359919999998,0.46291953599999996,0.5189067110000001,0.5808631519999998,0.6468602540000004,0.715606635,0.7813289700000003,0.8534546099999998,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,transportation,3 coal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,transportation,4 biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,transportation,5 electricity,0.001099893,0.002065683,0.002219177,0.0045253343849999995,0.007138094588000001,0.009177801524,0.011600857810000004,0.014308747403000005,0.017397235660000007,0.020685696259999994,0.02492160737,0.030059962990000008,0.03637172674,0.043709107430000005,0.05305540144000002,0.06382866343,0.07624444437999998,0.09007024174000001,0.10522512049999999,0.12080649644300002,0.13534448303400004,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,transportation,6 hydrogen,0.0,0.0,0.0,0.0,4.8711778000000005E-4,0.00163748795,0.0033844438099999994,0.005679473720000001,0.0083139944,0.011174194890000001,0.01479893039,0.018935413899999996,0.023854789599999995,0.029387055099999997,0.036255694399999996,0.04392869590000001,0.052320725699999994,0.061161815300000005,0.07027717990000001,0.07881564120000001,0.0870983159,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,transportation,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,transportation,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,building,1 liquids,0.03407399,0.04177629,0.04571119,0.04462567,0.04818143,0.05206679,0.05378836,0.05551571,0.05768179,0.05967762,0.06132373,0.062485900000000004,0.06348531,0.06368547,0.06355081,0.06262181,0.06110472,0.05927895999999999,0.05720775,0.05456176,0.05188648,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,building,2 gas,0.1194685,0.1701608,0.18619310000000003,0.20387950000000002,0.2128267,0.22426010000000002,0.2313424,0.23559919999999998,0.2381,0.2379537,0.2352756,0.2296368,0.2226938,0.2145131,0.2067334,0.1987634,0.19218580000000002,0.1869536,0.1813807,0.17647590000000002,0.17053800000000002,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,building,3 coal,0.0108836,0.0056511,0.0031814,0.003384972,0.003429813,0.003515403,0.003497203,0.0034488820000000003,0.0033656579999999997,0.003265573,0.00314239,0.00299837,0.002831277,0.0026479620000000002,0.002453108,0.002263169,0.00207321,0.0018971810000000002,0.0017360560000000001,0.001588378,0.0014726300000000002,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,building,4 biomass,0.0804129,0.06672469999999998,0.0635434,0.06297200900000001,0.068166372,0.070570504,0.071508601,0.069426925,0.06308912900000001,0.058544246,0.05475635,0.051212909,0.047623093,0.044465515,0.041029531,0.037679166,0.034035908,0.030455933999999997,0.027167538,0.024138174000000002,0.021418347,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,building,5 electricity,0.2963367,0.4695266,0.5169308,0.5661634099999999,0.6210934,0.6702437000000001,0.7255370000000001,0.7788595,0.8321104,0.88001,0.9218177000000001,0.9590247,0.9892574000000001,1.0103045,1.0239833,1.0278165000000001,1.0260126,1.0183217,1.008067,1.0001506,0.9870345,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,building,6 hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,building,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,building,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,industry,1 liquids,0.36748899999999995,0.517473,0.5251750000000001,0.5302739999999999,0.574614,0.621077,0.656913,0.6957260000000001,0.736353,0.776354,0.813469,0.84965,0.883131,0.912327,0.9370459999999999,0.9560470000000001,0.970263,0.9821329999999999,0.991907,0.998781,1.004613,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,industry,2 gas,0.4086009,0.6497929,0.7403268,0.8066243,0.8374946,0.874092,0.90056425,0.91363393,0.9145799300000002,0.9065149600000002,0.88930469,0.8649678599999999,0.8373418899999999,0.8097892499999998,0.78417182,0.76132208,0.74633696,0.73834642,0.7295658300000001,0.7241184099999999,0.7176444700000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,industry,3 coal,0.2866992,0.2602018,0.2586948,0.2821199,0.289764,0.3009827,0.30873769999999995,0.3165646,0.3242883,0.3308529,0.3359213,0.3400603,0.3413592,0.33945250000000005,0.33477559999999995,0.327815,0.3186729,0.30833320000000003,0.298597,0.29115389999999997,0.2865309,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,industry,4 biomass,0.11540802,0.18016538,0.17053739999999998,0.18327149,0.20298433,0.21962905,0.23167505,0.23650210000000002,0.23054861999999998,0.22829058,0.22772356000000002,0.22640023,0.22432941,0.22222936,0.21845254,0.21339441,0.20676872000000002,0.19914495,0.19217572,0.18661505999999997,0.18039465,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,industry,5 electricity,0.27971266,0.36347565000000004,0.36620450000000004,0.38217415,0.40245496,0.41430941,0.43722368,0.46056403,0.48347112999999997,0.50256343,0.5173126299999999,0.53237997,0.54375893,0.55172164,0.55511157,0.55527154,0.55241885,0.54683315,0.54083798,0.53686848,0.53202408,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.0018231080000000002,0.003003566,0.004353597,0.005894430000000001,0.0075974400000000004,0.0094924,0.01155913,0.01221623,0.0129131,0.01365224,0.014121640000000001,0.014587679999999999,0.01501775,0.01539358,0.015826569999999998,0.0163223,0.01599981,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,industry,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,industry,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,transportation,1 liquids,1.111433237,1.481560313,1.5674822019999997,1.6387793490000002,1.6841363356999997,1.7020063649,1.7320076085000002,1.7615929499999998,1.8196503980000005,1.8629632859999998,1.901704674999999,1.9258725360000006,1.9475946440000003,1.9603055800000002,1.9708754590000002,1.967624975,1.962935861,1.9513180650000006,1.9406785299999998,1.9405517740000002,1.9320061250000005,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,transportation,2 gas,0.00280456,0.00196737,0.00293014,0.010557773999999999,0.022617338,0.041800927,0.06439562730000002,0.09075367779999999,0.11671447570000001,0.14445180889999998,0.1795243464,0.2030392236,0.22619492000000005,0.24787535600000002,0.268904817,0.287292185,0.3048338739999999,0.320763412,0.33682329,0.35486591299999987,0.371949049,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,transportation,3 coal,0.00313931,0.00556707,0.00519028,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,transportation,4 biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,transportation,5 electricity,0.00688453,0.012806060000000001,0.01409089,0.015326359279999998,0.017497233379999998,0.020453177,0.023877024589999997,0.02783828749,0.031817885000000004,0.036387590299999995,0.041493032699999995,0.047163406,0.05339934270000001,0.06002728640000001,0.0672053271,0.0746787689,0.08265458499999999,0.091086076,0.10022671999999999,0.11077003699999999,0.11859510799999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,transportation,6 hydrogen,0.0,0.0,0.0,0.0,0.0012962272000000001,0.0042143322,0.008083341600000002,0.012853570299999999,0.017607785729999995,0.0229856145,0.028764098999999998,0.03476674070000001,0.041001638400000005,0.047167177500000004,0.05330606539999999,0.059069668,0.064594494,0.06976618550000001,0.07472885199999998,0.0799002845,0.08388363999999998,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,transportation,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,transportation,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,building,1 liquids,0.26170908,0.28452226999999997,0.29511307,0.31491239000000004,0.35098988000000003,0.38345682999999997,0.40237705,0.4151116,0.43741119,0.45800124999999997,0.48520912000000005,0.50806876,0.54180334,0.57381912,0.61506832,0.65374939,0.6867430600000001,0.70875807,0.71433716,0.69487491,0.68782175,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,building,2 gas,0.008330203,0.018753295,0.020511394000000002,0.020248676,0.021965446,0.023301665,0.024295408999999997,0.024641579,0.025064527999999996,0.025184296000000002,0.025519893999999994,0.025399534,0.025777343,0.026129559000000004,0.027020370999999994,0.027957193000000005,0.029036215000000004,0.030005363,0.030401818000000004,0.030094122,0.030194361000000003,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,building,3 coal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,building,4 biomass,0.03403213,0.02750209,0.028632170000000002,0.02670989,0.029499179999999996,0.030554289999999998,0.031197229999999996,0.03022087,0.027454589999999997,0.025425599999999996,0.02383412,0.0221698,0.02070624,0.01933093,0.01788706,0.016322680000000003,0.01465884,0.0129629,0.011359801999999999,0.009913867,0.008709594000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,building,5 electricity,0.28585505,0.54394357,0.71496184,0.83475412,1.00044536,1.16031847,1.3253808,1.4729576,1.6500551999999997,1.8209177,2.0276046,2.2206278,2.4687097,2.7428426999999997,3.0898022999999997,3.4693007,3.8770719000000002,4.2752374,4.630984700000001,4.9041958,5.190437,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,building,6 hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,building,7 trad biomass,0.33324729999999997,0.344634,0.3045312,0.2800761,0.2579711,0.2394167,0.2233192,0.2096719,0.1945916,0.1804154,0.1647928,0.15014709999999998,0.13398759999999998,0.1173808,0.0997963,0.08284346000000001,0.06706258999999999,0.05335684,0.04204846,0.03318997,0.0264934,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,building,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,industry,1 liquids,0.8698092199999999,1.19577257,1.4597838899999998,1.6799859400000001,1.8792549299999999,2.07609984,2.23637724,2.38593943,2.5695600599999997,2.74479297,2.9365529999999995,3.1135694600000003,3.31578915,3.51764886,3.74793074,3.97609743,4.20459503,4.41841635,4.60260609,4.72735611,4.8951417699999995,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,industry,2 gas,0.09288741,0.38515378,0.48677990000000004,0.55922684,0.61440002,0.66149845,0.70288736,0.7303818799999999,0.7577304600000001,0.7714240899999999,0.7802931099999999,0.7775525300000001,0.7786174800000001,0.77768353,0.7850191099999999,0.7935048000000001,0.8089335900000001,0.82684037,0.8376233000000001,0.84180577,0.8547351400000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,industry,3 coal,0.34375381,0.42253438000000004,0.473102,0.51745626,0.55237075,0.58256716,0.60814647,0.62971546,0.6599849099999999,0.6822765900000001,0.70561262,0.7229861,0.74373051,0.7589947,0.77803912,0.79258026,0.80365818,0.80747777,0.80504396,0.7977940600000001,0.80942684,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,industry,4 biomass,1.3566461,1.8667909999999999,2.2407679999999996,2.085333,2.277146,2.3967859999999996,2.4941109999999997,2.521184,2.478696,2.443811,2.420907,2.3812819999999997,2.345152,2.305643,2.261152,2.201456,2.128536,2.040248,1.945938,1.851302,1.777894,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,industry,5 electricity,0.3866913,0.634961,0.7953729,1.0176837,1.1702641,1.3174926,1.4717331,1.6161325,1.7820118999999999,1.9292267,2.0795702,2.2112703999999996,2.3537972,2.4997767,2.6631515,2.8310657,3.0067788,3.1778673,3.3376231,3.4732385999999997,3.6010362000000002,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.007233120000000001,0.01210665,0.01783033,0.02435258,0.0321148,0.0407329,0.050626399999999995,0.054270900000000004,0.059000399999999995,0.06415,0.0689969,0.0741452,0.079442,0.0842009,0.0886952,0.0923562,0.09268470000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,industry,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,industry,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,transportation,1 liquids,1.4371470827000001,2.3649152317000004,3.1654882089,3.3816408301000003,3.6597608802999995,3.8809200719000003,4.073434999,4.2074642578,4.3910889357,4.535707239099999,4.689131292,4.830758886499998,5.049293623400001,5.294905005,5.639948762009999,6.025012919490001,6.4452099524500035,6.85908456796,7.245255837920001,7.537681455689999,7.844598029699998,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,transportation,2 gas,8.36891E-5,0.06780453,0.069981,0.10521815500000001,0.15472428500000004,0.22499277799999998,0.31629621899999993,0.42720350260000006,0.561566227,0.7101551520000001,0.9169927810000003,1.0559242949999998,1.2189287969999998,1.3914254000000001,1.5933859999999997,1.8142071099999997,2.0595651699999995,2.322754969999999,2.6013574899999994,2.87570257,3.1760773,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,transportation,3 coal,2.09291E-4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,transportation,4 biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,transportation,5 electricity,0.00377809,0.00380799,0.00552558,0.012297010217,0.024045326029999998,0.035115455800000014,0.047821940789999996,0.06253163789,0.07962941695,0.09999178117000002,0.12624658835,0.15069000433000002,0.17716334319999996,0.20420492190999998,0.23608126841,0.26978853275000003,0.30473915222000003,0.33945385719000004,0.37376736497999996,0.40437604491,0.43388932241000006,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,transportation,6 hydrogen,0.0,0.0,0.0,0.0,0.001738074,0.0058240639999999995,0.011656052,0.0193201442,0.0277719831,0.0375674315,0.049466488999999995,0.06066844800000001,0.07371205,0.08798991900000003,0.10577168700000002,0.12532696100000001,0.14595356,0.16693045999999997,0.18810195499999996,0.20737981,0.22482295000000005,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,transportation,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,transportation,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,building,1 liquids,0.3656467,0.4587433,0.2171697,0.20130182,0.20535879,0.210506,0.20687677000000002,0.20444876,0.20214785,0.20060747999999998,0.19877338,0.1977068,0.19633042,0.19399426,0.19083921000000004,0.18719761,0.18217129999999998,0.17678988,0.17089508999999997,0.16309600999999996,0.15648079,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,building,2 gas,0.8236374099999999,1.0358261,0.9836261,1.0368764,1.03921178,1.0480137999999999,1.0335112,1.00704058,0.9624664700000001,0.9166894699999999,0.86928264,0.82084416,0.77394162,0.72999606,0.69001774,0.65576449,0.6281927700000001,0.607936952,0.5878424680000001,0.5680110309999999,0.548031771,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,building,3 coal,0.0021766999999999997,0.0014651,1.256E-4,1.24201E-4,1.18116E-4,1.14324E-4,1.07178E-4,9.97764E-5,9.08879E-5,8.2938E-5,7.51111E-5,6.85646E-5,6.2133E-5,5.6249E-5,5.05889E-5,4.55804E-5,4.10332E-5,3.70778E-5,3.35009E-5,3.02617E-5,2.78045E-5,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,building,4 biomass,0.0624551,0.0790735,0.103143,0.0981177,0.102625,0.102494,0.0999698,0.092939,0.0794695,0.0699573,0.0620278,0.0556965,0.0499057,0.0453237,0.040697,0.0366653,0.0327597,0.0291621,0.0259278,0.0229889,0.0203734,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,building,5 electricity,0.8585177,1.0758274,1.100556,1.1761761,1.2469296,1.2967798,1.3524241,1.4089527,1.4647755,1.5127215,1.5541114,1.59145,1.6217899,1.6468623,1.6646786,1.6789021000000002,1.6860727999999998,1.6877870000000001,1.6868203,1.6832053999999999,1.6797243000000002,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,building,6 hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,building,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,building,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,industry,1 liquids,0.8764222700000001,1.36547341,1.3019718200000001,1.2963392,1.34347871,1.39450305,1.41518701,1.43578912,1.44627098,1.4590622699999998,1.46742227,1.48146596,1.4932535400000002,1.50732733,1.52022112,1.53549783,1.5520250500000001,1.5723348299999997,1.59038021,1.60126861,1.6149971600000002,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,industry,2 gas,1.0861326900000001,1.2254316299999999,1.25087059,1.30352394,1.3093121699999999,1.32214288,1.3128904399999999,1.28922432,1.2458026899999999,1.19969127,1.14735545,1.0997468400000001,1.0530811199999999,1.0119109300000002,0.9764540300000001,0.94782583,0.93046428,0.92333195,0.9152606199999999,0.9079518000000002,0.90249843,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,industry,3 coal,0.18334609999999998,0.19644940000000002,0.1733004,0.1850031,0.18564161999999998,0.18826004000000002,0.18840487,0.1888456,0.18848339,0.18798834,0.18715202000000003,0.18721176,0.18663811,0.18560970000000002,0.18409396,0.18247903999999998,0.18057428,0.17871262000000002,0.17709779999999997,0.17619108,0.17740268,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,industry,4 biomass,0.2419296,0.3328179,0.27276030000000007,0.28392513999999996,0.30387305,0.31797585,0.32597204999999996,0.3248978,0.30942991999999997,0.29956178,0.29260969,0.28741003,0.28257398,0.27958372000000004,0.27591905,0.27235377000000005,0.2680657,0.26346276,0.25930037,0.25599693,0.25301454,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,industry,5 electricity,0.67832704,0.9242125,0.75812417,0.78599988,0.81663506,0.83135773,0.86043156,0.8934307,0.9300331599999999,0.96115025,0.98553658,1.0115158,1.03386663,1.05648783,1.07578762,1.0963368,1.1151005500000002,1.13218709,1.14959101,1.1664849499999999,1.1859722,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.002901068,0.0046863700000000005,0.00661212,0.00871749,0.010867439999999999,0.013216199999999999,0.01572833,0.01638986,0.0171787,0.01812986,0.01879947,0.01959326,0.02044219,0.021330139999999997,0.02234046,0.02338853,0.02330456,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,industry,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,industry,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,transportation,1 liquids,1.735409367,2.1987840540000003,2.4395011820000003,2.552411369999999,2.6064160721999996,2.6052858248999997,2.5817347406999995,2.5427698800000007,2.5312801899999995,2.5119627099999993,2.4791215600000003,2.4808708499999996,2.498184089999999,2.5207635400000004,2.55367771,2.5900819699999995,2.6290098599999996,2.6726801899999995,2.7233886799999993,2.78465385,2.84397195,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,transportation,2 gas,0.001507013,0.0016743020000000001,0.001716204,0.0174573882,0.0394914211,0.0723958655,0.10760369869999999,0.1463753917,0.17972557690000002,0.2142102661,0.25811297869999994,0.28699685559999993,0.3170996431999999,0.3476567804,0.379722711,0.41224909299999996,0.444885695,0.47824183000000015,0.5136464230000001,0.5513657609999998,0.5906133699999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,transportation,3 coal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,transportation,4 biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,transportation,5 electricity,0.00310027,0.00367337,0.00264148,0.0036129251999999995,0.007769696499999999,0.014922362199999999,0.023627441799999996,0.03460831471,0.045126691399999995,0.05792165,0.072998805,0.086776343,0.099625541,0.111288843,0.12238633400000001,0.133150722,0.14371849499999995,0.15429505500000001,0.16475340400000002,0.17520763499999997,0.18492393899999998,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,transportation,6 hydrogen,0.0,0.0,0.0,0.0,0.001697054,0.005669225999999999,0.010999413,0.017870713000000003,0.0242498479,0.031464656,0.039218434,0.046652198,0.053978526,0.061119409,0.06826597200000001,0.075408298,0.082522913,0.08964232700000001,0.096792822,0.10404473200000001,0.11057325,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,transportation,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,transportation,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,building,1 liquids,0.19962509,0.18280681000000001,0.14563479000000001,0.12989245,0.14052302,0.15547709,0.16896015999999997,0.18114579999999997,0.19971893000000002,0.2199756,0.24625307000000002,0.2725245,0.30588157000000005,0.34170093,0.38532035,0.42896747999999996,0.47125234,0.50810126,0.53306077,0.53900817,0.54526742,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,building,2 gas,0.0026111999300000004,0.0067608996,0.006056400009999999,0.0062887841800000005,0.00672355168,0.00734165959,0.00804567388,0.00857170783,0.009186173200000002,0.00974837607,0.01044789594,0.01097051429,0.011648602900000003,0.01233411127,0.01320777092,0.01401753634,0.01483124364,0.015546956169999999,0.01591719286,0.01594862811,0.01595124896,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,building,3 coal,2.4299997E-5,4.899999E-5,7.35E-5,7.305944000000001E-5,7.202553000000001E-5,7.227446E-5,7.274387E-5,7.227301E-5,7.25321E-5,7.258044999999999E-5,7.329639E-5,7.362212E-5,7.438687E-5,7.479450499999999E-5,7.5491104E-5,7.5467258E-5,7.4637284E-5,7.2834522E-5,6.988445200000001E-5,6.621866500000001E-5,6.323213100000001E-5,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,building,4 biomass,0.027327987999999998,0.042627778000000005,0.046862899,0.047012021,0.050853432,0.052693521,0.054080253999999994,0.05245646600000001,0.048016716,0.044807850999999996,0.042444368999999996,0.040025897000000005,0.037830932,0.035819373,0.033657533,0.031214514000000002,0.028494354,0.025605544,0.022744008,0.020100159,0.017614324,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,building,5 electricity,0.113476292,0.195164677,0.222235499,0.2520044,0.30194646,0.35958278000000005,0.42975165000000004,0.5069680599999999,0.6037198800000001,0.7088321900000001,0.83718413,0.9676635600000001,1.12930214,1.31350187,1.5401832899999999,1.78676438,2.05257098,2.31511598,2.5541028399999997,2.74581763,2.94718561,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,building,6 hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,building,7 trad biomass,0.327264,0.4026073,0.4420999,0.4452606,0.4251093,0.398953,0.3717397,0.34349630000000003,0.3126607,0.2825664,0.2511859,0.2229147,0.1931484,0.16409662,0.1349921,0.10846149,0.08471954000000001,0.06491954999999999,0.049210540000000004,0.03754909,0.02869379,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,building,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,industry,1 liquids,0.29809169999999996,0.28863489999999997,0.2886614,0.2776126,0.30679619999999996,0.34271280000000004,0.3750049,0.4075179,0.45171219999999995,0.49720929999999997,0.5498734,0.6020203,0.6598419,0.7176082,0.7798517,0.8393953000000001,0.898469,0.9533282000000001,0.9985005,1.0230398,1.0567508,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,industry,2 gas,0.135274,0.5527302000000001,0.7142509000000001,0.76267277,0.83838732,0.92582658,1.02125713,1.10637809,1.2000726400000004,1.28619622,1.3790478879999997,1.4533516469999999,1.5335548489999997,1.6099597010000002,1.693536032,1.7728952980000003,1.861621961,1.950807972,2.025331527,2.0800792099999996,2.140103115,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,industry,3 coal,0.00853943,0.0182511,0.0156137,0.0202899,0.02248158,0.024893619999999998,0.02766297,0.03047195,0.03384133,0.03693085,0.0401115,0.042931949999999997,0.04578174,0.04833988,0.05090888,0.053132700000000005,0.05502998,0.05636566,0.05745377,0.058598500000000005,0.06038578,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,industry,4 biomass,0.28771163,0.14346239,0.12963233000000002,0.1369915,0.1580977,0.1783108,0.2010338,0.21760069999999998,0.2285873,0.2411502,0.2574989,0.2719533,0.2878716,0.3040927,0.3203691,0.33452380000000004,0.34706119999999996,0.3563111,0.3633687,0.3690334,0.37593960000000004,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,industry,5 electricity,0.04906937,0.11436448,0.11606292,0.14405866,0.1777572,0.21441290000000002,0.258606,0.3086886,0.36793210000000004,0.42889350000000004,0.49549689999999996,0.5602654,0.6312143,0.7042512,0.7822726,0.8623917999999999,0.947157,1.0319482,1.1171047,1.1964501,1.2883502999999998,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.0028200400000000002,0.00489635,0.00763486,0.01094898,0.015190519999999999,0.02041126,0.0270219,0.0308353,0.0356589,0.0412075,0.0467829,0.0530539,0.060001200000000005,0.067213,0.0750083,0.0828103,0.0855808,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,industry,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,industry,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,transportation,1 liquids,0.45712311970999997,0.8199270491999999,0.929745754,0.9430423140000002,1.0080443893099997,1.0763802148800001,1.154324803645,1.229375181089,1.328659331306,1.4274386399779995,1.541010042123,1.667155705085,1.8281607142690004,2.0122406374599997,2.2468818234099994,2.50718446614,2.79726704239,3.097356572059999,3.3891927961900032,3.63947764203,3.906442618739999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,transportation,2 gas,0.0,0.0,0.0,0.0061400257483999994,0.0171722759692,0.0345821678979,0.0584044135162,0.08884172472168,0.12640388029959998,0.17053099800474994,0.23192751077033,0.2806177188462001,0.33881262738370005,0.40411205410000006,0.4832880054082,0.5732356856359999,0.6784970917829999,0.7969146535879997,0.9252917080909999,1.0565015716960002,1.204230804544,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,transportation,3 coal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,transportation,4 biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,transportation,5 electricity,3.75595E-4,3.75398E-4,9.163940000000001E-4,0.0015835225137999995,0.00294303800496,0.004244416719050001,0.005846103573660002,0.00775682960478,0.010072585732400002,0.012964882680499999,0.016863253799199996,0.022093079021,0.028954796284999997,0.037506598023,0.048991816135000026,0.06299931367500002,0.080060937274,0.09980311446999998,0.12173722950000002,0.14494848871000002,0.16758759606000004,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,transportation,6 hydrogen,0.0,0.0,0.0,0.0,3.65179212E-4,0.0012560829050000002,0.0025592433098999994,0.0043056224295,0.0063681782412000005,0.009023379346099997,0.012510637717,0.016842735256,0.022381895720999988,0.029105415698,0.037994311865,0.04849265443000001,0.060845390790000016,0.07461207246,0.08901759547000003,0.10317567874999996,0.11746424219999997,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,transportation,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,transportation,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,building,1 liquids,0.6593595,0.1389404,0.4440808,0.5820793999999999,0.6518003,0.7513577,0.8254797,0.888789,0.9550668999999999,1.0146954,1.0704255999999999,1.1150309,1.1544335000000001,1.1858746,1.2169698,1.2392854999999998,1.2532904,1.2630255000000001,1.2702647,1.2711842999999998,1.2693036,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,building,2 gas,1.6334394,1.1480690000000002,1.118998,1.407222,1.6001659999999998,1.779944,1.922506,2.022949,2.104779,2.1579170000000003,2.193524,2.1941699999999997,2.180748,2.155776,2.136262,2.10686,2.07795,2.0531260000000002,2.02648,2.0038650000000002,1.9804469999999998,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,building,3 coal,0.1318733,0.017269800000000002,0.1842459,0.18661243,0.18910500000000002,0.18406108999999998,0.17735383,0.16852821,0.15810558,0.14634332,0.13436415000000002,0.122898434,0.111773961,0.100629959,0.090307029,0.080450933,0.071136177,0.06269985,0.055724119,0.05031669,0.046185344,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,building,4 biomass,0.026371699999999998,0.0180835,0.0205952,0.018920185,0.020146090000000002,0.020058399999999997,0.019667768999999998,0.018306191999999995,0.015895069,0.014086836999999998,0.012622317,0.011289996,0.010100698,0.009033939000000001,0.007995691,0.006980868,0.005980434000000001,0.005033874,0.004257668,0.0036212250000000005,0.0030798089999999998,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,building,5 electricity,0.118443223,0.191195505,0.18565219500000002,0.28244220999999997,0.35382762,0.41428825,0.48028203,0.54364237,0.61586748,0.67870805,0.7341771,0.77728613,0.81171971,0.8433920599999998,0.8734781,0.8987875399999999,0.9217020300000001,0.9418333300000001,0.96355321,0.9920250599999999,1.0164676,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,building,6 hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,building,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,building,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,industry,1 liquids,0.6271662,0.3493981,0.34506349999999997,0.418620341,0.459403441,0.531920836,0.593658997,0.6569762349999999,0.729428231,0.8049745939999999,0.884747739,0.961896123,1.038997374,1.114814793,1.193019005,1.268385704,1.34336784,1.420610929,1.5032451189999998,1.5898087719999998,1.671208767,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,industry,2 gas,0.5559638,0.9350109000000001,1.3609149999999999,1.54458809,1.6866162500000002,1.8127622200000002,1.90934737,1.96951467,2.0041143100000003,2.01902613,2.02203335,1.9993087890000003,1.9703485500000004,1.9391489900000003,1.9172929100000002,1.8971213700000003,1.8952988899999998,1.91223176,1.93459009,1.97262195,1.99751502,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,industry,3 coal,0.8018986,0.46026922000000003,0.6165355499999999,0.69236863,0.74921928,0.80196386,0.84251941,0.87584586,0.9086063000000001,0.9361083,0.9627668,0.9825277,0.9975161,1.0045244,1.0094135,1.0075451,1.0001946,0.9897919,0.9836011,0.9866022,0.9949332999999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,industry,4 biomass,0.001507,0.004227902,0.002888394,0.0034521630000000003,0.004085200000000001,0.00455538,0.00497161,0.00520756,0.00521911,0.005279,0.00538092,0.0054367,0.00547969,0.00552118,0.00554088,0.00552038,0.00545392,0.00535224,0.0052821,0.00526858,0.0052094,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,industry,5 electricity,0.6045806,0.40294248,0.41245642,0.543054,0.6210238,0.67632,0.7393126,0.7968258,0.8654645000000001,0.9208596,0.9654193,0.9934584,1.0119923,1.0280618,1.0418202,1.052918,1.0641557,1.0751937,1.0898226,1.110746,1.1224713,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.003990668,0.00679711,0.010088469999999999,0.013850050000000001,0.0180745,0.022834,0.02823519,0.03018525,0.03240846,0.034826869999999996,0.03682555,0.0388999,0.0409702,0.0429988,0.0454385,0.048268,0.0483956,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,industry,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,industry,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,transportation,1 liquids,0.6583389149000001,0.4508526822,0.5779941610000001,0.7726623609,0.8993879491,1.0385088603,1.1734782832000001,1.303684921599999,1.4532662344,1.6062797096999997,1.7679962799,1.9342953639000007,2.1062445437000004,2.2871092467000005,2.4852788604000002,2.6859069157000004,2.8952784528500004,3.117041790860002,3.3479178833700014,3.592898162820001,3.8210039549400006,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,transportation,2 gas,0.007282598300000001,0.0054410685,0.0154861418,0.02915896584,0.04487762295,0.06654899204999999,0.09217498719000002,0.12107031027000001,0.15391827147,0.18941535278000002,0.22924826365000006,0.26452038340000006,0.3008422371299998,0.3380995131599999,0.37688560130000004,0.41662936779999993,0.45882709679999995,0.5049189800999999,0.5550945932,0.6110265401999998,0.6674114302999998,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,transportation,3 coal,0.00209284,0.00146499,0.00117201,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,transportation,4 biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,transportation,5 electricity,0.0413727874,0.019703302199999998,0.0193370096,0.027864980240899995,0.03524311983139999,0.043014487229900006,0.0513565545866,0.06005705222049999,0.0701618722987,0.08046599406300001,0.09129758565799999,0.10382097297199998,0.11732713928299997,0.13264443929900002,0.15061799623500002,0.17087601057100002,0.19446187829999997,0.2221548033,0.2544841716900001,0.29312000944,0.32856086050999994,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,transportation,6 hydrogen,0.0,0.0,0.0,0.0,3.4453868809999997E-4,0.0012104255400999999,0.0025800141532,0.0045122724192,0.007188083918800001,0.010685807555,0.015313494458199997,0.020846324713599998,0.027146894013,0.03433168181199998,0.042548340803000004,0.051564370029,0.061554812678999996,0.07277382151299999,0.085181595369,0.09891254760199998,0.11114920183000003,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,transportation,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,transportation,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,building,1 liquids,0.3061648,1.555234,2.050779,2.678442,3.582192,4.626719,5.5678279999999996,6.487493,7.404388999999999,8.239794999999999,8.944102,9.506459999999999,9.95922,10.286100000000001,10.52881,10.67873,10.697690000000001,10.58625,10.25767,9.592770000000002,9.014932,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,building,2 gas,0.0961327,0.6612279,1.3825318,1.9823827,2.608026,3.3014110000000003,3.9749489999999996,4.55743,5.036581,5.364435,5.547427,5.605405,5.6261589999999995,5.636642,5.681749,5.756203,5.876927,6.032252,6.109611,6.092367,6.166027,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,building,3 coal,4.07266,2.942506,2.8680760000000003,3.2534349999999996,3.47659,3.657674,3.730712,3.710589,3.635291,3.490513,3.292262,3.0836580000000002,2.8481500000000004,2.597756,2.3400600000000003,2.086274,1.833774,1.5994169999999999,1.387598,1.20997,1.0713300000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,building,4 biomass,4.707E-4,2.559E-4,1.905E-4,2.001561E-4,2.235254E-4,2.382734E-4,2.4394709999999998E-4,2.357395E-4,2.1224040000000002E-4,1.9310279999999998E-4,1.758589E-4,1.584413E-4,1.421021E-4,1.278424E-4,1.135889E-4,1.002094E-4,8.74565E-5,7.56468E-5,6.51303E-5,5.6414999999999994E-5,4.835894E-5,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,building,5 electricity,0.2950606,2.0792284,3.5675333,4.783513,6.3558155,7.995532600000001,9.914844800000001,11.910198699999999,13.908402800000001,15.8081095,17.54885,19.1963307,20.6752745,21.997681,23.2109378,24.2554449,25.022992000000002,25.5134163,25.5649739,25.0956058,24.7673011,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,building,6 hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,building,7 trad biomass,8.39255,8.28969,8.064680000000001,6.90845,5.71063,4.738770000000001,3.8898400000000004,3.1752000000000002,2.5922799999999997,2.112988,1.714561,1.40147,1.134047,0.910171,0.714398,0.5523629999999999,0.417948,0.312959,0.2352784,0.1827838,0.1418916,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,building,8 district heat,0.10248519999999998,0.6540789,0.7637187000000001,0.9535382,1.1178734000000001,1.3032501,1.4737148,1.6186345,1.7400585000000002,1.8298767,1.8869852,1.9249291,1.9324282999999998,1.9086372000000003,1.8538691,1.7749774999999999,1.6642869999999998,1.5314785000000002,1.3924718,1.2578705000000001,1.1189555,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,industry,1 liquids,2.6242009,5.240338,7.020378,8.119762000000001,9.4229586,10.70695265,11.73972667,12.68369867,13.5707683,14.40149578,15.15076511,15.861044447,16.530866063000005,17.215968524,17.892932,18.619563,19.357590000000002,20.092727999999997,20.655203,20.823141999999997,21.085585000000002,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,industry,2 gas,0.374396,0.799275,1.376136,1.9853117,2.2256726,2.4581655000000002,2.6421136999999995,2.7638146000000003,2.8244634000000004,2.8375434,2.8169012000000007,2.7649661599999997,2.7212589400000002,2.7031026,2.7156477000000003,2.7655812,2.872265100000001,3.031004,3.1898282,3.3401649000000004,3.5422521000000002,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,industry,3 coal,10.413069,21.075282,26.004498,30.455748,32.564721000000006,34.490366,35.762648000000006,36.59412699999999,37.016586,37.137718,36.9479664,36.637773100000004,36.191481100000004,35.7090381,35.1788146,34.7466962,34.3526259,33.92879119999999,33.2822513,32.305545099999996,31.716365399999997,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,industry,4 biomass,2.31E-4,2.201E-4,1.918E-4,2.24199E-4,2.65314E-4,2.98883E-4,3.24655E-4,3.36801E-4,3.31247E-4,3.27341E-4,3.23604E-4,3.17646E-4,3.11586E-4,3.07579E-4,3.03081E-4,2.99381E-4,2.95535E-4,2.90797E-4,2.83879E-4,2.73552E-4,2.6366E-4,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,industry,5 electricity,1.661754,5.534131,9.307801999999999,10.167335999999999,11.054428,11.483753,12.082383,12.530975999999999,12.83408,13.050483,13.160281999999999,13.328582,13.445275,13.553032,13.637677,13.731292999999999,13.781289,13.828456,13.779824,13.568163,13.454213000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.02394323,0.04158112,0.062126,0.08524530000000001,0.1099549,0.13660909999999998,0.16471380000000002,0.1716088,0.17972159999999998,0.1899633,0.1981822,0.2084505,0.22025840000000002,0.2323278,0.2439258,0.2520508,0.24740069999999997,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,industry,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,industry,8 district heat,0.514364,1.86154,2.28925,2.71929,3.02455,3.37041,3.6462,3.87454,4.05205,4.19133,4.2958,4.36759,4.41733,4.45921,4.48615,4.51848,4.55111,4.56841,4.54949,4.47503,4.3834,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,transportation,1 liquids,1.3319613839999997,6.077096404999999,8.780945389000001,10.363861320000003,12.427211890000002,14.612714004000004,16.850225033199997,19.139239372900015,21.311638147899984,23.382050008600004,25.302575807899984,27.316337749099997,29.3475417262,31.410086931000016,33.63671064809999,36.01299512200001,38.458432912800035,40.844552831,42.772380066,43.56184404300001,44.63983635599999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,transportation,2 gas,0.0,0.05478884174,0.2997685478,0.44599205118000007,0.60722973986,0.77829812352,0.9800170311999999,1.2104473866410004,1.45748073881,1.7282332785899996,2.0455402007399996,2.3257603794599992,2.6196232894,2.9252576244,3.2449234772000004,3.603082095399999,4.003483731200001,4.448329227599999,4.899680491499997,5.2759242811,5.755818547599999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,transportation,3 coal,0.410488,0.167929,0.131807,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,transportation,4 biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,transportation,5 electricity,0.0224580899891,0.072697999979,0.143434199946,0.18736611655040003,0.2346451269335,0.2784226155147999,0.3261004503415,0.37401380411327007,0.4210206424890002,0.46857818352900005,0.5176610382429998,0.572831525139,0.6297701690200002,0.6925483682599999,0.7643769788400001,0.8447668718999999,0.9336376101300002,1.0293882401999999,1.1226072094,1.1945595388,1.2682824599,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,transportation,6 hydrogen,0.0,0.0,0.0,0.0,0.00109206408,0.0039874894,0.00832166007,0.014804476921,0.021926806822000003,0.030872804400000002,0.04162563610000001,0.05690771778,0.07273974719,0.08935195099999999,0.10785227390000002,0.1274006956,0.14760197719999996,0.17004750439999997,0.1915122083,0.20758062519999995,0.21953343990000002,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,transportation,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,transportation,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,building,1 liquids,0.050818050000000003,0.03436699,0.03302752,0.05068062,0.05626787,0.06169323,0.06719362,0.07310508,0.08216203,0.09199307999999999,0.10451606,0.11711553,0.13334856999999997,0.1508039,0.1720082,0.1933242,0.2139855,0.23183520000000002,0.24543149999999997,0.2506834,0.2577935,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,building,2 gas,0.00447901,0.03733909,0.04575303,0.06474595,0.07283773,0.07874806,0.08622898,0.09291197,0.10128833,0.10925579,0.11914269,0.12727758,0.13815519,0.1495762,0.16425013,0.1788383,0.19414478,0.20834228999999999,0.21908922000000003,0.22504019999999997,0.23147309100000002,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,building,3 coal,0.00514881,0.002679,0.0021767,0.00253893,0.00265966,0.00273227,0.00279815,0.00284111,0.00290961,0.00296058,0.00302006,0.00305206,0.00309018,0.00308678,0.00306479,0.00299115,0.00286225,0.0026882,0.00249877,0.00231003,0.00217151,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,building,4 biomass,0.0030139,0.015362698,0.014609205100000001,0.015597657800000001,0.0179378694,0.0191679977,0.020289093499999997,0.020323277,0.019041037399999995,0.018141692000000004,0.0174354946,0.0165878025,0.015772363799999998,0.014954452,0.013939888499999999,0.012777369700000001,0.011471810800000001,0.0101235854,0.008898898799999999,0.0078686922,0.0069712966,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,building,5 electricity,0.0664531,0.09299784999999999,0.10953852,0.15750528,0.18771131000000002,0.2132974,0.24921875000000002,0.28868426,0.33752234000000003,0.38900499,0.4524827,0.5167875,0.5965273999999999,0.6883501,0.8024112000000001,0.9272577,1.0641126,1.2016035,1.3276788000000002,1.4302670000000002,1.538935,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,building,6 hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,building,7 trad biomass,0.14111010000000002,0.0457948,0.0595668,0.0510138,0.0487041,0.047306100000000004,0.0448963,0.042413400000000004,0.039669499999999996,0.0369776,0.0338589,0.0309759,0.027778,0.02437466,0.020716190000000002,0.01723967,0.01394207,0.011063429999999999,0.00874823,0.0069809,0.00561323,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,building,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,industry,1 liquids,0.0826317,0.1350403,0.1260403,0.1898949,0.22060860000000002,0.2514704,0.2863924,0.3250068,0.3752977,0.4295275,0.4946014,0.5617284,0.6416585,0.7280004999999999,0.8276295,0.9294418999999999,1.0326275,1.1304412,1.2181585,1.287899,1.365937,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,industry,2 gas,0.045250719999999994,0.11310564000000001,0.1281834,0.17596822,0.19928780000000001,0.21702166000000003,0.23895216,0.26128007,0.28649651000000004,0.3085063699999999,0.3316391109999999,0.348775332,0.368672518,0.387647425,0.41034988000000006,0.4315817999999999,0.45452031,0.47646552999999997,0.49259646199999996,0.503606291,0.516442436,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,industry,3 coal,0.09008286,0.08568747,0.06563637,0.09162580000000001,0.1036678,0.1131269,0.1254321,0.1384835,0.1554741,0.172441,0.1924133,0.21192480000000002,0.2345921,0.2570478,0.281945,0.3050213,0.32569109999999996,0.341657,0.3541569,0.3640686,0.37944449999999996,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,industry,4 biomass,0.08388743,0.06932007999999999,0.05739002,0.07357767999999999,0.08848381999999999,0.09931949,0.1124204,0.1230192,0.1313507,0.1408847,0.15341069999999998,0.1649901,0.1788601,0.1934512,0.2091266,0.22309600000000002,0.2345264,0.2419096,0.24679269999999998,0.2498507,0.2533225,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,industry,5 electricity,0.03144656,0.04919917,0.05774638,0.0793968,0.09348025,0.10527101999999999,0.12180830000000001,0.139838,0.1607072,0.1812464,0.204116,0.2259537,0.2503185,0.2762143,0.3049379,0.3341462,0.3637085,0.3916041,0.41563449999999996,0.4352409,0.4555822,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,industry,6 hydrogen,0.0,0.0,0.0,0.0,4.2179749999999997E-4,7.34994E-4,0.001155966,0.001692306,0.0024079,0.0032981499999999997,0.004460189,0.00518093,0.0061113999999999995,0.007197230000000001,0.00836979,0.00964688,0.01099381,0.01228481,0.013596279999999999,0.0148498,0.015433450000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,industry,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,industry,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,transportation,1 liquids,0.25982116699999996,0.3344904186,0.36995192759999995,0.47616121359999986,0.5217892635,0.5539083283,0.5945703431999998,0.6338731574,0.6825468090000001,0.7303090770000001,0.7854435335800003,0.8455449684800003,0.9233283087999998,1.01102780575,1.1222196194000003,1.2426220051099996,1.3729452210500002,1.5021800181799998,1.622945828049999,1.7187117386200004,1.8175662556699999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,transportation,2 gas,5.441354E-4,0.00996141,0.02314587,0.032331725,0.03772688300000001,0.044772652999999996,0.056851957,0.07325309900000002,0.09542574919999998,0.12108266299999997,0.15605351529999997,0.1852717825,0.21913504180000004,0.256341046,0.30098422100000005,0.350434401,0.40659288700000007,0.467443992,0.531459673,0.5942470810000002,0.6629153320000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,transportation,3 coal,4.18988E-5,4.18985E-5,4.18984E-5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,transportation,4 biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,transportation,5 electricity,0.0,1.7009829999999998E-4,2.039978E-4,7.114635495E-4,0.001573594798,0.002346472907,0.0033571698679999993,0.004581351105,0.006082783842000001,0.007856831930000002,0.010238878270000001,0.01347093312,0.017647179020000008,0.022771117770000005,0.029545575229999992,0.037720163279999996,0.04750196960499999,0.058642719254,0.07099678648400001,0.08385391647,0.095883834258,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,transportation,6 hydrogen,0.0,0.0,0.0,0.0,2.6770412E-4,8.488825399999998E-4,0.00177838093,0.003036172359999999,0.004582977005999999,0.006392083510000001,0.00875784066,0.011650737559999997,0.0152871211,0.0195988467,0.025132867700000006,0.031569475500000006,0.0388942592,0.046763096000000004,0.054932362,0.0626720274,0.07026024640000002,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,transportation,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,transportation,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,building,1 liquids,0.24714139999999998,0.1732166,0.1214777,0.1352331,0.1526361,0.1675015,0.1765254,0.18301769999999998,0.1952531,0.2042676,0.2142596,0.21748289999999998,0.2203449,0.2175533,0.21457589999999999,0.2076196,0.198629,0.1889052,0.1802956,0.17153659999999998,0.1623831,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,building,2 gas,0.5517149,0.871065,0.860852,0.971917,1.07415,1.158339,1.226157,1.259751,1.3059610000000001,1.315151,1.320961,1.276659,1.232878,1.168248,1.115321,1.054167,1.0008640000000002,0.956604,0.920622,0.8955749999999999,0.862975,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,building,3 coal,0.9297528000000002,0.29515509999999995,0.395786,0.39633299,0.38351530999999994,0.36858638999999993,0.35017007999999994,0.33075912999999996,0.31481284,0.29351822000000005,0.27066454,0.24710132,0.22236519999999999,0.19660449,0.17229752999999998,0.14947247000000002,0.12866324,0.11091908,0.09646366,0.08527973,0.07661116000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,building,4 biomass,0.18079330000000002,0.4032788,0.4865389,0.4623635,0.48566379,0.48013844,0.46450162,0.42700541,0.36648771,0.31876655,0.27783021,0.2416672,0.20794926800000002,0.179017572,0.15200355299999999,0.12826584900000002,0.107285569,0.089604811,0.075338474,0.064012623,0.054148577999999996,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,building,5 electricity,0.4053528,0.6730073,0.7623021,0.91273944,1.0757678099999999,1.20516634,1.3587715,1.4955319,1.6708327,1.8124122000000003,1.9563177,2.0297324,2.0897369,2.0982415999999997,2.0982968,2.0590832,2.0052951,1.9432980999999998,1.8948887,1.8696679,1.8232849,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,building,6 hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,building,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,building,8 district heat,0.6968018,0.4931711,0.4878252,0.5076466,0.5105847,0.5196627,0.523977,0.5217674,0.5238121,0.5153124,0.5043611,0.4853297,0.46359530000000004,0.43562520000000005,0.40688702,0.37554247,0.34377519,0.31335019000000003,0.28774926999999995,0.26802448,0.24498456000000002,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,industry,1 liquids,1.1898275,0.89237042,0.7025773399999999,0.760755087,0.8181599900000001,0.866306985,0.8989306669999999,0.9251959391,0.9638898392,0.9970235653,1.0349683497000002,1.0559891573,1.0789820321999999,1.0918436154000002,1.1112395999999998,1.1232571,1.1368253,1.1512048000000001,1.1775962,1.2175915,1.2400225999999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,industry,2 gas,1.5291414,0.89348242,0.73652373,0.7599660100000001,0.8036822699999999,0.8274295300000001,0.8364284000000001,0.8323699000000001,0.82518642,0.80942902,0.7903352199999999,0.75990922,0.73301689,0.7085339900000001,0.6900698500000001,0.6735125,0.6650276500000001,0.6623102699999999,0.6640644000000001,0.6725741399999999,0.6742119500000002,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,industry,3 coal,1.8672813000000001,0.9568871000000001,0.7632927000000002,0.7940556999999999,0.8094583,0.8354912,0.8358739000000001,0.8296506,0.8330119,0.8295238,0.8309836,0.8193696,0.8083982,0.7871751,0.7704203,0.7484687000000001,0.7270064999999999,0.7057899000000001,0.6945636,0.6970469,0.6973543,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,industry,4 biomass,0.0631665,0.1629606,0.19644910000000002,0.2073387,0.23047340000000002,0.2451378,0.2546678,0.2538713,0.2441434,0.23690070000000002,0.2333737,0.2261396,0.2202119,0.21380709999999997,0.2086308,0.2021918,0.1958673,0.1893667,0.1855501,0.18517769999999997,0.1815305,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,industry,5 electricity,0.7759121,0.6411228,0.5702613000000001,0.6299387,0.6781879,0.697102,0.7314339,0.7596807,0.7963013999999999,0.8230916,0.8487587999999999,0.8571563,0.8646134999999999,0.8634437,0.8663319,0.8624715000000001,0.8598612999999999,0.8571304,0.8631667,0.882542,0.8880759,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,industry,6 hydrogen,0.0,0.0,0.0,0.0,6.34107E-4,0.001035958,0.0014838199999999998,0.001967734,0.002512717,0.0030927489999999997,0.003741661,0.003870995,0.004042612,0.00420981,0.00434502,0.00447657,0.004629100000000001,0.00478437,0.00502026,0.0053428699999999996,0.00531586,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,industry,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,industry,8 district heat,0.750089,0.318937,0.301512,0.31767,0.329351,0.342356,0.351735,0.356768,0.364178,0.367952,0.373446,0.372274,0.371942,0.368134,0.36647,0.362332,0.358981,0.355452,0.356325,0.363836,0.363948,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,transportation,1 liquids,1.1127674199999997,1.58671671,1.95276451,2.063390009,2.1569900560000006,2.1980921359999996,2.2432032530000003,2.2605201629999985,2.3359364709999997,2.3862281789999997,2.4496966990000004,2.5022194589999995,2.5836688540000017,2.636282048,2.7147992089999997,2.7661834700000005,2.817520801,2.8636131266,2.937778001099999,3.0514092913,3.121037947399999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,transportation,2 gas,2.9306526000000006E-4,0.001716241981,0.003683602396,0.022344911609,0.048482909749,0.08434951349379999,0.12624475191960002,0.17272692286999997,0.22272418432000002,0.27482144042,0.3445031781999999,0.39158735730000016,0.4446030929999999,0.492197744,0.5455130540000002,0.593910837,0.6440063349999998,0.6950422599999999,0.7573635320000001,0.8362557000000003,0.906913751,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,transportation,3 coal,0.00774369,2.09293E-4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,transportation,4 biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,transportation,5 electricity,0.05481289988,0.03924419995,0.0329016,0.036185890953000004,0.040259640101,0.044060233938,0.04854515680299999,0.053287325301400006,0.059353974110000006,0.06595170380000001,0.07457530093000002,0.08277273032000002,0.09269259675999998,0.1024050219,0.11438700939999999,0.12636907291000002,0.13959618386999995,0.15403015345999999,0.17167585163,0.19427198946000002,0.21059795235999995,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,transportation,6 hydrogen,0.0,0.0,0.0,0.0,5.674425999999999E-4,0.0019065132,0.0038647173,0.006444608670000001,0.009475053020000002,0.013174603370000001,0.017919600799999998,0.0228458224,0.0282710841,0.0333166196,0.0387299317,0.0436896249,0.0485867852,0.053562577,0.059010265199999995,0.06545526069999999,0.0694354167,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,transportation,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,transportation,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,building,1 liquids,3.514818,3.1240650000000003,2.567219,2.487598,2.510491,2.542412,2.496867,2.4611569999999996,2.445513,2.441254,2.434912,2.434005,2.425231,2.395559,2.348618,2.283001,2.197091,2.1038,2.013416,1.9122469999999998,1.7999109999999998,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,building,2 gas,4.076220500000001,6.4774638,6.419635799999999,6.50469172632,6.45899462177,6.444460539762001,6.365898459258,6.218254391261999,6.003023327038001,5.755430274799,5.476860227422001,5.182404189010999,4.897000155620001,4.626195128917,4.386015106334,4.1754470892168,4.0170520754227,3.9085120653922,3.8185180566422,3.7601970491712002,3.6574350437553,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,building,3 coal,1.0913161,0.13412570000000001,0.166614,0.16517824,0.15950989,0.1542888,0.14705527,0.1397521,0.13125598,0.12325871999999999,0.11484842,0.10719221000000001,0.09897233000000001,0.09077656999999999,0.08213143,0.07417562999999999,0.06650784,0.059903450000000004,0.05405569,0.049201751,0.045671078999999996,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,building,4 biomass,0.8571030000000001,0.9811536999999999,1.261439,1.1964748,1.2423606,1.2235437,1.1898055,1.1120158000000002,0.9648178000000001,0.8631215000000001,0.7772523,0.7071447000000001,0.6373098100000001,0.57910648,0.51545319,0.45857656,0.4026756000000001,0.35284876,0.30965391,0.27332705,0.24439207999999998,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,building,5 electricity,3.3000860000000003,4.7709209999999995,5.288907999999999,5.44769,5.753116,6.032068000000001,6.328594,6.607411000000001,6.86801,7.0940639999999995,7.296547,7.499286000000001,7.680242999999999,7.825252000000001,7.937683000000001,8.001806,8.033006,8.029233,8.047594,8.112198,8.0465956,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,building,6 hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,building,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,building,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,industry,1 liquids,5.894795099999999,6.3460536,5.5634467,5.6588806499999995,5.719846031000001,5.820240307000001,5.815654447999998,5.81644141,5.799641857,5.795852595999999,5.7746624826,5.798899674799999,5.808348341199999,5.8123148583,5.799511,5.784406,5.769608,5.772916,5.793392,5.831355,5.801416,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,industry,2 gas,3.7821637900000002,5.29568818,4.82271882,4.959281509999999,4.771037,4.682378290000001,4.502725239999999,4.273969060000001,3.9964281200000005,3.7232878300000007,3.4441049200000005,3.2111469599999998,3.0024084099999993,2.8211894099999997,2.67823337,2.56999473,2.51427929,2.5086942999999997,2.5149823000000002,2.54527885,2.5552592800000005,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,industry,3 coal,3.3663794,1.9464392,1.7209446000000002,1.8058071999999998,1.7612448999999997,1.7477715,1.7187459,1.6929773,1.6605154000000002,1.6282178999999999,1.591095,1.5724061,1.5443995,1.508081,1.4653986,1.4191004,1.3701284,1.3248687,1.2881932000000003,1.2698383999999998,1.2548101999999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,industry,4 biomass,0.682894,0.975345,1.2491425,1.289184,1.374372,1.42596,1.447165,1.418876,1.315969,1.2493100000000001,1.198573,1.1635490000000002,1.129182,1.0997190000000001,1.0659286,1.0294399,0.9894413000000001,0.9504937,0.9188044,0.8990232,0.8682679000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,industry,5 electricity,3.21347,3.8579847000000003,3.6044654,3.642146,3.687627,3.733211,3.807105,3.885967,3.9506710000000003,3.989139,3.9963509999999998,4.0588038,4.0992387,4.1334218,4.1490219,4.160087,4.1667751,4.1706011,4.1915192999999995,4.2440766000000005,4.2605396,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.1495095,0.2368208,0.3306177,0.43183900000000003,0.535336,0.646326,0.761474,0.790778,0.824365,0.862838,0.886526,0.913036,0.9402539999999999,0.969365,1.006963,1.054224,1.036958,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,industry,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,industry,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,transportation,1 liquids,11.88477438499,15.5463074349,14.879495818099999,14.955108027590004,14.944112841909998,14.721928401379998,14.421758176856004,14.052408548828994,13.815999647321,13.544531185121999,13.224735185769998,13.044892000793,12.908659640156001,12.781844736632001,12.669591706915998,12.536412895972001,12.408781581901,12.280981341856002,12.204528116199004,12.198498467693002,12.023403741111,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,transportation,2 gas,0.008706588599999999,0.0221433445,0.058225655700000004,0.140313968742,0.262432443092,0.447351026645,0.6339671050319999,0.8286018493819001,0.9680973092155998,1.1092733584131,1.2662895600486,1.3759886431817,1.479932372393,1.5758234949870005,1.665348495135,1.746298060717,1.8204762831669998,1.889987865566,1.964454328753,2.048504282888,2.106913959811,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,transportation,3 coal,8.37166E-4,8.36967E-5,4.60482E-4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,transportation,4 biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,transportation,5 electricity,0.16501863,0.20612039999999998,0.2055559,0.21271385902170004,0.22914273449580996,0.25128343933189007,0.27482618327293307,0.3011355229949899,0.32314124429718993,0.34857428484609,0.37643526831752,0.40801130631432997,0.4424038172274801,0.47915104894250005,0.5191828883817,0.5624204518034,0.6092079051296001,0.6603867818108997,0.7189722411405999,0.7887075957898,0.8332832833292999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,transportation,6 hydrogen,0.0,0.0,0.0,0.0,0.007415824730949999,0.024207521224329998,0.04509868466622,0.07002652386299,0.09118980156629003,0.11490937066891,0.13978020685229994,0.16516302496343999,0.19105622603288996,0.21663823445752997,0.24236060957343997,0.26749667456697,0.29202861228079996,0.31602042936630004,0.3407081565041,0.36739714460290007,0.3847887055034001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,transportation,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,transportation,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,building,1 liquids,0.32767999999999997,0.0815851,0.1169568,0.13004670000000002,0.1376686,0.14854479999999998,0.1549724,0.1615109,0.1703074,0.1799974,0.1908639,0.2002568,0.2083494,0.2129644,0.2155028,0.2143681,0.21087879999999998,0.2059706,0.199948,0.191913,0.18365969999999998,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,building,2 gas,0.4727254,0.6914017,0.6817742,0.78274968,0.7961484199999999,0.80940703,0.8160407300000001,0.81379627,0.8125487299999998,0.80670414,0.80144062,0.7902036,0.77714918,0.75855997,0.7410725699999999,0.71944968,0.69875264,0.6799659,0.66139097,0.64472132,0.62834872,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,building,3 coal,0.370461,0.07015729999999999,0.0408972,0.0362534,0.0324223,0.0297024,0.0269162,0.0243366,0.021887,0.01963142,0.01757561,0.01570903,0.013976889999999999,0.01227006,0.01070748,0.009241260000000001,0.00792894,0.00678431,0.00583673,0.005061899999999999,0.0044594100000000005,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,building,4 biomass,0.0228556,0.0411484,0.0728782,0.06369534,0.06402753,0.06076183,0.05692808,0.0509384,0.04287018000000001,0.03699261,0.03242149,0.028522060000000002,0.025194454999999998,0.02227221,0.019550477,0.016950256999999996,0.014466109000000001,0.01216118,0.010282852,0.008711377,0.007400614000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,building,5 electricity,0.117210499,0.21450207,0.255932339,0.326579837,0.360058924,0.38331586800000006,0.42044051,0.46228141,0.51835388,0.5743773400000001,0.63390761,0.6877499300000001,0.7366126100000001,0.77622148,0.80988931,0.83338717,0.84829282,0.85718392,0.8642826100000001,0.87422754,0.87782006,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,building,6 hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,building,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,building,8 district heat,0.7695724,0.4095267,0.35609419999999997,0.3675392,0.35110959999999997,0.34078699999999995,0.3291336,0.31423339999999994,0.2991544,0.28265700000000005,0.2665716,0.2495776,0.23337816,0.21692677000000002,0.20157145999999998,0.18608031,0.17146389,0.15765141000000002,0.14501936999999998,0.13356795000000002,0.1219846,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,industry,1 liquids,1.0898259000000001,0.2304388,0.27313619999999994,0.28801251,0.30213534,0.31898659,0.33127499,0.34542936999999996,0.36465119,0.38570713,0.40969721,0.43343561,0.45801934999999994,0.48079722999999996,0.5032149399999999,0.52287994,0.54117168,0.55881375,0.57756707,0.59660163,0.61161719,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,industry,2 gas,1.4035244000000002,0.9338967,0.7051748999999999,0.7531928,0.76433559,0.77968119,0.78901206,0.7911706299999999,0.7893436,0.7867393200000001,0.78344919,0.77895865,0.7752336,0.77022699,0.7679586199999999,0.7658346800000001,0.7704903500000001,0.78133032,0.79468418,0.81460198,0.8266609200000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,industry,3 coal,1.60298597,0.9294597,0.76335939,0.8058991400000001,0.80747396,0.82070198,0.8298871200000001,0.83883472,0.85078045,0.86228253,0.87734111,0.88932379,0.89982883,0.9028705300000001,0.90322821,0.8965216300000001,0.8873459,0.8764007500000001,0.8690290999999999,0.87081628,0.87408814,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,industry,4 biomass,0.0021767,0.009460300000000001,0.036962398,0.038549031,0.041574992,0.044018887,0.045806585,0.046092645,0.044369239,0.043551758,0.043445386999999995,0.043213792,0.043122008,0.043054405,0.042858302,0.042329161000000004,0.041636866,0.040776953,0.04010751,0.039811491000000004,0.039038373,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,industry,5 electricity,0.9016712,0.36485223,0.35591256,0.39508643,0.40656681,0.40073995,0.41069069999999996,0.4236896,0.44644269999999997,0.4657556,0.4839656,0.4975439,0.5098759,0.5193585999999999,0.5279869,0.5353527,0.5413003000000001,0.5472955,0.5554147700000001,0.56766622,0.5735229000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,industry,6 hydrogen,0.0,0.0,0.0,0.0,7.920830000000001E-4,0.0012784040000000001,0.001827829,0.002441609,0.0031181060000000003,0.003876505,0.004737689999999999,0.00502105,0.005363929999999999,0.0057372,0.00602805,0.00632248,0.00663296,0.00694116,0.007312829999999999,0.00774455,0.00767839,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,industry,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,industry,8 district heat,1.4268,0.611497,0.366962,0.385305,0.383489,0.388492,0.392226,0.39217,0.389604,0.385383,0.381688,0.374627,0.367999,0.360839,0.354649,0.347957,0.34384,0.341733,0.340508,0.341999,0.338737,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,transportation,1 liquids,0.66139176,0.31830357000000004,0.44644283,0.5502233700000001,0.5843677300000002,0.6117740529999998,0.6449722089999997,0.6788483799999998,0.7268294149999994,0.7768392039999998,0.8327185149999999,0.897229177,0.9661219354,1.0334564456000004,1.101994722,1.1659385640000004,1.2283223425,1.2922834055,1.3581723319499996,1.4312493410799998,1.4914836024100004,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,transportation,2 gas,0.0030971621,0.0053992359,0.0027623203,0.01094330156,0.019746414230000002,0.03193757244999999,0.0467386287,0.06367098890000002,0.0823207043,0.10244118549999999,0.12628837869999998,0.14861186890000005,0.1724045560000001,0.19645632709999997,0.221168618,0.24593542899999998,0.27159273100000003,0.29907178300000004,0.32873332000000005,0.36239107500000006,0.3945989390000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,transportation,3 coal,0.00339042,0.00251139,0.00150688,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,transportation,4 biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,transportation,5 electricity,0.0615388,0.0356149,0.0317076,0.04153515256999999,0.047339152579999995,0.052607324266999995,0.059173437667,0.06636512433800001,0.07533594908,0.08498083037999998,0.09619341715999999,0.10809502662999998,0.12107504440000001,0.1349662189999999,0.15064578728999997,0.16770034918999993,0.18683222545000003,0.20866845110999993,0.23379208885000005,0.26433463853999994,0.29206959087,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,transportation,6 hydrogen,0.0,0.0,0.0,0.0,2.4236161000000002E-4,8.2485483E-4,0.00175446149,0.0030685028200000005,0.0047718247,0.006942958369999998,0.009824747289999998,0.0134531049,0.0176023515,0.022160011700000003,0.027192951900000005,0.03253929,0.0382773958,0.0445401364,0.0513054397,0.058803495000000004,0.0649545748,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,transportation,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,transportation,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,building,1 liquids,0.17455621,0.17007719,0.1032687,0.1973976,0.2204803,0.2483366,0.2648051,0.278141,0.2933213,0.30628700000000003,0.3178672,0.3272939,0.3353039,0.3380337,0.3394664,0.3369034,0.3303137,0.3215315,0.3126016,0.30166889999999996,0.2881964,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,building,2 gas,0.0816269,0.3223216,0.3145365,0.6700346,0.7578702,0.8448093,0.909787,0.9505306,0.9760458000000001,0.9829777000000001,0.9786433999999999,0.9597132,0.9359120000000001,0.902373,0.8720802000000001,0.8391166,0.8091573999999999,0.7839956,0.7612512,0.7438968000000001,0.7161154999999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,building,3 coal,0.2178393,0.1388081,0.3130292,0.39262830000000004,0.39117193,0.38969429,0.37962785,0.36721592,0.35178579,0.3338281,0.31292802,0.29274466,0.27093961,0.24815947,0.22476433999999998,0.20256084,0.18069432000000002,0.16152675000000002,0.14489749,0.1314582,0.12194075000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,building,4 biomass,0.3855306,0.29917289999999996,0.27460159999999995,0.29767248999999996,0.31966589999999995,0.32492333,0.32297778,0.30600041,0.26984596000000005,0.24247115000000002,0.21896408,0.19797346000000002,0.17809643,0.16102612,0.14354723000000003,0.12739471000000002,0.11164081999999999,0.09753921,0.085522562,0.075710309,0.06771103900000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,building,5 electricity,0.1666106,0.38871759999999994,0.49538309999999997,0.9417884,1.1015529,1.2484861,1.3878381,1.5054278,1.6083599,1.6947082999999998,1.7734128,1.8425232999999999,1.8977388000000002,1.9372775999999998,1.9709324000000001,1.9851194,1.9892857,1.9851674999999998,1.9870967,2.0019534,1.984499,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,building,6 hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,building,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,building,8 district heat,0.021989,0.0230787,0.025238299999999998,0.03931751,0.04040614,0.04212307,0.04300523,0.042987010000000006,0.04220818,0.040778390000000005,0.038975289999999996,0.03696904,0.034888810000000006,0.0327574,0.03065564,0.028618719999999997,0.026665461999999997,0.024898360999999997,0.023329618,0.02210868,0.020651604,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,industry,1 liquids,0.61257837,0.5968394,0.6605515099999999,0.888133076,0.9631534199999999,1.041380849,1.0941147365000001,1.1411362256999997,1.1830850345000001,1.2204057389999998,1.2508623886999997,1.277693235,1.2977743061000004,1.3117764312199998,1.320646,1.3244291000000001,1.3254419,1.3274879999999998,1.3348769999999999,1.3484347,1.3452332,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,industry,2 gas,0.14119378,0.27539649,0.41689839999999995,0.6068845100000001,0.65633294,0.70008311,0.7268871399999999,0.7379219999999999,0.7361092,0.7265093499999999,0.7083405399999999,0.6848505599999999,0.6602141299999998,0.6341206100000001,0.61027258,0.58876987,0.57302568,0.56312969,0.5553960600000001,0.55208806,0.54190666,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,industry,3 coal,0.3951578,0.5029057,0.4900551,0.7107066499999999,0.75990402,0.80523308,0.8361137800000001,0.8621874500000001,0.88343363,0.89867512,0.90841247,0.91483418,0.9154750100000001,0.90761311,0.8947676,0.87726553,0.8550666800000001,0.83131551,0.8134164,0.806969,0.7988653,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,industry,4 biomass,0.0198223,0.0301546,0.0367114,0.043947023,0.048509569,0.05052732,0.05256081,0.0525695,0.04938323,0.04697524,0.044852369999999996,0.04277839,0.040676739999999996,0.03894528,0.03705049,0.035198679999999996,0.0333491,0.03158038,0.030172249999999998,0.029375019999999998,0.02812711,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,industry,5 electricity,0.2033621,0.29853250000000003,0.38256270000000003,0.5153591,0.5661934,0.601463,0.6344436,0.6597806,0.6753919,0.686431,0.6928258,0.6986218000000001,0.6986684999999999,0.6979732000000001,0.6938633,0.6869271,0.6800427,0.6738545,0.6718245,0.6760944,0.6709835,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,industry,6 hydrogen,0.0,0.0,0.0,0.0,6.823059E-4,0.001157987,0.001707241,0.0023345279999999998,0.003022902,0.0037851580000000003,0.004615652,0.00487921,0.00517148,0.0054785300000000006,0.00568839,0.00590854,0.0061199900000000005,0.00632201,0.00658661,0.006925260000000001,0.00682018,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,industry,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,industry,8 district heat,0.0179455,0.0518088,0.0556186,0.0823855,0.0885583,0.0951474,0.0999069,0.103131,0.104659,0.105264,0.105146,0.104334,0.103182,0.101728,0.100139,0.0984499,0.0969625,0.0957383,0.0950965,0.0956696,0.0943539,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,transportation,1 liquids,0.57466775,0.8779712999999999,0.95386852,1.5899333930000001,1.7547843589999996,1.8867513690000004,1.977428584,2.030845931999999,2.0600598629999993,2.0817758699999995,2.0889516930000007,2.1040625748999995,2.118522572800001,2.1222130795000007,2.1266577299999994,2.118506601100001,2.105028806999999,2.0867524718,2.0785052497,2.084517492300001,2.0542259026999994,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,transportation,2 gas,0.0,1.2569668999999996E-4,0.0028882340400000006,0.023612964790000003,0.04123485657999999,0.068261463945,0.10058302680100001,0.13649583589999997,0.1722645349,0.20605938099999999,0.24301509250000006,0.2763239326,0.3073595607000001,0.33561839399999993,0.362560823,0.386231483,0.4076606159999999,0.42714635700000003,0.448151199,0.4724968569999999,0.48847888000000017,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,transportation,3 coal,7.53474E-4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,transportation,4 biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,transportation,5 electricity,0.0047498098,0.004089939,0.0037967297,0.006619180655,0.0087665333,0.011661566929999999,0.015254582120000004,0.019486951949999998,0.024259869840000003,0.0292633457,0.03513974678,0.04185370603,0.04923561203000001,0.057104549729999995,0.06569959330000001,0.07478907092999997,0.08458346052,0.09520749225000003,0.10735658681000003,0.12174494740000001,0.13102445607,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,transportation,6 hydrogen,0.0,0.0,0.0,0.0,9.865164E-4,0.0031615222999999996,0.006348987099999998,0.010359977999999999,0.0149293204,0.019556505399999997,0.024759616000000005,0.030356853800000003,0.036100628,0.04173678700000001,0.04733226499999999,0.052688668999999994,0.057892317000000006,0.062927524,0.06819237500000001,0.073971624,0.07757784499999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,transportation,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,transportation,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,building,1 liquids,0.25459979,0.2119493,0.1942364,0.1458059,0.15253991,0.15588770999999998,0.15404749,0.15155265,0.1522175,0.15207942,0.15175836,0.15072577999999998,0.14904106,0.14631412,0.14317575000000002,0.13897488,0.13409453999999998,0.12906338,0.12395713000000001,0.11815676,0.11170863,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,building,2 gas,0.0405206,0.0704745,0.07877970000000001,0.06816305,0.07048207000000001,0.07123768999999999,0.07101851,0.0694101,0.06783597,0.06524631,0.062298519999999996,0.05870142,0.05510147000000001,0.051688729999999995,0.04875371,0.04607827,0.04406786,0.04264621,0.041342830000000004,0.04036975,0.038898970000000005,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,building,3 coal,0.0018718989999999998,0.0017874000000000002,4.0679999999999997E-4,3.7719819E-4,3.6852227000000004E-4,3.5245385000000004E-4,3.2868160000000003E-4,3.0418245E-4,2.8610337999999995E-4,2.6474473E-4,2.4151423E-4,2.18300585E-4,1.9512980200000002E-4,1.73911841E-4,1.53185735E-4,1.34839592E-4,1.1822971699999999E-4,1.04666302E-4,9.273876899999998E-5,8.2821024E-5,7.5882111E-5,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,building,4 biomass,0.052335099999999996,0.055011,0.06963760000000001,0.07267269500000001,0.0784345,0.07973792,0.07976667000000001,0.075902614,0.067533064,0.061170191,0.055471535,0.050247114999999995,0.04519055,0.041001611,0.036563474,0.032581583,0.028821291000000002,0.025570154,0.022707106999999997,0.020301159000000003,0.018330271000000002,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,building,5 electricity,0.31109322,0.34174506,0.36375479,0.33218774,0.35275443,0.37208485,0.39205086,0.41008971,0.42128811,0.43387881,0.44733174,0.46291519000000003,0.47622152000000006,0.4865027,0.49343299,0.49737884,0.49885338999999995,0.49830104,0.49767957000000007,0.49883046999999997,0.49321374,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,building,6 hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,building,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,building,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,industry,1 liquids,0.21590712999999997,0.22477619999999998,0.22737726,0.208772092,0.21893460899999997,0.22962214690000002,0.23602621359999998,0.24245255290000006,0.24917253736999997,0.25614517955,0.26283955216000005,0.27219187179,0.28086100801,0.28946422191,0.297203886,0.304739155,0.31218969599999996,0.32043076299999995,0.329209771,0.33882291,0.344354888,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,industry,2 gas,0.10917080100000001,0.230933504,0.232654903,0.21515325000000005,0.213842207,0.21107486599999997,0.20429693299999996,0.19487643500000001,0.18633764199999997,0.17570267899999994,0.164303051,0.15469999599999998,0.145397664,0.13728320900000002,0.13052113,0.12477541599999999,0.12101654199999999,0.11913889800000001,0.11745203599999998,0.11669414099999999,0.11524813799999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,industry,3 coal,0.050495029999999996,0.03998891,0.038732380000000004,0.0379691,0.03789817,0.0379148,0.03761664,0.03723055,0.037024669999999996,0.03651455,0.03584968,0.03552294,0.03495956,0.03427383,0.03347608,0.032599220000000005,0.03170097,0.030895450000000005,0.03024167,0.03000668,0.029819770000000002,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,industry,4 biomass,0.04076151,0.07529916,0.07674693999999999,0.06700259,0.07398634000000001,0.07660858000000001,0.07643525999999999,0.07301136,0.0683833,0.0642787,0.060927959999999996,0.0579962,0.05520393,0.05293304,0.050755829999999995,0.04846082,0.04613006000000001,0.043944960000000005,0.04204856,0.04066966,0.038983819999999995,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,industry,5 electricity,0.27421286,0.31001748999999995,0.30193238,0.31817563000000004,0.31436671,0.31998409,0.32817282,0.33721233,0.33636295,0.33842079999999997,0.33987851999999996,0.35056306,0.35923959000000005,0.36627504,0.37055033,0.37414675999999997,0.37666363999999997,0.37859404999999996,0.38107957,0.38540829,0.38648521999999996,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.01471418,0.02329196,0.03220416,0.04138,0.0515572,0.06182460000000001,0.0722313,0.07402059999999999,0.0760515,0.0785488,0.0797954,0.0811419,0.0825485,0.084118,0.08614920000000001,0.0887366,0.0862774,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,industry,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,industry,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,transportation,1 liquids,0.43711524500000004,0.520658647,0.547153511,0.49205786399999996,0.498631472,0.49432057299999993,0.48746527,0.4773647340000003,0.4724178510000002,0.4655079509999999,0.4582752120000001,0.4576097511000001,0.4576864150000001,0.457711369,0.45775976000000024,0.4566714039999999,0.45527149200000006,0.4533267099999998,0.45250853999999996,0.45362361799999995,0.4478236559999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,transportation,2 gas,0.0,5.02284704E-4,0.00301380219,0.005954693199999998,0.01070431205,0.0177840597,0.024823968634999992,0.03212790006999999,0.03723073258,0.04276626189,0.04901152256000001,0.053584127230000014,0.05800098925999999,0.06214708406,0.06598369309999999,0.06946742850000001,0.0726068959,0.07549042009999998,0.0783820308,0.08148469250000001,0.08366304770000002,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,transportation,3 coal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,transportation,4 biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,transportation,5 electricity,0.012997019999999998,0.01329472,0.01327883,0.012976259195000001,0.01388021012,0.014957618529999998,0.016054747313999997,0.017226915700999997,0.018134807460000003,0.01925827587,0.0205094787,0.021982425600000008,0.0235474663,0.02520358170000001,0.026973186799999993,0.028867880099999996,0.030895787199999997,0.03309614789999999,0.03557601490000001,0.038510844999999995,0.0403858744,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,transportation,6 hydrogen,0.0,0.0,0.0,0.0,2.6653019999999997E-4,8.605723E-4,0.0015829362999999997,0.0024490240900000002,0.003160882430000001,0.0040398006999999994,0.004983159800000001,0.005970007500000002,0.006987612,0.0080096924,0.009055070399999999,0.010086537500000003,0.011098739900000001,0.0120897477,0.0130914822,0.014150483199999998,0.0148584786,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,transportation,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,transportation,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,building,1 liquids,0.4600417,0.8832046,0.959934,1.30507,1.74096,2.29248,2.81479,3.36609,3.93375,4.49141,5.00544,5.46176,5.82143,6.05543,6.20569,6.23842,6.19677,6.0958,5.95566,5.73668,5.54314,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,building,2 gas,0.0017163,0.0025953,0.0010046,0.0014394,0.00189502,0.00245876,0.00303896,0.0036038,0.00409511,0.00450666,0.00481615,0.00500722,0.00508245,0.00505567,0.00498572,0.00485506,0.00473297,0.00461964,0.00449278,0.00436516,0.00423979,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,building,3 coal,0.446688,0.391768,0.576203,0.7776449999999999,0.9519070000000001,1.148041,1.281905,1.3694089999999999,1.408757,1.3982320000000001,1.3499050000000001,1.2803200000000001,1.192646,1.088846,0.9874946,0.8808750000000001,0.7788303,0.6831485,0.5964632999999999,0.5199216,0.46195830000000004,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,building,4 biomass,0.197244,0.251118,0.268741,0.349144,0.45984,0.562961,0.628685,0.642713,0.595571,0.547105,0.497138,0.443659,0.392714,0.345415,0.302097,0.260167,0.221944,0.187025,0.156613,0.130349,0.108482,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,building,5 electricity,0.184944475,0.57539058,0.85964419,1.35061856,2.0537628000000003,2.98579684,4.238423,5.780342399999999,7.560266299999999,9.502651100000001,11.5444081,13.6700077,15.726054900000001,17.660215,19.500111000000004,21.120112,22.505161,23.660495,24.688575,25.611966000000002,26.341822,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,building,6 hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,building,7 trad biomass,4.4472504,5.21060866,5.57558156,5.04559128,4.33170261,3.69460743,3.06687621,2.50131649,2.00080132,1.57828539,1.22628383,0.93527026,0.7059924900000001,0.5238743469999999,0.388165138,0.283796667,0.206195552,0.14837155300000002,0.105739522,0.07511277499999999,0.054471933,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,building,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,industry,1 liquids,0.7228806999999999,2.0383724,2.24164569,2.8447445000000005,3.7347378000000004,4.827765599999999,5.903888930000001,7.0330714799999985,8.288412090000001,9.543554762,10.74847144,11.86161769,12.838391339999998,13.723287789999999,14.5383136,15.2065099,15.7659241,16.203685099999998,16.618647300000003,16.9792314,17.2955612,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,industry,2 gas,0.2956998,0.7698883999999999,1.01945869,1.5343244000000005,2.0046116,2.5421606,3.1305652,3.7534618999999996,4.264044799999999,4.724489200000001,5.110755100000001,5.396754500000001,5.5986736,5.7571808,5.8953063,5.997250700000001,6.115968799999999,6.2396218,6.364526199999999,6.5222654,6.6409248000000005,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,industry,3 coal,1.515456,1.9327159999999999,2.890781,4.32318,5.4886,6.81628,8.08629,9.36141,10.55517,11.60217,12.475639999999999,13.1441,13.58373,13.83681,13.97109,13.920300000000001,13.77389,13.51361,13.255669999999999,13.06298,12.961509999999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,industry,4 biomass,0.94205929,1.1423207,1.2223073,1.4907393999999998,2.0073497,2.5629082999999997,3.1020503,3.5552549,3.8119785999999998,4.0403055,4.2259021,4.3271546,4.3625099,4.3724444,4.3471212,4.268390500000001,4.159358299999999,4.0131754,3.8719463,3.7522043999999997,3.6249987,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,industry,5 electricity,0.5576199,1.0825294,1.5689967,2.2648740000000003,3.079891,3.966932,5.070835000000001,6.306534,7.599074,8.874922,10.06564,11.13218,12.034604999999999,12.826494,13.534423,14.129802000000002,14.609196,14.985363,15.353545,15.770256999999999,16.046336,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.00452139,0.00915902,0.01565546,0.02433749,0.03503105,0.047757400000000005,0.0622593,0.0691073,0.0758065,0.0826509,0.0879871,0.0928988,0.0977323,0.1019013,0.1065603,0.11149230000000002,0.11046,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,industry,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,industry,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,transportation,1 liquids,1.1069142999999997,1.5296741999999999,2.4980453000000002,3.1335447899999993,3.8624212499999997,4.680998549999998,5.529692816000001,6.4550717499999966,7.434123585999999,8.492671870000002,9.6048843,10.992819310000005,12.501663630000001,14.133758210000005,15.901574009999997,17.729921220000016,19.604384260000003,21.495173610000005,23.497621989999992,25.55047149999999,27.397201370000005,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,transportation,2 gas,0.0,0.02762464,0.09630910000000001,0.161295557,0.25658630899999996,0.39966436699999996,0.598431357,0.8615825579999996,1.1851255490000001,1.5631497799999998,2.0393569989999993,2.4843191169999996,2.9556987419999983,3.4484962469999996,3.9623157099999995,4.49401523,5.060097050000001,5.672483049999999,6.371946300000001,7.180153200000002,8.021842379999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,transportation,3 coal,0.101546,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,transportation,4 biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,transportation,5 electricity,0.01472184,0.0357306,0.0466132,0.056452236647,0.067349874411,0.079272160312,0.092646552242,0.10779024105839997,0.12451932772999996,0.14314998506999993,0.1639631416,0.18702614693,0.21180625549999998,0.23861337910000008,0.26829877260000007,0.30044560840000006,0.3356407368999999,0.3747635716,0.42158183399999993,0.47843562300000003,0.5317601989999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,transportation,6 hydrogen,0.0,0.0,0.0,0.0,8.703854E-5,3.3616388999999997E-4,7.791133E-4,0.001536731593,0.0026539621130000006,0.00435266682,0.006816691749999999,0.010654466550000003,0.015425241060000002,0.02146539802,0.029294388400000003,0.0387819139,0.0501089937,0.0636777154,0.0799613128,0.09849777469999997,0.11487607210000002,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,transportation,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,transportation,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,building,1 liquids,0.2814667,0.4546411,0.3158761,0.5530027,0.816548,1.145795,1.4704270000000002,1.788084,2.101247,2.396264,2.654778,2.895781,3.093399,3.2373439999999998,3.320221,3.3553710000000003,3.3292930000000003,3.266241,3.162382,3.0078250000000004,2.8900710000000003,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,building,2 gas,7.53498E-4,0.0018836999999999999,0.0063208,0.01144498,0.016218450000000002,0.02251599,0.029363919999999998,0.0362141,0.04275325,0.04893584,0.05423125,0.05876327,0.062040450000000004,0.06400006,0.06448290000000001,0.06407886,0.06291407,0.061467310000000004,0.05916823,0.05629493,0.05397773,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,building,3 coal,0.0,4.19E-5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,building,4 biomass,0.042697189999999996,0.0251997,0.0225625,0.0277048,0.032650200000000004,0.0354243,0.036863099999999996,0.0357047,0.0318843,0.0285669,0.02556728,0.022555770000000003,0.01979152,0.01728733,0.015051720000000001,0.01291183,0.01097459,0.00920499,0.007712480000000001,0.00644979,0.00545078,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,building,5 electricity,0.04948782,0.2339792,0.34830839999999996,0.6131141,0.877668,1.207623,1.603005,2.0356750000000003,2.500224,2.974521,3.431124,3.882829,4.279937,4.619388000000001,4.859725,5.035391,5.1157710000000005,5.1369050000000005,5.089332,5.004389,4.9107579999999995,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,building,6 hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,building,7 trad biomass,1.41181,1.78826,1.93778,1.72233,1.47546,1.228,1.01244,0.823544,0.66029,0.519872,0.405506,0.310359,0.236695,0.17868,0.13716,0.103764,0.078689,0.0589414,0.0442735,0.0331929,0.0255365,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,building,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,industry,1 liquids,0.4106464799999999,0.7316704,0.7715635000000001,1.1134812,1.4799849,1.8791235999999998,2.2238393,2.5408355,2.8421825,3.1343089,3.4062849,3.6675771,3.8988354,4.101539600000001,4.2646974,4.3977031,4.4911834,4.5587325,4.597511600000001,4.5937989,4.6071979999999995,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,industry,2 gas,0.56046308,0.9859714100000001,1.0291714,1.5493608,1.9414932,2.3364247,2.6769681999999997,2.9326520999999994,3.1019790999999994,3.2154622999999996,3.26994756,3.2805832500000003,3.2543501599999995,3.2078169999999995,3.1453868200000006,3.07917154,3.0266842700000005,2.98986927,2.94071167,2.89252719,2.8497859899999995,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,industry,3 coal,0.0896639,0.349156,0.538446,0.8751399999999999,1.1016569999999999,1.3251330000000001,1.520176,1.684446,1.823166,1.937233,2.026195,2.097977,2.143518,2.161815,2.1546119999999997,2.128398,2.081191,2.019657,1.954816,1.895296,1.86245,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,industry,4 biomass,0.366359198,0.29419201,0.29268510000000003,0.46168326,0.62799312,0.79036684,0.93903366,1.04477174,1.09130377,1.13669747,1.17719066,1.2074871999999999,1.22666004,1.23984596,1.23799473,1.22611297,1.20010229,1.16379372,1.12585395,1.09066458,1.0595730499999998,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,industry,5 electricity,0.052332260000000005,0.1537673,0.1843889,0.3080524,0.4141781,0.5205245000000001,0.6404388999999999,0.7578805999999999,0.8691205,0.9705231999999999,1.0572198,1.1319215,1.1910356,1.2391243,1.2712368,1.2960251,1.3091626,1.3157424999999998,1.3157056,1.3145518,1.2993123,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.00459824,0.00893426,0.014594039999999999,0.021451030000000003,0.029342240000000002,0.03841093,0.0485119,0.0528437,0.0573186,0.0619127,0.0651994,0.0684211,0.07121,0.0734464,0.0757695,0.0779649,0.0765682,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,industry,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,industry,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,transportation,1 liquids,0.4973025299999999,1.1106036400000001,1.5672106600000002,2.1689737200000003,2.68649184,3.2647700700000004,3.8583017979999994,4.472269904999999,5.092803029,5.7274566429999965,6.335889329999999,7.077587739999999,7.806538810000001,8.519773499999998,9.131765040000003,9.71592457,10.201955710000002,10.662961969999998,11.056487900000004,11.39221394,11.653140749999997,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,transportation,2 gas,0.0,2.0917818E-4,4.1865607E-4,0.03242628868,0.08023825997,0.15510884911999998,0.25857324718,0.39591860879999996,0.5651716102999998,0.770357127,1.0237648397,1.2877266799999996,1.562851219,1.8471166579999996,2.117656679,2.393839089,2.663181144000001,2.948823144,3.2402390709999995,3.5534817860000008,3.854984349999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,transportation,3 coal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,transportation,4 biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,transportation,5 electricity,0.0,0.0,0.0,8.8106342E-5,6.354646970000001E-4,0.001335386726,0.0024235653969999996,0.004042746883,0.006324122035,0.009449230319999998,0.013620367599999997,0.01913369036,0.025808319329999996,0.03383699264,0.043093724800000004,0.053893565799999994,0.0660576323,0.0802193577,0.0962352721,0.11427538719999998,0.1280131732,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,transportation,6 hydrogen,0.0,0.0,0.0,0.0,1.5270835E-4,5.9206804E-4,0.00138879098,0.0027215928599999997,0.004688806846,0.007588983789999999,0.011683712550000001,0.017673276699999997,0.02442329342,0.0318972504,0.039655381999999996,0.04781759559999999,0.0559728516,0.0647218561,0.07346427850000001,0.08168563119999998,0.0876846379,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,transportation,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,transportation,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,building,1 liquids,1.526862,1.7262730000000002,1.2785410000000001,1.129803,1.0602,1.08527,1.0793679999999999,1.073502,1.0655960000000002,1.058748,1.051424,1.04075,1.0290810000000001,1.0088409999999999,0.98424,0.953165,0.916998,0.8794270000000001,0.84279,0.80549,0.765678,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,building,2 gas,0.4780083,0.9357639999999999,1.120498,1.023761,1.031544,1.048568,1.053207,1.042366,1.005936,0.962952,0.916201,0.862125,0.8097080000000001,0.7566917,0.7074939,0.6612552,0.6221698,0.5901044,0.5612299000000001,0.5392449,0.5130352,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,building,3 coal,0.0410149,0.0231682,0.0213486,0.0211581,0.0214136,0.0206863,0.0200832,0.0193634,0.0185314,0.0175512,0.0165301,0.0154443,0.014321,0.0131316,0.011957,0.0108183,0.0097278,0.00873366,0.0079106,0.00732604,0.0068125,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,building,4 biomass,0.0041988,9.693E-4,7.974E-4,7.35437E-4,8.15276E-4,8.27717E-4,8.33221E-4,7.92382E-4,6.94651E-4,6.23357E-4,5.65721E-4,5.11439E-4,4.63811E-4,4.22045E-4,3.82825E-4,3.45786E-4,3.10211E-4,2.77743E-4,2.50612E-4,2.30269E-4,2.07368E-4,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,building,5 electricity,1.4177565,2.2208717,2.3330016,2.6086169000000003,2.7108261000000002,2.7183531000000003,2.7461319,2.7641150999999997,2.8046695999999995,2.8264758,2.8382088999999997,2.8307355000000003,2.807887,2.7730904,2.7246093,2.6638631000000004,2.5972356000000003,2.5290948,2.4694048000000004,2.4300572000000003,2.3679832000000003,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,building,6 hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,building,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,building,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,industry,1 liquids,3.4373119,3.3297011000000003,2.836253,2.722162,2.6446278999999997,2.6727890000000003,2.669648,2.6660155,2.6680433000000003,2.6688668,2.6709293,2.6667603,2.6603902,2.6483165,2.6306111,2.6055786999999997,2.5794765,2.5572232999999995,2.5408114,2.5322301,2.5081550000000004,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,industry,2 gas,0.1692301,0.3262731,0.4310851,0.4269678,0.42649279,0.42893123000000005,0.42791374000000004,0.42161114999999993,0.40828177,0.3929548,0.376344295,0.358995246,0.342577484,0.3270389550000001,0.31333265200000004,0.3009421250000001,0.29253565800000003,0.2875194260000001,0.283092071,0.28124825900000006,0.277752628,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,industry,3 coal,2.1460001,2.0289324,1.9999818,1.9253567999999999,1.9151494,1.9202317999999998,1.9186442000000001,1.913121,1.8953219,1.8720913000000001,1.8484295,1.8211266,1.7915807000000001,1.7530368,1.7102439999999999,1.6616932,1.6117789999999999,1.563184,1.5232828,1.5042454,1.4910006999999998,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,industry,4 biomass,0.107288,0.108003,0.114363,0.105047,0.111352,0.115569,0.118765,0.118426,0.112824,0.108869,0.106079,0.103162,0.100604,0.0983705,0.0959197,0.0932157,0.0903298,0.0873867,0.0849533,0.0836465,0.0817502,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,industry,5 electricity,1.2285506,1.2428390999999999,1.2170935,1.4542939,1.4947196999999999,1.4507053,1.4347078,1.4173447,1.4301356,1.4354301999999999,1.4374155999999998,1.4324678,1.4234935000000002,1.4158392,1.4049196,1.3929717,1.3835595,1.377408,1.3766577000000002,1.3864459,1.3813766,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.001757446,0.002817448,0.003995394,0.005290296,0.0066194900000000004,0.00804704,0.00958292,0.00991555,0.01034174,0.0108135,0.01110702,0.01142336,0.01175495,0.01208602,0.01251243,0.01308027,0.012912360000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,industry,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,industry,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,transportation,1 liquids,3.347624,4.0051274,3.5703535800000004,3.54300609,3.43897437,3.295757390000001,3.1967090250000005,3.1134432700000003,3.1122157500000003,3.0939766399999997,3.0886492500000013,3.0532204899999993,3.02289019,2.9974867300000008,2.973572250000001,2.9440497100000003,2.92108509,2.8959085200000008,2.8791923899999996,2.876322770000001,2.8662035500000003,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,transportation,2 gas,0.0,0.0,0.0,0.025859031,0.058632633,0.10233436300000001,0.14870234999999998,0.198654526,0.24184510199999998,0.2862167749999999,0.34550726999999987,0.378623544,0.41077084199999997,0.4417226799999999,0.4714220899999999,0.49849418,0.5243184200000001,0.5483760700000002,0.5737999500000001,0.60175424,0.6284726399999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,transportation,3 coal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,transportation,4 biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,transportation,5 electricity,0.060527974,0.068607672,0.069446673,0.06967697550000002,0.07091246179999998,0.07238865499999997,0.0742226818,0.07630038936000001,0.07808037109999996,0.08012045159999996,0.08253723600000001,0.08506122300000002,0.087859463,0.090804075,0.09404684800000002,0.09755622599999998,0.101417074,0.105856993,0.11121521300000001,0.118111722,0.12203797200000004,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,transportation,6 hydrogen,0.0,0.0,0.0,0.0,0.0011845623,0.0038806276,0.007249313999999999,0.0112415062,0.014695809700000001,0.018530329300000002,0.022599554400000003,0.026591126399999998,0.030609200899999998,0.034504769000000005,0.038303712000000004,0.041891632,0.045256051000000005,0.04844902499999999,0.05160099199999999,0.05498348000000001,0.057363423,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,transportation,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,transportation,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,building,1 liquids,0.29774939999999994,0.352377,0.3386892,0.3321144,0.3244552,0.35807900000000004,0.3909625,0.4230221,0.4651828,0.5100319999999999,0.5686734,0.6254779,0.6980533,0.7776021000000001,0.8757771999999999,0.9752571,1.07404,1.1621602,1.2304591999999999,1.2606071,1.3084288000000002,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,building,2 gas,0.0339066,0.0380508,0.0404367,0.03276427,0.03729432,0.04083631,0.04504546,0.0486599,0.05250764,0.05607102,0.060725169999999995,0.06441592,0.06943121000000001,0.07501678,0.08251109999999999,0.090206061,0.09866336299999999,0.10693525300000001,0.113540932,0.117821707,0.12323200599999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,building,3 coal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,building,4 biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,building,5 electricity,0.13416608,0.264536,0.2992663,0.27453989999999995,0.3313987,0.38363519999999995,0.450561,0.5201817,0.6052246000000001,0.6952075,0.8133419,0.9343671,1.0884931999999998,1.2704746,1.5037481000000001,1.7715528999999999,2.0772328,2.3979774000000003,2.7090309,2.9838385,3.2688837,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,building,6 hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,building,7 trad biomass,0.27636,0.266313,0.259741,0.261532,0.272057,0.264377,0.25582099999999997,0.246735,0.23486400000000002,0.222331,0.206565,0.1912814,0.173589,0.1551389,0.13524819999999999,0.1158044,0.0969001,0.0797267,0.0650375,0.0533839,0.0441511,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,building,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,industry,1 liquids,0.6548573,0.7202426,0.621747,0.6903955,0.6901032,0.7730853999999999,0.8548036,0.9399141,1.0457934,1.1574255,1.2909413,1.4251547000000002,1.578568,1.7404460000000002,1.923223,2.104961,2.2852230000000002,2.461703,2.626961,2.756134,2.913211,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,industry,2 gas,0.7903174000000001,0.7277781,1.0076536999999999,0.9220593499999999,1.0352604499999998,1.12849368,1.2307732099999997,1.3158803800000003,1.3990059000000001,1.46862604,1.5457459199999997,1.6018518800000001,1.6666328600000004,1.7322043299999998,1.8147363800000005,1.89294704,1.9825073300000002,2.08065102,2.1676744299999995,2.24178057,2.336583760000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,industry,3 coal,0.0712458,0.0655946,0.0827154,0.08021249999999999,0.0907026,0.0976659,0.1057868,0.1139046,0.12346750000000001,0.13241250000000002,0.1426852,0.1522845,0.16261420000000001,0.1723496,0.1828376,0.1919847,0.19967619999999997,0.20551180000000002,0.210506,0.2151012,0.2239336,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,industry,4 biomass,0.08162710000000001,0.058059799999999995,0.0428646,0.0415353,0.0509054,0.0568693,0.0635371,0.06827369999999999,0.0705511,0.0735064,0.0778375,0.0816564,0.0861214,0.0910293,0.09632009999999999,0.1009808,0.10476869999999999,0.10735610000000001,0.1095081,0.1113306,0.1136641,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,industry,5 electricity,0.2051789,0.419459,0.4628484,0.4693024,0.5488069999999999,0.6145872,0.6942322,0.772749,0.8620684,0.9482400999999999,1.0484533999999999,1.1433702000000001,1.2481431,1.3570176999999999,1.4763769,1.6003767,1.7259963,1.8512060000000001,1.9705145000000002,2.0763872,2.1803876000000004,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.002133867,0.003681276,0.00566169,0.00808752,0.0111032,0.01473567,0.019310420000000002,0.02181318,0.024932680000000002,0.028537939999999998,0.03223271,0.0361307,0.0401353,0.044042200000000004,0.0481903,0.0522069,0.05441460000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,industry,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,industry,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,transportation,1 liquids,1.2913929498999999,2.0116369730000003,2.3119429410000003,2.2122685120000005,2.279475577000001,2.364950586000001,2.479581870999999,2.580399136,2.728228392399999,2.853488911000001,2.9969196730000007,3.166110950000001,3.3915165219000016,3.6524759523000006,3.997846622899999,4.3823388223999995,4.807428311399999,5.235623666300001,5.646176894100001,5.981865223499998,6.333672664400001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,transportation,2 gas,0.0,6.697205999999999E-4,5.022403E-4,0.018885114300000002,0.056245832,0.11478333299999999,0.19250955963999994,0.2895722813,0.4026375991,0.5318562939,0.7167608527000002,0.8461152659999998,0.9982458370000001,1.1653297100000006,1.36310503,1.5837251599999997,1.8367506099999997,2.1155027399999997,2.41606796,2.7196887000000003,3.06054667,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,transportation,3 coal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,transportation,4 biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,transportation,5 electricity,0.002738878,0.00393267,0.0042794700000000005,0.006146985386,0.01097005267,0.015157485760000006,0.020021725349999995,0.025537179212000004,0.031518690829999994,0.038757041939999994,0.04852779109999998,0.06121163460000001,0.0771361823,0.0963606974,0.1219135216,0.15250519592000003,0.18869659485999996,0.22964052595000006,0.27500799755,0.32241558601,0.36714275178,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,transportation,6 hydrogen,0.0,0.0,0.0,0.0,0.0011309169,0.0039890868,0.0079529766,0.013112530509999998,0.018499036570000002,0.025287835800000002,0.0342006921,0.0446534116,0.057394712800000004,0.0722984095,0.09169383850000001,0.11421835389999999,0.139627448,0.16688602899999996,0.19536125199999999,0.22257359900000004,0.249320611,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,transportation,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,transportation,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,building,1 liquids,0.8066001999999999,1.2065308,0.9912865,1.152271,1.2022855,1.3111828,1.3829419,1.4465299,1.5357971,1.6278318999999999,1.7325656999999999,1.8296163000000003,1.9385111,2.0285546,2.1259635,2.1946057,2.2421007,2.2576884,2.2562545,2.2181545,2.2269631,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,building,2 gas,0.14357978999999998,1.2777344,1.6716381999999999,1.7930895999999998,1.9264606,2.0055658,2.077493,2.1182841,2.150932,2.1689624,2.1844533999999998,2.1753112999999997,2.1693569000000004,2.1485735,2.138963,2.1152881999999997,2.0975174,2.075806,2.0482026,2.01921165,2.0245585,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,building,3 coal,0.0,3.767E-4,3.767E-4,3.88206E-4,3.97721E-4,3.91545E-4,3.82057E-4,3.70452E-4,3.57297E-4,3.44162E-4,3.29916E-4,3.18011E-4,3.03841E-4,2.87702E-4,2.69023E-4,2.49259E-4,2.27127E-4,2.05451E-4,1.85724E-4,1.69349E-4,1.60325E-4,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,building,4 biomass,0.0152789,0.026622899999999998,0.0221021,0.02250874,0.0253104,0.026105580000000003,0.026489409999999998,0.02566585,0.02344628,0.022005939999999998,0.02094329,0.02001857,0.01915604,0.01838521,0.01748052,0.01645059,0.015210270000000001,0.01388566,0.01262269,0.01148624,0.01060639,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,building,5 electricity,0.5163690000000001,1.3263669999999999,1.936499,2.254816,2.633925,3.04176,3.490002,3.942975,4.431078,4.88926,5.3518110000000005,5.753691,6.1592199999999995,6.524789,6.899699,7.228888,7.562581,7.8519380000000005,8.115888,8.350380999999999,8.573014999999998,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,building,6 hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,building,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,building,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,industry,1 liquids,1.592816,2.8579470000000002,3.3534040000000003,3.8924709999999996,4.125868,4.522856000000001,4.853332999999999,5.190142,5.570781,5.957297,6.354012,6.745829,7.133553,7.486276999999999,7.821465,8.100062,8.331479999999999,8.509879,8.653693,8.728994,8.863287000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,industry,2 gas,1.2614097,3.0656559999999997,4.911979999999999,5.4512417,6.0476899,6.4838183,6.910097800000001,7.2460443,7.507690799999999,7.7039094,7.85518835,7.935639219999999,7.994271639999998,8.02059327,8.0591738,8.07156725,8.12585189,8.202186990000001,8.259714579999999,8.3338506,8.464993179999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,industry,3 coal,0.0249486,0.0627063,0.0788642,0.0877506,0.097521,0.105164,0.112911,0.120485,0.128674,0.136558,0.14472,0.152876,0.160834,0.167422,0.173504,0.177897,0.180657,0.181568,0.182419,0.184082,0.189915,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,industry,4 biomass,0.0045627,0.0030558,0.0032232,0.00355544,0.0042191,0.00469554,0.00517679,0.00551406,0.00565662,0.00585682,0.00611597,0.00636618,0.00662676,0.00688261,0.00711815,0.00729052,0.00738837,0.00740029,0.00741139,0.00745154,0.00756707,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,industry,5 electricity,0.1850514,0.450775,0.6261705999999999,0.761026,0.9354874,1.1379107,1.375562,1.632185,1.89952,2.1534169999999997,2.3945990000000004,2.614019,2.8188969999999998,3.009806,3.1804360000000003,3.345204,3.51005,3.6711780000000003,3.833631,3.999176,4.110364,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.01206014,0.020383449999999997,0.03059,0.0427343,0.0571478,0.0742514,0.09453399999999999,0.104595,0.1165191,0.129617,0.14150590000000002,0.1537093,0.165583,0.17619669999999998,0.1879886,0.20055879999999998,0.20614680000000002,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,industry,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,industry,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,transportation,1 liquids,3.1603038000000003,5.2676101,6.7368046,7.548564650000001,8.24704518,8.963373470000004,9.64269463,10.261509740000001,10.92237803,11.51797317,12.069794980000005,12.773514660000004,13.53652514,14.231829900000006,15.034500640000001,15.760921409999998,16.51989015000001,17.19926971,17.863564829999998,18.44743031,19.029150149999996,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,transportation,2 gas,0.0,0.010798614,0.19621490000000003,0.252280176,0.3234092417,0.43712176780000006,0.5943112133,0.7974867336,1.0420699726999998,1.3213070396,1.6834330416000007,1.9947916580000005,2.3302144040000003,2.660943182999999,3.017796175,3.3677565510000007,3.740181558,4.110909691000001,4.503073949999998,4.904549800000001,5.32654833,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,transportation,3 coal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,transportation,4 biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,transportation,5 electricity,0.0,3.774E-4,0.0011005,0.0032413353000000002,0.007752967800000001,0.014653520400000002,0.023735527200000002,0.03570719852,0.04966264199999999,0.06727810810000001,0.08961772800000002,0.11963958399999997,0.154701332,0.194190639,0.24495808399999996,0.303732282,0.37487813,0.45612078999999994,0.5518072700000001,0.6612954,0.7579507900000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,transportation,6 hydrogen,0.0,0.0,0.0,0.0,0.004438664,0.01530356,0.030996436999999998,0.0524779694,0.0760179845,0.10464064999999997,0.139079773,0.18546444899999995,0.23672575900000004,0.290018801,0.354401872,0.42205744,0.4966533200000002,0.57263167,0.6533153399999999,0.73502641,0.81275371,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,transportation,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,transportation,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,building,1 liquids,0.0619528,0.0394321,0.0559668,0.08430112000000001,0.09427845,0.1167668,0.1435706,0.1775335,0.2223834,0.2802485,0.3508635,0.4386975,0.5401244000000001,0.6527316999999999,0.7686968,0.885699,0.9862617,1.0725487,1.1348329,1.1652801,1.1874629,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,building,2 gas,0.07363178,0.1864444,0.25002939,0.39858012000000004,0.4710447,0.5662072,0.6843794000000001,0.8164413,0.9653503,1.1330538,1.3100559999999999,1.4961483,1.6788193999999999,1.8536467,2.0155097,2.1655045,2.2921359000000003,2.4082857,2.4859025,2.5327739,2.5653610000000002,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,building,3 coal,1.256E-4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,building,4 biomass,0.004479,0.0073255,0.0079953,0.00926016,0.010941,0.0120716,0.0128623,0.0128008,0.0118702,0.0110887,0.010343,0.00946562,0.00854921,0.00762031,0.00673655,0.00586418,0.00505169,0.00429983,0.00365249,0.00309104,0.00262308,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,building,5 electricity,0.04819869,0.1434035,0.16888090000000003,0.3135346,0.3934446,0.5040651,0.6530855999999999,0.8449367,1.0814268999999999,1.363727,1.686407,2.05904,2.46605,2.915805,3.379187,3.86387,4.314482999999999,4.740591,5.1132480000000005,5.436897,5.7410890000000006,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,building,6 hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,building,7 trad biomass,0.6844110000000001,0.9536132,1.0434866,0.8339449,0.7954936,0.7284446,0.6408773,0.5465397000000001,0.45868634,0.37619438,0.30356936,0.23811633,0.18330419,0.13727665,0.10284668,0.07573887,0.055775396,0.040656658000000005,0.029660330999999998,0.021508585,0.015943706000000002,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,building,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,industry,1 liquids,0.07430152000000001,0.1009245,0.0730875,0.1283445,0.15202400000000002,0.19875549999999997,0.2538978,0.3227988,0.40995430000000005,0.5142137,0.6311956,0.7590907,0.8872508,1.0096843,1.1276119,1.240661,1.3395981000000001,1.4267991999999998,1.5018960000000001,1.5588346999999998,1.6205686,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,industry,2 gas,0.17790501,0.4387343,0.45493481,0.7503247000000001,0.9245712,1.1624198,1.4626620000000001,1.817047,2.2213282,2.6682352300000005,3.12462518,3.5631305799999997,3.9556596400000004,4.2953223199999995,4.60537806,4.89711929,5.1768167,5.454866590000001,5.6952174499999995,5.92562319,6.150916299999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,industry,3 coal,0.08292469999999999,0.14734719999999998,0.1689471,0.292115,0.351178,0.423742,0.509852,0.6077220000000001,0.7188950000000001,0.837923,0.9584109999999999,1.076784,1.1813500000000001,1.265759,1.334596,1.3885640000000001,1.422459,1.439551,1.445907,1.450095,1.46718,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,industry,4 biomass,0.096696602,0.1420315,0.15542609999999998,0.25532498,0.33412792,0.43115062,0.55070459,0.67544435,0.7905235599999999,0.92125245,1.05801015,1.18767134,1.2980451899999998,1.38747485,1.4564251700000002,1.50635211,1.5295099,1.5294967800000001,1.5177408300000002,1.50304686,1.48805185,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,industry,5 electricity,0.05531751,0.09991363,0.1086529,0.2329088,0.3077586,0.4115158,0.5506764000000001,0.7331880000000001,0.9554496,1.2055758,1.4673953,1.7304340999999999,1.9743186,2.1966668,2.3979261000000003,2.5912771,2.7604365,2.9126977,3.0516573,3.1805513,3.313168,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.001766959,0.00358094,0.00644166,0.01067134,0.016763519999999997,0.02530152,0.0365572,0.0450727,0.054615300000000006,0.06476509999999999,0.0740612,0.0839906,0.0935153,0.1023765,0.1116212,0.120701,0.1210868,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,industry,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,industry,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,transportation,1 liquids,0.21350999699999998,0.38381247,0.45341848999999995,0.6807270930000001,0.7960101409999999,0.9525560519999999,1.1381128919999999,1.3531232680000003,1.598671033,1.8822198020000005,2.1984009700000007,2.624192045,3.124582204,3.714929371,4.361292843,5.065390850000001,5.7534333759999985,6.4484296,7.105596400000003,7.713861530000002,8.261703960000004,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,transportation,2 gas,0.0,0.03616307,0.10518189,0.16267011550000002,0.19074355089999998,0.2299114788,0.2820515436,0.34752559440999997,0.42757977852999995,0.5255576770000001,0.6428689308000001,0.7826071066000001,0.9426812958999997,1.127597787,1.3285493759999998,1.5514766699999998,1.781314808,2.0298156840000003,2.286423068,2.5566678629999995,2.828632012000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,transportation,3 coal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,transportation,4 biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,transportation,5 electricity,1.255997E-4,4.19E-5,0.0,2.5457930699999996E-5,1.7503530800000002E-4,3.8057463330000007E-4,7.268206246000002E-4,0.0012803684314000006,0.0021254028179999995,0.0033692461520000005,0.005208993234,0.00791508467,0.011838941530000001,0.01761726166,0.025783689109999997,0.036986357569999996,0.0513678182,0.0700118121,0.0932771592,0.12193647099999999,0.1479130128,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,transportation,6 hydrogen,0.0,0.0,0.0,0.0,3.700266E-5,1.54399876E-4,3.8992435099999994E-4,8.204928149999998E-4,0.0015353232279999999,0.002724190818,0.00467316,0.00813091981,0.013071228859999999,0.020144488399999997,0.029600551710000002,0.041694554800000005,0.0557844775,0.07241427619999999,0.09083608279999998,0.1104184467,0.12797936829999998,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,transportation,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,transportation,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,building,1 liquids,0.588301,0.3016854,0.26790369999999997,0.2937553,0.2846149,0.2972081,0.2999816,0.3010929,0.3047833,0.308555,0.31379500000000005,0.318253,0.32310700000000003,0.323498,0.32295,0.318651,0.31122,0.302659,0.293646,0.2823298,0.2713217,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,building,2 gas,2.3815825999999998,1.762557,1.8189009,1.8698512999999999,1.934155,1.972947,2.0048703999999997,2.0120142,2.023637,2.01871,2.0138648,1.9925077,1.9711537999999997,1.9333906,1.9019211,1.8611362999999999,1.8226867999999998,1.7923146,1.7629765,1.7390933,1.7208640999999998,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,building,3 coal,1.658079,0.232742,0.1683193,0.1613804,0.1517351,0.1430622,0.1327748,0.1221595,0.111433,0.10134270000000001,0.0921339,0.0836491,0.0755502,0.0672489,0.0596845,0.0524643,0.0458073,0.039918499999999996,0.0349823,0.03088055,0.027699849999999998,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,building,4 biomass,0.3046985,0.0730037,0.0764363,0.07017496,0.07271495,0.07085498,0.06825772,0.06299393,0.05497762,0.04932873,0.04503422,0.04115735,0.03755751,0.03427262,0.031097261,0.027890935999999998,0.024664373,0.021524994000000002,0.018870717,0.016554053,0.014604729999999998,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,building,5 electricity,0.63153697,0.80470873,1.09742372,1.22154645,1.4201442100000001,1.57910606,1.76343478,1.93611982,2.1346924300000003,2.3029858799999996,2.4612614,2.5862496100000003,2.6983643600000002,2.78110985,2.8518325,2.8974714,2.92565,2.9424764000000003,2.9585501,2.9860097,2.9971247,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,building,6 hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,building,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,building,8 district heat,3.990745,2.4137690999999997,2.3949975,2.2887252,2.2002965,2.1331433000000004,2.0693525,1.9931394,1.9257020000000002,1.8507478000000002,1.7792227999999999,1.7021486,1.6272221999999998,1.5463706000000004,1.4708531999999999,1.3912759000000001,1.3116646,1.2327789999999998,1.1613297,1.0980253,1.0321323,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,industry,1 liquids,2.8505017,1.9883918999999999,2.184765,2.3098966,2.2463566999999998,2.3009832,2.3227381,2.3525382,2.4105813000000005,2.4731272000000004,2.5467737999999995,2.6164913000000003,2.6892256,2.7467053000000003,2.8007948999999996,2.8402021000000004,2.8699449,2.8953959,2.9261402,2.9559625,2.968157,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,industry,2 gas,3.363707,3.3279929999999998,3.9936939999999996,4.0255562,4.0510676,4.045004700000001,4.0212237,3.9601798,3.8758996,3.7860695000000004,3.6981255799999997,3.59953382,3.51069406,3.41571142,3.3376163500000002,3.2645111200000003,3.22149489,3.2068198700000003,3.20397823,3.2271760199999995,3.2214416700000004,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,industry,3 coal,2.1714852000000002,1.5131527,1.7338037000000002,1.7317812,1.7014509000000002,1.6851610000000001,1.6617666,1.6422098,1.6296627999999997,1.6206144999999998,1.621772,1.6246074000000001,1.6281941999999998,1.6157143,1.6002606000000001,1.572667,1.5370656999999999,1.4977498,1.4667903,1.4519178000000001,1.4456027000000002,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,industry,4 biomass,0.04345073,0.11909169,0.10820812,0.10726257,0.11489400999999999,0.11865277,0.12057121,0.11862389999999999,0.11141883,0.10736308,0.10561879,0.10421195,0.10349069,0.10269844,0.10174106,0.09998932999999999,0.09756287,0.09467877,0.09244546,0.09113349,0.08893557,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,industry,5 electricity,2.4058756000000003,1.7063656,1.7454181,1.7803101000000001,1.8997433,1.9460354,2.0277104,2.1040204,2.2106910999999996,2.285536,2.3406014,2.3666036999999998,2.382278,2.389203,2.3910744999999998,2.3908335000000003,2.3917798,2.393547,2.4038658,2.4295709000000003,2.4346432,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.01543092,0.02439243,0.03424286,0.04494143,0.056466499999999996,0.0690476,0.08307200000000001,0.0869847,0.0919225,0.0971999,0.1012,0.10523629999999999,0.10927419999999999,0.11315729999999999,0.1180706,0.12397269999999999,0.1226315,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,industry,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,industry,8 district heat,4.51044,2.70488,2.68588,2.66174,2.65773,2.65698,2.65312,2.62593,2.5854,2.53673,2.49575,2.44466,2.40125,2.3522,2.30983,2.26435,2.22783,2.19896,2.17979,2.18155,2.15831,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,transportation,1 liquids,3.598682,3.2053257,3.6054604799999996,3.842588099999999,4.073366570000001,4.284378079999999,4.52926716,4.7610029329999985,5.057257490000001,5.328715470000001,5.625673560000001,5.952110574,6.326557089000001,6.6899296920000015,7.074101142000001,7.442188212999998,7.808835099999999,8.192916347000002,8.600462492299998,9.064216038700001,9.463235860399998,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,transportation,2 gas,0.046960201,0.00200891008,0.004729429299999999,0.0303299381,0.06687838157000002,0.11586787154,0.17208654269,0.23351272160000003,0.295464224,0.3608673768000001,0.4386444641,0.5042189719,0.5755797229999999,0.6453651380000002,0.7155300210000001,0.7846216919999999,0.8547557599999999,0.9297117100000001,1.0115044100000004,1.1051166500000003,1.1939358200000003,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,transportation,3 coal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,transportation,4 biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,transportation,5 electricity,0.2426047,0.2092506,0.2179506,0.23897344351000002,0.27118607517000004,0.29844923804,0.3300270249399999,0.36165487673,0.39893241853000005,0.4358659629,0.4767802087999999,0.5179283013000002,0.5640868058000004,0.6125312576000004,0.6672336998000001,0.7260645994000001,0.7916924104999999,0.8665645400999998,0.9530347943999998,1.0594206515000002,1.1556915349999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,transportation,6 hydrogen,0.0,0.0,0.0,0.0,9.971615999999999E-4,0.0033782937,0.006952063400000001,0.011807496399999997,0.017473360279999996,0.02461309,0.033640756699999996,0.044526397399999994,0.056880808599999985,0.0699686314,0.084212217,0.099152133,0.115000771,0.132402649,0.151334482,0.17244897200000003,0.18960183400000002,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,transportation,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,transportation,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,building,1 liquids,0.0262462,0.05533895,0.0503995,0.04106694,0.04580886,0.053237599999999996,0.056484,0.058796100000000004,0.0602652,0.0615522,0.06325320000000001,0.065452,0.06868540000000001,0.07213,0.0758046,0.0788584,0.08094570000000001,0.08228250000000001,0.08302599999999999,0.0823676,0.0816807,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,building,2 gas,7.116E-4,2.93E-4,9.209E-4,9.71939E-4,0.00137046,0.00173462,0.00193566,0.00204633,0.00206353,0.00204762,0.00203839,0.00202219,0.00204336,0.00207681,0.00212905,0.00217296,0.00221416,0.00225372,0.00228363,0.00229582,0.0022915,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,building,3 coal,0.09991965,0.19837479999999996,0.1378031,0.1055311,0.11374800999999998,0.12174553,0.12279012,0.12191679999999999,0.11786179999999999,0.1132284,0.10840079999999999,0.10419609,0.10010773,0.09593823,0.0909687,0.08576047,0.07990948,0.07427365999999999,0.06874668,0.06349924,0.06024712,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,building,4 biomass,0.0310183,0.0378833,0.0401437,0.0364515,0.0406828,0.0438247,0.0449016,0.0438184,0.0393878,0.0362687,0.0336419,0.0314072,0.0292858,0.0275554,0.0254801,0.023491,0.0213721,0.0193574,0.017394,0.0154729,0.0138926,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,building,5 electricity,0.17634375000000002,0.2814237,0.3041112,0.21294503000000004,0.25445048000000003,0.284918,0.3081193,0.32781340000000003,0.3433074,0.3572267,0.3722923,0.3927779,0.4183989,0.4458512,0.47533010000000003,0.5014548,0.5232621,0.5408159,0.5562878,0.5698147,0.5820207,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,building,6 hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,building,7 trad biomass,0.233914,0.305578,0.323662,0.31605500000000003,0.314234,0.316535,0.31310099999999996,0.309601,0.30204600000000004,0.295339,0.287404,0.281764,0.275582,0.27007000000000003,0.26302939999999997,0.2563978,0.2487313,0.2414121,0.2339429,0.2262005,0.2220183,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,building,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,industry,1 liquids,0.19000296999999997,0.15944470000000002,0.1831791,0.2003143,0.21675,0.24116859999999998,0.2595057,0.27827579999999996,0.2939398,0.3110441,0.3270439,0.348146,0.3692104,0.3918697,0.4114414,0.4305837,0.4467076,0.46183830000000003,0.4737839,0.48115240000000004,0.48875280000000004,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,industry,2 gas,0.02257948,0.09150445,0.08841911,0.13872721999999998,0.16071931,0.17554486,0.18218738,0.18446979999999996,0.181218,0.17656594400000003,0.17015413299999999,0.16547040100000002,0.161153214,0.15786818799999996,0.15454743299999998,0.15182015399999998,0.149875921,0.148882906,0.146902901,0.14427065799999997,0.141383811,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,industry,3 coal,0.9110977800000001,0.9380253000000001,0.8812772,0.79411488,0.8237431199999999,0.86400935,0.8781813300000001,0.8912757200000001,0.89078256,0.88989822,0.88394092,0.8888996,0.8908615999999999,0.8930581999999999,0.8862413,0.8774705,0.8623278999999999,0.8454020000000001,0.8254534,0.8052619,0.79393729,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,industry,4 biomass,0.17091411,0.22009988,0.2330342,0.20740716,0.22740678,0.24452649999999998,0.25309243,0.25433233,0.24230407,0.23435814,0.22763350000000002,0.22379825,0.22017952000000002,0.21843515000000002,0.21452211999999998,0.21033031000000002,0.20439467,0.19776961,0.19047767999999998,0.18291284,0.17550652,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,industry,5 electricity,0.32037499,0.43187219000000004,0.44714826,0.41003353,0.42226331,0.41690499,0.41796437999999997,0.42143933,0.42305806,0.42568254,0.42428416,0.43131599,0.43662454,0.44215792000000004,0.44342174,0.4435253,0.44070154,0.43701052,0.43051132000000003,0.42228493,0.41484502,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,industry,6 hydrogen,0.0,0.0,0.0,0.0,7.67204E-4,0.001280858,0.00183284,0.002446125,0.0030636409999999998,0.003734152,0.0044346640000000005,0.00463714,0.00487665,0.00517834,0.005365139999999999,0.00557542,0.0057645199999999995,0.00594118,0.00611025,0.0062395,0.006045979999999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,industry,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,industry,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,transportation,1 liquids,0.562205418,0.7680692379999998,0.7259392179999999,0.6557369791,0.67881835797,0.7004516111,0.7071128642799999,0.7106820949200001,0.7071998362,0.7032370400999999,0.69334674922,0.7073726280000001,0.7253344529999999,0.7468424359999999,0.7716664180000002,0.7965136750000001,0.8190323340000001,0.839457508,0.8599922680000001,0.8793831599999996,0.8898914739999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,transportation,2 gas,0.0,0.0,0.0,0.0033476212110000003,0.010843804029000002,0.021538149632,0.0328013201014,0.0461253357169,0.05803049107099999,0.07183384052699998,0.0922118399843,0.10466588395,0.11882004139999998,0.1338404681,0.149158831,0.1647450187,0.17998281379999997,0.19516012519999998,0.2112137802000001,0.2276043757,0.24198848850000002,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,transportation,3 coal,0.00196731,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,transportation,4 biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,transportation,5 electricity,0.014360640000000001,0.01955692,0.01247515,0.011977694539999998,0.012582627780000001,0.012923781492,0.013127112400000002,0.013292987111999997,0.013281264350999997,0.013281446333000005,0.013224179894999999,0.013486965849999998,0.013727651469999998,0.014039574680000003,0.014372354700000003,0.0147619916,0.015174659149999999,0.015675708599999998,0.016322338740000004,0.017204608700000006,0.0180363558,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,transportation,6 hydrogen,0.0,0.0,0.0,0.0,2.4186448E-5,9.2026513E-5,1.69704811E-4,2.78417292E-4,3.4728711000000005E-4,4.70150551E-4,6.292622929999999E-4,8.695133990000001E-4,0.001131764139,0.0014205797799999999,0.0018172179299999996,0.0022771058300000003,0.00279742033,0.0033708005599999997,0.00404584759,0.00481139205,0.0054502934,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,transportation,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,transportation,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,building,1 liquids,0.0888535701,0.07287971951000001,0.051679080509999996,0.062237100399999995,0.06352902294000001,0.06814090543000001,0.07155772856,0.07498633848,0.08000824084000001,0.08497903444999999,0.09159983774,0.09783964134,0.10599967754999999,0.11320206981,0.12108140061,0.12763242226,0.13286890655,0.13632197526,0.13708812433,0.13383039319,0.13154110554,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,building,2 gas,0.02555590109,0.0665322059,0.06459767129999999,0.0612200392,0.062629771,0.0654746571,0.0686161819,0.0708600805,0.07313313440000001,0.0746191554,0.0769800523,0.07820859749999998,0.08063116590000001,0.0823584371,0.08478452800000001,0.0866580049,0.0886706977,0.09041559230000001,0.0906524718,0.0893349821,0.0882391656,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,building,3 coal,1.72E-5,3.34999E-5,5.0E-5,4.5453E-5,4.51287E-5,4.54762E-5,4.57986E-5,4.59182E-5,4.63326E-5,4.6365E-5,4.68595E-5,4.70642E-5,4.76866E-5,4.7583E-5,4.73279E-5,4.63554E-5,4.47373E-5,4.25134E-5,3.97492E-5,3.6778E-5,3.44107E-5,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,building,4 biomass,0.0053866009999999995,0.0071071050999999994,0.0074292477,0.0065372803,0.0071791731,0.007488474,0.0077152978,0.0075840212999999995,0.0070401636,0.0066460628,0.0063862383,0.0061169467000000005,0.0059079159000000004,0.00567901851,0.00540646966,0.0050670222,0.00466673894,0.00422362866,0.00377575235,0.00335174659,0.00295122195,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,building,5 electricity,0.10319879879999999,0.171635714,0.210287947,0.26014634810000004,0.28939835599999997,0.32893036010000004,0.3749757908,0.4221109083,0.477193249,0.533900988,0.6011554259999999,0.66483882,0.740522857,0.820806988,0.913815072,1.0076442120000002,1.103136123,1.191614376,1.264739267,1.313460745,1.3669599419999998,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,building,6 hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,building,7 trad biomass,0.017020091199999997,0.0220903096,0.0231320917,0.020243024300000002,0.0199329968,0.0190053373,0.017946151400000002,0.016863227,0.0156402743,0.014396248300000001,0.0130164519,0.0117811541,0.0104397907,0.009050501099999999,0.0075870456,0.0062157421,0.0049539199,0.0038833049,0.00302651772,0.00238086681,0.00187901294,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,building,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,industry,1 liquids,0.15314626,0.28261492,0.516244,0.635594,0.6799765,0.7443737,0.8013840999999999,0.8607461999999999,0.9321056999999999,1.0047348,1.0878611,1.1736035,1.2704886,1.3674937999999999,1.4745177000000003,1.580497,1.6891817,1.7953146999999998,1.8911474,1.9609979,2.0457161,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,industry,2 gas,0.55030897,0.72586358,0.4740083399999999,0.45586342,0.47573913,0.49409097999999996,0.5145940599999999,0.52703948,0.5348017999999999,0.5360897399999999,0.5365669359999999,0.5322946799999999,0.5299494029999999,0.5256175600000002,0.5246339,0.5232620099999999,0.52652436,0.5318714399999999,0.5331830049999999,0.53140303,0.53207369,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,industry,3 coal,0.019381080000000002,0.00154882,0.00833015,0.009200539,0.009922412,0.010623925,0.011520583,0.012423276,0.013432478,0.014322488,0.015239808,0.016059482,0.016872742,0.017544702,0.018173748,0.018660196,0.01901281,0.019180910000000002,0.019285689999999998,0.0194548,0.0197999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,industry,4 biomass,0.01894989,0.02406889,0.02091007,0.02049057,0.02320135,0.02525596,0.027573340000000002,0.02899272,0.02926322,0.02975598,0.030669130000000003,0.031456819999999996,0.03245659,0.0334768,0.0345132,0.0353267,0.035911200000000004,0.0361113,0.0361371,0.0360735,0.0360238,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,industry,5 electricity,0.09501386,0.14124471,0.15445955,0.19678851,0.22461093000000001,0.25328347,0.28676888,0.31930167,0.35269037,0.38510563000000003,0.41675957,0.4454847,0.47339939999999997,0.5024061,0.5329483,0.5636460000000001,0.5946927000000001,0.623923,0.6516176,0.6744247999999999,0.7012003000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.006073739999999999,0.01006246,0.01494932,0.0206188,0.027191569999999998,0.034686,0.043594900000000006,0.0476181,0.0529815,0.058820899999999995,0.0642406,0.0701702,0.07639119999999999,0.0823735,0.0887175,0.09476580000000001,0.09483259999999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,industry,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,industry,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,transportation,1 liquids,0.4714198560999999,0.6944513426000001,0.8181829919,0.9152674369999999,0.9496489708999998,0.9955971760000003,1.0490995692000002,1.0989946279999998,1.1649125299,1.2267627111000001,1.2960681271999996,1.3742719307000002,1.4785915279999995,1.592691621,1.7373720113000006,1.8930452738999994,2.0629924475699997,2.23214238058,2.3891591987300007,2.50870152611,2.6311788067399995,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,transportation,2 gas,0.0,0.0055667320000000005,4.1855030000000006E-4,0.010597495699999999,0.024058111899999998,0.0462711916,0.07670938868999998,0.1156602469,0.16235345900000006,0.21563147530000004,0.28972187350000006,0.34650761010000014,0.411765076,0.4818636209999999,0.563217762,0.6520272269999998,0.7528491120000004,0.8627991100000001,0.9787355700000003,1.09172661,1.2162324600000003,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,transportation,3 coal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,transportation,4 biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,transportation,5 electricity,0.001006994,9.483949999999999E-4,0.001105594,0.002129708905,0.0037518683020000007,0.005304811090000001,0.007168435040000001,0.009344993064999996,0.01183805621,0.0147862318,0.01872332296,0.023889008089999997,0.03042552072,0.03819010463999999,0.04827688847,0.060191198210000005,0.07425664568000001,0.09010510659999998,0.10744392286,0.12519030616,0.14178087706999998,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,transportation,6 hydrogen,0.0,0.0,0.0,0.0,4.5716411E-4,0.0016132120799999996,0.0032916658499999997,0.005500907029999999,0.00797835388,0.01091741307,0.014756000509999995,0.019324395100000002,0.024947348900000003,0.031399712,0.0395623137,0.048885999,0.0593708332,0.0705657722,0.08207351650000001,0.09279544099999999,0.10318053199999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,transportation,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,transportation,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,building,1 liquids,0.13010091,0.153752,0.17430530000000002,0.21794609999999998,0.240958,0.26568010000000003,0.281755,0.29326569999999996,0.3096663,0.3252182,0.344147,0.35907429999999996,0.3780902,0.395026,0.4143295,0.4296527,0.44077420000000006,0.4464087,0.4441082,0.43038430000000005,0.4270842,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,building,2 gas,0.0103813001,0.020929909,0.02867399,0.039823135,0.044166725,0.047963041000000005,0.051090463999999995,0.052634376999999996,0.053954198999999994,0.054579574000000006,0.055426688,0.05509306399999999,0.05530455100000001,0.055327403,0.055933861,0.056269912,0.0567410685,0.0570829497,0.0565493039,0.05524710340000001,0.05504754490000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,building,3 coal,0.0010465,1.675E-4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,building,4 biomass,0.0254091,0.015069601,0.0168277,0.017816116,0.019607865,0.020006743,0.020090482,0.019013729999999996,0.016658042999999997,0.014902987000000001,0.013455963999999999,0.012089100000000002,0.010841478,0.009724353,0.008595513,0.007509732,0.0064679844,0.0055141253000000005,0.0046958633,0.004034588800000001,0.0035099517999999997,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,building,5 electricity,0.10551392000000001,0.21653306,0.2750106,0.39284589999999997,0.49066350000000003,0.5976594000000001,0.7210852,0.8444403,0.9886719,1.134556,1.3041249000000001,1.4641214999999999,1.6529086999999998,1.8579630999999999,2.1002508,2.3471849000000002,2.5975533,2.8276695,3.0173835,3.1496201,3.2837394999999994,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,building,6 hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,building,7 trad biomass,0.2725087,0.2679878,0.3247083,0.28809779999999996,0.2625592,0.23758559999999998,0.2151084,0.1953015,0.17447829999999998,0.1552297,0.1355099,0.11841,0.10100100000000001,0.0844902,0.0683319,0.0542619,0.0420967,0.03226537,0.02469326,0.019200870000000002,0.01523016,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,building,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,industry,1 liquids,0.1967838,0.290257,0.34224740000000003,0.4327958,0.4854384,0.5505404,0.604699,0.65772,0.7266431,0.7981815,0.8812544,0.9689597,1.0682381,1.1704305,1.284202,1.3992208,1.5181196,1.6352258,1.7441288999999998,1.8293552000000002,1.9350473,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,industry,2 gas,0.06932975,0.18659275,0.20529212,0.28321754,0.3166708,0.35054032999999996,0.38268481,0.408434691,0.434186031,0.45452458800000006,0.4751121660000001,0.492079595,0.51130062,0.530171002,0.5538196499999999,0.5785338189999998,0.6096321240000001,0.6445889669999999,0.6767968070000001,0.7062938350000002,0.7415331309999998,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,industry,3 coal,0.04035313,0.0701991,0.054418,0.07515,0.0817297,0.08814040000000001,0.0940134,0.0989029,0.10490740000000001,0.1098429,0.1151626,0.1203024,0.1256382,0.1299753,0.1345334,0.1380739,0.1409026,0.14250960000000001,0.14327230000000002,0.1436238,0.1472502,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,industry,4 biomass,0.12105912,0.1723377,0.21725330000000004,0.27164710000000003,0.30737949999999997,0.3335525,0.35332060000000004,0.3588681,0.353619,0.35247170000000005,0.3571828,0.3626646,0.37041500000000005,0.3778521,0.38579600000000003,0.39066690000000004,0.3929262,0.390952,0.3865572,0.3803048,0.38015750000000004,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,industry,5 electricity,0.13557943,0.26741949,0.30462776999999996,0.41129,0.4917531,0.5792746,0.679925,0.7775917,0.8830752000000001,0.9776559,1.0716463,1.1624387,1.2548222,1.3455036,1.4409026,1.5339656000000002,1.6300792000000002,1.72286,1.8062351,1.874377,1.941221,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.02589595,0.044196400000000004,0.0658956,0.0903631,0.1194194,0.15219359999999998,0.1909571,0.20865,0.23064289999999998,0.2546703,0.2776693,0.3018031,0.3272672,0.351348,0.374997,0.39581999999999995,0.40521599999999997,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,industry,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,industry,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,transportation,1 liquids,0.4360760169,0.8188218146999999,1.1318187618000002,1.3949389186999999,1.5482598309,1.6923868773000006,1.8322096413,1.9503198842000007,2.0891252980999995,2.2190759013000005,2.364420940899999,2.5155051257000003,2.7097528639999995,2.9268550607000003,3.2054581974600005,3.506078161010001,3.831246973250001,4.15439012356,4.457915688489998,4.699794001039999,4.955380094199996,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,transportation,2 gas,2.5107E-4,0.006278254999999999,0.0320192,0.05141914399999999,0.07035669700000001,0.09919260899999997,0.140153747,0.19252891900000002,0.25935095,0.336007414,0.4401242507,0.523669852,0.618766582,0.7221202699999998,0.8452884450000001,0.9808474750000001,1.1345603199999998,1.3019408399999997,1.4796014699999998,1.6568387300000007,1.8523052200000003,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,transportation,3 coal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,transportation,4 biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,transportation,5 electricity,0.0012762799999999999,0.00129868,0.0020444729999999998,0.0043894200619999995,0.008022732696,0.011278952520000001,0.015131121960000002,0.019445788824999994,0.02458897928,0.03047938542000001,0.03804103823,0.04753239562,0.05928159362999998,0.07314005189,0.09085730675,0.11144894214,0.13524098736999998,0.16156110234,0.19009083490999995,0.21929639242000004,0.24632193450000006,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,transportation,6 hydrogen,0.0,0.0,0.0,0.0,8.010447E-4,0.0026696718,0.00545693493,0.009105156359999998,0.013467577020000001,0.01854554396,0.0249848189,0.0324596575,0.0414756159,0.051798574,0.06469462909999998,0.07924976389999999,0.09528571859999999,0.11209601099999997,0.129220806,0.14515023800000001,0.16053672100000002,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,transportation,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,transportation,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,building,1 liquids,0.054633970000000004,0.0732849,0.06141538,0.1103162,0.14522780000000002,0.19593420000000003,0.2501369,0.310646,0.3829696,0.4682125,0.5645325999999999,0.6765840000000001,0.7971119999999999,0.919974,1.038527,1.153616,1.249472,1.3332289999999998,1.400149,1.441221,1.492711,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,building,2 gas,0.018148588,0.061061769999999994,0.09557380000000001,0.20099478,0.28524869999999997,0.3797522,0.48489460000000006,0.592091,0.7032138,0.8213165,0.9408215999999999,1.0634611,1.1804921000000002,1.2867799,1.3805347000000001,1.4659445999999998,1.5393142000000002,1.6118237,1.6693083,1.7179041000000002,1.7754799999999997,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,building,3 coal,6.02201E-4,4.19E-5,4.19E-5,6.05037E-5,6.98444E-5,7.6797E-5,8.19085E-5,8.53494E-5,8.79443E-5,8.93222E-5,8.94421E-5,8.85661E-5,8.61308E-5,8.17443E-5,7.666E-5,7.04896E-5,6.37428E-5,5.70015E-5,5.09097E-5,4.55537E-5,4.1918E-5,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,building,4 biomass,0.00328211,0.0104303,0.0122853,0.01333779,0.01533705,0.01633382,0.01698693,0.01678379,0.01561728,0.01484928,0.01427331,0.013665469999999999,0.01305721,0.01240767,0.01169486,0.01083187,0.0098502,0.00878898,0.0077718200000000005,0.00680082,0.005959590000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,building,5 electricity,0.02245924,0.07592080000000001,0.11322221999999998,0.2274067,0.3317293,0.4662446,0.6371735999999999,0.8409563999999999,1.0845598,1.3693751,1.6929223,2.0679680000000005,2.475529,2.921252,3.368658,3.84565,4.30398,4.759316999999999,5.176352,5.559129,5.91273,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,building,6 hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,building,7 trad biomass,0.7144003,0.8983974,0.9657846,0.7820926,0.6872084,0.5911234999999999,0.5040693,0.4284794,0.3621954,0.3014477,0.2477799,0.19892010000000002,0.15717029999999999,0.1210792,0.0932682,0.06997489999999999,0.052029729999999996,0.03797785,0.02772628,0.02013359,0.01501997,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,building,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,industry,1 liquids,0.036071800999999994,0.09899977,0.10556119,0.20866231000000002,0.28251445,0.3918997,0.508124,0.6354895,0.7840075000000001,0.9559156999999999,1.1459295,1.3665547,1.5908165,1.8051186,1.9969053999999997,2.1642720000000004,2.3073817,2.4315586000000002,2.5327425,2.5984130000000003,2.6838747,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,industry,2 gas,0.065176001,0.13604497999999998,0.12779869,0.25650575999999997,0.37422236000000003,0.5198984299999999,0.69316681,0.88227158,1.0892023300000002,1.3187093099999998,1.56119189,1.8196176300000002,2.07222507,2.3113882200000004,2.524134340000001,2.7192689000000003,2.9126694900000003,3.1093890200000005,3.2909352199999997,3.4669391500000004,3.64261365,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,industry,3 coal,0.01806101,0.0366185,0.0484522,0.1098407,0.15801579999999998,0.216827,0.287485,0.367857,0.44915900000000003,0.527386,0.603652,0.680465,0.748711,0.805399,0.848541,0.878789,0.8966609999999999,0.904047,0.90415,0.901986,0.909687,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,industry,4 biomass,0.0354933001,0.076563997,0.08441169899999999,0.157843536,0.2321263,0.31313022,0.40113959,0.47985712999999997,0.54169617,0.6112532700000001,0.684195,0.76341466,0.8343358599999999,0.89344409,0.9347411299999999,0.957637,0.96560687,0.9609536,0.9494374800000001,0.9365315200000001,0.93267314,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,industry,5 electricity,0.022735304,0.07382385,0.11970438,0.29464595,0.46142819999999996,0.6829592999999999,0.9644671,1.2884686,1.6517237,2.0391319,2.429749,2.8440306,3.2247103000000004,3.5695463000000003,3.8465272,4.0826761,4.2927493000000005,4.4833532,4.6382301,4.7703959,4.894666699999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.02048786,0.043395249999999996,0.0778837,0.1253899,0.1890138,0.2736591,0.3815827,0.462773,0.5527580000000001,0.647452,0.7298119999999999,0.8093819999999999,0.8852820000000001,0.955805,1.0266790000000001,1.097051,1.124569,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,industry,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,industry,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,transportation,1 liquids,0.107439487,0.249720797,0.33080693,0.5220907959999999,0.6644194780000001,0.8284720419999995,1.004847275,1.1910718355000007,1.3925939980000004,1.6166407490000003,1.8608043080000003,2.182810012,2.553444943999999,2.9802995450000016,3.435050907999999,3.9371357,4.437528736999999,4.956587328999999,5.462968912,5.951798498999999,6.413651443999998,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,transportation,2 gas,0.0,0.0033485453,0.038590551,0.06620687589999999,0.08815513000000001,0.1160508277,0.15113758992999998,0.19372352287,0.24531676074000003,0.3084205346999999,0.3856173639999999,0.4759882414,0.5791191014,0.6969533773,0.8239865410000001,0.9676308750000002,1.1206392150000002,1.2915930320000002,1.4751471229999997,1.6773680060000005,1.8864625,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,transportation,3 coal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,transportation,4 biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,transportation,5 electricity,0.0,4.49986E-5,0.0,1.78522346E-5,1.564146719E-4,3.5038486949999997E-4,6.690997255000001E-4,0.0011534527091999998,0.0018633576190000003,0.002860397941,0.004264584301,0.006220821961000002,0.00893744796,0.012779196730000001,0.01803503038,0.02516245959,0.0342991626,0.046130235099999986,0.06087121050000001,0.0789914896,0.09506220720000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,transportation,6 hydrogen,0.0,0.0,0.0,0.0,3.4978859999999995E-5,1.37290389E-4,3.33227934E-4,6.7133211E-4,0.001211032511,0.002072999805,0.0034148453390000005,0.00570648595,0.008834565130000001,0.013121554950000001,0.018642774829999997,0.025643081219999996,0.0337771988,0.04336163049999999,0.0539424369,0.0651391248,0.0751588241,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,transportation,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,transportation,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,building,1 liquids,0.4201908,0.44006429999999996,0.3184006,0.3078804,0.31128920000000004,0.3189643,0.3175812,0.3179017,0.3202159,0.3228391,0.3238283,0.32592259999999995,0.3259691,0.3233273,0.3163499,0.3069748,0.2941183,0.28063879999999997,0.26651939999999996,0.2508836,0.2360277,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,building,2 gas,0.025367096,0.48277591,0.5273668,0.5578898400000001,0.5593289800000001,0.57008822,0.57745806,0.579518,0.57366885,0.5630013199999999,0.54670252,0.5281821299999999,0.5066606300000001,0.48408492,0.45902612,0.43483921,0.41249569900000005,0.39417361599999995,0.37610313999999995,0.360590953,0.343596309,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,building,3 coal,0.3627172,0.039934399999999995,0.0357903,0.0362625,0.0348233,0.034065490000000004,0.03298063,0.031842709999999996,0.03036823,0.028754179999999997,0.026904439999999998,0.02527534,0.02340913,0.021509970000000003,0.01938639,0.01738445,0.01539116,0.01364228,0.012072099999999999,0.01074915,0.00969658,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,building,4 biomass,0.0183765,0.0153053,0.0284943,0.02742881,0.02840972,0.02794027,0.027249170000000003,0.0252473,0.02155314,0.01886525,0.01660842,0.01476899,0.013037449999999999,0.01163698,0.01017782,0.0088927,0.00766223,0.0066038799999999995,0.0056799599999999995,0.00491552,0.00424379,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,building,5 electricity,0.12284752,0.589635,0.7525306,0.8007265,0.8582102,0.8916459000000001,0.9321128,0.9714498,1.0144963,1.0523487,1.0823288,1.1089585,1.1250531,1.1338977,1.1275959,1.114657,1.0921335,1.0675352,1.0410691,1.0196752,0.9938819,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,building,6 hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,building,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,building,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,industry,1 liquids,0.8011166,1.7973961999999999,2.0111908,1.9755099,1.9519361,1.9324633,1.8932193000000002,1.8568837,1.8193279,1.7845966,1.7432518,1.7187875,1.6863414,1.6550759000000002,1.6093153999999998,1.5642722999999998,1.5145714000000001,1.4698457999999999,1.424856,1.3825694000000002,1.3353662,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,industry,2 gas,0.004186,0.2131205,0.3077273,0.31487161,0.30519421999999996,0.30292994,0.29715454999999996,0.28874187999999995,0.27592593,0.26248707999999993,0.24734854700000003,0.23568151,0.223854574,0.21352010199999993,0.203409212,0.19496948899999997,0.18903796799999995,0.185901054,0.182597259,0.18030859600000002,0.17756967200000004,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,industry,3 coal,0.5766204,0.819407,1.0418972999999998,1.1106204,1.0372154999999998,1.0476466,1.0377182999999999,1.0313504,1.0117325,0.9928134000000001,0.9710086,0.9685633,0.9604520999999999,0.9481967,0.9262613000000001,0.9017970000000001,0.8720157,0.8421944,0.8157484,0.7978881,0.78740221,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,industry,4 biomass,0.01142769,0.07017287,0.09122543000000001,0.09279843,0.09713757,0.10008271,0.10202791,0.10117939,0.09600195,0.09247116000000001,0.08953659,0.08805336,0.08641222999999999,0.08535190000000001,0.08350669999999999,0.08160737,0.07932082,0.0770709,0.074959254,0.07353525999999999,0.071868142,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,industry,5 electricity,0.2133295,0.6863393999999999,0.8574934000000001,0.87137,0.9111774,0.9010355999999999,0.9055314999999999,0.9087153,0.9187472999999999,0.9266055999999999,0.9280291,0.9384744,0.9427261,0.9480849,0.9449528,0.9427107,0.9372714000000001,0.9348844,0.9314259,0.9338685,0.9343989,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.02846088,0.045221510000000006,0.0635602,0.08366939999999999,0.1045388,0.1270859,0.15053729999999999,0.15766190000000002,0.1655701,0.1750974,0.18077169999999998,0.1873835,0.1939917,0.20098499999999997,0.20904080000000003,0.2184865,0.2158545,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,industry,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,industry,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,transportation,1 liquids,0.68469438,1.71825924,1.72698246,1.76383049,1.7959768599999997,1.8062749700000003,1.81542146,1.8242408809999997,1.8475696399999992,1.8682160400000003,1.8770117299999993,1.9064983800000004,1.9354997700000003,1.96132926,1.9772771500000008,1.9879378999999997,1.99259666,1.9947295700000003,1.9996373299999997,2.0151840799999996,2.0228336000000002,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,transportation,2 gas,0.0,0.013561670500000001,0.04281960640000001,0.059380707399999996,0.07832470779999999,0.10175597790000003,0.12609913521,0.15171070229999997,0.17444710500000002,0.19788270279999995,0.22406442780000002,0.24478858800000003,0.26450401900000003,0.283650082,0.30015819299999996,0.315526945,0.328813833,0.341222588,0.353309977,0.36680428000000004,0.3790064780000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,transportation,3 coal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,transportation,4 biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,transportation,5 electricity,0.0036425700000000004,0.00936098,0.00787093,0.00919099145,0.01070844083,0.01227197244,0.013950478159999998,0.015775652058000002,0.017656254329999996,0.0197627083,0.022077831599999993,0.024727471199999997,0.02766004890000001,0.0308875299,0.0343265459,0.0381227481,0.04224089270000001,0.046838468,0.052102694,0.058468961,0.063131836,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,transportation,6 hydrogen,0.0,0.0,0.0,0.0,3.849568E-4,0.0012679327,0.0024188168,0.0038557159,0.005260437290000001,0.00693484377,0.008803137500000002,0.010822138600000001,0.013016265700000001,0.015343753199999999,0.017701945400000002,0.020120892199999997,0.022513420900000004,0.024916150800000002,0.027351389999999993,0.029979569099999995,0.031976098800000005,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,transportation,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,transportation,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,building,1 liquids,0.145745179,0.2975683,0.3677825,0.47410372,0.62048092,0.80082681,0.9898937000000001,1.20034451,1.44289095,1.71891289,2.0177842299999997,2.35732769,2.7075554100000003,3.0438488,3.3461112999999996,3.6105675,3.7949960000000003,3.9156291999999997,3.9577361000000004,3.8870355000000005,3.8357724,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,building,2 gas,0.007363999996,0.0076224,0.010142699999,0.01479098536,0.01906885398,0.02411852707,0.02983136067,0.035696991139999995,0.041549949850000004,0.047581786870000004,0.053468354350000004,0.05935119093,0.06476362012,0.06944642017,0.07328881720000001,0.0763970837,0.07858187359999999,0.0801975966,0.08044764769999999,0.0794422977,0.0785356218,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,building,3 coal,0.183440898,0.206412499,0.1968259,0.22959020000000002,0.24823957000000002,0.26375828999999995,0.27559534,0.28220172,0.28674433,0.28757149000000004,0.28493958,0.28107874,0.27408871,0.26379758,0.25137595,0.23645081,0.21932626,0.20135988999999999,0.18335406999999998,0.16585473000000003,0.15353803,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,building,4 biomass,0.272676769,0.2479129,0.288989,0.336615108,0.39929237700000003,0.44298712399999995,0.478518891,0.48689028500000003,0.46118654699999995,0.441038974,0.42240383699999995,0.40058077400000003,0.37741364000000005,0.35301046499999994,0.326623187,0.296573234,0.264672487,0.23196615499999998,0.201970498,0.17507710199999998,0.15196428299999998,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,building,5 electricity,0.23937809997999998,0.6757096999900001,0.928389,1.2708695251999997,1.6566805245,2.1077057285,2.6664960173,3.302211917,4.0152447393,4.794970866,5.6113698240000005,6.483883435,7.330483302999999,8.151935582,8.863313279,9.511134548000001,10.012749691,10.407395777,10.635478271,10.719836496,10.792644089000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,building,6 hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,building,7 trad biomass,1.20571901,1.2835728,1.3275854,1.2793548,1.1809515400000001,1.0838106600000001,0.9828829299999999,0.88420308,0.7901957000000001,0.6965965900000001,0.6077001,0.52260344,0.44526084,0.37268806,0.31069759,0.25301167,0.20326267,0.15995048,0.12496044,0.09716587,0.07656681,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,building,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,industry,1 liquids,0.677915883,1.8502666399999999,2.37940917,2.959202035,3.6216948911,4.3242317445,4.9890668358,5.6245447078,6.2320043738,6.796367490699998,7.3222604562599996,7.8550017829000005,8.35371934329,8.81229726252,9.2041883,9.561328699999999,9.8614062,10.1270095,10.321905099999999,10.3990419,10.5068352,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,industry,2 gas,0.1642166,0.9714824,0.9065112,1.21586982,1.453049,1.6956673999999998,1.9299854,2.1317778999999994,2.2901392999999994,2.40619356,2.4861050299999996,2.54070648,2.5769575200000006,2.5993957699999997,2.6114935,2.6226308499999993,2.64791932,2.68887722,2.7132158900000007,2.7259043500000004,2.7444814000000006,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,industry,3 coal,1.0184368,1.0654502000000001,1.3361501,1.79505859,2.11050374,2.43564264,2.756006990000001,3.0628832900000003,3.3572126300000003,3.6156045400000005,3.846361186,4.075914864000001,4.281019787999998,4.44821545,4.577275340000001,4.6780196599999995,4.741817620000001,4.77652721,4.790913351,4.795830628000001,4.863802720000002,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,industry,4 biomass,0.692809,0.8231203,0.9243520999999999,1.0843898,1.3635994999999999,1.6251228,1.8825106999999999,2.0767922999999997,2.1715812,2.2634472000000003,2.3537156,2.439331,2.516239,2.5873483,2.6359795,2.6678801,2.6754873,2.6618451,2.6387074,2.6106933,2.5902164,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,industry,5 electricity,0.22067319999999999,0.5629354,0.7494938,0.9910243999999999,1.2286423,1.4731654,1.7523980000000001,2.037961,2.3208670000000002,2.573521,2.794232,2.999066,3.176477,3.342394,3.474073,3.6069970000000002,3.7325880000000002,3.860386,3.96567,4.051951,4.127561,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.01166673,0.021911260000000002,0.03568456,0.05317354,0.0743954,0.0994647,0.1286834,0.1445471,0.1623125,0.1816909,0.19851989999999997,0.2164655,0.23447289999999998,0.25199,0.2703816,0.2883226,0.2931222,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,industry,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,industry,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,transportation,1 liquids,1.75573923,3.8195774600000005,5.2725095,6.13225177,7.05927497,8.035470493,9.065947845,10.143128230999997,11.259756122999995,12.453759303000002,13.678746320000002,15.217668910000004,16.84202001,18.56752240000001,20.27060685,22.05631719,23.762993850000008,25.480085980000005,27.063294359999993,28.414561260000003,29.720285100000005,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,transportation,2 gas,4.179575E-5,0.008078178,0.07806096000000001,0.12938889269999998,0.1953447109,0.2881329334,0.4129025946,0.574192091,0.7686899355,1.0049340900000001,1.306773875,1.6158284324999996,1.9525020350000002,2.318084331,2.6944754099999995,3.103163674,3.528867725,3.9957393469999993,4.483794830000003,4.987109639999998,5.503344889999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,transportation,3 coal,5.86271E-4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,transportation,4 biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,transportation,5 electricity,6.70882E-4,0.001947758,0.00757753,0.009034018877000002,0.011159435101,0.013469733409999999,0.016305095866300003,0.019731588752000002,0.023940000581999993,0.02903954942000001,0.035385213879999995,0.04362307151,0.0534929044,0.0655671994,0.08026752869999998,0.09817886230000002,0.11940931349999999,0.1451756551,0.17522844430000004,0.20944490200000004,0.23754721599999995,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,transportation,6 hydrogen,0.0,0.0,0.0,0.0,2.0799565E-4,7.793547E-4,0.0017498761900000001,0.00332179827,0.005439171416,0.00858315167,0.01306550306,0.020130290530000004,0.028610213979999997,0.038889383799999996,0.05096315779999999,0.06500268930000001,0.0803523534,0.09802025810000001,0.116859325,0.1354208674,0.1511530276,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,transportation,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,transportation,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,building,1 liquids,0.08824089,0.09703159,0.0897061,0.08113913,0.1179865,0.1413236,0.1550694,0.1653763,0.1734587,0.1788105,0.18109240000000001,0.1822605,0.1822867,0.1836806,0.1832296,0.18099379999999998,0.1764303,0.1710257,0.1646903,0.1569585,0.1517889,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,building,2 gas,0.022311393,0.040813510000000004,0.04638091,0.04446817,0.07013751,0.08366511000000001,0.09275002,0.09836316,0.10041332,0.09986759,0.09703362,0.09297775,0.08848081999999999,0.08518438,0.08170941,0.07809954999999999,0.0747212,0.07193802,0.06898954,0.06627371,0.0642421,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,building,3 coal,2.512E-4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,building,4 biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,building,5 electricity,0.11036494,0.3137887,0.3250402,0.34065880000000004,0.5296837000000001,0.6381681,0.7201451999999999,0.7856134,0.8350474000000001,0.8686708000000001,0.8865088000000001,0.8979197999999999,0.9036287000000001,0.9182036,0.9235019,0.9222324,0.9120787,0.8979892,0.8801741999999999,0.8609268999999999,0.849334,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,building,6 hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,building,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,building,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,industry,1 liquids,0.40834463,0.90940835,1.07257871,1.01712296,1.0120307,1.0272257,1.0288097,1.02954929,1.03051498,1.0301480699999999,1.02782872,1.02288174,1.01652179,1.01016902,1.00132103,0.9882300500000001,0.9721799600000001,0.95406516,0.93313783,0.90737193,0.88579281,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,industry,2 gas,0.0154882,0.0411484,0.047092499999999995,0.05427687,0.05717573,0.05976017,0.06142235,0.0622705,0.06203671,0.061303779999999995,0.06006079,0.05821648,0.056387150000000004,0.05504178,0.0538758,0.05282609,0.052402029999999995,0.05252102,0.052388000000000004,0.052171079999999995,0.05200407,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,industry,3 coal,0.2587376,0.6617664,0.7448994,0.6001354000000001,0.6154989000000001,0.6519494,0.6721109000000001,0.6950320999999999,0.7186056,0.7430850999999999,0.7681306999999999,0.7919615,0.8119987000000001,0.8265967,0.8401932,0.8424982,0.8399014000000001,0.8327540999999999,0.8243434999999999,0.818262,0.8240198999999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,industry,4 biomass,0.0,0.0012139,0.002093,0.00206059,0.00227404,0.00241953,0.00254041,0.00258965,0.00253346,0.00250893,0.00250251,0.00248873,0.00247976,0.0024889,0.0024913,0.00248419,0.00246911,0.00244485,0.00241703,0.00239416,0.00237691,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,industry,5 electricity,0.16508645,0.40165094,0.45714601,0.5462712,0.5761168,0.5855211800000001,0.60244311,0.6166373399999999,0.6293946499999999,0.6394008999999999,0.64738484,0.65393269,0.66122337,0.67068241,0.67786461,0.68644761,0.6940261,0.70061875,0.70626936,0.7117070799999999,0.71985304,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,industry,6 hydrogen,0.0,0.0,0.0,0.0,3.209816E-4,5.273264E-4,7.63441E-4,0.001032476,0.0013276009999999999,0.001657681,0.002022196,0.002140902,0.002282071,0.002451951,0.002589157,0.002736306,0.002894749,0.0030539399999999998,0.0032235600000000003,0.00339612,0.0034045399999999997,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,industry,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,industry,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,transportation,1 liquids,0.37201123999999997,0.72623976,0.7443938299999999,0.7307731369999999,0.7817445249999999,0.8198245251,0.8490169626000001,0.8765674558000003,0.899695724,0.916190065,0.920003745,0.9369277350000004,0.9513791470000003,0.98214889,1.0083687755000001,1.0335314957999997,1.0512891765,1.0667883362000001,1.0765547512999998,1.0812897973000002,1.0816467418,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,transportation,2 gas,0.0,0.0,0.0,0.00555230157,0.01470871625,0.02632991282,0.04055905293999999,0.05869202216000001,0.07849599376999995,0.10055144416999999,0.12990167467000002,0.14873076379999997,0.16817285290000006,0.19119042310000003,0.2125578294,0.2336482196,0.2530557560000001,0.2724693769,0.2912077512999999,0.30992767289999995,0.3264776162,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,transportation,3 coal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,transportation,4 biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,transportation,5 electricity,7.117860000000001E-4,0.001880965,0.00418053,0.004621016212999999,0.005481893155100001,0.00620130775505,0.007043885025639999,0.008005165315299998,0.0090402219778,0.010135620721,0.011273974604999999,0.012514093714000002,0.013820289282999998,0.015543060912,0.017400919900000006,0.019416532,0.021481730169999994,0.023677735399999993,0.025995214869999998,0.028518488919999998,0.03056944686,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,transportation,6 hydrogen,0.0,0.0,0.0,0.0,2.1818665E-5,7.761546E-5,1.57388549E-4,2.7953476E-4,4.071137279999999E-4,5.84938036E-4,8.20383939E-4,0.00109423132,0.0013734405229999997,0.0016969901,0.00203775487,0.0023955241200000004,0.00275819964,0.003196538960000001,0.0036757273099999994,0.00415098878,0.00449939238,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,transportation,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,transportation,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,building,1 liquids,1.995717,1.903792,1.538606,1.4760259999999998,1.5316990000000001,1.6174320000000002,1.6503999999999999,1.696419,1.7650810000000001,1.8407660000000001,1.927346,2.006645,2.0892020000000002,2.1494869999999997,2.202165,2.2309289999999997,2.232564,2.208239,2.176748,2.122611,2.070208,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,building,2 gas,6.857001499999999,7.5971238,7.623211599999999,7.901981300000001,8.1621116,8.501142799999998,8.7254854,8.892708200000001,8.9885057,9.0143052,9.0290472,8.91884989,8.81713057,8.66752451,8.55648145,8.43352404,8.35318246,8.29376543,8.23417044,8.193871260000002,8.10728638,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,building,3 coal,0.4034468,0.0880316,0.0631667,0.0609929,0.0607137,0.061541,0.0609835,0.0603542,0.0590532,0.0576322,0.0559127,0.0539786,0.0517467,0.0490204,0.0461795,0.0431283,0.0400123,0.0370123,0.034207,0.0317893,0.0297391,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,building,4 biomass,0.566659,0.5762028,0.5111529,0.49100509999999997,0.5318383,0.547092,0.555327,0.540619,0.4890947,0.45659859999999997,0.43106069999999996,0.40941659999999996,0.3875991,0.3681842,0.34560630000000003,0.32096119999999995,0.2938081,0.2656561,0.23947629999999998,0.21785890000000002,0.1958782,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,building,5 electricity,6.341497,9.952225,10.400421,11.553556,12.394338999999999,13.164000999999999,13.928917,14.689527,15.524518999999998,16.314585,17.168728,17.873125,18.582266,19.171106,19.755811,20.199565999999997,20.559544000000002,20.787279,21.014522999999997,21.261668999999998,21.435685999999997,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,building,6 hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,building,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,building,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,industry,1 liquids,6.9232604,8.417748000000001,7.2263361,7.4053317,7.788068,8.263354,8.623408999999999,9.001048,9.412405,9.842858,10.324622,10.756204,11.227038,11.660814,12.146049999999999,12.588935999999999,13.030518,13.446168,13.889695,14.307273,14.710416,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,industry,2 gas,7.36497798,6.818757400000001,6.594192659999999,6.7169471,6.9321833,7.263305400000001,7.4887885999999995,7.6693319,7.781959199999999,7.8379812,7.874241100000001,7.826918200000001,7.8033294999999985,7.762112800000001,7.7941062,7.842688699999998,7.9875701,8.2040913,8.442767600000002,8.702586900000002,8.961096399999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,industry,3 coal,2.652244,1.6495320000000002,1.544009,1.5562600000000002,1.6161869999999998,1.72139,1.804808,1.902282,2.00958,2.1182879999999997,2.242228,2.359224,2.480563,2.576713,2.676328,2.755146,2.8146109999999998,2.852778,2.9043669999999997,2.9734019999999997,3.075165,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,industry,4 biomass,1.6154229599999999,1.60173148,1.47476959,1.48138751,1.65897392,1.8270990999999999,1.9684618099999998,2.0659206400000003,2.07603153,2.12328151,2.20560773,2.27936979,2.36607552,2.45254232,2.54253481,2.6146931600000003,2.66824879,2.69783845,2.7407833599999996,2.79506119,2.8384755800000003,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,industry,5 electricity,3.2840121,3.4674655,3.2956417,3.7751389,4.0106977,4.180938899999999,4.4066025,4.647985,4.9534893,5.2570345000000005,5.5889679,5.9040124,6.236478699999999,6.5575977,6.8986056,7.2182445,7.5317024,7.815023,8.129200999999998,8.479077,8.837048,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.015333280000000001,0.025643219999999998,0.037770069999999996,0.052292229999999995,0.0693623,0.0894022,0.1132649,0.12424099999999999,0.13741019999999998,0.1519372,0.1657239,0.1803623,0.19580019999999998,0.21108280000000001,0.2289374,0.24851449999999997,0.25615509999999997,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,industry,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,industry,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,transportation,1 liquids,21.628502289999997,27.76724092,26.014380390000003,27.19705056999999,27.824570419999986,28.13373735,28.376492929999998,28.5896762,29.308240000000005,29.9194753,30.585381599999998,31.2811084,32.177661600000015,33.003348200000005,34.01195159999999,34.92627230000001,35.8422153,36.632663899999976,37.56621100000001,38.53758020000001,39.57991960000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,transportation,2 gas,0.0,0.0223528,0.029762,0.19126589,0.443993626,0.8538107650000001,1.3089401319999998,1.8277781319999997,2.317443516,2.8440029390000006,3.525090936,4.008234478,4.526037637000002,5.038258720000002,5.59032935,6.13157359,6.680187149999998,7.2151159,7.80144108,8.41721222,9.094461589999998,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,transportation,3 coal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,transportation,4 biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,transportation,5 electricity,0.014848598900000001,0.026844098,0.027507697999999997,0.033904413,0.05316787800000001,0.08307616599999999,0.118022027,0.159923895,0.20252611400000003,0.25361536300000004,0.31545724100000005,0.38479401600000007,0.46771596000000004,0.5608738999999999,0.6716057,0.79470026,0.9328202399999999,1.08472001,1.25697492,1.4529228699999999,1.6179335100000003,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,transportation,6 hydrogen,0.0,0.0,0.0,0.0,0.01246274,0.04078268,0.07727438,0.12222346,0.166362486,0.217265397,0.27495588000000004,0.33476771,0.40102861999999995,0.4701721,0.54565092,0.62205654,0.70008057,0.7773108400000001,0.8567437399999999,0.9387341499999999,1.0104867899999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,transportation,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,transportation,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,building,1 liquids,0.0448266,0.06626972,0.07425672999999999,0.08879800000000002,0.12396144,0.17518661000000002,0.24029095,0.32608064000000003,0.44294,0.58913555,0.76916339,0.9842785000000001,1.2309988,1.4969842,1.7709706,2.0022569,2.0691981999999998,2.3574748999999997,2.4560908,2.5190254,2.5837678,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,building,3 coal,3.9100001000000003E-4,5.518002E-4,5.709993E-4,6.011422E-4,7.043776E-4,8.238647999999999E-4,9.632735E-4,0.0011391737,0.0013208407,0.0015109714,0.0017094527,0.0019100117,0.0021152945,0.0023097141999999997,0.0024784283,0.0026320406,0.0028283913999999997,0.0027609451,0.0027367767,0.0026501266000000002,0.0025715157999999998,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,building,4 biomass,0.1563437,0.22469619999999998,0.2820818,0.3229324,0.4093734,0.497112,0.591666,0.685768,0.738866,0.772446,0.791768,0.789566,0.7719560000000001,0.7431220000000001,0.685779,0.629719,0.590418,0.509045,0.455773,0.40413200000000005,0.358489,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,building,5 electricity,0.015242370000000002,0.03374171,0.05263095,0.08440288,0.13162233,0.20376322,0.3049964,0.4334126,0.6196820999999999,0.8762942999999999,1.2167864,1.6506216999999999,2.1805253,2.8116959,3.5445699999999998,4.366152,5.281249,6.1911950000000004,7.137661,8.050559,8.97776,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,building,7 trad biomass,1.377214,2.0188930000000003,2.5967089999999997,2.672556,2.734092,2.761708,2.761715,2.7476529999999997,2.700313,2.626234,2.44965,2.2126710000000003,1.977441,1.7540969999999998,1.552178,1.3890479999999998,1.277784,1.1488450000000001,1.0704179999999999,1.0106549999999999,0.986402,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,industry,1 liquids,0.054588197,0.08156386700000001,0.1206729,0.17663790000000001,0.2606461,0.391304,0.5723554999999999,0.819586,1.1721276,1.6276883000000002,2.204685,2.9078199999999996,3.7147349999999997,4.597665,5.5365779999999996,6.410479,6.997322,8.030336,8.756253000000001,9.458409,10.152541999999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,industry,2 gas,0.0,0.00153791,0.00491755,0.008261283,0.01315444,0.019179655,0.026750162,0.035756922000000003,0.046015163000000005,0.058629102999999995,0.073758604,0.086198902,0.09508697200000002,0.10191297300000002,0.10754591099999998,0.112437585,0.12027140599999998,0.119622199,0.123554272,0.125210344,0.12426599199999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,industry,3 coal,0.0045074699999999995,0.00358983,0.00541175,0.00823908,0.0115961,0.0162694,0.0226349,0.0309942,0.0427294,0.0587747,0.0801428,0.101695,0.121237,0.139535,0.156717,0.173915,0.197566,0.202639,0.21359,0.222387,0.229851,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,industry,4 biomass,0.44015706,0.60519625,0.67671868,0.8104729,1.1121268,1.5126759,2.0271001,2.6489623,3.3426802999999996,4.0857276,4.874357,5.6638209999999996,6.394404,7.028704,7.4512,7.748150000000001,8.078322,7.896484,7.865778,7.758796,7.632605000000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,industry,5 electricity,0.012891650000000001,0.02265804,0.0285127,0.05765379,0.09280925000000001,0.1479893,0.2248366,0.3176642,0.45708289999999996,0.6451754999999999,0.8859432,1.1808632000000001,1.5149229000000002,1.8757649,2.2722164,2.668218,3.042317,3.454701,3.837114,4.1998310000000005,4.5543499999999995,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.004694820000000001,0.0107988,0.02198687,0.042058200000000004,0.0753027,0.1272353,0.2041532,0.278095,0.37198,0.48395,0.599837,0.732582,0.913581,0.9949790000000001,1.139125,1.2722129999999998,1.30346,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,transportation,1 liquids,0.2055768013,0.29433523600000006,0.413631294,0.479821052,0.590960851,0.7341900109999999,0.9103050230000004,1.1224452828,1.3861342940000005,1.7157656179999998,2.113410225999999,2.661087938999999,3.3374794380000012,4.1512233169999995,5.110206685999999,6.166584375000001,7.183938174000001,8.476828335999997,9.687838361999999,10.897817806,12.081348146000005,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,transportation,2 gas,0.0,0.0,0.0,0.0050890065,0.0164988915,0.03775589049999999,0.07148048660999999,0.12143265190000001,0.19150634459,0.28694323870000005,0.4176602295399999,0.560331781,0.7252323796,0.9121121430000001,1.1214846630000002,1.3558713929999997,1.634608599,1.9124011980000002,2.2075503119999995,2.514458421,2.813755884,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,transportation,3 coal,1.67599E-4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,transportation,5 electricity,0.0,1.7599920000000002E-5,1.779993E-5,1.3775991148199998E-4,3.10744377792E-4,5.31083567712E-4,7.93688772126E-4,0.0010296248497999995,0.0012975481945,0.001560262674,0.0018029383000000001,0.0020118691780000005,0.00227602334,0.0026978748700000003,0.0034250637399999995,0.00466272548,0.006764329099999999,0.00987468336,0.014688639,0.0218442953,0.027777262999999996,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,transportation,6 hydrogen,0.0,0.0,0.0,0.0,1.3893732999999999E-5,5.2896824799999997E-5,1.239869242E-4,2.47396148E-4,4.535843146E-4,8.140123822000001E-4,0.0014115133293,0.002452987129,0.004014261315,0.006272315202999998,0.009446068443,0.013721934990000002,0.019505334830000002,0.026293057800000002,0.03446606361,0.0439157126,0.05266388013,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,building,1 liquids,0.31737679999999996,0.45582348,0.4418922,0.4551233,0.512742,0.5927998000000001,0.6573727,0.7091953,0.7658882,0.8202927,0.8730737000000001,0.9257246,0.9796170000000001,1.0250234,1.063021,1.068953,0.9889527999999999,1.05074,1.0233254999999999,0.997067,0.9884219999999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,building,2 gas,0.049185502,0.1752676,0.224411,0.2350235,0.2812803,0.3379664,0.3914145,0.43624660000000004,0.4687147,0.49606419999999996,0.5179625999999999,0.533585,0.545018,0.5501429999999999,0.550846,0.548522,0.552636,0.534092,0.530087,0.52069,0.515652,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,building,3 coal,1.700006E-6,7.56700006E-4,3.499998E-6,3.5837799999999998E-6,3.97637E-6,4.463943E-6,4.863772E-6,5.168282E-6,5.393503E-6,5.568903E-6,5.685675E-6,5.725180600000001E-6,5.716540599999999E-6,5.6109899E-6,5.4347902E-6,5.2243658E-6,5.0958882E-6,4.6699069E-6,4.3792017E-6,4.0913362E-6,3.9239614E-6,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,building,4 biomass,0.0033089001,0.0065225,0.0070573,0.0073336,0.007648469999999999,0.00765214,0.00754581,0.0072277,0.00658848,0.0060009500000000006,0.00548219,0.004973689999999999,0.00452222,0.00410884,0.0036472600000000003,0.0032533700000000002,0.002939946,0.002593341,0.00234313,0.002122361,0.0019514250000000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,building,5 electricity,0.11678708,0.3554645,0.4836962,0.5038952999999999,0.6605013,0.8810969,1.1416999,1.42629,1.722108,2.021057,2.311175,2.586955,2.844298,3.084033,3.2870289999999995,3.460407,3.628163,3.703372,3.779095,3.8226890000000004,3.878228,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,building,7 trad biomass,0.062738,0.0925072,0.1004378,0.1019697,0.10360559999999999,0.1073162,0.1134895,0.1217856,0.1318958,0.14343904999999998,0.15586668,0.16870107,0.18207475,0.19569315,0.208791222,0.221039922,0.232454794,0.24345092799999998,0.253651601,0.263063534,0.27328516199999997,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,industry,1 liquids,0.5869305,0.8191328999999999,0.7419,0.800566,0.9175300000000001,1.076041,1.222995,1.362741,1.5242490000000002,1.684584,1.8436860000000002,2.004476,2.1623870000000003,2.305769,2.432979,2.4994229999999997,2.40021,2.5798089999999996,2.5802229999999997,2.587588,2.612795,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,industry,2 gas,0.5557745000000001,0.9602778999999999,1.1113282,1.1887494,1.4153389,1.6886339000000001,1.9678621,2.2302109999999997,2.4580949,2.6667980000000004,2.84754239,3.0006737599999997,3.1214314899999995,3.2108090600000003,3.2732446100000003,3.3250217999999996,3.4365111999999995,3.39666679,3.4533563499999995,3.48777674,3.50826736,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,industry,3 coal,0.07924339999999999,0.0726766,0.0501127,0.0614622,0.0665497,0.0707456,0.0747732,0.0787382,0.0825698,0.0859856,0.0887753,0.0909648,0.0926705,0.0937062,0.0944276,0.0957694,0.101134,0.0965517,0.0961068,0.0953571,0.0947588,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,industry,4 biomass,0.02697865,0.0438617,0.0871743,0.1015421,0.11634710000000001,0.1305213,0.1457087,0.1590748,0.1669416,0.1738093,0.1800933,0.18485790000000002,0.1890543,0.1928781,0.19231710000000002,0.19282080000000001,0.1985966,0.19219540000000002,0.1926952,0.193332,0.1941905,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,industry,5 electricity,0.1247622,0.2386472,0.2951302,0.31881780000000004,0.4117438,0.5322276,0.6758014,0.8337563,0.9968201,1.1559842999999999,1.3038355,1.4387229,1.5567160000000002,1.6647444,1.7526626,1.8390906999999999,1.9572251,1.9768898,2.0275485,2.0641671,2.0893353,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.002089019,0.004061777,0.00680386,0.01036414,0.01475163,0.020134469999999998,0.02657618,0.03020799,0.03427441,0.03858019,0.0422945,0.04632939999999999,0.0516759,0.05419740000000001,0.0586038,0.0631874,0.06497710000000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,transportation,1 liquids,0.7373008900000001,1.138068019,1.5997735289999997,1.6409797309999996,1.8852278300000003,2.2057111019999995,2.5307838209999995,2.8477110419999994,3.1510917949999997,3.435838486000001,3.6698506929999994,3.9961306819999995,4.328132828999999,4.668303535000002,5.024545612,5.352810648999999,5.578373579999999,5.902048184,6.1531082900000005,6.372236970999999,6.547309002000002,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,transportation,2 gas,0.0,0.0103799178,0.015653388,0.0315698257,0.0708809937,0.14234899399999998,0.24370443230000002,0.38091638110000003,0.5485091636000002,0.7506619553,1.0166509428000001,1.2297067780000002,1.4417452560000004,1.646883397,1.8438924209999996,2.0324326200000007,2.2383924579999994,2.4166680720000007,2.5948569949999998,2.7710903610000006,2.923183200000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,transportation,3 coal,6.99992E-7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,transportation,5 electricity,0.001799988,0.00316035,0.00363956,0.00459557621044,0.00578821386569,0.006927087011509001,0.007957882507885001,0.008826453590148997,0.009623767900999997,0.010338985509,0.011015347200000001,0.011776803980000002,0.012650426740000005,0.01376486974,0.01524401887,0.017224701670000002,0.020117322300000004,0.023562961599999998,0.028491646800000003,0.0351785505,0.0402191016,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,transportation,6 hydrogen,0.0,0.0,0.0,0.0,5.2550552E-5,2.02423246E-4,4.3560216500000004E-4,7.90037076E-4,0.0012490517937999998,0.0019207029900000002,0.0028602267640000004,0.004178553459999999,0.005796641687000001,0.007780235222999999,0.010331269260000001,0.013379374070000002,0.017090823510000002,0.02112902284,0.02576352451,0.03086049737,0.03511625366999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,building,1 liquids,0.03188183,0.0405157,0.08338994999999999,0.09544389,0.11798409,0.14879461,0.17880831000000003,0.21096342,0.25784125,0.32054649999999996,0.4012002,0.5005310000000001,0.6174618000000001,0.7458197,0.8828449,0.9973559999999999,1.0069461,1.1827716000000001,1.2303462,1.2572968,1.3144859,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,building,2 gas,0.0,0.0,0.0028465,0.00344206,0.00440566,0.00566171,0.00704253,0.00857645,0.0104744,0.0130188,0.0163126,0.0203453,0.0250722,0.0303832,0.0361434,0.0421499,0.048664,0.0532191,0.0580783,0.061211,0.0649748,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,building,3 coal,0.010053918,0.00376001,0.0034279030000000004,0.0037179636,0.0042428347,0.004831105,0.0053767269999999995,0.005916243999999999,0.006502928,0.007179097,0.007925179000000001,0.008674395,0.009414717,0.010060006000000002,0.010567404,0.010947434999999998,0.011321658,0.010946959,0.0105621,0.009962650100000001,0.0096724903,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,building,4 biomass,0.0797127,0.13983790000000001,0.15706189999999998,0.1792785,0.2165977,0.2529359,0.2853499,0.3100543,0.31990260000000004,0.3260675,0.3279688,0.3211103,0.3081222,0.29038390000000003,0.2627722,0.23507820000000001,0.2090343,0.1819288,0.1592142,0.1383329,0.1239046,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,building,5 electricity,0.02358604,0.04908358,0.06535547,0.11287536999999997,0.16159212,0.22718946,0.3133541,0.4210018,0.5677631999999999,0.7679718,1.031555,1.3629524,1.7619297999999999,2.228327,2.7498839999999998,3.3169250000000003,3.947193,4.499295,5.075724,5.602281,6.1016449999999995,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,building,7 trad biomass,0.9525201,1.331009,1.516337,1.52976,1.5516969999999999,1.563311,1.5613110000000001,1.551003,1.527093,1.449788,1.3308149999999999,1.192298,1.0511,0.9142699999999999,0.7894760000000001,0.6838040000000001,0.599917,0.5282450000000001,0.473905,0.43339799999999995,0.413695,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,industry,1 liquids,0.04276275,0.06480983,0.07667958000000001,0.1129492,0.1580112,0.2226539,0.3008638,0.3984097,0.534643,0.7160074,0.9502022,1.2399753,1.5772826,1.9528748999999999,2.358163,2.756345,3.0797130000000004,3.557975,3.9566060000000003,4.360753999999999,4.77563,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,industry,2 gas,0.01846021,0.02548748,0.03251982,0.05063589000000001,0.06865592000000001,0.09132639000000001,0.116100748,0.14304282799999998,0.17543953400000004,0.214934909,0.26107751199999996,0.30947060299999996,0.35611187599999994,0.398777194,0.438594691,0.4722270959999999,0.505471736,0.5232359289999999,0.5462618590000001,0.560195223,0.5745287319999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,industry,3 coal,0.07109597000000001,0.03916395,0.02958568,0.04348127,0.0566169,0.0735982,0.0924034,0.1140781,0.1429185,0.1800536,0.2262752,0.28022919999999996,0.3367853,0.39171,0.445114,0.494476,0.546962,0.571441,0.598181,0.618785,0.647707,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,industry,4 biomass,0.296921395,0.476782008,0.5514989969999999,0.63905988,0.7960482900000001,0.97914024,1.16737878,1.35602847,1.5470383399999998,1.7551080899999998,1.9740612,2.1818261999999997,2.3611724,2.5019367,2.565098,2.5787462999999997,2.5570185000000003,2.4849167000000003,2.4075109,2.3169162,2.2673895,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,industry,5 electricity,0.0484582,0.08214114,0.08241878,0.16659579,0.23645159000000002,0.32769356000000005,0.44608684,0.5921967,0.7902227000000001,1.0462447,1.36185,1.7377702000000002,2.1546083,2.5980819,3.0582602,3.5041523,3.9417448999999998,4.3188736,4.6900191,5.0266695,5.2705527,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.003019839,0.00621087,0.0108811,0.01752595,0.027292030000000002,0.041550000000000004,0.0615486,0.07836219999999999,0.0982556,0.1205039,0.14238689999999998,0.1646818,0.1877684,0.2060165,0.2255713,0.24300739999999998,0.2529971,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,transportation,1 liquids,0.15221095989999997,0.2130339799,0.316482939,0.38193708800000004,0.45403490199999996,0.5395458000000001,0.6302186810000001,0.727689532,0.8474216999999998,0.9997156390000003,1.182016006,1.4433936760000001,1.763907903,2.144978333,2.590590121,3.075872995999999,3.5384414250000003,4.112332735000001,4.6520797379999985,5.18206258,5.690688054000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,transportation,2 gas,0.0,0.0,0.0,0.0053195174,0.015188026899999998,0.03268445519999999,0.058456322090000006,0.09481568621,0.14498322917999995,0.21352026620000006,0.3097427098,0.41196508330000003,0.5292927523,0.66185815,0.810348671,0.9763686390000004,1.175717906,1.3729136779999997,1.584805865,1.8057217380000001,2.021787296,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,transportation,3 coal,0.00552251,2.09295E-4,2.09296E-4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,transportation,5 electricity,4.45992E-5,4.09995E-5,7.69992E-5,2.44317849924E-4,4.35508169784E-4,6.385606192350001E-4,8.64577461311E-4,0.0010762893806880002,0.0012994156210000005,0.00151105896,0.0017126509529999997,0.001912297949,0.0021742741779999996,0.0025863971699999996,0.0032723883199999994,0.004406463310000001,0.0063360389,0.009096948150000003,0.013354760399999999,0.0196510954,0.0247595522,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,transportation,6 hydrogen,0.0,0.0,0.0,0.0,1.2295983700000002E-5,4.5024355E-5,9.83938583E-5,1.8282740419999998E-4,3.156935036E-4,5.437802135999999E-4,9.229269165E-4,0.0015816590999999998,0.0025632427279999996,0.00398180534,0.0059926884719999985,0.008702946181,0.01236427024,0.016706447649999998,0.021948524419999997,0.02801656052,0.03364980673000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,building,1 liquids,0.12946160099999998,0.160705604,0.185731176,0.25048198499999996,0.334026471,0.50541163,0.72750357,1.00357259,1.3807836,1.8662325499999999,2.47870427,3.23730028,4.15057925,5.19523623,6.3378318700000005,7.36451379,7.73793868,9.194687850000001,9.796316820000001,10.259224289999999,10.86704769,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,building,2 gas,0.0,0.005986,0.0077441,0.0103692,0.0135047,0.0193112,0.0272649,0.0375227,0.0506163,0.0679371,0.0903934,0.118697,0.153332,0.193695,0.239391,0.289743,0.350509,0.393142,0.444002,0.484272,0.524786,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,building,3 coal,0.002655,0.003553999909,0.003992399987,0.005630502828,0.00756496523,0.010640853491,0.014079059416000001,0.017650945317,0.021279313724,0.024865221168000003,0.028234342718,0.031049249605000002,0.033316807699,0.034948233839,0.035740490003,0.035944012066,0.036581534531,0.034158926128,0.032425784400000005,0.030392128061,0.029349204073,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,building,4 biomass,0.1991744,0.2311539,0.2366298,0.3139771,0.41279279999999996,0.54634,0.690713,0.822178,0.909073,0.978529,1.031768,1.055155,1.058509,1.049753,0.998896,0.9424220000000001,0.900334,0.8094,0.7438589999999999,0.677814,0.627298,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,building,5 electricity,0.048461569999999995,0.1113703,0.1300411,0.1779383,0.254683,0.4080828999999999,0.6443279000000001,0.9835372,1.459375,2.105731,2.953596,4.028084,5.3314200000000005,6.9048169999999995,8.681916000000001,10.665705,12.97675,14.81438,16.875529999999998,18.74188,20.45945,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,building,7 trad biomass,3.31438953,5.054457299999999,5.700202,6.0471768,6.3180368,6.5011948,6.5794907,6.5788513,6.5035933,6.368346,6.184027700000001,5.9469567,5.6475811,4.9335638,4.2310893,3.5850658,3.0707405999999997,2.4618317,2.0053591,1.6232924,1.3498095,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,industry,1 liquids,0.0919113,0.12798400000000001,0.1194882,0.1846219,0.2706484,0.43683599999999995,0.6742111,1.0008138,1.4594390000000002,2.06428,2.839452,3.795002,4.914144,6.171903,7.540568,8.897799000000001,10.003234,11.629961,12.971077999999999,14.329092000000001,15.718660999999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,industry,2 gas,0.046632190000000004,0.17940138,0.14319431999999999,0.207184661,0.279894802,0.4199543750000001,0.6084787719999999,0.848600455,1.1548391580000001,1.5303131290999998,1.9720242460000001,2.471056406,2.993371304999999,3.5169117340000002,4.051396983,4.545893067,5.046904247000001,5.419273415000001,5.836745607000001,6.168268057999999,6.4710001440000005,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,industry,3 coal,0.00928509,0.0129947,0.0181149,0.027700919999999997,0.03702203,0.05334436,0.07572593999999999,0.10532440000000001,0.1452648,0.19858009999999998,0.2638382,0.3305216,0.3954095,0.4589452,0.5188014,0.5798289000000001,0.661321,0.6856402,0.7285026,0.7659123,0.8011569999999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,industry,4 biomass,0.65619142,1.10237948,1.25090791,1.60216934,2.0586648,2.82391935,3.7639103,4.8314390000000005,5.9838977,7.2219518,8.5388196,9.8701849,11.134168,12.2628191,13.0797114,13.6656135,14.1026965,14.1822152,14.2217585,14.1710777,14.2021389,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,industry,5 electricity,0.04768488,0.050792989999999996,0.06320081999999999,0.0932568,0.13908210000000001,0.2300032,0.3670155,0.5613621,0.8339794,1.1865881999999999,1.6205605,2.138561,2.709216,3.32615,3.977204,4.625263,5.246287,5.791975,6.3297159999999995,6.812158,7.158925999999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.00710049,0.01657077,0.03329531,0.0607766,0.1047614,0.1717544,0.26944619999999997,0.3608883,0.47413500000000003,0.606919,0.749498,0.9045909999999999,1.079701,1.2311649999999998,1.402519,1.573317,1.6791209999999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,transportation,1 liquids,0.413407039,0.7722052100000001,0.7672579799999999,0.910416365,1.0762346700000003,1.3535596970000001,1.690558433000001,2.0876384810000004,2.5614742150000005,3.131951682000001,3.792583551,4.682055603999999,5.737183558999997,6.948802824999996,8.32083703,9.768102857000004,11.093120016,12.691799027000002,14.146240254999997,15.533401965999998,16.824867907000005,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,transportation,2 gas,0.0,0.0,0.0,0.0118284659,0.034204042999999996,0.08180164270000001,0.1576323827,0.26982849226,0.42573850110000006,0.6376150507,0.9293393309000001,1.2488205032000002,1.6138935810000004,2.022042097,2.47315374,2.9681781399999996,3.548500531,4.11044204,4.70384163,5.313653820000001,5.89812086,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,transportation,3 coal,2.52794E-4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,transportation,5 electricity,0.0,1.959982E-5,5.85995E-5,3.7405970735000007E-4,7.68258757533E-4,0.001253009612171,0.0017988366646669999,0.0023032063853879988,0.0028027701704,0.003261874976,0.0037217113029999996,0.0042487887799999985,0.005053909869999999,0.006393157739999999,0.008606805099999998,0.012157587199999998,0.017906890200000004,0.025912901800000002,0.037842871800000004,0.0549764125,0.06839713039999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,transportation,6 hydrogen,0.0,0.0,0.0,0.0,2.8597405999999998E-5,1.23870137E-4,3.01865933E-4,6.127007455E-4,0.001129249688,0.00201477056,0.00347855467,0.005923213277,0.009467072744,0.014412416950000001,0.02119726936,0.03006328538,0.04167588614,0.05498760449000001,0.07073285677,0.08861035780000001,0.1046802281,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,building,1 liquids,0.0809572,0.05584122,0.06752019000000001,0.0713897,0.06576393,0.06922082,0.0708524,0.0720157,0.07412804,0.07557517999999999,0.07667399000000001,0.07779194999999998,0.07900955,0.07943589,0.07941333,0.07693403,0.06796205,0.07063968000000001,0.06606597,0.06204752,0.059536729999999996,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,building,2 gas,0.21289954,0.30026179999999997,0.3653123099999999,0.39438512,0.37381215,0.41130170999999993,0.44074744,0.46099106,0.47099493000000003,0.47479967,0.47451433000000004,0.46987781,0.46205098999999994,0.45008491,0.43630789000000003,0.42042109,0.40554514999999997,0.38666905,0.37133384,0.35359379999999996,0.338938886,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,building,4 biomass,0.0036417999999999997,0.016199799999999997,0.0115951989,0.011029473299999999,0.011244803300000002,0.0106436069,0.010121210700000001,0.009455940500000001,0.0084869863,0.0076440947,0.0069174779999999995,0.0062266636000000005,0.005626344500000001,0.0051114833000000005,0.0045163107,0.0040232821,0.0036344188,0.0032087355,0.0028842629999999998,0.0026035169,0.002382294,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,building,5 electricity,0.06391749,0.15595868,0.20692470000000002,0.2383114,0.242919,0.3015277,0.3650955,0.4312117,0.49533720000000003,0.5550552,0.6115586000000001,0.6645053,0.7122044000000001,0.75681,0.7944888999999999,0.8269325999999999,0.8558391999999999,0.8771019,0.8956734,0.9102815,0.9232597,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,building,7 trad biomass,0.005148801,0.0028465,0.0020511,0.0018508230000000001,0.001919111,0.0016127889999999999,0.001364919,0.001163652,0.00100622,8.7767E-4,7.657289999999999E-4,6.65935E-4,5.80079E-4,5.0393E-4,4.3622130000000003E-4,3.790394E-4,3.346483E-4,2.818388E-4,2.4020699999999999E-4,2.048432E-4,1.7850450000000002E-4,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,industry,1 liquids,0.19623962,0.48063700000000004,0.47314339999999994,0.5175773,0.5119957,0.5533807,0.5852799,0.6144242,0.6481806999999999,0.67751,0.7056844,0.7347899999999999,0.7638911999999999,0.7897495,0.8138019,0.8238084999999999,0.7944515,0.8334981,0.8287679000000001,0.8265313000000001,0.8293488,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,industry,2 gas,0.28787105,0.46724465,0.45276187,0.4888616,0.49049188000000005,0.5349754600000001,0.57376436,0.6029987,0.6191100399999998,0.6289303799999998,0.634468501,0.6351777589999998,0.631217697,0.624285533,0.6159924730000002,0.6094712659999998,0.6178429179999999,0.5965058499999999,0.5952409150000001,0.5900177310000001,0.583227682,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,industry,3 coal,0.02473931,0.01063244,0.00766045,0.00957692,0.00970429,0.0109243,0.0121092,0.0132107,0.0141942,0.0150643,0.0158401,0.0165045,0.0170742,0.0175483,0.0179336,0.0184481,0.0197568,0.019107,0.0193048,0.0194177,0.0195212,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,industry,4 biomass,0.058771409999999996,0.05098543,0.038758230000000005,0.04210142,0.04254855,0.046690579999999995,0.050722779999999995,0.053737850000000004,0.05484061,0.05550728,0.056179969999999996,0.05652712,0.05684143,0.05715771,0.05641261,0.0560259,0.05694352,0.05490415,0.05449859,0.05413238,0.05401815,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,industry,5 electricity,0.07634254,0.15035727000000002,0.16188983,0.17943211,0.19331921999999999,0.22741534,0.26427862,0.30107352,0.33422138,0.36321503,0.38846586,0.41013875,0.42748154,0.44380047,0.4561385,0.4702803,0.4942473,0.4925406,0.5029294,0.5108476,0.5159892,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.001008606,0.001734447,0.002610706,0.003624266,0.00474421,0.00599956,0.007411640000000001,0.00794473,0.0085557,0.009207779999999999,0.00972562,0.01032739,0.01121848,0.01145851,0.01204444,0.01260704,0.01260962,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,transportation,1 liquids,0.4180661688999999,0.4871503766,0.6195451659000001,0.6674447174000001,0.6511632395000001,0.7045618361999998,0.7514265641000003,0.7887644743000002,0.8190306554500002,0.8375054482199998,0.8378034733200002,0.8533986376,0.87232400309,0.8930052872500002,0.9170816469699997,0.93779470731,0.9426007394400002,0.9647126259400002,0.97647032889,0.9843879520099997,0.9895830437700001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,transportation,2 gas,0.007575793,0.11095770000000002,0.09329499999999999,0.102479089,0.10009396400000001,0.11572415500000001,0.14197850099999998,0.17826356199999993,0.223516757,0.27249226229999984,0.33833213060000006,0.37442640470000005,0.40590948099999996,0.43431324700000007,0.45825914700000026,0.47908371200000016,0.5031833899999999,0.5211534989999999,0.5396067709999999,0.5577517000000001,0.57216916,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,transportation,3 coal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,transportation,5 electricity,0.001099893,0.002065683,0.002219177,0.0037466032289999998,0.005451033629,0.007932842047,0.010732518317999996,0.013956568985999998,0.017233218040000005,0.020914988929999996,0.025380880679999995,0.029736830040000002,0.033877221420000006,0.037926402389999996,0.04224991311999999,0.046726874249999995,0.05153916616,0.0563766626,0.061594096699999996,0.06696832179000001,0.07047448382999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,transportation,6 hydrogen,0.0,0.0,0.0,0.0,2.3909152E-4,0.00110362795,0.0023020987199999995,0.0038333554800000008,0.005392272410000001,0.007094223529999999,0.00905507862,0.011135403149999997,0.013429725859999998,0.0159464077,0.018831386,0.021928493200000003,0.025148521900000005,0.028393896000000005,0.031766706900000004,0.03510800309999999,0.03796527319999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,building,1 liquids,0.03407399,0.04177629,0.0457112,0.04677562,0.050924290000000004,0.05499751,0.05707039,0.058762,0.0614559,0.06377920000000001,0.06563245000000001,0.06736351,0.06964229,0.07139380000000001,0.0730197,0.07197567,0.06345144,0.06769725,0.06386211,0.06033476,0.05711031,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,building,2 gas,0.1194684,0.1701608,0.1861932,0.208209,0.22755910000000001,0.2496867,0.2643624,0.2752695,0.2831545,0.28981290000000004,0.2938904,0.2953048,0.2947845,0.292666,0.29080700000000004,0.28800400000000004,0.2851885,0.28181670000000003,0.2802963,0.27622,0.2703334,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,building,3 coal,0.0108836,0.0056511,0.0031814,0.003494669,0.003681591,0.0039077420000000005,0.00399697,0.004043908000000001,0.004072375,0.004089077,0.004089204,0.004058077,0.004009682,0.0039185,0.003795741,0.0036568860000000003,0.003501423,0.0033031130000000003,0.003097668,0.00287918,0.002675893,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,building,4 biomass,0.080413,0.0667248,0.0635434,0.0656869459,0.068210362,0.06985746859999999,0.07101852550000001,0.0709267446,0.0683721302,0.0658409659,0.0637122986,0.0613723994,0.0589888761,0.0564818917,0.0524577865,0.04865370869999999,0.044788932000000004,0.04112368970000001,0.037455078800000007,0.034029874,0.030590000300000003,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,building,5 electricity,0.2963367,0.4695266,0.5169318,0.58024075,0.6639672999999999,0.7452637,0.8270482,0.9064340000000001,0.9866653999999999,1.0674144,1.1435491999999998,1.2174233,1.2904083,1.3593096,1.4209926,1.4727344,1.5168408000000002,1.5417695,1.5565472000000002,1.5597514000000001,1.5525262999999998,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,industry,1 liquids,0.36748899999999995,0.517473,0.5251750000000001,0.554153,0.6062879999999999,0.658122,0.705549,0.755207,0.815685,0.876402,0.9379790000000001,1.002381,1.0718590000000001,1.138634,1.204294,1.2513649999999998,1.243708,1.3238729999999999,1.340628,1.355741,1.3691710000000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,industry,2 gas,0.4086009,0.6497929,0.7403268,0.82393293,0.8853543,0.9541744600000002,1.00820896,1.04789537,1.0736052,1.0955970400000001,1.1112181,1.1177205600000004,1.1153426400000002,1.1085599,1.10315436,1.1012123299999999,1.1183525,1.1066117899999999,1.12214269,1.1285157000000001,1.13092085,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,industry,3 coal,0.2866992,0.2602018,0.2586948,0.2902016,0.3093172,0.3323502,0.3501786,0.36724270000000003,0.3858537,0.4048486,0.4237423,0.44133320000000004,0.45854459999999997,0.4724737,0.4829753,0.49208080000000004,0.5040845,0.49631050000000004,0.4901553,0.4812367,0.4754769,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,industry,4 biomass,0.11540802,0.18016538,0.17053739999999998,0.18925842,0.20563019,0.22346370999999998,0.23796166,0.24957494,0.25488995000000003,0.26041468,0.26672114999999996,0.27146495000000004,0.27624206,0.28065332000000004,0.27877449,0.27739492,0.27747823,0.27078215,0.26654941,0.26150505,0.25641481000000005,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,industry,5 electricity,0.27971266,0.36347565000000004,0.36620450000000004,0.39282584,0.42984689000000004,0.4580541,0.49672017,0.5358246,0.57637472,0.61675912,0.65544369,0.6947342,0.7325722,0.7673215999999999,0.7974021,0.825879,0.8614146,0.8634592,0.870748,0.8716154,0.8672276,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.001983702,0.0033820409999999997,0.005036349,0.0069844799999999995,0.00923008,0.01185299,0.01486683,0.016158969999999998,0.01759987,0.01914518,0.020407770000000002,0.02179314,0.02347529,0.024300099999999998,0.02545837,0.02644116,0.02608329,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,transportation,1 liquids,1.1114332369999997,1.481560313,1.5674822019999997,1.6618600890000002,1.7344018956999996,1.7773682299,1.8166032484999997,1.846572541,1.9037015359999994,1.948381262999999,1.9808626810000005,2.022252471,2.0760211390000003,2.136688349999999,2.2004906129999995,2.2538320880000007,2.280697337,2.329225252,2.3505462520000004,2.361199809,2.371948993,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,transportation,2 gas,0.00280456,0.00196737,0.00293014,0.012045993999999997,0.027481908000000006,0.05288569,0.0843209158,0.12298944229999999,0.16450354039999995,0.21074327300000004,0.27229954520000005,0.309425489,0.34405281899999984,0.3754135799999999,0.403421065,0.427915903,0.4529586200000001,0.4732980639999999,0.49137640099999996,0.507831164,0.5257243470000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,transportation,3 coal,0.00313931,0.00556707,0.00519028,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,transportation,5 electricity,0.00688453,0.012806060000000001,0.01409089,0.01583710033,0.019910767000000003,0.025831092799999997,0.03276471324,0.04101229017,0.0496487731,0.05995065150000002,0.071759259,0.0826334074,0.09303386599999999,0.10287174000000002,0.112442596,0.12195488,0.13211056499999999,0.14163648600000003,0.15108219900000003,0.160180842,0.16543912,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,transportation,6 hydrogen,0.0,0.0,0.0,0.0,0.0013143959,0.0042944291,0.008240413099999998,0.0131294175,0.018122709030000003,0.023840277099999998,0.029989574399999996,0.0367312031,0.0441983029,0.052182722300000005,0.060559482399999996,0.06915270180000001,0.07807934469999998,0.0866235062,0.094800221,0.102463111,0.109023778,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,building,1 liquids,0.26170908,0.28452226999999997,0.29511307,0.33018379999999997,0.3349843900000001,0.3814922,0.41160375999999993,0.43390839999999997,0.46108795999999996,0.48425092,0.5018218,0.51830031,0.53311433,0.53980492,0.54221683,0.52869003,0.47085449,0.48398124,0.45033131000000004,0.41736916999999996,0.39508899999999997,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,building,2 gas,0.008330203,0.018753295,0.020511394000000002,0.019032411,0.019564983,0.022356402999999997,0.024530373,0.026145922999999998,0.027261144,0.028085107,0.028526723999999996,0.028627180999999995,0.02844663,0.027870774,0.027141268999999996,0.026322576999999996,0.025540273,0.024258135,0.023232593,0.021945562000000002,0.020942544,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,building,4 biomass,0.03403213,0.02750209,0.028632170000000002,0.02581211,0.026399870000000002,0.027298749999999997,0.02783302,0.02758006,0.02595727,0.024288689999999998,0.022638129999999996,0.020819269999999997,0.01907831,0.01741488,0.015446110000000002,0.01371087,0.01227722,0.010669326,0.009413626999999999,0.008264145,0.007357420000000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,building,5 electricity,0.28585505,0.54394357,0.71496184,0.77276765,0.87308071,1.09777652,1.3228475,1.5430752,1.7670086,1.9907702,2.2080688,2.4232288,2.629358,2.8227338,2.9976874,3.1662924,3.3281253,3.4408582,3.5491947,3.6316299,3.6900570999999998,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,building,7 trad biomass,0.33324729999999997,0.344634,0.3045312,0.281618,0.2729229,0.2520347,0.23301460000000002,0.2151783,0.1968897,0.1792105,0.1619322,0.14433449999999998,0.1276311,0.1115254,0.0965299,0.08274909,0.07143795,0.05869398,0.048514749999999995,0.039674560000000005,0.03304091,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,industry,1 liquids,0.8698092199999999,1.19577257,1.4597838899999998,1.7380175700000002,1.8346132800000001,2.0317510199999997,2.1820108,2.31594373,2.46683619,2.6019527100000004,2.7180652100000002,2.8263432600000002,2.9256262800000004,3.00699608,3.0791499900000003,3.11021743,3.03549686,3.1321766600000003,3.11554294,3.10174841,3.10156483,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,industry,2 gas,0.09288741,0.38515378,0.48677990000000004,0.5278107,0.56362028,0.63030228,0.68347539,0.72104388,0.74581387,0.76151183,0.76566504,0.76023654,0.74701705,0.7275328999999998,0.7083264300000002,0.6894373100000001,0.6809166,0.6511912399999998,0.63483951,0.61477543,0.5972436300000002,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,industry,3 coal,0.34375381,0.42253438000000004,0.473102,0.49068682,0.5094625,0.55652654,0.5912736700000001,0.61894819,0.64425404,0.66374676,0.67661071,0.68373265,0.68750172,0.6841022800000001,0.6785755299999999,0.67133811,0.67183649,0.64239639,0.6201702499999999,0.5968663900000001,0.58570142,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,industry,4 biomass,1.3566461,1.8667909999999999,2.2407679999999996,1.994034,2.06808,2.1649339999999997,2.233479,2.261435,2.229514,2.18074,2.121303,2.044162,1.96273,1.878084,1.7717159999999998,1.6715719999999998,1.589242,1.475381,1.383764,1.2973439999999998,1.228947,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,industry,5 electricity,0.3866913,0.634961,0.7953729,0.9558807,1.0757944,1.2571926999999998,1.4318654000000002,1.5942716,1.749731,1.8905174,2.0123967,2.1198046,2.2091412,2.2875481,2.3546,2.4193498,2.5028687,2.5191875,2.5631574,2.5961007,2.5949965,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.00669616,0.01161266,0.01741407,0.02408059,0.031536350000000005,0.0398429,0.048750800000000004,0.0514695,0.05441409999999999,0.0572219,0.0590783,0.06109729999999999,0.0639236,0.0638889,0.064844,0.0653462,0.0634328,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,transportation,1 liquids,1.4371470827,2.3649152317,3.1654882089000003,3.2726767488,3.3405871855,3.5326340653999995,3.6605256469999987,3.7201570277999982,3.770477956800001,3.770886147800001,3.677252071250001,3.6773769460699994,3.70191364905,3.7420789552600002,3.80595552938,3.8718432798300007,3.8747284758899996,3.9578339590800002,4.000076953180001,4.03236909944,4.0495617275099995,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,transportation,2 gas,8.36891E-5,0.06780453,0.069981,0.105037731,0.154371214,0.25721480999999996,0.3970429389999998,0.5778840410000003,0.7896033980000002,1.024105682,1.3465707369999995,1.5187880889999998,1.6774882699999993,1.8190871499999997,1.9407504499999992,2.0528687899999998,2.176237850000001,2.2776725499999997,2.379951470000001,2.4857678799999996,2.5725468999999994,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,transportation,3 coal,2.09291E-4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,transportation,5 electricity,0.00377809,0.00380799,0.00552558,0.014799369849999999,0.02825029899,0.045446524249999995,0.06502319576,0.08889956137,0.11396017594000003,0.14380472283000004,0.17944818672000004,0.20287804177000004,0.21840427277999994,0.22748454327000003,0.23444839436999998,0.23929018686,0.24370147143,0.24580139376000001,0.24773927310000002,0.24839704739000001,0.24607893843,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,transportation,6 hydrogen,0.0,0.0,0.0,0.0,0.001297333,0.005023364000000001,0.0101702872,0.0169054463,0.0235825685,0.0309886891,0.039053471,0.046484552000000005,0.05413603100000001,0.06202658600000001,0.071072141,0.080509119,0.08998767599999999,0.09881520199999999,0.10774438,0.11612734199999998,0.12222813300000002,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,building,1 liquids,0.3656469,0.4587433,0.2171697,0.2107001,0.21257530000000002,0.21435099999999999,0.2125162,0.21186760000000002,0.2135945,0.21398440000000002,0.2133689,0.2133158,0.21480196000000001,0.21486844,0.21453162,0.20846292000000002,0.18779179,0.18967216,0.17670793,0.16498351000000003,0.15472963,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,building,2 gas,0.8236374099999999,1.0358261,0.9836261,1.04313376,1.07765254,1.12179286,1.14126386,1.14900354,1.1366068,1.12001085,1.0991771,1.0736422,1.0436499499999998,1.01020583,0.97577894,0.94118499,0.90892021,0.87213163,0.8427505700000001,0.8061736500000001,0.763852429,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,building,3 coal,0.0021766999999999997,0.0014651,1.256E-4,1.2761E-4,1.25243E-4,1.24664E-4,1.2055E-4,1.15486E-4,1.09557E-4,1.0429E-4,9.96871E-5,9.54373E-5,9.12536E-5,8.63763E-5,8.12065E-5,7.59529E-5,7.06378E-5,6.51013E-5,5.95186E-5,5.40831E-5,4.91047E-5,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,building,4 biomass,0.0624551,0.0790736,0.103143,0.1020669,0.10222569999999999,0.101228,0.09932361,0.09517631,0.08714374,0.08025812,0.07488261,0.0698877,0.06534572,0.06093975,0.05503026,0.04989361,0.04504657,0.04073543,0.03681339,0.03320898,0.02967285,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,building,5 electricity,0.8585177,1.0758274,1.100556,1.1809067999999998,1.283496,1.3722607999999998,1.4731866,1.5763771,1.6859479000000002,1.7870150999999996,1.8794496,1.9644321,2.0458154,2.1206521,2.183901,2.2368399,2.280456,2.2924377000000002,2.2918932,2.275804,2.2481407,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,industry,1 liquids,0.8764222700000001,1.36547341,1.3019718200000001,1.34638793,1.4117800699999998,1.4779349599999998,1.53351731,1.5896533,1.65129383,1.71047657,1.7688465800000002,1.8289843800000003,1.89168457,1.9480398699999997,2.00102783,2.0332315,2.01640069,2.06487934,2.06075359,2.0510717799999996,2.03623866,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,industry,2 gas,1.0861326900000001,1.2254316299999999,1.25087059,1.3226724200000002,1.37019303,1.4261915299999999,1.4590891999999998,1.4744399,1.4703446999999998,1.4644149000000002,1.4542669999999998,1.4415494700000002,1.4205463500000002,1.39486038,1.3696084899999998,1.34416303,1.3287114000000002,1.2997503799999999,1.2847208200000002,1.2596156900000002,1.22839521,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,industry,3 coal,0.18334609999999998,0.19644940000000002,0.1733004,0.18815033,0.19554539999999998,0.2049221,0.21168474,0.21797284,0.22452340999999998,0.23130234,0.23849068999999998,0.24572470000000002,0.25297379999999997,0.259013,0.2641491,0.2686789,0.2744174,0.2727472,0.2709628,0.2679975,0.2664687,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,industry,4 biomass,0.2419296,0.3328179,0.27276030000000007,0.29029891,0.30578011,0.32193758,0.33523318,0.34436193,0.34480163,0.34570603999999994,0.3485532,0.35100862,0.35387307,0.35702052,0.3538686,0.35118806999999996,0.34915442,0.34367386,0.33885104,0.33362375000000005,0.32863632,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,industry,5 electricity,0.67832704,0.9242125,0.75812417,0.80059182,0.86077276,0.9051496099999999,0.96770621,1.03161942,1.10694914,1.1795704299999998,1.24991881,1.3176452,1.3833251,1.4442869999999999,1.4991679,1.5532386999999999,1.6127338,1.6334985,1.6576956,1.6707466999999998,1.6790783999999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.003077877,0.0051335600000000006,0.00747248,0.01013654,0.01306191,0.01641289,0.02023757,0.02173114,0.02345601,0.025338729999999997,0.02686016,0.02852835,0.03044523,0.03171716,0.0332297,0.0345699,0.0340417,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,transportation,1 liquids,1.735409367,2.198784054,2.4395011820000003,2.5435773699999995,2.6004503822000005,2.6008370248999997,2.5836047907,2.5472694800000015,2.5447821599999987,2.5236440499999997,2.4649268100000006,2.4735342700000005,2.51028831,2.5693081000000006,2.64092027,2.7105606900000003,2.759837760000001,2.825011729999999,2.870165089999999,2.9077964100000004,2.942500950000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,transportation,2 gas,0.001507013,0.0016743020000000001,0.001716204,0.0185903152,0.0438075522,0.08281818820000003,0.1281257962,0.18141627650000003,0.23397480739999998,0.28968531070000003,0.36426738829999994,0.4083781873000001,0.4519904599999999,0.49438659900000004,0.534192996,0.5709883809999999,0.6072635340000001,0.6364959680000002,0.6641543740000001,0.6900395650000001,0.7150975030000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,transportation,3 coal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,transportation,5 electricity,0.00310027,0.00367337,0.00264148,0.0044953154999999995,0.013736170200000002,0.029791219700000003,0.0494731833,0.07391187020000001,0.09752404299999998,0.12517673099999999,0.15626597700000003,0.178707026,0.19484790500000002,0.20541315900000004,0.212257804,0.21682616599999996,0.22101677500000003,0.22366055099999999,0.22510591400000002,0.22518569000000002,0.22354764,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,transportation,6 hydrogen,0.0,0.0,0.0,0.0,0.00164355,0.005535335000000001,0.010844293999999999,0.017677939,0.0241713222,0.031363879,0.03884305,0.046680411000000005,0.05517017600000001,0.06419561400000001,0.073675457,0.08342380599999999,0.09346489599999998,0.10310318499999999,0.112467854,0.12135322999999999,0.12885352,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,building,1 liquids,0.19962505000000003,0.18280682,0.1456348,0.14665396,0.15830715999999997,0.17540103,0.18902782999999998,0.20326013,0.22285526000000003,0.24163665,0.26069235,0.28065351,0.29986219,0.316299,0.33036886,0.33359120000000003,0.30706661,0.3273688,0.31484985,0.30108820999999997,0.28849060000000004,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,building,2 gas,0.0026111998700000002,0.0067608996,0.006056400009999999,0.00677998375,0.00751191205,0.008624991900000002,0.0096693542,0.010699876300000001,0.011644207399999999,0.012453410900000001,0.0131523335,0.013697470100000001,0.0140418175,0.01419357336,0.01419656783,0.014095337159999999,0.01411000459,0.0135180737,0.01317037304,0.0126139127,0.011980261,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,building,3 coal,2.4299997E-5,4.899999E-5,7.35E-5,7.436251E-5,7.44179E-5,7.624782000000001E-5,7.704737000000001E-5,7.807539E-5,7.928434E-5,7.971534E-5,7.990419E-5,7.974864E-5,7.917841E-5,7.787782200000001E-5,7.601185E-5,7.3788221E-5,7.193857899999999E-5,6.7231053E-5,6.295701100000001E-5,5.8321608E-5,5.4208129000000006E-5,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,building,4 biomass,0.027327984,0.04262768,0.046862999,0.046766562,0.047221772,0.047338161000000004,0.047030155000000004,0.046039118000000004,0.04326615,0.040170206,0.037274826000000004,0.034309888,0.03144495,0.028771058999999995,0.025625769,0.022845469,0.020521288,0.017942128,0.015894907,0.014013913999999999,0.012311407,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,building,5 electricity,0.11347628800000001,0.19516467999999998,0.222235499,0.27567354,0.33904150000000005,0.42314775,0.5217003899999999,0.62790897,0.74432795,0.8750802,1.01263504,1.15323089,1.2945998799999998,1.43655475,1.573738,1.70523926,1.83464267,1.934038,2.02649751,2.09885627,2.16284804,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,building,7 trad biomass,0.3272638,0.4026073,0.4420999,0.42237159999999996,0.3918756,0.3567657,0.3209692,0.2878864,0.25552949999999996,0.2228041,0.192224,0.16392531999999999,0.13819078,0.11494417,0.09456012000000001,0.07727489000000001,0.06379429,0.04981631,0.039348259999999996,0.03087425,0.02437672,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,industry,1 liquids,0.29809169999999996,0.28863489999999997,0.2886614,0.3085445,0.33935069999999995,0.3759119,0.4060225,0.4359284,0.47525270000000003,0.5115147999999999,0.5460374,0.580763,0.6125276,0.6397917,0.6663295,0.6765670999999999,0.6367661,0.6837045,0.6727162999999999,0.6629953000000001,0.6583415000000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,industry,2 gas,0.135274,0.5527302000000001,0.7142509000000001,0.81614742,0.91757736,1.0452875899999998,1.1698452300000004,1.2889354800000001,1.39903655,1.4965177379999999,1.578535993,1.64299766,1.6877410820000003,1.7172799450000005,1.740351339,1.7593122,1.790171616,1.7806786489999997,1.788383689,1.7847230750000003,1.772370656,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,industry,3 coal,0.00853943,0.0182511,0.0156137,0.02113477,0.02403354,0.02742555,0.0308149,0.03411666,0.03731063,0.040263139999999996,0.042944659999999996,0.045293520000000004,0.0473504,0.049056209999999996,0.05055585,0.05232817,0.056043880000000004,0.05466701,0.0552313,0.055521959999999995,0.05587524000000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,industry,4 biomass,0.28771163,0.14346239,0.12963233000000002,0.14425770000000002,0.163069,0.1856609,0.2088217,0.2303307,0.24630490000000002,0.2594626,0.2712122,0.2802823,0.2875212,0.2934984,0.29442989999999997,0.2969292,0.3060943,0.2990333,0.2994116,0.2993482,0.2999955,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,industry,5 electricity,0.04906937,0.11436448,0.11606292,0.155236,0.1963562,0.2459869,0.3046972,0.36457459999999997,0.4245311,0.48994750000000004,0.5541058999999999,0.6162286,0.6738007,0.7289599999999999,0.7817858,0.836767,0.9019233999999999,0.941336,0.9936799,1.0435442000000001,1.0951977000000002,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.00310943,0.00562779,0.00889534,0.013117469999999999,0.0184282,0.024801240000000002,0.0323059,0.0362792,0.04082,0.0456525,0.050006499999999995,0.0553224,0.06311240000000001,0.0661598,0.07194510000000001,0.0773922,0.0773822,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,transportation,1 liquids,0.45712311970999997,0.8199270492000001,0.929745754,0.9998817844800001,1.07465368803,1.16287855245,1.25007582355,1.3306370026520007,1.4178272740100004,1.5014213061230004,1.5677044514649996,1.6619227478990004,1.7643379216600001,1.8746685112000008,1.99395585042,2.107492107160001,2.1842886883599997,2.3132739544700005,2.40817537769,2.4950721914500003,2.577007054109999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,transportation,2 gas,0.0,0.0,0.0,0.0091725184089,0.0251856168732,0.05419260741109998,0.09622626664379998,0.15333732026900002,0.22302707284249987,0.3048798836816,0.41278947077539996,0.4888376228468999,0.5623989410397003,0.6332222515480004,0.7013900782390002,0.7686066412360006,0.8458481228829998,0.9178820576269999,0.9904592109200002,1.065221845491,1.135065212182,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,transportation,5 electricity,3.75595E-4,3.75398E-4,9.163940000000001E-4,0.0021753034477000003,0.0045109784225,0.007038329216499999,0.010078532514239995,0.01376071164094,0.017947153461700005,0.02317383736770001,0.02956862989799999,0.036666603868000004,0.044044342243999994,0.051801618651,0.06024582788299999,0.06921403158500002,0.07915407051000001,0.08944981520000002,0.10019026705000002,0.111465048947,0.119702632666,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,transportation,6 hydrogen,0.0,0.0,0.0,0.0,3.7721862E-4,0.001322744738,0.0027086281001000006,0.004573886805399999,0.0067342858627999986,0.009359362989600002,0.012385241412,0.01597191647099999,0.02015430832800001,0.024955672361999998,0.030552603626999998,0.036644355975000015,0.043369997864999996,0.05037572953,0.05745042845000001,0.06466751896999999,0.07112778295000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,building,1 liquids,0.6593595,0.1389404,0.4440808,0.5388075,0.6159608,0.7244904000000001,0.7999704,0.8532669,0.8996371000000001,0.9317960999999999,0.9508047,0.9658399,0.9810928,0.9932885,1.0025359,0.9890478,0.9123426,0.9463385,0.9125660999999999,0.8825561,0.8622898999999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,building,2 gas,1.6334394,1.1480700000000001,1.118997,1.3148469999999999,1.5077690000000001,1.7545129999999998,1.9386739999999998,2.067521,2.137377,2.166702,2.157721,2.12911,2.091776,2.050566,2.007479,1.9577909999999998,1.919673,1.8475679999999999,1.799957,1.7440330000000002,1.6982309999999998,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,building,3 coal,0.1318733,0.017269800000000002,0.1842459,0.18882524,0.19407398,0.19649578,0.19433091,0.18952447,0.18242793,0.17466451,0.16649744,0.15826741,0.14999022,0.14122772,0.13274786,0.12562124,0.12237632300000001,0.11069162299999999,0.10317616600000001,0.096154272,0.091190361,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,building,4 biomass,0.026371699999999998,0.0180835,0.0205952,0.01969091,0.019523079999999998,0.018751392000000002,0.017984085,0.016956134,0.015430664,0.014085661999999999,0.012953024,0.011900251,0.010956541,0.010127046,0.009131537,0.008274507,0.007478582,0.006804285,0.006177621,0.005639984,0.005213041,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,building,5 electricity,0.118443223,0.191195505,0.18565219500000002,0.26123382700000003,0.32873174,0.40424251,0.48074407,0.55276584,0.6243077400000001,0.68319836,0.7275508900000001,0.76151055,0.78784981,0.81350632,0.8338091200000001,0.8527405299999999,0.8853508000000001,0.8787832799999999,0.88851028,0.89645231,0.9065913700000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,industry,1 liquids,0.6271662,0.3493981,0.34506349999999997,0.40576877100000003,0.45041516699999995,0.51043266,0.5588878749999999,0.6048824859999999,0.658168952,0.710924884,0.762379762,0.8147194729999999,0.8688063690000001,0.923624393,0.977691888,1.016547293,1.0083849759999999,1.084491776,1.108629019,1.137066469,1.170222553,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,industry,2 gas,0.5559638,0.9350109000000001,1.3609149999999999,1.5008905599999998,1.63671723,1.79053307,1.89899774,1.97199882,1.9988669899999998,2.0064004,1.99331984,1.9678392330000003,1.9333889699999995,1.89678068,1.8591281599999996,1.82164633,1.8054763999999996,1.7516938299999998,1.7334995699999998,1.7097668499999998,1.6810443800000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,industry,3 coal,0.8018986,0.46026922000000003,0.6165355499999999,0.67112667,0.7234712,0.7854208500000001,0.82725251,0.8582611,0.8800941,0.8953536,0.9042793,0.9094154999999999,0.9153988,0.9184427,0.9181088,0.9149663,0.9147713,0.8914973,0.8706271999999999,0.8517366,0.8435792000000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,industry,4 biomass,0.001507,0.004227902,0.002888394,0.003351596,0.003750127,0.00414998,0.00447484,0.0047027,0.00475799,0.00477561,0.00477372,0.0047426099999999995,0.004721690000000001,0.00471696,0.00462086,0.00454045,0.00450228,0.00435186,0.0042621,0.00419423,0.00414283,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,industry,5 electricity,0.6045806,0.40294248,0.41245642,0.5265386,0.6010462,0.6649821,0.7302802,0.7890566999999999,0.8505789,0.8970823,0.9269478,0.9442414,0.9521231,0.9589824,0.9596544,0.9582645,0.9597332,0.944557,0.9360612,0.9263254000000001,0.9152628,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.003858012,0.00666602,0.009922,0.01361266,0.01755723,0.021884729999999998,0.026539769999999997,0.027928059999999998,0.029590619999999998,0.03145142,0.03285166,0.034365110000000004,0.03608623,0.0370319,0.0383246,0.0396332,0.0390325,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,transportation,1 liquids,0.6540338849,0.4474789122,0.5737615010000001,0.6928042403999998,0.7961100225999999,0.9351147322,1.0548434564999998,1.1526914779900004,1.2329348075,1.2892101975,1.3190295450999998,1.3557222231000006,1.3979049085,1.4469149707700004,1.4932889054799998,1.5257818984999991,1.5297730402500007,1.5689333658800002,1.5862125804799994,1.6005510588299992,1.6159200127400004,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,transportation,2 gas,0.007282598300000001,0.0054410685,0.0154861418,0.025591870269999997,0.039140530100000015,0.06110662700000002,0.08670807068000003,0.11546905986000001,0.1450736593,0.17512630968999998,0.20737498243000008,0.23155737546000002,0.25475830969999996,0.2768564784,0.2956759395999999,0.31163705299999994,0.3278154802,0.3414279234999999,0.3540701370999999,0.36582350809999997,0.3778147137999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,transportation,3 coal,0.00209284,0.00146499,0.00117201,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,transportation,5 electricity,0.0413727874,0.019703302199999998,0.0193370096,0.0252424105272,0.0316091647399,0.0392197164456,0.04678689824210001,0.054346974205929995,0.06190727492599998,0.06923480861999999,0.076184197857,0.083547753737,0.09095860043199999,0.09892998463000001,0.10706632314999998,0.11528577072000001,0.12459890508000003,0.13372812321,0.14414578229000005,0.15528426343,0.16364542281000005,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,transportation,6 hydrogen,0.0,0.0,0.0,0.0,2.478351363E-4,9.207857052E-4,0.0019142346312999998,0.00322794915201,0.00478612077106,0.006610789947399999,0.0086721244642,0.011061506226900001,0.0137802407641,0.016845919390199998,0.020084538478100007,0.0234454699726,0.027121851528000007,0.031007051478,0.03508096383699999,0.03921345894500001,0.042750471056,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,trn_pass_road_bus,1 liquids,0.00430503,0.00337377,0.00423266,0.00413612,0.0038512800000000003,0.00309339,0.00258895,0.002203158,0.0019320189999999999,0.0017555819999999999,0.0015991809999999999,0.00142388,0.0012736029999999999,0.00111837,9.51028E-4,8.14358E-4,6.95786E-4,5.9746E-4,5.09436E-4,4.36921E-4,3.8102100000000005E-4,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,trn_pass_road_bus,2 gas,0.0,0.0,0.0,2.319225E-4,4.40553E-4,5.33684E-4,5.99615E-4,6.41647E-4,6.75893E-4,7.1662E-4,7.45359E-4,7.44875E-4,7.37819E-4,7.10203E-4,6.56441E-4,6.09417E-4,5.71244E-4,5.17256E-4,4.7271899999999997E-4,4.32115E-4,3.9944700000000004E-4,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,building,1 liquids,0.3061648,1.555234,2.050779,2.916146,3.794795,4.904262999999999,5.63623,6.082414,6.486053,6.7255069999999995,6.782222999999999,6.710084,6.582345,6.371665,6.133419,5.734096000000001,4.920052,4.923125,4.458987,4.013416,3.560078,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,building,2 gas,0.0961327,0.6612279,1.3825318,2.0251561,2.626516,3.3912169999999997,3.9378810000000004,4.225375999999999,4.312521,4.288995,4.154622999999999,3.946812,3.7047769999999995,3.478219,3.307554,3.1790149999999997,3.1455830000000002,3.104333,3.232424,3.444756,3.919602,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,building,3 coal,4.07266,2.942506,2.8680760000000003,3.3358380000000003,3.5976550000000005,3.877188,3.9581000000000004,3.902832,3.801886,3.6429970000000003,3.438082,3.211384,2.976058,2.729399,2.484437,2.2597519999999998,2.080926,1.820454,1.6055859999999997,1.392335,1.180034,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,building,4 biomass,4.707E-4,2.559E-4,1.905E-4,2.0335599999999997E-4,2.129867E-4,2.2186550000000003E-4,2.230283E-4,2.167128E-4,2.003919E-4,1.832781E-4,1.666975E-4,1.493579E-4,1.3319580000000002E-4,1.189428E-4,1.0375099999999999E-4,9.104520000000001E-5,8.02066E-5,7.0848E-5,6.32955E-5,5.6443699999999996E-5,4.96493E-5,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,building,5 electricity,0.2950606,2.0792284,3.5675333,5.05657538,6.7623254,8.8342621,10.7459568,12.232746600000002,13.4526252,14.420398899999999,15.0554484,15.4603968,15.6920545,15.7687825,15.7206475,15.5525047,15.413371099999999,14.8986986,14.4679523,13.995506,13.533511500000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,building,7 trad biomass,8.39255,8.28969,8.064680000000001,6.6995000000000005,5.54923,4.53005,3.78432,3.23549,2.79847,2.42201,2.1056429999999997,1.837922,1.598102,1.37995,1.184729,1.017509,0.876611,0.728245,0.603452,0.49078200000000005,0.38666199999999995,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,building,8 district heat,0.10248510000000001,0.6540795,0.7637184000000001,0.9908369,1.1722099,1.4124491000000001,1.5906466000000001,1.7077805000000001,1.7955613000000001,1.8500268999999998,1.8684828999999998,1.8573178000000001,1.8304799,1.7804240999999998,1.7072298000000001,1.6306534,1.5786341000000004,1.4227044,1.2875178999999999,1.1341639000000001,0.9317726000000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,industry,1 liquids,2.6242009,5.240338,7.020378,8.2551772,9.31412878,10.37694249,11.0789495,11.5860432,12.05567895,12.393773739999999,12.593242978000001,12.685221343999999,12.708167844,12.66028005,12.575123,12.340165,11.7320939,11.7898041,11.4454356,11.122369,10.7843611,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,industry,2 gas,0.374396,0.799275,1.376136,1.9399706,2.1233110999999996,2.31506,2.4181672,2.4405383999999994,2.3830043,2.3053753000000006,2.20970326,2.09721074,1.97811494,1.8766767,1.8062722000000002,1.7606328099999997,1.7648944,1.7761467999999998,1.88002019,2.0556702000000002,2.4173654,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,industry,3 coal,10.413069,21.075282,26.004498,30.333797,32.241174,34.196555000000004,35.142677000000006,35.401495000000004,35.173998,34.600259,33.66345569999999,32.433517499999994,31.077531399999998,29.6223846,28.123798300000008,26.676039799999998,25.443113800000006,23.818107299999998,22.413621599999992,21.053578,19.7660701,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,industry,4 biomass,2.31E-4,2.201E-4,1.918E-4,2.25638E-4,2.5218E-4,2.77589E-4,2.93192E-4,2.9865E-4,2.91907E-4,2.81969E-4,2.70054E-4,2.54974E-4,2.39621E-4,2.25208E-4,2.0796E-4,1.92387E-4,1.7812E-4,1.65335E-4,1.54179E-4,1.43889E-4,1.33426E-4,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,industry,5 electricity,1.661754,5.534131,9.307801999999999,10.159986,10.958549,11.396168999999999,11.838345,12.025567,12.03732,11.943442000000001,11.719451,11.487886999999999,11.198543,10.86078,10.495213,10.093321999999999,9.686889,9.186176000000001,8.734853,8.321142,7.971121999999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.023423140000000002,0.04066425,0.0598452,0.0802652,0.10084420000000001,0.1218273,0.1424395,0.143088,0.14372839999999998,0.14483859999999998,0.1441476,0.1439059,0.14433379999999998,0.1430481,0.1431575,0.1432023,0.1363814,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,industry,8 district heat,0.514364,1.86154,2.28925,2.724,3.00957,3.367,3.60078,3.74897,3.83143,3.86629,3.85441,3.78674,3.69571,3.5858,3.45761,3.32908,3.22538,3.05476,2.90936,2.76278,2.57915,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,transportation,1 liquids,1.1440161839999998,5.172526404999999,7.483025389000001,9.119931664,10.943355036999998,13.211162208,14.974723179399993,16.234979587100003,17.14901689820001,17.752836633799987,17.99049700399999,18.157815066000005,18.261031653299998,18.28712941480001,18.27774434390001,18.105943320299996,17.610928331999997,17.58131926670001,17.234543220400006,16.8608456818,16.48318938849999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,transportation,2 gas,0.0,0.01352912174,0.0740222478,0.14151813619,0.23774628394999997,0.41446987191999995,0.6378113699100001,0.9025408556700002,1.19385359356,1.5020766681699997,1.8792061439600007,2.08841005471,2.2365007266,2.3351349078999992,2.3919873954999993,2.422672656799999,2.4789577114999997,2.4953504341999997,2.5492484723,2.6341225663,2.778327351400001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,transportation,3 coal,0.410488,0.167929,0.131807,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,transportation,5 electricity,0.0224580899891,0.072697999979,0.143434199946,0.20546092735661,0.262105326428986,0.3162475097058359,0.363329484688785,0.401757914564294,0.4325023436812999,0.45918999937900007,0.481881048773,0.4958165713609999,0.506400802412,0.516509507113,0.5264756753289999,0.5358001663899998,0.5510812690500001,0.5551576142399998,0.5647496102,0.57371258405,0.57582007551,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,transportation,6 hydrogen,0.0,0.0,0.0,0.0,8.7526811E-4,0.0031191915680000002,0.0060241189689999985,0.009568949642000002,0.012954712609,0.016240709771000002,0.019448992069999994,0.022692951110000005,0.026096749160000002,0.02971942964,0.033557863380000004,0.03731042975999999,0.04120155871999999,0.045522635250000006,0.04979781655000001,0.0535957519,0.05569094689,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,trn_pass_road_bus,1 liquids,0.1879452,0.90457,1.29792,1.412441,1.448488,1.415025,1.370737,1.307669,1.244805,1.1873140000000002,1.119435,1.053017,0.993933,0.929072,0.8495630000000001,0.7745949999999999,0.69946,0.6358969999999999,0.571667,0.514254,0.462832,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,trn_pass_road_bus,2 gas,0.0,0.04125972,0.2257463,0.3115335,0.387431,0.439082,0.486566,0.522675,0.5504990000000001,0.575281,0.589318,0.597691,0.604073,0.602513,0.586683,0.5709960000000001,0.5592349999999999,0.534897,0.517458,0.501587,0.490065,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,building,1 liquids,0.050818050000000003,0.03436703,0.03302756,0.044528790000000006,0.05038529,0.056051100000000006,0.06182117999999999,0.06774527000000001,0.07576734,0.08423986,0.09307492,0.10224421000000002,0.11190546,0.12089345,0.12938776,0.13368913000000002,0.12588576,0.13714008,0.13462846,0.13180387,0.13005879,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,building,2 gas,0.004479009,0.03733911,0.045753039999999995,0.05730056,0.06645516,0.07588327999999998,0.08629946000000001,0.09668676999999999,0.10711859000000001,0.11752168,0.12755875,0.13651064000000002,0.14467308,0.15141689000000003,0.15719327,0.16152655999999999,0.16563688000000001,0.16614407,0.16721747,0.16591910199999998,0.163818082,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,building,3 coal,0.00514881,0.002679,0.0021767,0.00243422,0.00257917,0.00270616,0.00280876,0.00288584,0.00296548,0.0030289,0.0030722,0.00308455,0.00308688,0.00304926,0.00298593,0.00289634,0.00279638,0.00262463,0.00244713,0.00226926,0.00212924,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,building,4 biomass,0.0030139,0.015362797999999999,0.0146091051,0.0153936541,0.016558976499999996,0.0173481198,0.0180989171,0.0183709336,0.0177113722,0.016949567000000002,0.0161286235,0.0151178915,0.0141206884,0.013150922700000001,0.011856121999999998,0.010738609400000002,0.009926639099999999,0.0087268885,0.0078952177,0.007136346399999999,0.0064865706999999995,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,building,5 electricity,0.0664531,0.09299786000000002,0.10953853,0.13815789,0.16991942999999998,0.20432094000000003,0.24808045,0.2985963,0.35427318999999996,0.4144071800000001,0.4780514,0.5447489999999999,0.6114081,0.6793932,0.7449144999999999,0.8081791,0.8712040000000001,0.9209401000000002,0.968505,1.0073344,1.0411811000000002,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,building,7 trad biomass,0.14111,0.0457949,0.059566900000000006,0.0558368,0.0528362,0.0500902,0.046536499999999995,0.0427757,0.039088,0.0354911,0.0319368,0.0284148,0.0251855,0.02204607,0.01914766,0.01655745,0.0144295,0.01199865,0.010064360000000001,0.0084151,0.00711996,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,industry,1 liquids,0.0826317,0.1350403,0.1260403,0.1693698,0.1991944,0.2300082,0.2637631,0.30074589999999995,0.34490709999999997,0.3918547,0.44126029999999994,0.493026,0.5460868000000001,0.5986454999999999,0.6503798000000001,0.6931039,0.7098376000000001,0.7652131,0.7909621,0.8146169000000001,0.8370089,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,industry,2 gas,0.045250719999999994,0.11310564000000001,0.1281834,0.15654894,0.18179498000000002,0.2070139,0.23386354,0.26159091,0.28755989,0.311835074,0.33324669400000007,0.349697313,0.362266907,0.37106238699999994,0.377868417,0.38262409499999994,0.39087356700000003,0.3858042,0.38666887600000005,0.38333526600000006,0.37718916999999996,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,industry,3 coal,0.09008286,0.08568747,0.06563637,0.08157070000000001,0.0945843,0.1078289,0.1223549,0.1376742,0.15441729999999998,0.1714384,0.1884725,0.20503459999999998,0.2215166,0.2364902,0.2503283,0.2634452,0.2798649,0.2817237,0.2858957,0.2884233,0.2926621,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,industry,4 biomass,0.08388743,0.06932007999999999,0.05739002,0.06607986,0.07726894000000001,0.08794751,0.10003276,0.1116619,0.12111519999999999,0.1301497,0.1390469,0.146872,0.1543387,0.16128669999999998,0.164907,0.1683347,0.1730597,0.1716253,0.172069,0.1720268,0.1719069,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,industry,5 electricity,0.03144656,0.04919917,0.05774638,0.07056145,0.08527835,0.10046106,0.11919009,0.1401564,0.161562,0.1830466,0.203825,0.22415320000000002,0.2422083,0.2591978,0.2739842,0.288287,0.3045824,0.3105871,0.319839,0.3262584,0.3298752,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,industry,6 hydrogen,0.0,0.0,0.0,0.0,3.8188070000000005E-4,6.960930000000001E-4,0.001121753,0.0016778359999999998,0.0023864019999999997,0.0032704329999999997,0.004348008,0.00498001,0.00569791,0.006480059999999999,0.007206209999999999,0.00799432,0.00893785,0.00953268,0.010284459999999999,0.01100685,0.01115032,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,transportation,1 liquids,0.25982116699999996,0.33449041860000006,0.3699519276,0.4307595594,0.4731944122000001,0.5092754353999999,0.5479972065800001,0.5835895797099999,0.6195725825,0.6516339703800001,0.6744797752699998,0.7083740199699999,0.7457254151399997,0.7857139188000003,0.8284485392200002,0.8682244531800002,0.89275003048,0.93146327096,0.9580604751599999,0.9793237431089998,0.9966000909939998,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,transportation,2 gas,5.441354E-4,0.00996141,0.02314587,0.030550669999999995,0.03853539,0.05131638299999999,0.072005493,0.10090260439999998,0.13723228359999995,0.17909052389999996,0.23332330510000004,0.27089076599999995,0.30624712300000007,0.339229141,0.3699462489999999,0.39936300699999994,0.43291599799999997,0.4603874180000001,0.48841879700000024,0.5159029119999999,0.539557995,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,transportation,3 coal,4.18988E-5,4.18985E-5,4.18984E-5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,transportation,5 electricity,0.0,1.7009829999999998E-4,2.039978E-4,8.991964800000001E-4,0.0022018113199999993,0.003550238481999999,0.0052373374169999995,0.007339824823000001,0.009751180629999998,0.01268575029,0.016278422719999998,0.02010037259,0.023966488740000003,0.027913498979999996,0.032156207234,0.036629067028000006,0.04147341350400001,0.046328385578999993,0.051433359634999995,0.056617142781999995,0.059999235698999995,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,transportation,6 hydrogen,0.0,0.0,0.0,0.0,2.3474797999999998E-4,7.6996631E-4,0.00158370214,0.00268443886,0.0039504051669999995,0.005421209410000001,0.0071073467199999985,0.009045950490000001,0.0112877356,0.013823493610000001,0.0167249402,0.019892642800000006,0.02325975700000001,0.026659283099999997,0.0301420091,0.033571017300000006,0.03652113010000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,building,1 liquids,0.24714139999999998,0.1732166,0.1214777,0.14170080000000002,0.1593178,0.1721955,0.17781409999999997,0.1805735,0.1848377,0.1861538,0.1858028,0.185428,0.1848585,0.1825727,0.1788963,0.16893819999999998,0.1430273,0.1471574,0.1344999,0.12333949999999999,0.1146657,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,building,2 gas,0.5517149,0.871065,0.860852,0.937813,1.059195,1.172132,1.248621,1.294102,1.3019910000000001,1.282782,1.246821,1.2025480000000002,1.150618,1.095686,1.0440610000000001,0.991257,0.942895,0.904235,0.8788760000000001,0.8510300000000001,0.831175,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,building,3 coal,0.9297528,0.29515440000000004,0.3957863,0.39537870999999997,0.3953616100000001,0.39030427,0.37723469000000004,0.36067844,0.34520243,0.32747629000000006,0.30925834,0.29191249999999996,0.27420852,0.25437413999999997,0.23465270000000002,0.21507753000000002,0.19662128,0.1774161,0.15942583999999999,0.14325486999999998,0.13134192,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,building,4 biomass,0.1807936,0.40327890000000005,0.4865383,0.46944730999999995,0.46644028,0.45113652,0.43220996,0.40421292999999997,0.36361932999999996,0.32628734000000004,0.29408261,0.26449853,0.23729909,0.21210310999999998,0.18428956,0.16028008000000002,0.138942256,0.12220834600000001,0.10771857700000001,0.09529146,0.085038368,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,building,5 electricity,0.4053529,0.6730069000000001,0.7623021,0.881744,1.06297615,1.2244785999999999,1.3909797,1.5439998,1.6783251,1.7830024999999998,1.8643801999999998,1.9297672000000001,1.9831542999999998,2.0211607,2.0388549,2.0338231,2.016226,1.9789823,1.9361204,1.8899515,1.8479146,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,building,8 district heat,0.6968014,0.49317200000000005,0.48782450000000005,0.49865249999999994,0.5175845,0.5419712999999999,0.5545554,0.5586019000000001,0.5571056999999999,0.5500132,0.5404881,0.529931,0.5182766,0.5029732,0.48535269999999997,0.4661833,0.44939702000000004,0.42151728,0.39615316999999994,0.37178796,0.34497279999999997,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,industry,1 liquids,1.1898275,0.89237042,0.7025773399999999,0.78004545,0.8371164879999999,0.879986356,0.9088057741,0.9315756087999998,0.959670687,0.9839195240999998,1.0060466658,1.027449546,1.0476454403,1.0638390061399998,1.0754286,1.0735567000000001,1.0381257000000002,1.0645816000000001,1.0560628,1.0504168,1.0470226999999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,industry,2 gas,1.5291414,0.89348242,0.73652373,0.74549677,0.7748966899999999,0.7976182199999998,0.8040992899999999,0.7977075600000001,0.77586966,0.7530596500000001,0.7262509599999999,0.7019066300000001,0.6758957600000001,0.65279986,0.63400956,0.61877409,0.6132481700000002,0.6030148699999999,0.60579315,0.6080097999999999,0.61146818,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,industry,3 coal,1.8672813000000001,0.9568871000000001,0.7632927000000002,0.7853039,0.8135027,0.855184,0.864908,0.8667351000000001,0.8655918,0.8609052,0.8553822999999999,0.8478086,0.8398658,0.8267816,0.8097238999999999,0.7914153000000002,0.7794546,0.7468037,0.7217155,0.6975636999999999,0.6813533,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,industry,4 biomass,0.0631665,0.1629606,0.19644910000000002,0.2047446,0.218788,0.2301904,0.23777070000000003,0.2405801,0.23516560000000003,0.2288181,0.2229267,0.21619970000000002,0.2097373,0.2036638,0.19384749999999998,0.18492759999999997,0.177698,0.16886790000000002,0.1626791,0.15715810000000002,0.15213190000000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,industry,5 electricity,0.7759121,0.6411228,0.5702613000000001,0.6175112,0.675534,0.7049456000000001,0.7464234000000001,0.7813627999999999,0.812941,0.8373563,0.8546543,0.8665828,0.8744303,0.8783069,0.8771496999999999,0.8720223,0.8677846,0.8537362,0.8430518,0.8328614000000001,0.8230401,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,industry,6 hydrogen,0.0,0.0,0.0,0.0,6.328050000000001E-4,0.001049762,0.001517468,0.002030737,0.0025733960000000004,0.003154122,0.0037710580000000003,0.003912351,0.004073792,0.0042486600000000005,0.00435419,0.00446777,0.00460172,0.00468074,0.00480957,0.00493151,0.00480708,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,industry,8 district heat,0.750089,0.318937,0.301512,0.312176,0.328547,0.346965,0.360014,0.368914,0.374422,0.377771,0.380241,0.381461,0.382298,0.382025,0.380041,0.377304,0.377062,0.368735,0.363115,0.357673,0.349981,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,transportation,1 liquids,1.11276742,1.58671671,1.9527645100000002,2.028425462,2.1105886719999996,2.1489871299999996,2.1665838949999996,2.1550233679999997,2.1429900939999995,2.1060395339999998,2.0330807200000005,2.0148041340000002,2.008881534000001,2.01043877,2.008470708,1.9967732460000003,1.960231685,1.958632587,1.9392355790000002,1.9198717559999998,1.902029496,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,transportation,2 gas,2.9306526000000006E-4,0.001716241981,0.003683602396,0.023624667608999998,0.05464875354900001,0.10043679229380001,0.15635785101959998,0.2232883286700001,0.29093292541999993,0.3606296164199999,0.45284338399999985,0.5013366097,0.5448275758000002,0.581094453,0.6082704659999998,0.628432021,0.647566485,0.6653186059999998,0.6807118439999996,0.6982556629999997,0.718101976,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,transportation,3 coal,0.00774369,2.09293E-4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,transportation,5 electricity,0.05481289988,0.03924419995,0.0329016,0.0354913524102,0.0403927453187,0.04543911651419998,0.05092671088399999,0.057021939223070015,0.06299492163699999,0.06966923886000001,0.07727502776000003,0.08455611407000002,0.09166512048,0.0985009182,0.10512536269999999,0.11176465899999999,0.1194640465,0.12669940790000003,0.1349151975,0.14388941740000002,0.149470493,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,transportation,6 hydrogen,0.0,0.0,0.0,0.0,4.072401E-4,0.0013525700700000001,0.0026239208100000003,0.004235014410000001,0.005782776919999999,0.00756783526,0.009524052429999999,0.011776995299999997,0.014225278900000003,0.016759952999999994,0.019316797099999998,0.021896372100000002,0.024631330599999997,0.0274754653,0.030317553600000005,0.0332592144,0.035460847899999995,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,building,1 liquids,3.514818,3.1240650000000003,2.567219,2.6602429999999995,2.694186,2.68058,2.634058,2.610041,2.6527979999999998,2.6899840000000004,2.720516,2.7503840000000004,2.785808,2.796266,2.783209,2.680776,2.338448,2.407137,2.208038,2.021122,1.8477599999999998,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,building,2 gas,4.076220500000001,6.4774638,6.419635799999999,6.413884744788,6.564354643925,6.697793565317,6.768555488689001,6.7806644198970005,6.717979356499,6.632943303199001,6.502543256828001,6.327352216263001,6.115702180876999,5.896863150735,5.713011127141,5.564040108172001,5.527017092565,5.387505080877,5.3990190716946,5.381122063462399,5.360707056352,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,building,3 coal,1.091316,0.1341257,0.1666139,0.16695078000000002,0.1655244,0.16391920000000001,0.16041369999999996,0.15625397000000002,0.15191446,0.14746703,0.14257635,0.13678596,0.13066696,0.1235883,0.11586476999999999,0.10821673999999999,0.10117392,0.09201755,0.08340409,0.07502805,0.06732096,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,building,4 biomass,0.8571020000000001,0.9811536999999999,1.261439,1.2246553000000002,1.2038234,1.1704873,1.1426110999999999,1.0952985000000002,1.0084746,0.9290438000000001,0.8591883,0.789339,0.7244238999999999,0.6642242,0.58967614,0.5261760600000001,0.47480631,0.41228887000000003,0.36181919,0.31578613999999994,0.27190145,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,building,5 electricity,3.3000860000000003,4.7709209999999995,5.288907999999999,5.408651,5.879964,6.297041,6.763271,7.2555890000000005,7.781921,8.288537000000002,8.761363999999999,9.21826,9.660435,10.070246000000001,10.415884,10.717781,11.020755999999999,11.094263999999999,11.160889000000001,11.162516,11.105156000000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,industry,1 liquids,5.894795099999999,6.3460536,5.5634467,5.8794701599999994,6.024991158000001,6.1430989380000005,6.231491267000001,6.344010735999999,6.517029365,6.680652631,6.8350697806,7.0076624753,7.1828051285,7.3379248058,7.481,7.542687,7.364325,7.6178609999999995,7.5939630000000005,7.569119,7.541542000000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,industry,2 gas,3.7821637900000002,5.29568818,4.82271882,4.9202626700000005,4.86270544,4.869311079999999,4.7957325,4.6710408800000005,4.484577259999999,4.30591981,4.11814472,3.95685021,3.7860067100000006,3.62597449,3.5200249799999996,3.4507111599999996,3.4623618300000003,3.46852925,3.5882333200000005,3.70856791,3.8664506299999997,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,industry,3 coal,3.3663794,1.9464392,1.7209446000000002,1.8134632,1.8342365,1.8784512,1.9078251,1.9351111,1.9675612999999998,1.9996999,2.0276153,2.0612681999999998,2.0931068,2.1112516,2.118102,2.1236494,2.1587027,2.0928066999999997,2.0474769,1.9943392999999998,1.9551946999999998,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,industry,4 biomass,0.682894,0.975345,1.2491425,1.304197,1.350887,1.3970230000000001,1.435028,1.456162,1.4349120000000002,1.417135,1.4039300000000001,1.393518,1.385802,1.378517,1.340943,1.308159,1.287585,1.2392459999999998,1.203108,1.1654280000000001,1.126327,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,industry,5 electricity,3.21347,3.8579847000000003,3.6044654,3.644838,3.8106809999999998,3.956898,4.1520969999999995,4.354264,4.570321,4.755978,4.913175,5.105942,5.284739,5.4488900000000005,5.598299,5.74237,5.912622,5.948624,6.009511,6.052538,6.108823,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.1570197,0.2554695,0.36739679999999997,0.493872,0.633759,0.790962,0.9636480000000001,1.0270059999999999,1.099921,1.179505,1.243816,1.314874,1.399808,1.4489,1.5103080000000002,1.5630510000000002,1.530509,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,transportation,1 liquids,11.88477438499,15.5463074349,14.879495818099999,15.042394293810005,15.163268808149999,14.957939330930001,14.728391374194006,14.455449956576002,14.411182840651998,14.301672963909997,14.090720208450003,14.077587640939997,14.135318328032996,14.232050160157998,14.334514278413,14.388152853241001,14.281930448895,14.392408666866999,14.344476360490997,14.269650018551,14.218312880567998,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,transportation,2 gas,0.008706588599999999,0.0221433445,0.058225655700000004,0.144805407246,0.279983583097,0.4842344519549999,0.704873800532,0.9482476076470999,1.155582898068,1.370896801833,1.6296929400197004,1.7961928445889999,1.9543636633989994,2.097638394712,2.2265706292950007,2.34354239809,2.465192435368999,2.5586100668369993,2.6493825154499997,2.7346288909199994,2.8327417630660006,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,transportation,3 coal,8.37166E-4,8.36967E-5,4.60482E-4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,transportation,5 electricity,0.16501863,0.20612039999999998,0.2055559,0.21538405804723998,0.24798247951823002,0.29264976829989897,0.343991930563354,0.40448086252265203,0.4622247852884202,0.52938988753368,0.6043833048242,0.6691945298877,0.7280456469659998,0.7808191539933002,0.8307845591545,0.8804377873142,0.9354156122759,0.9853510846459999,1.0367908340812002,1.0874625312803,1.1164868739100002,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,transportation,6 hydrogen,0.0,0.0,0.0,0.0,0.0072056976745,0.023334392819609993,0.04407395154976,0.06948851562908,0.09283521454100001,0.11919088710805999,0.14701533501077,0.17661784366830002,0.20846172965205997,0.24167786096607008,0.2763793572486,0.31199942897179994,0.3493774961279,0.3854389687259001,0.42052716072870006,0.4542974708895,0.4827837918151999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,building,1 liquids,0.32767999999999997,0.0815851,0.1169568,0.1247872,0.118842,0.1096568,0.11415030000000001,0.1163355,0.11907120000000002,0.12103320000000001,0.1225262,0.12474840000000001,0.1277315,0.1299372,0.1312353,0.1279141,0.112571,0.1186455,0.1120002,0.10587189999999999,0.1008572,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,building,2 gas,0.4727254,0.6914017,0.6817742,0.61959933,0.64154305,0.68517912,0.7068663199999999,0.71466524,0.7103530100000001,0.6987451299999999,0.6820011500000001,0.66512677,0.64829807,0.62921522,0.6096247100000001,0.58713033,0.56392741,0.54042799,0.51951348,0.49674652,0.47853114,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,building,3 coal,0.370461,0.07015729999999999,0.0408972,0.03668497,0.03377692,0.0317656,0.028948300000000003,0.0263669,0.02402441,0.02201429,0.02026632,0.018750120000000002,0.01739361,0.016040699999999998,0.014782759999999999,0.01361439,0.012582320000000001,0.01139505,0.010343600000000001,0.009382459999999999,0.00863665,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,building,4 biomass,0.0228555,0.041148500000000005,0.07287830000000001,0.06674730999999999,0.06303958,0.058059440000000004,0.053445999999999994,0.04851732000000001,0.042872190000000004,0.038143340000000005,0.03432597,0.030999040000000002,0.02816884,0.02570711,0.022936459,0.020558484000000002,0.018350591,0.016591465,0.014933562,0.013530485,0.012470558,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,building,5 electricity,0.117210499,0.21450207,0.255932239,0.24730734899999995,0.274422388,0.306934689,0.341445755,0.37761736599999995,0.41672802,0.45159620999999994,0.48218593,0.51182371,0.54202861,0.57118756,0.59651625,0.61734354,0.63775325,0.64434539,0.6516176,0.65561319,0.6599876499999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,building,8 district heat,0.7695724,0.4095268000000001,0.35609419999999997,0.32049574999999997,0.31244196,0.3152362,0.31053900000000006,0.3013556,0.2888641,0.2750525,0.26072439999999997,0.24699770000000004,0.2337842,0.22080123000000001,0.2086047,0.19669609,0.18568197999999997,0.17454182000000001,0.16466454,0.15479049,0.14509529000000002,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,industry,1 liquids,1.0898259000000001,0.2304388,0.27313619999999994,0.30467001,0.29582098,0.27604612,0.284632862,0.291382542,0.30271111500000003,0.31421161100000006,0.32622925999999997,0.34005763,0.355707618,0.370967178,0.385181094,0.3922171,0.377603019,0.40174614000000003,0.401501805,0.40259942800000004,0.40503315,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,industry,2 gas,1.4035244000000002,0.9338967,0.7051748999999999,0.6712394,0.69080504,0.72853434,0.74200733,0.7488542800000001,0.74622354,0.7433016799999999,0.7369513399999998,0.7343713900000001,0.7310682799999999,0.72642791,0.7211696299999999,0.7163662700000001,0.71979237,0.7089660299999999,0.7109191000000001,0.7096644499999999,0.7040723499999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,industry,3 coal,1.60298597,0.9294597,0.76335939,0.70852738,0.7170104,0.74935644,0.7606935400000001,0.76830309,0.7731858399999999,0.7769949,0.78010642,0.78426347,0.7913028599999999,0.7951725500000001,0.7955833200000001,0.79275531,0.79181574,0.7744028500000001,0.75836282,0.74279976,0.73330668,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,industry,4 biomass,0.0021767,0.009460300000000001,0.036962398,0.033991509,0.03502438100000001,0.036997446,0.037962879,0.038311748,0.03736891,0.036474449,0.035752432,0.035077081,0.034621846,0.034255186,0.033249996999999996,0.032267216,0.031309266,0.030297137,0.029432530999999998,0.028671753,0.027937983,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,industry,5 electricity,0.9016712,0.36485223,0.35591256,0.3496168,0.36257738,0.36709291,0.37753162,0.39000696999999995,0.40812295,0.42257796,0.43296533000000004,0.4412425,0.44863970000000003,0.4548885,0.458819,0.46165769999999995,0.46476575,0.46121053,0.45919821,0.45610216,0.45168605,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,industry,6 hydrogen,0.0,0.0,0.0,0.0,7.04521E-4,0.001168503,0.001677702,0.002242631,0.0028411160000000003,0.003499131,0.00421421,0.00442517,0.00469117,0.00498588,0.0052001799999999996,0.00542668,0.00567363,0.00583795,0.00605375,0.00625813,0.00610172,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,industry,8 district heat,1.4268,0.611497,0.366962,0.338744,0.341176,0.356614,0.362264,0.364214,0.360758,0.355606,0.349296,0.342464,0.33555,0.328298,0.32054,0.312425,0.306084,0.29681,0.290709,0.283729,0.274423,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,transportation,1 liquids,0.66139176,0.31830357000000004,0.44644282999999996,0.413894964,0.425441856,0.4451624460000001,0.47065974799999993,0.4911392317,0.512435538,0.5235153819999998,0.5262477390000001,0.539481949,0.5580522446000004,0.5785792283999999,0.5965327221000001,0.6083442590999999,0.6085633339000002,0.6194607893,0.6222511545000001,0.6223255165000001,0.6220888076000002,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,transportation,2 gas,0.0030971621,0.0053992359,0.0027623203,0.00629503666,0.013659230730000001,0.026195692149999995,0.04097895799999998,0.05784475580000001,0.07434838820000003,0.0917466931,0.11275962347,0.12699660499999998,0.141588097,0.15517737799999998,0.16669445099999997,0.17632247199999998,0.18558394199999997,0.19355043400000002,0.20044734,0.206525983,0.212432273,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,transportation,3 coal,0.00339042,0.00251139,0.00150688,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,transportation,5 electricity,0.0615388,0.0356149,0.0317076,0.031387006304,0.035555801364,0.040858603629000005,0.0462393388858,0.05178227902599999,0.0573173636,0.06283304612999999,0.06841542883999996,0.0742838777,0.0805653926,0.08713468430000003,0.0937296162,0.10024505219999999,0.107388908,0.11393777820000002,0.12124689621,0.12881328489999996,0.13469824171999997,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,transportation,6 hydrogen,0.0,0.0,0.0,0.0,1.3024255E-4,5.028239E-4,0.0010337266700000001,0.0017447477700000002,0.0024942307,0.0034442093200000006,0.004541469039999999,0.00591646606,0.007527315550000001,0.009330708600000001,0.0112531051,0.0132558348,0.015432510699999999,0.0177125624,0.0200517697,0.022407581500000006,0.024386884099999992,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,building,1 liquids,0.1745562,0.17007719999999998,0.1032687,0.11059025000000001,0.1240128,0.139214,0.1502428,0.1600756,0.1741812,0.18718970000000001,0.19898690000000002,0.2107947,0.22238879999999997,0.23169099999999998,0.2401915,0.2401788,0.2159466,0.23393009999999997,0.22525360000000003,0.2173269,0.2113129,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,building,2 gas,0.0816269,0.3223216,0.31453549999999997,0.38218399999999997,0.4355743,0.5065348000000001,0.5695496,0.6248811000000001,0.6736876,0.7142200000000001,0.7457201999999999,0.7692671999999999,0.7840009,0.7903789999999999,0.7940149,0.7921204,0.7904831999999999,0.7794713000000001,0.7760926,0.7649444000000001,0.7501953,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,building,3 coal,0.21783890000000003,0.1388074,0.3130289,0.34121999000000003,0.3503232,0.36318091,0.36896783,0.37133995,0.3727379,0.37100173999999997,0.36625835999999995,0.35915185,0.35039226,0.33838413,0.32506764,0.3103207,0.29565842000000003,0.27628412,0.25781185,0.23995339,0.22539054,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,building,4 biomass,0.3855308,0.2991734,0.27460130000000005,0.28672954999999994,0.29664958999999996,0.30342982,0.30809381999999996,0.30570635,0.29104726,0.27512583,0.25999821,0.24364714,0.22796958,0.21322659000000002,0.19433557,0.17737396000000002,0.16249842,0.14729613,0.13490709,0.12388535,0.11391546,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,building,5 electricity,0.1666106,0.38871759999999994,0.49538309999999997,0.5668825000000001,0.6630773,0.7763263999999999,0.8932456,1.0077992999999998,1.1214891999999999,1.2311732,1.3365265,1.4416784999999999,1.5402254000000002,1.6341363,1.7203283,1.7977094,1.8700196999999998,1.9197701999999999,1.9663551,2.0032731000000004,2.0342566,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,building,8 district heat,0.0219889,0.0230788,0.0252381,0.028472400000000005,0.030172456,0.03324267,0.03578473,0.03774828,0.03902059,0.03978753,0.0401377,0.04005659,0.03963823,0.03897036,0.038259930000000004,0.03764446,0.03808353,0.03608516,0.03536415,0.03444817,0.03281092,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,industry,1 liquids,0.61257837,0.5968394,0.6605515099999999,0.734956958,0.8190983642,0.9088669977999999,0.9880188062999999,1.0628743509,1.1445535238000002,1.2205031575,1.2901039287899998,1.3553915914199999,1.41483433124,1.4663222401799998,1.5118548,1.5384767,1.5163126,1.5741312,1.5804148,1.5869513,1.5932623,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,industry,2 gas,0.14119378,0.27539649,0.41689839999999995,0.49547273000000003,0.5519520400000001,0.61814065,0.6734225,0.7150893600000001,0.7447073700000002,0.76593637,0.77703921,0.7800209400000001,0.7750600400000002,0.76391345,0.7511645899999999,0.7370353699999997,0.72735633,0.7105720800000003,0.7043147899999999,0.69355899,0.67953927,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,industry,3 coal,0.3951578,0.5029057,0.4900551,0.58688004,0.64661824,0.7200953199999999,0.7848018600000001,0.8445012699999999,0.9025830899999999,0.95482344,1.00096661,1.03963264,1.0739073399999999,1.09930313,1.11769428,1.1327791299999999,1.15608042,1.13930953,1.1304612500000002,1.12022873,1.1192970699999998,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,industry,4 biomass,0.0198223,0.0301546,0.0367114,0.045430088,0.047987907999999996,0.050447566,0.0532903,0.055210182999999996,0.05447647,0.05351734,0.05251944,0.05106693,0.04948266,0.04810256,0.04577982,0.04425325,0.044946269999999997,0.04144317,0.040686230000000004,0.03985857,0.03871027,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,industry,5 electricity,0.2033621,0.29853250000000003,0.38256270000000003,0.4193123,0.4754704,0.5312987,0.5890446,0.6415632,0.6873848,0.7277904000000001,0.7628043,0.7948209,0.8205855,0.8428423,0.8591366,0.8739212,0.8906232000000001,0.8905189,0.8951636,0.8974586,0.896961,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,industry,6 hydrogen,0.0,0.0,0.0,0.0,5.626941E-4,0.001007034,0.001563362,0.002240236,0.003035683,0.0039599349999999995,0.0050099559999999994,0.00546672,0.00595967,0.00647752,0.00689088,0.00732954,0.00782391,0.00815886,0.00858489,0.00899942,0.0089545,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,industry,8 district heat,0.0179455,0.0518088,0.0556186,0.065841,0.0732499,0.0833445,0.092554,0.100771,0.107533,0.113306,0.118152,0.121828,0.12459,0.12669,0.128217,0.129921,0.13412,0.132459,0.133837,0.134757,0.13404,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,transportation,1 liquids,0.57466775,0.8779712999999999,0.95386852,1.06198474,1.1491378800000005,1.23316256,1.3020164330000004,1.3532118570000002,1.4039099430000002,1.4393336879999992,1.45485349,1.4889983039999999,1.5246922040000002,1.5599129190000005,1.5910408600000001,1.6123235120000006,1.6111569350000008,1.6285639135999999,1.6288281536999998,1.6243542202000008,1.6218230242999996,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,transportation,2 gas,0.0,1.2569668999999996E-4,0.0028882340400000006,0.013091668189999999,0.02860338828,0.05344067744500001,0.08297381500100003,0.11743562970000002,0.1525544866,0.19009641600000007,0.23463334879999995,0.2686412207999999,0.3007213699,0.33021956499999994,0.35609001100000004,0.379013385,0.40177489200000005,0.41860049999999993,0.4338261579999999,0.4472624349999999,0.461249471,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,transportation,3 coal,7.53474E-4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,transportation,5 electricity,0.0047498098,0.004089939,0.0037967297,0.004753017909000001,0.00725920314,0.011079644500000001,0.015802821499999998,0.02168031254,0.028209505969999993,0.036048452499999994,0.04534311100000001,0.05417050930000001,0.06254278584,0.07051610774000003,0.07825427235,0.08597452443999999,0.09434480603999999,0.10261085648000003,0.11114577725,0.11988179340000002,0.12520975931,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,transportation,6 hydrogen,0.0,0.0,0.0,0.0,5.660195E-4,0.0019212281000000001,0.0038148831999999995,0.006267419999999999,0.00894403772,0.012054285800000002,0.0155332705,0.019472549699999998,0.023795635399999997,0.028425236399999994,0.033262941000000004,0.03825463600000001,0.043502229999999996,0.048703009,0.05386514,0.058962653000000004,0.06332234499999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,building,1 liquids,0.2546002,0.2119486,0.19423590000000002,0.1822079,0.185701,0.18483650000000001,0.17966427000000001,0.17705372,0.18054402,0.18238237999999998,0.18325985,0.18274543,0.18185393,0.17950539000000004,0.17673017,0.16921772000000002,0.14886733,0.15215212,0.14116694000000002,0.1307095,0.12144972000000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,building,2 gas,0.0405207,0.0704744,0.0787798,0.08275989,0.08549911,0.08795684999999999,0.08863072999999999,0.08898834,0.08920211,0.08847452,0.08685674,0.08389697000000002,0.08017224,0.07629246,0.07292292,0.07013636000000001,0.06949778000000001,0.06586507,0.06496695000000001,0.0633736,0.06147682,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,building,3 coal,0.0018719,0.0017874000000000002,4.0679999999999997E-4,3.8734451E-4,3.7490323E-4,3.5788185000000007E-4,3.3188078E-4,3.1281576000000003E-4,3.0262751E-4,2.8789077E-4,2.7050825999999997E-4,2.4886035E-4,2.2806467999999998E-4,2.0728381000000002E-4,1.87875455E-4,1.6977762000000001E-4,1.5327465099999998E-4,1.3720185500000002E-4,1.2232463E-4,1.0860418600000001E-4,9.6810727E-5,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,building,4 biomass,0.0523351,0.0550111,0.0696375,0.07014289,0.07086673,0.07042812000000001,0.06962016000000001,0.06784383999999999,0.06371244999999999,0.05932482,0.05499085,0.05012289,0.045541279999999996,0.041351747999999994,0.036481488,0.032484565,0.029670778000000002,0.025830652,0.023227309,0.020792702000000003,0.018447972,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,building,5 electricity,0.31109322,0.34174506,0.36375479,0.3987085,0.42756652000000006,0.45929660000000005,0.49497193,0.52536923,0.54960225,0.57544375,0.60189919,0.62914011,0.65324912,0.6733576000000001,0.68826195,0.70073303,0.7158811199999999,0.71228827,0.7116425799999999,0.70620218,0.69739117,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,industry,1 liquids,0.21590712999999997,0.22477619999999998,0.22737726,0.22871233200000002,0.23963680760000003,0.2500399968,0.25876472808,0.26983076503,0.28508644016999996,0.30000167943999995,0.31545804517,0.3325812981299999,0.35013768888,0.36724416173299995,0.38429015600000005,0.397696445,0.400226942,0.42258390799999995,0.43184165999999996,0.440429201,0.448379554,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,industry,2 gas,0.10917080100000001,0.230933504,0.232654903,0.23495143899999998,0.23376126299999997,0.23306188700000002,0.227310312,0.22279778399999997,0.21981601599999998,0.214356452,0.20733421200000002,0.20072383,0.19305068199999997,0.185583365,0.17986178799999997,0.174765957,0.17221230299999998,0.16897830700000002,0.16879640500000004,0.16778637500000002,0.16732561799999998,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,industry,3 coal,0.050495029999999996,0.03998891,0.038732380000000004,0.04104038,0.04162631,0.04262901,0.04314867,0.043906560000000004,0.04514728999999999,0.04611251,0.04691516,0.04773279,0.04842024,0.048871569999999996,0.04922132,0.049648819999999996,0.05120242,0.0498316,0.04948991,0.04893218,0.04865855,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,industry,4 biomass,0.04076151,0.07529916,0.07674693999999999,0.07590421,0.0777331,0.07824336999999999,0.07649102999999999,0.07587717000000001,0.07565762,0.07430646,0.07272038000000002,0.07063215,0.06870085000000001,0.06702889000000001,0.06436655,0.061894160000000004,0.05984706,0.057323650000000004,0.055164,0.053034460000000005,0.05118896,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,industry,5 electricity,0.27421286,0.31001748999999995,0.30193238,0.33074391000000003,0.33976392,0.35649584,0.37969436,0.39628022999999996,0.40464291999999996,0.41541445,0.42746482,0.4486029,0.46864131,0.48635406999999997,0.5015171,0.51531288,0.52963988,0.53445244,0.53911007,0.54117624,0.54439455,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.01631068,0.026132589999999997,0.03640753,0.048084,0.0620043,0.0769688,0.0928965,0.0974136,0.1024803,0.1079613,0.11211399999999999,0.1164327,0.1212222,0.1241816,0.1274883,0.1299441,0.126073,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,transportation,1 liquids,0.43711524500000004,0.520658647,0.5471535110000001,0.559195717,0.563801032,0.5591247419999998,0.5527925190000001,0.54354272,0.5427996240000001,0.5403028409999997,0.535304951,0.5394070249999999,0.545752774,0.5531487849999998,0.560591671,0.5658439780000001,0.5643260849999998,0.5711225649999997,0.5707329539999998,0.568444145,0.5665675419999998,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,transportation,2 gas,0.0,5.02284704E-4,0.00301380219,0.006522886699999999,0.011765456350000002,0.01986574767,0.02875702986499999,0.03856197047999999,0.047077158800000005,0.05601031869,0.06690194604000001,0.07445614573,0.0816005943,0.0881090931,0.09396464010000004,0.09931381200000002,0.10503243659999997,0.10877476330000001,0.1123996776,0.11544691679999998,0.11873710320000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,transportation,5 electricity,0.012997019999999998,0.01329472,0.01327883,0.014198575004999998,0.015737316299999998,0.017826854610000005,0.02021777654,0.022909154176,0.02544981000999999,0.0283720706,0.031692080399999996,0.03470180489999999,0.0374887855,0.0400263143,0.0424246086,0.04481933910000001,0.047527985899999986,0.049712270399999994,0.0520161504,0.054182994400000004,0.05544768580000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,transportation,6 hydrogen,0.0,0.0,0.0,0.0,2.690539E-4,8.799042999999998E-4,0.0016708809000000001,0.0026352852,0.00352970519,0.0045384685,0.0056279797,0.0068045383,0.0080677389,0.009382394500000002,0.010751473199999998,0.012156097799999998,0.013628608699999998,0.015028171200000003,0.016371384699999998,0.017633949999999995,0.018676205100000003,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,building,1 liquids,0.4600417,0.8832046,0.959934,1.36165,1.92897,2.49381,2.99131,3.44631,3.92895,4.36601,4.74396,5.0735,5.33187,5.49092,5.57574,5.45409,4.85771,5.04358,4.73207,4.42547,4.18677,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,building,2 gas,0.0017163,0.0025953,0.0010046,0.0014287,0.0020665,0.00277002,0.00346576,0.00412438,0.00468374,0.00514989,0.00549652,0.00572569,0.00581965,0.00579862,0.00570533,0.00556123,0.00548276,0.00516781,0.00498246,0.00473457,0.00450021,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,building,3 coal,0.446688,0.391768,0.576203,0.816185,1.120625,1.395097,1.575933,1.6860819999999999,1.747698,1.755213,1.719376,1.658888,1.576591,1.473709,1.3684,1.256273,1.1459329999999999,1.036838,0.9300562,0.8307085999999999,0.7572101999999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,building,4 biomass,0.197244,0.251118,0.268741,0.373211,0.506711,0.613702,0.678647,0.702549,0.678783,0.638265,0.590143,0.536955,0.48344,0.432589,0.377522,0.327776,0.2821,0.247675,0.216237,0.188752,0.166348,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,building,5 electricity,0.184944475,0.57539058,0.85964419,1.37545279,2.38690952,3.6041676000000002,5.1361916,6.891054199999999,8.842415299999999,10.8845399,12.924731300000001,14.9507198,16.8771068,18.660671999999998,20.296908000000002,21.763989,23.182471,23.951323000000002,24.720340999999998,25.227704,25.686915,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,building,7 trad biomass,4.4472504,5.21060866,5.57558156,5.03503208,4.25483143,3.6910263100000003,3.17749248,2.73046897,2.3220527900000003,1.9636726899999999,1.64790891,1.3705554,1.1268991199999998,0.91550697,0.7407416499999999,0.599068766,0.49335638,0.386477906,0.308414305,0.245227448,0.198538666,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,industry,1 liquids,0.7228806999999999,2.0383724,2.24164569,2.9177891,4.0035304,5.0848769,6.10433556,7.093420899999999,8.250855143,9.390882615999999,10.49077779,11.552071929999999,12.535234539999998,13.405388054,14.1694196,14.677370900000001,14.5083974,15.403199,15.540433,15.652401300000001,15.7722522,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,industry,2 gas,0.2956998,0.7698883999999999,1.01945869,1.5143094,2.0973512,2.7149598000000004,3.3703589000000007,4.0419229,4.612233300000001,5.143207299999999,5.6061855,5.990001400000001,6.281839399999999,6.499258200000002,6.657597199999998,6.8090793,7.094856,7.0469983,7.1890863,7.2661042,7.278680500000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,industry,3 coal,1.515456,1.9327159999999999,2.890781,4.3124,5.82702,7.32626,8.71858,10.044080000000001,11.29794,12.41929,13.374609999999999,14.15287,14.74951,15.13194,15.34831,15.43498,15.53033,15.23417,14.92954,14.56343,14.3017,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,industry,4 biomass,0.94205929,1.1423207,1.2223073,1.4855040000000002,2.030389,2.5633661,3.0685284000000004,3.5158054,3.8334025,4.0845269,4.2782504999999995,4.3976975,4.4581096,4.4751534,4.3844802000000005,4.2785864,4.1766732,4.0301147,3.9008464,3.7698946,3.6505934,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,industry,5 electricity,0.5576199,1.0825294,1.5689967,2.2510790000000003,3.2860560000000003,4.302742,5.5166889999999995,6.8204460000000005,8.185694,9.551602,10.843338,12.049026999999999,13.124926,14.059697,14.864117,15.617761,16.398408,16.700163,17.101468,17.369522,17.481637000000003,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.004837245,0.00994419,0.01703993,0.02634223,0.03774432,0.0513502,0.066902,0.0744554,0.08197489999999999,0.0892917,0.0947067,0.0999964,0.1058502,0.109259,0.1134637,0.1169613,0.11443049999999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,transportation,1 liquids,1.1069142999999997,1.5296741999999999,2.4980453000000002,3.11629656,3.953712780000002,4.723038669999999,5.453945160000001,6.153394775999996,6.8444368540000005,7.521046800000002,8.109904290000001,8.962220390000008,9.888676530000001,10.888462285999996,11.951114679999996,12.954939280000003,13.628243700000002,14.743603789999998,15.558835129999991,16.28371139,16.91767890000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,transportation,2 gas,0.0,0.02762464,0.09630910000000001,0.175768337,0.334065809,0.567289885,0.899588598,1.3440304509999994,1.892747977,2.5189981570000004,3.290479379,3.895643595,4.460434925,4.969090004999999,5.414281191000001,5.816393986999999,6.269594702,6.646141599999999,7.0078934880000014,7.364530761999999,7.694022719999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,transportation,3 coal,0.101546,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,transportation,5 electricity,0.01472184,0.0357306,0.0466132,0.05574752779,0.06872204836209998,0.08157175418196,0.09547661855526,0.1103467937656,0.12620643233099998,0.14292811733999997,0.16038319851999996,0.17849624846999998,0.19718870301000002,0.2166029303999999,0.23678565290000003,0.25838611179999993,0.2839389388,0.3045531672999999,0.3303981279,0.35858665739999995,0.381703998,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,transportation,6 hydrogen,0.0,0.0,0.0,0.0,4.9201711000000004E-5,1.66792997E-4,3.57681426E-4,6.52778272E-4,0.0010670049002,0.0016522945370000001,0.0024535950539999996,0.0037094984539999994,0.005338872649,0.007450422123000001,0.010169357022000001,0.01347767802,0.01759673777,0.022507029129999998,0.028221959409999997,0.034596552309999994,0.04020268732,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,building,1 liquids,0.2814667,0.4546411,0.3158761,0.4096132,0.5725966,0.803803,1.022467,1.222542,1.4265759999999998,1.604699,1.7509139999999999,1.8749959999999999,1.970752,2.028632,2.059521,2.0285919999999997,1.8483749999999999,1.904678,1.806676,1.707271,1.639275,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,building,2 gas,7.53498E-4,0.0018836999999999999,0.0063208,0.00867334,0.01167197,0.01644994,0.02140887,0.02629985,0.030911519999999998,0.03510108,0.03863191,0.04147929,0.04352292,0.04471694,0.04530416,0.04539472,0.04548094,0.04433496,0.043686840000000005,0.042323570000000005,0.041130309999999996,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,building,3 coal,0.0,4.19E-5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,building,4 biomass,0.042697189999999996,0.0251997,0.0225625,0.02616474,0.029549199999999998,0.0328323,0.0350133,0.035668,0.0340441,0.0318897,0.02949699,0.02686792,0.02428903,0.021873950000000003,0.01922045,0.01698583,0.01530771,0.013197549999999999,0.01171384,0.010365570000000001,0.00927077,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,building,5 electricity,0.04948782,0.2339792,0.3483085,0.4812185,0.6673499999999999,0.946273,1.272646,1.62638,2.005424,2.3778129999999997,2.7249170000000005,3.042273,3.31787,3.552317,3.74334,3.9087620000000003,4.09564,4.126367,4.189210000000001,4.210331999999999,4.203571,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,building,7 trad biomass,1.41181,1.78826,1.93778,1.93128,1.80115,1.62697,1.45126,1.2818,1.11019,0.951243,0.806275,0.67613,0.562568,0.464084,0.382373,0.316699,0.271065,0.213537,0.174579,0.142032,0.117611,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,industry,1 liquids,0.4106464799999999,0.7316704,0.7715635000000001,0.9269703999999999,1.1770946,1.4751069,1.737112,1.973407,2.2183583000000002,2.4356497,2.6238375,2.7949092,2.9486957000000005,3.0803342,3.1921231,3.2456639999999997,3.1437971,3.3005971,3.2870232,3.2766979,3.2801342,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,industry,2 gas,0.56046308,0.9859714100000001,1.0291714,1.3003878,1.5885206,1.9519696,2.2763227999999995,2.5476780999999997,2.7504705000000005,2.89253778,2.96975992,2.99838348,2.98514725,2.94412757,2.88870242,2.8335269899999997,2.829082159999999,2.71597503,2.6769305100000005,2.61800867,2.5509352899999995,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,industry,3 coal,0.0896639,0.349156,0.538446,0.730748,0.904597,1.114527,1.298177,1.456492,1.595607,1.705796,1.786397,1.8422509999999999,1.882717,1.90269,1.9077160000000002,1.907571,1.928521,1.864214,1.822138,1.775678,1.748015,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,industry,4 biomass,0.366359198,0.29419201,0.29268510000000003,0.37954864,0.47908057000000004,0.60200161,0.7170359,0.81319845,0.87738483,0.9227721,0.95319935,0.9679661300000001,0.97568834,0.9782057599999999,0.96042223,0.94447466,0.9388578,0.9023685800000001,0.8808532800000001,0.85953751,0.84359938,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,industry,5 electricity,0.052332260000000005,0.1537673,0.1843889,0.2551143,0.3356885,0.4314193,0.5387618,0.6468121,0.7525967,0.8466296,0.9242412,0.986881,1.0367438,1.0771427,1.1074628,1.1359135,1.1765817,1.1703918,1.1803544000000001,1.1842655,1.1684068,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.003668928,0.00730398,0.01215155,0.01817854,0.025248680000000003,0.03327736,0.04203036,0.0454866,0.049081799999999995,0.052691699999999994,0.0554161,0.058409,0.0624191,0.06351949999999999,0.0658947,0.0679488,0.0668984,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,transportation,1 liquids,0.4973025299999999,1.1106036400000001,1.56721066,1.7921104239999996,2.06592866,2.4009147720000006,2.70355372,2.9747087420000007,3.2241012440000016,3.433487639,3.5752552529999995,3.7938297700000017,4.004737529999999,4.207419102,4.400351036000003,4.566133422999998,4.649318787,4.824125957000001,4.9409501250000005,5.031696476999999,5.091840884999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,transportation,2 gas,0.0,2.0917818E-4,4.1865607E-4,0.027197545680000004,0.07376164377,0.15794649892,0.27707297268,0.4378183051,0.6360470942,0.8669840846,1.1557582467,1.3779869980000001,1.582278573,1.764104751,1.9189763599999996,2.059477222,2.2290114569999995,2.34776851,2.476844571000001,2.6034198589999993,2.703479586000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,transportation,3 coal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,transportation,5 electricity,0.0,0.0,0.0,6.757013359700002E-5,4.6336719918E-4,9.646458635220001E-4,0.001715168598468,0.002788926982709999,0.004195989625099999,0.005991217331700002,0.008208747113,0.010596243429999999,0.013367776294999991,0.016589908217999997,0.020381317870000006,0.024787979930000006,0.030422031589999995,0.03608822735,0.04324105849999999,0.051505863500000006,0.05698477719999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,transportation,6 hydrogen,0.0,0.0,0.0,0.0,4.0406727E-5,1.5582017200000003E-4,3.36388041E-4,6.08752688E-4,9.696494583E-4,0.00146052437,0.0021214760640000004,0.003054368038,0.004154591102,0.0054362618480000005,0.006910884772,0.00856456764,0.010502682269999999,0.01269571513,0.01511477078,0.01762682018,0.01957076328,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,building,1 liquids,1.526862,1.7262730000000002,1.278542,1.11637,1.0554839999999999,1.047213,1.013018,0.968916,0.928228,0.8918980000000001,0.857424,0.8279279999999999,0.802523,0.771912,0.740687,0.6930540000000001,0.5965514000000001,0.599292,0.5478386,0.5031014,0.46500559999999996,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,building,2 gas,0.4780083,0.9357650000000001,1.120498,1.013722,1.012692,1.0436,1.053142,1.0417139999999998,0.9934989999999999,0.943818,0.890748,0.836187,0.782245,0.7261034000000001,0.672898,0.6248685,0.590919,0.5392874999999999,0.5052257,0.4704061,0.4352954,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,building,3 coal,0.0410149,0.023168299999999996,0.0213486,0.02080267,0.020716409999999998,0.020436100000000002,0.019970150000000002,0.01933902,0.018454119999999997,0.017515250000000003,0.01655962,0.01554888,0.014570905,0.013535898,0.012489827,0.011611851,0.011259376,0.009838804999999999,0.008947852000000001,0.008112736,0.007381212,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,building,4 biomass,0.0041989,9.692E-4,7.974000000000001E-4,7.326733E-4,7.323947000000001E-4,7.189305E-4,7.041355E-4,6.750901E-4,6.090204E-4,5.486991E-4,4.95014E-4,4.443243E-4,3.997849E-4,3.600056E-4,3.1584610000000003E-4,2.8068230000000003E-4,2.579079E-4,2.229915E-4,2.00805E-4,1.8109031999999998E-4,1.6195474E-4,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,building,5 electricity,1.4177565,2.2208717,2.3330016,2.5846839,2.6657645,2.7002473,2.7277455,2.7247196000000002,2.7180229999999996,2.6999966,2.6692827,2.6302659999999998,2.5813428000000003,2.521987,2.4509600999999996,2.3776718,2.3199195,2.2134798,2.1253668,2.0347676999999997,1.9406439,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,industry,1 liquids,3.4373119,3.3297011000000003,2.836253,2.7271363,2.6674523000000003,2.6488121000000002,2.603377,2.5483911999999997,2.498647,2.4511529000000003,2.4058456,2.3667235,2.3298492,2.2869596,2.2405577,2.1734997000000003,2.0464024,2.0397305,1.9660663,1.8983563,1.8364008,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,industry,2 gas,0.1692301,0.3262731,0.4310851,0.43015473000000004,0.42789067000000003,0.43307911,0.43246002000000006,0.42567829,0.40781375,0.38972674000000007,0.37050531499999995,0.352619972,0.334466265,0.316094736,0.2990046859999999,0.2835174019999999,0.272862361,0.25782746599999995,0.24879193300000002,0.23910227099999995,0.229139885,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,industry,3 coal,2.1460001,2.0289324,1.9999818,1.9274277,1.9105956,1.9266716,1.9239202,1.9099825,1.8692341000000001,1.8274774999999999,1.7841116,1.741257,1.7022597,1.6556561,1.605967,1.5603385,1.5381234000000001,1.4608712,1.4053759,1.3526349,1.3140022,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,industry,4 biomass,0.107288,0.108003,0.114363,0.105528,0.106264,0.108142,0.109412,0.108951,0.104283,0.0998045,0.0957642,0.091799,0.0883103,0.0850272,0.0805951,0.0768096,0.0740855,0.0700256,0.0671791,0.064672,0.0624899,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,industry,5 electricity,1.2285506,1.2428390999999999,1.2170935,1.4566971,1.4943468000000002,1.4634972,1.4485634,1.4276984,1.4241981000000001,1.4156111,1.4020245,1.3858075,1.3644089,1.3424795,1.3163671,1.2942747000000001,1.2891653,1.2477436,1.2269659000000002,1.202334,1.1721047,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.001755848,0.002830652,0.004012608,0.005295059,0.00654144,0.00786243,0.00924367,0.00946258,0.00976337,0.01007624,0.01022414,0.01043524,0.01080709,0.01081183,0.01101491,0.01120491,0.01084575,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,transportation,1 liquids,3.347624,4.0051274,3.5703535800000004,3.5153434299999997,3.3838358499999996,3.2287765000000004,3.0997006649999994,2.9615432400000006,2.884099009999999,2.7953610400000004,2.704319660000001,2.6265983600000022,2.56692107,2.51933946,2.4801821300000007,2.4409264800000003,2.3958748100000005,2.3666208400000004,2.33127149,2.293142330000001,2.26460592,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,transportation,2 gas,0.0,0.0,0.0,0.026690469999999997,0.061005699000000004,0.11091007900000001,0.16621347600000003,0.227943522,0.28257742900000005,0.340344227,0.42571079799999995,0.45899877899999997,0.48590567,0.5059088999999999,0.5199210700000001,0.5298375,0.543848,0.54317351,0.5452637199999999,0.5454856599999999,0.5473285100000002,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,transportation,3 coal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,transportation,5 electricity,0.060527974,0.068607672,0.069446673,0.0700907918,0.07281167650000002,0.076577572,0.08056024929999998,0.08498679787999998,0.08824393980000003,0.09228341900000002,0.09699644,0.100151213,0.10233317900000004,0.10343981499999999,0.10400318,0.10437727800000002,0.10514390300000002,0.10546710999999998,0.10585007599999997,0.10626616800000001,0.104647347,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,transportation,6 hydrogen,0.0,0.0,0.0,0.0,9.941815E-4,0.0033194597999999997,0.006200312500000001,0.009555266500000001,0.012295498899999998,0.015332924999999999,0.018446857299999998,0.0215659904,0.024719855300000003,0.027749095200000004,0.030722338499999995,0.033600859000000004,0.036463275999999996,0.038982547,0.041275717999999996,0.043362072,0.044951130000000006,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,building,1 liquids,0.29774939999999994,0.352377,0.3386892,0.3750128,0.4257731,0.47242739999999994,0.5141719,0.5534781000000001,0.5975741999999999,0.6416573,0.6853903000000001,0.727687,0.7673853,0.800062,0.826856,0.8318407,0.776361,0.8163605,0.7894922999999999,0.7614811,0.7470049999999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,building,2 gas,0.0339066,0.0380508,0.0404367,0.043295709999999994,0.04945492,0.05724728,0.06521729,0.07280759,0.07898623000000002,0.08477046,0.08997572,0.09411008999999998,0.09707891,0.09891441,0.09997122500000001,0.100614297,0.102436452,0.09992132200000002,0.09940120499999998,0.097510662,0.096172128,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,building,5 electricity,0.13416608,0.264536,0.2992663,0.3688,0.45047820000000005,0.5528312,0.671055,0.7997383,0.9321793,1.073422,1.2248854,1.3815439,1.5344499,1.6916275,1.8427512000000001,1.9958730999999998,2.1653453000000003,2.2782728,2.4069094,2.5174819,2.6098936000000004,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,building,7 trad biomass,0.27636,0.266313,0.259741,0.24419000000000002,0.230569,0.218388,0.2054726,0.1918464,0.1767831,0.16128130000000002,0.1451131,0.1287263,0.1132022,0.09848960000000001,0.0851503,0.0737853,0.0659154,0.0539512,0.0455297,0.038140499999999994,0.0324363,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,industry,1 liquids,0.6548573,0.7202426,0.621747,0.7165642,0.8112719,0.8950805,0.9727243000000001,1.0501695,1.1405074999999998,1.2302442,1.3204975,1.4106032000000002,1.4963699,1.5762390999999998,1.6527329,1.7054034000000002,1.6799561999999997,1.7905228,1.8109891,1.8362183000000003,1.8730495000000003,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,industry,2 gas,0.7903174000000001,0.7277781,1.0076536999999999,1.08721853,1.20840497,1.3469091899999999,1.47986052,1.5953167999999998,1.6824267799999997,1.7539021300000002,1.809436093,1.8461656900000003,1.8614650900000003,1.8629506600000003,1.8599020819999998,1.8593903779999998,1.8899518800000001,1.8561372799999998,1.8641139,1.8616622999999997,1.8626803200000002,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,industry,3 coal,0.0712458,0.0655946,0.0827154,0.0950614,0.1039284,0.1145341,0.12483259999999999,0.134746,0.14416669999999998,0.1528518,0.1608151,0.1677165,0.17373460000000002,0.1784336,0.1823235,0.18661519999999998,0.1950292,0.1912305,0.1911066,0.1906727,0.1926815,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,industry,4 biomass,0.08162710000000001,0.058059799999999995,0.0428646,0.0494489,0.05508589999999999,0.0611511,0.0675176,0.07300670000000001,0.0760015,0.0784884,0.0807818,0.0823312,0.0835038,0.084578,0.0839596,0.0838808,0.0854964,0.0831081,0.0827348,0.0824491,0.0826025,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,industry,5 electricity,0.2051789,0.419459,0.4628484,0.5604897,0.645246,0.7404000000000001,0.8421932999999999,0.9428029,1.0380125,1.1278439,1.213566,1.292917,1.3600613000000001,1.4244686999999998,1.480907,1.5415272,1.6166329000000002,1.6467682,1.6940421,1.7359389,1.7633863,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.002516398,0.004430168,0.006845250000000001,0.00980272,0.013271539999999998,0.01734037,0.022029519999999997,0.02415906,0.026486049999999997,0.02891819,0.03093746,0.03318929,0.035991999999999996,0.0374411,0.039444999999999994,0.0414121,0.0418302,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,transportation,1 liquids,1.2913929498999999,2.0116369730000003,2.311942941,2.4953252,2.6666259298000003,2.8096140884999996,2.9411817248,3.0376281533,3.1290585794999988,3.188815922600002,3.1873495467999997,3.2609051323000013,3.350675564700001,3.4630497914,3.6000922068000007,3.738676727299999,3.818620911200002,3.9647440804599983,4.074820429519999,4.169952575739998,4.25158705629,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,transportation,2 gas,0.0,6.697205999999999E-4,5.022403E-4,0.0358973103,0.096184714,0.19795958800000005,0.3441868206399999,0.54080606,0.7707330800000003,1.0321828179999997,1.3824943560000003,1.6028548589999998,1.8050624699999998,1.99112958,2.1612683000000006,2.3245495599999995,2.5113593499999998,2.67565492,2.84410422,3.0183380500000005,3.1773551899999997,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,transportation,5 electricity,0.002738878,0.00393267,0.0042794700000000005,0.00967914315,0.019095736260000003,0.028240766959999997,0.03857055876000001,0.050571256306000005,0.06302826449,0.07765558424999999,0.09511818421000001,0.11278043581000002,0.12964500204,0.14642592396,0.16447205390000003,0.18353298573999996,0.20426039722000003,0.22492973594,0.24695850132,0.26969217763,0.28472025300000003,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,transportation,6 hydrogen,0.0,0.0,0.0,0.0,0.0014228277,0.0047494162,0.009429273299999999,0.015497000090000004,0.02183755632,0.029002302000000008,0.0370038587,0.045686453499999995,0.05528086400000001,0.06591699499999999,0.0781313903,0.0914265306,0.105425821,0.11943476199999996,0.13387056899999997,0.148183401,0.160511454,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,building,1 liquids,0.8066001999999999,1.2065308,0.9912865,1.1267848,1.1906865,1.2863562000000002,1.3526934,1.3966530000000001,1.4615399,1.521128,1.5757757,1.6371352,1.7052206,1.7630472,1.8130410000000001,1.8077691000000002,1.6387285999999999,1.7503581,1.6781005,1.6116187,1.5913819,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,building,2 gas,0.14357989,1.2777344,1.6716382,1.7807394,1.9138772000000002,2.0592764,2.1892383,2.284646,2.3429406,2.3824569,2.3994787,2.4035026,2.3968171000000003,2.3741424,2.3413024000000004,2.3061757999999997,2.3031354,2.2096241,2.1643174999999997,2.1022304,2.07225142,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,building,3 coal,0.0,3.767E-4,3.767E-4,3.92537E-4,4.04299E-4,4.06592E-4,4.01135E-4,3.91172E-4,3.798E-4,3.68037E-4,3.5578E-4,3.42848E-4,3.29653E-4,3.13325E-4,2.95792E-4,2.78303E-4,2.63523E-4,2.38698E-4,2.16965E-4,1.96824E-4,1.85417E-4,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,building,4 biomass,0.0152789,0.026622899999999998,0.0221021,0.0228645,0.0240379,0.024421349999999998,0.02456835,0.024153749999999998,0.022837120000000002,0.021645590000000003,0.02060751,0.019553570000000003,0.0185843,0.01762049,0.0162874,0.01504699,0.01389197,0.01265051,0.01154523,0.01051504,0.009808299999999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,building,5 electricity,0.51637,1.3263690000000001,1.9365,2.23605,2.639511,3.145099,3.707338,4.280921,4.851909,5.383029,5.863938,6.318388,6.747835,7.1679960000000005,7.548611999999999,7.903072,8.266697,8.503893,8.756892,8.958452000000001,9.095201,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,industry,1 liquids,1.592816,2.8579470000000002,3.3534040000000003,3.89115,4.197011,4.550315,4.858776,5.150459,5.506052,5.847469,6.178302,6.5139439999999995,6.8477820000000005,7.158054,7.442972,7.598059,7.359087000000001,7.781251999999999,7.755958,7.746521,7.798945000000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,industry,2 gas,1.2614097,3.0656559999999997,4.911979999999999,5.436952,6.0686702,6.6879755,7.287139,7.814516,8.2179866,8.551153099999999,8.808347090000003,9.003592060000003,9.133767270000002,9.212559390000003,9.254922279999997,9.31131911,9.56907387,9.360124890000003,9.42048126,9.418572799999998,9.447577300000003,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,industry,3 coal,0.0249486,0.0627063,0.0788642,0.08727,0.0974396,0.107743,0.117867,0.127594,0.137351,0.146642,0.155577,0.164313,0.173315,0.181465,0.188802,0.196336,0.207375,0.206799,0.208969,0.210951,0.217853,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,industry,4 biomass,0.0045627,0.0030558,0.0032232,0.00354793,0.00402932,0.0044849,0.00496324,0.00538127,0.00566132,0.00591116,0.00615696,0.00637845,0.00660913,0.00684006,0.00694376,0.00707446,0.00730792,0.00724075,0.00729279,0.00735761,0.00754285,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,industry,5 electricity,0.1850514,0.450775,0.6261705999999999,0.7610756,0.9452627,1.1683623,1.43363,1.726424,2.029846,2.320684,2.5923309999999997,2.846769,3.0825620000000002,3.316743,3.531517,3.7566770000000003,4.035829,4.179558,4.397892,4.604240999999999,4.710933,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.012048139999999999,0.02092996,0.03203833,0.045480099999999996,0.0612929,0.0800554,0.1019002,0.1125599,0.1250875,0.1387953,0.1507875,0.1645672,0.1827115,0.1911747,0.20412160000000001,0.2170279,0.22345320000000002,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,transportation,1 liquids,3.1603038000000008,5.2676101,6.7368046,7.423377660000001,8.10742318,8.899863980000001,9.66347997,10.33097672,10.94306216,11.446576949999999,11.756401639999998,12.317655979999994,12.886475979999995,13.464474369999998,14.06776141,14.607917020000004,14.909370599999997,15.46731205,15.848862580000008,16.16644753,16.451344580000004,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,transportation,2 gas,0.0,0.010798614,0.19621490000000003,0.258503039,0.351806075,0.5230755650000001,0.7768893276,1.1184377685000002,1.5303394243,1.9990854450000002,2.6024353819999995,3.042219382,3.4670205210000007,3.8687487139999996,4.240791527,4.589506653,4.963194121999997,5.296429641,5.6194364100000005,5.94019488,6.236504569999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,transportation,5 electricity,0.0,3.774E-4,0.0011005,0.0050548247,0.012025630699999998,0.021802377999999997,0.03355804825,0.04819159655000001,0.0639603618,0.08310059139999999,0.10592789500000001,0.132845735,0.162798339,0.19726930999999998,0.23987869299999998,0.290740051,0.35395574400000007,0.4244631139999999,0.507736784,0.6031056680000001,0.6696272289999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,transportation,6 hydrogen,0.0,0.0,0.0,0.0,0.003634595,0.012383089,0.024410552400000004,0.039806326200000006,0.0551366695,0.07219082,0.09009702,0.11443538399999999,0.142614067,0.175208196,0.214091241,0.25760146599999995,0.306893964,0.357030617,0.41021954999999993,0.46446753799999996,0.51220447,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,building,1 liquids,0.0619528,0.0394321,0.0559668,0.05846697,0.06646752,0.07667749,0.08836419000000001,0.1025096,0.1230685,0.14812409999999998,0.17741469999999998,0.212025,0.252131,0.2962574,0.3450612,0.38700480000000004,0.39223179999999996,0.4605482,0.48376569999999997,0.5037123,0.5246999999999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,building,2 gas,0.07363178,0.1864444,0.25002939,0.28183144,0.33698277,0.3985323,0.4708995,0.5526398,0.6478123,0.7544025,0.8663138,0.9820616,1.0979002,1.2091754000000001,1.3191794,1.4192884000000001,1.5141763,1.575135,1.6373251,1.6753645,1.7049132,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,building,3 coal,1.256E-4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,building,4 biomass,0.004479,0.0073255,0.0079953,0.00835705,0.00932651,0.0100475,0.0106593,0.0109665,0.0108389,0.0106128,0.0102866,0.00982282,0.00929278,0.00870539,0.00790416,0.00713655,0.00639292,0.00571504,0.00508672,0.00452601,0.00404762,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,building,5 electricity,0.04819869,0.1434035,0.16888090000000003,0.21314070000000002,0.27249480000000004,0.343897,0.43657150000000006,0.5518647999999999,0.6923272,0.8563279,1.044471,1.2545396,1.483238,1.7340940000000002,2.004881,2.287455,2.577872,2.85832,3.1392119999999997,3.4117939999999995,3.6853059999999997,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,building,7 trad biomass,0.6844110000000001,0.9536132,1.0434866,1.0159999,0.9725272,0.9174632,0.8413296,0.7560036,0.6725036000000001,0.5911868,0.5128147000000001,0.43879645,0.37073479000000004,0.30764088,0.25217677,0.20526952,0.16684026999999998,0.13315486999999998,0.10561013000000001,0.08366639000000001,0.06725068999999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,industry,1 liquids,0.07430152000000001,0.1009245,0.0730875,0.086199,0.10632749999999999,0.13202550000000002,0.1625138,0.19962370000000002,0.24970389999999998,0.3084214,0.3760739,0.45297649999999995,0.5375475,0.6259579999999999,0.7169253,0.7905512,0.7996395,0.9118367,0.9470991,0.9836067,1.0251191000000002,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,industry,2 gas,0.17790501,0.4387343,0.45493481,0.537751,0.6687092,0.8266468,1.0242686,1.2654427000000001,1.5492887,1.869053,2.2142512,2.5712102800000003,2.9304309899999996,3.28104306,3.6204240000000008,3.93301492,4.241563729999998,4.456455180000001,4.68242387,4.87455223,5.03829325,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,industry,3 coal,0.08292469999999999,0.14734719999999998,0.1689471,0.2231565,0.277708,0.336679,0.404771,0.4808,0.566059,0.657602,0.753064,0.8497049999999999,0.946215,1.036652,1.120251,1.194698,1.266501,1.296336,1.318442,1.333037,1.353197,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,industry,4 biomass,0.096696602,0.1420315,0.15542609999999998,0.17117065,0.21922843,0.27476307,0.34446875000000005,0.42425050000000003,0.50890257,0.6000333,0.69665566,0.7929685,0.88883687,0.98006054,1.04795297,1.1047195600000002,1.15131772,1.16977112,1.1801228400000001,1.1865370000000002,1.1947054,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,industry,5 electricity,0.05531751,0.09991363,0.1086529,0.1592344,0.2181876,0.29155509999999996,0.389008,0.5125452,0.6578276000000001,0.8196387,1.0017695,1.1973251,1.3959689,1.5998189,1.7995404,1.9881871,2.1611695,2.3108563,2.4473561000000004,2.5743385,2.6908548,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.001155853,0.002324406,0.004147720000000001,0.0068762499999999996,0.01089662,0.01660218,0.02425851,0.0302936,0.0376127,0.045900800000000005,0.0541419,0.0631805,0.0732363,0.08056479999999999,0.088696,0.0963737,0.0972623,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,transportation,1 liquids,0.21350999699999998,0.38381247000000007,0.45341848999999995,0.510906096,0.5948532719999999,0.6834283509999998,0.7813408563999996,0.8866001654,1.004150836,1.1301980300000003,1.2562455019999992,1.4351786809999998,1.6395899490000008,1.8760801899999995,2.1500991360000006,2.439447220000001,2.6965390310000004,3.0294946800000004,3.3316534260000004,3.622224777000002,3.894745656999998,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,transportation,2 gas,0.0,0.03616307,0.10518189,0.12248763990000001,0.1476037122,0.18042744280000003,0.22630735232999996,0.28679316343,0.36416248219999986,0.4570410024999999,0.5721896534,0.6807858809999998,0.7949771982999998,0.9139590800000003,1.0370806383,1.166359164,1.316478961,1.4589191269999995,1.6072923909999999,1.7592889539999998,1.9037746439999996,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,transportation,5 electricity,1.255997E-4,4.19E-5,0.0,1.214851303E-5,9.632669449999999E-5,2.0340668011999997E-4,3.7762098141E-4,6.527800744239998E-4,0.0010415327857299997,0.0015911490083,0.0023628822500000005,0.0032605321154000003,0.004472089904999999,0.006158863432000001,0.008562291839999998,0.011868609341000001,0.01665232765,0.02252341964,0.030740973369999997,0.04160334675,0.0509774105,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,transportation,6 hydrogen,0.0,0.0,0.0,0.0,1.0712218000000001E-5,3.8484269300000004E-5,8.56065289E-5,1.6400513770000003E-4,2.804619558E-4,4.667604935E-4,7.545296662E-4,0.001257804894,0.00199391403,0.003078268948,0.004669929009,0.006845125111,0.009792303269999999,0.013566658820000002,0.01825167739,0.02386960967,0.0294383335,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,building,1 liquids,0.588301,0.3016854,0.26790369999999997,0.28212550000000003,0.2612962,0.2738239,0.2752947,0.27056800000000003,0.2664131,0.2601489,0.2535297,0.249582,0.2488812,0.24668009999999999,0.24419030000000003,0.2335712,0.2009248,0.2097411,0.1948202,0.18182779999999998,0.1718087,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,building,2 gas,2.3815825999999998,1.762557,1.8189009,1.8105383,1.7771328000000002,1.888188,1.9620266,1.992131,1.9844431,1.9467605000000001,1.8900778999999999,1.8364196,1.7927421000000001,1.7420608,1.69136,1.6291948000000003,1.5583626000000002,1.4965054,1.4373857,1.372754,1.3262858,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,building,3 coal,1.658079,0.232742,0.1683193,0.1611543,0.15018689999999998,0.1475653,0.1407636,0.13212680000000002,0.1225066,0.1137766,0.1060632,0.099455,0.0936279,0.0874393,0.0817172,0.0761444,0.07092509999999999,0.0651474,0.0596217,0.0545085,0.0506335,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,building,4 biomass,0.3046985,0.0730037,0.0764363,0.07209578999999999,0.06996893,0.06638599,0.06301865,0.05897371,0.0537857,0.04935401999999999,0.04580431000000001,0.04262239,0.039769570000000004,0.037218980000000006,0.034031120000000005,0.0311583,0.028235473,0.026163559000000003,0.023990955999999997,0.022097587000000002,0.020817707999999997,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,building,5 electricity,0.63153697,0.80470873,1.09742372,1.16360756,1.25366599,1.48311158,1.7165077499999999,1.9211277999999998,2.0995649199999997,2.22345429,2.30552676,2.37586325,2.4529818,2.51986967,2.56907452,2.59821904,2.61526551,2.60463353,2.5913197099999996,2.56930195,2.55471148,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,building,8 district heat,3.990745,2.4137690999999997,2.3949975,2.2845612,2.1691835999999998,2.1658084000000004,2.1408478,2.0915690000000002,2.0286901,1.9549341999999998,1.8770519,1.8042723999999999,1.7378424000000001,1.670605,1.6071919,1.5440562,1.487832,1.4162279999999998,1.352111,1.2880672,1.2287569999999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,industry,1 liquids,2.8505017,1.9883918999999999,2.184765,2.2900802000000002,2.2248110000000003,2.2273900999999996,2.2064618,2.1897285,2.2115006,2.2369871,2.2683828,2.3113054999999996,2.3650094999999998,2.4144759,2.460833,2.4656469,2.3411098000000004,2.4495189,2.4122211,2.3841618999999996,2.3667636,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,industry,2 gas,3.363707,3.3279929999999998,3.9936939999999996,3.9978888,3.9762962,4.0243731,4.0291099,4.0060312,3.9353518999999997,3.8675166999999995,3.7928492600000006,3.728113649999999,3.66392732,3.592418569999999,3.52355923,3.46261879,3.4518668999999997,3.35082973,3.32214254,3.27756761,3.215514389999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,industry,3 coal,2.1714852000000002,1.5131527,1.7338037000000002,1.7150281,1.6612697,1.6596989000000002,1.6392776,1.6189048999999998,1.5992996,1.5853262999999997,1.576562,1.5747218,1.5831526999999999,1.5848528000000002,1.584333,1.5794733,1.5800148,1.5423876000000003,1.5055964000000002,1.4709275999999998,1.4551255,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,industry,4 biomass,0.04345073,0.11909169,0.10820812,0.10667517,0.10570724999999999,0.10659310000000001,0.10644009,0.10510888,0.10053459999999999,0.09684307,0.09419749000000001,0.09206869000000001,0.09089594999999999,0.08996701,0.08755399,0.08531907,0.08329515,0.08078685000000001,0.07867791,0.07690411999999999,0.07542868,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,industry,5 electricity,2.4058756000000003,1.7063656,1.7454181,1.7681547,1.8683279000000002,1.9326914,2.0204626,2.1059108999999996,2.2123867,2.2893995,2.3388429,2.3705087999999996,2.3887956,2.4023924,2.4021825,2.4026594,2.4080736,2.3778159,2.3617293,2.339729,2.3160947000000003,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.015110479999999999,0.02410957,0.03391988,0.04459019,0.055800800000000005,0.0680118,0.08128640000000001,0.08488699999999999,0.08960889999999999,0.09486140000000001,0.0989202,0.1033526,0.10843239999999998,0.11151180000000001,0.1155118,0.1194288,0.11729049999999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,industry,8 district heat,4.51044,2.70488,2.68588,2.6429,2.60679,2.63898,2.65016,2.64293,2.60649,2.56525,2.52367,2.48426,2.4508,2.4155,2.38089,2.34988,2.34589,2.28277,2.25065,2.21482,2.16465,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,transportation,1 liquids,3.598682,3.2053257,3.60546048,3.6561149100000008,3.6040812399999997,3.8068763899999993,3.98939947,4.118168377000001,4.221258750000001,4.251520220000001,4.223071859999998,4.252420803000002,4.331592371,4.4200728530000015,4.4996688549999995,4.53994209,4.489994609,4.564699521,4.5663999900000025,4.562000096,4.558569699,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,transportation,2 gas,0.046960201,0.00200891008,0.004729429299999999,0.0287821711,0.05916564657,0.11533941053999998,0.17968189868999995,0.251148044,0.317786234,0.38414280300000003,0.46706881600000005,0.515118749,0.563870702,0.6074274920000002,0.6414425720000001,0.6678756880000001,0.6920781399999999,0.7118989799999996,0.7280356899999999,0.74156573,0.7540568500000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,transportation,3 coal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,transportation,5 electricity,0.2426047,0.2092506,0.2179506,0.22917118825,0.24368456134000002,0.27157425295999993,0.3000028921860002,0.32729058337799993,0.3526918773900001,0.37490582969999997,0.3952829099000001,0.41547562320000003,0.4383929079,0.46192218699999993,0.48499134800000016,0.5073509970000001,0.531813624,0.552512236,0.5771417750000001,0.602495058,0.621400345,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,transportation,6 hydrogen,0.0,0.0,0.0,0.0,5.523768E-4,0.0023489087,0.0048084066,0.007924116600000001,0.010963338540000001,0.0144326757,0.018407851100000004,0.023043369699999997,0.028418637799999997,0.0341729045,0.04011359430000001,0.0462285389,0.05278390200000001,0.059701904,0.06681802000000002,0.07387412800000001,0.079477409,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,building,1 liquids,0.0262462,0.05533895,0.0503995,0.0785453,0.0855349,0.111782,0.13224059999999999,0.1492649,0.16564840000000003,0.1791363,0.19006869999999998,0.1986364,0.20556069999999999,0.20984619999999998,0.2116364,0.20717069999999999,0.1862049,0.1934977,0.1841353,0.1746749,0.1683395,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,building,2 gas,7.116E-4,2.93E-4,9.209E-4,0.00519043,0.00624257,0.0089128,0.0111841,0.013101,0.0144672,0.0154278,0.0160244,0.0162292,0.0161767,0.0159125,0.0154894,0.014971,0.0143888,0.01381,0.0133704,0.0127629,0.0122604,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,building,3 coal,0.09991965,0.19837479999999996,0.1378031,0.1386615,0.14835199999999998,0.17382999999999998,0.18914019999999998,0.19834810000000003,0.2014048,0.2001266,0.19572060000000002,0.1878204,0.17845519999999998,0.16752329999999999,0.1556001,0.1441109,0.1347807,0.1210055,0.1105268,0.1003809,0.0934445,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,building,4 biomass,0.0310183,0.0378833,0.0401437,0.039704,0.0420906,0.0456854,0.0475015,0.0475861,0.0449062,0.0417888,0.0386569,0.0351516,0.0317601,0.0286173,0.0250557,0.021932,0.0191235,0.0168044,0.0149047,0.013199,0.0118231,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,building,5 electricity,0.17634375000000002,0.2814237,0.3041112,0.3408818,0.3957024,0.5173389,0.642019,0.7627363999999999,0.87796,0.9838004,1.0779273,1.161691,1.2371568,1.3003925,1.3497911,1.3868326,1.4160371,1.4205529,1.4203616000000001,1.4090292999999998,1.4024313999999998,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,building,7 trad biomass,0.233914,0.305578,0.323662,0.325136,0.329136,0.33942799999999995,0.349586,0.3604318,0.3717975,0.3834164,0.394759,0.4050013,0.4152232,0.4241735,0.4312014,0.4360006,0.4380672,0.4380675,0.43528313,0.42910441,0.42649052000000004,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,industry,1 liquids,0.19000296999999997,0.15944470000000002,0.1831791,0.22537107,0.24902276,0.28514097,0.318898,0.3524782,0.3890882,0.42561809999999994,0.4622059,0.49925980000000003,0.5366229,0.5729645000000001,0.60769,0.6352156999999999,0.6413469,0.6828158,0.7012687999999999,0.7182229,0.7331482,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,industry,2 gas,0.02257948,0.09150445,0.08841911,0.36666604,0.39729141,0.44275248,0.47698235000000005,0.5023849800000001,0.51751634,0.5261565169999999,0.528863522,0.527062957,0.5205847179999998,0.5112511150000001,0.500588704,0.488197672,0.476545748,0.46398543000000003,0.45573427299999997,0.44398814100000006,0.4298113099999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,industry,3 coal,0.9110977800000001,0.9380253000000001,0.8812772,0.78935176,0.83375939,0.91503829,0.9787220499999999,1.03596795,1.0888878,1.1344626100000001,1.17387676,1.2070116899999999,1.23713578,1.25985718,1.2760535000000002,1.2877371,1.3038562999999999,1.289285,1.2803444,1.2681726000000002,1.2634775999999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,industry,4 biomass,0.17091411,0.22009988,0.2330342,0.206147705,0.21926062899999998,0.240164739,0.25722439999999996,0.26987854,0.27459599,0.27709356999999996,0.27877131,0.2784332,0.27762175,0.27663537000000005,0.27059321999999997,0.26428348,0.25678076,0.2504607,0.24417107000000002,0.23805496,0.23244879000000002,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,industry,5 electricity,0.32037499,0.43187219000000004,0.44714826,0.40677077,0.42624826,0.44211676,0.468196,0.49337749999999997,0.520442,0.5458374,0.5679179,0.5897401,0.610372,0.6278536,0.6426477,0.6536771,0.6622498,0.6630326,0.6605109,0.6555785999999999,0.6443732,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,industry,6 hydrogen,0.0,0.0,0.0,0.0,7.90201E-4,0.001374537,0.002063763,0.002868594,0.003770603,0.004780088,0.00589291,0.00628152,0.0067056400000000006,0.00715351,0.00747878,0.00780869,0.008130680000000001,0.00839021,0.00869023,0.008949780000000001,0.00875985,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,transportation,1 liquids,0.562205418,0.7680692379999998,0.725939218,0.800442336,0.8399301170000001,0.933851293,1.016696185,1.0901585059999999,1.1548704960000005,1.2085027229999998,1.2412069180000007,1.298715336,1.3576927460000001,1.4164137839999997,1.4812759029999991,1.5398644060000004,1.5688051179999993,1.630341198,1.6683089360000007,1.6971428999999993,1.7128229329999998,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,transportation,2 gas,0.0,0.0,0.0,0.0078503381,0.019203882600000003,0.042851957999999996,0.07494327197999999,0.11748419057000001,0.16742721532000004,0.22484260839999995,0.3021477242,0.3551176402,0.40504589920000006,0.45162602100000004,0.49529132100000006,0.535847107,0.5775077169999999,0.6148538960000001,0.6495263319999998,0.6826239239999998,0.707778461,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,transportation,3 coal,0.00196731,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,transportation,5 electricity,0.014360640000000001,0.01955692,0.01247515,0.013250611256800002,0.014193422642559999,0.01533088129606,0.016412669216375003,0.017387369865864,0.0183013235636,0.019121608081000007,0.019871695971000008,0.020752277580000002,0.021657198199999998,0.022592843879999998,0.023582636380000004,0.024670378450000002,0.026067287150000007,0.02720643252,0.02878250702,0.03068590074,0.03230458580000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,transportation,6 hydrogen,0.0,0.0,0.0,0.0,1.6427031999999998E-5,6.937450299999999E-5,1.448572388E-4,2.520262067E-4,3.7662646789999996E-4,5.410238874E-4,7.668443859999999E-4,0.0010553543439999998,0.001391159338,0.0017874243239999997,0.0023122955119999995,0.002936901522,0.00367735209,0.004470909779999999,0.005374999649999998,0.00634460883,0.007093715719999998,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,building,1 liquids,0.0888535701,0.07287971951000001,0.051679080509999996,0.04984346242,0.03461080435,0.03925630879,0.04380519989,0.048170674530000006,0.05305716219,0.0580034775,0.06305691823000001,0.06805937625,0.07287870163,0.07646866741000001,0.07928168134000002,0.07962347474,0.07350077362000002,0.07698775916,0.07311858645999998,0.06903753166,0.0654596692,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,building,2 gas,0.02555590109,0.0665322059,0.06459767129999999,0.0486994978,0.0355693589,0.04108635730000001,0.0468297775,0.0522426268,0.056616658099999995,0.06074898949999999,0.064651288,0.0677324696,0.0699862739,0.07093114090000001,0.0711446874,0.07098477349999999,0.0714405394,0.0689591844,0.06728650159999999,0.064513441,0.0613954369,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,building,3 coal,1.72E-5,3.34999E-5,5.0E-5,3.83605E-5,2.93008E-5,3.2071E-5,3.47451E-5,3.70603E-5,3.8978E-5,4.07442E-5,4.24384E-5,4.37354E-5,4.4746E-5,4.49745E-5,4.47523E-5,4.42678E-5,4.39062E-5,4.17454E-5,3.95344E-5,3.70186E-5,3.48178E-5,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,building,4 biomass,0.0053866009999999995,0.0071071050999999994,0.0074292477,0.0059493061,0.0051337493,0.005511808,0.0058974419,0.006122042,0.0060371229,0.0059201154,0.0058102894,0.0056329695,0.0054371818,0.0052080366,0.00485282481,0.0045233689100000005,0.00423012166,0.00386358341,0.0035408570800000002,0.00322192157,0.00291697983,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,building,5 electricity,0.10319879879999999,0.171635714,0.210287947,0.20619238840000004,0.16271440110000002,0.20241489420000003,0.24665848410000002,0.2970545924,0.35151317600000004,0.410323755,0.471372088,0.533919528,0.595620802,0.6541758679999999,0.70601187,0.751384376,0.791286926,0.825962705,0.854349726,0.8745785580000001,0.8916809219999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,building,7 trad biomass,0.017020091199999997,0.0220903096,0.0231320917,0.0220926234,0.0234012857,0.023080084400000003,0.0222157763,0.0210955965,0.019806100400000002,0.0184159718,0.0169917595,0.0154861249,0.0139945288,0.0124848298,0.011051196,0.0097322808,0.0086235652,0.0072519478,0.0061054691,0.0050852149,0.0042442205,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,industry,1 liquids,0.15314626,0.28261492,0.516244,0.5853713,0.5449854,0.5922308,0.6365890999999999,0.6784770999999999,0.7263793000000001,0.7735098,0.8209312,0.8705615999999999,0.9190737,0.9626986000000001,1.0027094,1.0281692,1.0162569000000001,1.0658414,1.0719379,1.0782699999999998,1.0876353,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,industry,2 gas,0.55030897,0.72586358,0.4740083399999999,0.41267395,0.3872170200000001,0.41782151,0.44539405000000004,0.46547421999999994,0.47453903999999997,0.47935969,0.480138931,0.476768515,0.468583503,0.45624097,0.44248672000000017,0.4308044,0.43259315,0.40735436999999997,0.39720110100000006,0.38336437500000003,0.368463639,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,industry,3 coal,0.019381080000000002,0.00154882,0.00833015,0.008191956,0.0076767730000000005,0.008715532,0.009758722000000001,0.010802173,0.011763038,0.012668223000000001,0.013493047,0.014217736,0.014856258,0.015362718000000001,0.015758076,0.016263118,0.01753785,0.016926337,0.017105385,0.017165034,0.017186871,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,industry,4 biomass,0.01894989,0.02406889,0.02091007,0.01842856,0.01745484,0.01930186,0.0212279,0.02280322,0.02349573,0.02403197,0.02452721,0.02482801,0.02503254,0.02514575,0.024716270000000002,0.024507730000000002,0.02514263,0.02393089,0.02364245,0.02328535,0.02291036,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,industry,5 electricity,0.09501386,0.14124471,0.15445955,0.18292569,0.19413582000000001,0.22291811,0.25135555,0.28096741000000003,0.30972718,0.33681578,0.36008342,0.3818906,0.40047143,0.41711321999999995,0.42878085,0.43894793000000004,0.45407566,0.45284907,0.46098472,0.4667161,0.47176193,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.00475637,0.00824142,0.01260532,0.017737259999999998,0.023393169999999998,0.0299086,0.0373319,0.0403151,0.043740299999999996,0.0471791,0.0497902,0.0533255,0.0596234,0.060134400000000005,0.06329689999999999,0.0658527,0.0638935,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,transportation,1 liquids,0.4714198560999999,0.6944513426000002,0.8181829919,0.8008321399999999,0.6984001434999999,0.7296832998999998,0.7619434884000001,0.7905638645000002,0.8248789028,0.8519559758999999,0.8553551013999998,0.8844480224999999,0.9183975164000003,0.9527519527,0.9897962729799997,1.02393826404,1.0417414228999997,1.0762578359500001,1.0987252541399997,1.1148561775100003,1.1260090905300002,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,transportation,2 gas,0.0,0.0055667320000000005,4.1855030000000006E-4,0.0086197417,0.0149599299,0.04363233759999999,0.08519126048999996,0.13948918800000004,0.2009686210999999,0.27002154789999994,0.36690659120000013,0.42227042899999995,0.47394255099999993,0.522762656,0.56576658,0.6049959890000001,0.6477835309999999,0.6861702620000002,0.723056637,0.759028487,0.7897682239999997,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,transportation,5 electricity,0.001006994,9.483949999999999E-4,0.001105594,0.0022068906899999994,0.0031001525149999994,0.005148065158999999,0.0074348338479999975,0.0101288405491,0.0128558325,0.01618260352,0.020441483910000006,0.024866924340000006,0.029251841230000006,0.03363032313,0.038378928230000005,0.04333184381000001,0.04861418466,0.05399351781,0.05967088384000001,0.06542773122999998,0.06917615439,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,transportation,6 hydrogen,0.0,0.0,0.0,0.0,1.2520986999999998E-4,9.962623200000002E-4,0.0021486303400000003,0.00361418231,0.005070321486000001,0.00679557054,0.008914950579999999,0.011256270280000005,0.013892482699999998,0.0168000109,0.020160276799999995,0.0238095438,0.027666095900000003,0.0315570363,0.035538662199999994,0.03941112590000001,0.042639323100000015,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,building,1 liquids,0.1301009,0.153752,0.1743053,0.1984207,0.21360230000000002,0.24175929999999998,0.25972069999999997,0.27263190000000004,0.287092,0.2994723,0.3090246,0.31607319999999994,0.3210765,0.3219778,0.32010229999999995,0.30938629999999995,0.27649579999999996,0.28120169999999994,0.2618915,0.24358069999999998,0.23253549999999998,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,building,2 gas,0.0103813001,0.020929899000000002,0.028673999999999998,0.035591854,0.039492957999999995,0.045824943,0.051000471,0.054783755,0.057068650000000005,0.058704822,0.059499757,0.059273647,0.058279729,0.056598695000000004,0.054569194,0.052483486999999995,0.051382073,0.047866025400000005,0.0458091935,0.0432712748,0.0414485042,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,building,3 coal,0.0010465,1.675E-4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,building,4 biomass,0.0254091,0.015069599999999999,0.0168277,0.017801965000000003,0.018261298000000002,0.018270918,0.018091395,0.017348767,0.015656183,0.014045937999999999,0.012563497,0.011097488,0.009779948,0.0086226747,0.0073873891,0.0063920037,0.0056912384000000005,0.0047884494,0.0041807695,0.0036491458999999998,0.0032426546,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,building,5 electricity,0.10551391,0.21653306,0.2750106,0.3483882,0.4311809,0.5574161,0.6990194000000001,0.8485695,1.0057132,1.1674805,1.3279776,1.4826313,1.6266063,1.7630005,1.8849605,1.9937969999999998,2.0964715,2.1611844000000002,2.219356,2.2572879,2.2824879,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,building,7 trad biomass,0.2725087,0.2679878,0.3247083,0.3087841,0.2876843,0.2574176,0.2301436,0.20484059999999998,0.1797212,0.1564008,0.1348607,0.1149885,0.09737889999999999,0.0816456,0.06792480000000001,0.0566585,0.0486508,0.03852719,0.03145389,0.02556258,0.02127858,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,industry,1 liquids,0.1967838,0.290257,0.34224740000000003,0.4016035,0.4384959,0.49938089999999996,0.5465764999999999,0.5907537999999999,0.6446167100000001,0.6979630099999999,0.7505264500000001,0.80712445,0.8617407499999999,0.9124858699999999,0.961473,0.99322493,0.9782510400000001,1.04693692,1.06190889,1.07947105,1.10526343,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,industry,2 gas,0.06932975,0.18659275,0.20529212,0.25789983,0.28887831999999997,0.33339869,0.3726166550000001,0.40547623600000005,0.43132211400000003,0.45342405700000005,0.47084304299999996,0.48505577400000005,0.49375865499999994,0.49898386199999994,0.503189816,0.5076218129999999,0.5233309110000001,0.517137217,0.525930077,0.5315354250000001,0.5366515559999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,industry,3 coal,0.04035313,0.0701991,0.054418,0.0688549,0.07512150000000001,0.0842867,0.0917606,0.0977672,0.103142,0.10768830000000001,0.1113478,0.1147487,0.1173769,0.1189007,0.11988560000000001,0.12067710000000001,0.1238747,0.11964520000000001,0.11768909999999999,0.1154451,0.1150361,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,industry,4 biomass,0.12105912,0.1723377,0.21725330000000004,0.2491866,0.26523660000000004,0.28972790000000004,0.30746249999999997,0.3173191,0.3171811,0.3154049,0.3129435,0.310647,0.3072333,0.30271919999999997,0.2929482,0.2834302,0.2769242,0.26346759999999997,0.2535934,0.2442919,0.23979560000000003,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,industry,5 electricity,0.13557943,0.26741949,0.30462776999999996,0.3742591,0.447295,0.5475828,0.6554966,0.7609305000000001,0.8610391,0.9505951,1.0260213,1.0987231,1.1557693,1.203564,1.2421038,1.2745343,1.3143264,1.3204371000000001,1.33687,1.3469464,1.3478162,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.02356809,0.0418821,0.06376570000000001,0.0887637,0.1166855,0.1480227,0.1823032,0.195671,0.20977849999999998,0.2237746,0.2341629,0.2447038,0.25821910000000003,0.2623715,0.2697286,0.2757757,0.2734163,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,transportation,1 liquids,0.4360760169,0.8188218147,1.1318187618000002,1.2796359903,1.3837815110999994,1.5277941371999997,1.6528411178000006,1.7532864271999995,1.8483275148999994,1.9262381219999996,1.9702235057500006,2.04248557942,2.1209134061,2.205770233309999,2.299301046829999,2.38598665791,2.4299330526600005,2.5216953363599983,2.581910432089998,2.6319996116599995,2.674958484750002,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,transportation,2 gas,2.5107E-4,0.006278254999999999,0.0320192,0.050086776,0.07384653099999999,0.120620275,0.18810685300000005,0.278066507,0.38703878399999997,0.5119960210000001,0.673737943,0.780651868,0.8780858199999999,0.967355506,1.0482469799999998,1.1250566199999998,1.2167328300000002,1.2873877299999996,1.3628938099999999,1.4391152499999997,1.5055693500000003,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,transportation,3 coal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,transportation,5 electricity,0.0012762799999999999,0.00129868,0.0020444729999999998,0.004609542118999999,0.00899040622,0.013902608722000002,0.019524779742,0.026011175987999995,0.03312260837,0.04145028175,0.05124231457,0.061142285520000006,0.07068725028999999,0.0800985504,0.08995528264,0.10012509509000002,0.11102404001000002,0.12170670477000001,0.13290153052000003,0.14426248979,0.15148559459999997,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,transportation,6 hydrogen,0.0,0.0,0.0,0.0,6.385324099999999E-4,0.00229968043,0.004666069669999999,0.00772933925,0.011121061179999997,0.014958848129999999,0.01922755995,0.023869897499999994,0.0290267372,0.034702805600000004,0.04108664500000002,0.04792286850000001,0.0550467455,0.06209123709999999,0.0692336355,0.0761990561,0.08210960040000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,building,1 liquids,0.054633970000000004,0.0732849,0.06141538,0.07740810000000001,0.1015855,0.1308995,0.160126,0.18993279999999998,0.22770919999999997,0.2701856,0.31783520000000004,0.3718993,0.4319559,0.4941708,0.5589259,0.6120262,0.6156949,0.7028340000000001,0.729251,0.7520129999999999,0.782517,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,building,2 gas,0.018148578,0.061061769999999994,0.09557380000000001,0.13708400999999998,0.19203047999999998,0.2560643,0.3235422,0.3911536,0.4612602,0.5351911,0.6117263999999999,0.6901069000000001,0.7677934000000001,0.8412646999999999,0.9139986999999999,0.9845597,1.0659721,1.1123169,1.1734119,1.2189628000000001,1.2662091,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,building,3 coal,6.02201E-4,4.19E-5,4.19E-5,5.047E-5,5.88092E-5,6.57597E-5,7.08849E-5,7.46138E-5,7.80747E-5,8.09273E-5,8.31394E-5,8.47987E-5,8.5852E-5,8.55769E-5,8.44994E-5,8.25205E-5,8.0316E-5,7.55581E-5,7.04871E-5,6.53298E-5,6.16237E-5,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,building,4 biomass,0.00328211,0.0104303,0.0122853,0.01273646,0.01358227,0.01402279,0.014332149999999998,0.01432067,0.013804130000000001,0.01332796,0.01292261,0.012490620000000001,0.01209012,0.01168747,0.01103409,0.01040341,0.009788729999999999,0.00918496,0.00859966,0.008026,0.00752391,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,building,5 electricity,0.02245927,0.0759209,0.11322211999999998,0.162852,0.23225600000000002,0.3221731,0.43020519999999995,0.5542348,0.7006666,0.8661118999999999,1.0507135,1.2563857999999999,1.4806970000000002,1.7263397999999999,1.9891305000000001,2.270559,2.568787,2.852126,3.149673,3.442383,3.730761,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,building,7 trad biomass,0.7144003,0.8983964,0.9657846,0.9093043,0.8294062,0.7434503,0.6637835999999999,0.5925276,0.5259488,0.4640525,0.4064101,0.35264840000000003,0.3032573,0.2572156,0.2161157,0.180017,0.1508486,0.1208109,0.0969376,0.07730770000000001,0.0625226,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,industry,1 liquids,0.036071800999999994,0.09899977,0.10556119,0.14049822,0.18940965999999998,0.25157734000000004,0.31444112,0.3791358,0.46007489999999995,0.5499676,0.6481989,0.7638695,0.8909483,1.0225375,1.1582055999999998,1.2672195,1.2768812999999999,1.4534627,1.5069949,1.5552046000000002,1.6118283,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,industry,2 gas,0.065176001,0.13604497999999998,0.12779869,0.18285706000000002,0.25897111,0.35613521,0.46828658,0.5912028199999999,0.7285182800000001,0.8800361700000001,1.04077177,1.21603189,1.3997726499999998,1.58906513,1.78286503,1.9806707799999996,2.2000284100000003,2.3686293400000005,2.56217744,2.7366075700000003,2.893040089999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,industry,3 coal,0.01806101,0.0366185,0.0484522,0.075372,0.10567399999999999,0.1432112,0.1849289,0.23058099999999998,0.28373400000000004,0.34397,0.406202,0.46796499999999996,0.5255879999999999,0.578926,0.627567,0.671045,0.715652,0.7368399999999999,0.756553,0.770032,0.786475,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,industry,4 biomass,0.0354933001,0.076563997,0.08441169899999999,0.109301305,0.15056639200000002,0.19867517299999998,0.24969724,0.29862448999999996,0.34335082,0.38802779,0.43271522,0.48148931,0.53098809,0.57840112,0.6140061800000001,0.6453544999999999,0.6771396199999999,0.69030108,0.70205156,0.70854418,0.72015721,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,industry,5 electricity,0.022735304,0.07382385,0.11970438,0.19898800000000003,0.30673205000000003,0.4545962,0.6371296999999999,0.8471481,1.0860705,1.3407147,1.5987145,1.8805756,2.1616935,2.4434931,2.7169394,2.983583,3.2551845,3.429248,3.6167264,3.7703295,3.8943132,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.01357039,0.0287679,0.0512743,0.0820724,0.12338099999999999,0.1775217,0.2460585,0.29694129999999996,0.3569306,0.423941,0.490719,0.562622,0.646413,0.710769,0.7820450000000001,0.848654,0.878711,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,transportation,1 liquids,0.107439487,0.249720797,0.33080692999999994,0.4055400809999999,0.49885283899999994,0.5986312859999999,0.6959504675999999,0.7883476834999997,0.8841329712999999,0.9809653340000001,1.0748402060000004,1.2063185530000005,1.35530945,1.5239290809000003,1.7143938445999998,1.9161943219999995,2.0956390259999997,2.337228126,2.5586442139999996,2.776773889000001,2.9884723309999996,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,transportation,2 gas,0.0,0.0033485453,0.038590551,0.051881806899999994,0.07015344009999999,0.0957152728,0.12922636482000005,0.17171460942,0.22480465189999996,0.28846053420000006,0.36811847699999994,0.44143959959999984,0.5172669000999999,0.5946701115999999,0.6733825572000001,0.7579239023999998,0.8642753911000001,0.9591691325,1.0677486330000003,1.1838313609999997,1.2985956979999997,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,transportation,5 electricity,0.0,4.49986E-5,0.0,8.298642910000001E-6,8.814747052E-5,1.9559340198000002E-4,3.6812138084000006E-4,6.308168455830002E-4,9.9310212802E-4,0.0014872651961999998,0.0021497297986000003,0.0028672550081,0.0038020804619999997,0.005052605379,0.006774590293999999,0.009115254467999998,0.01254414384,0.016560314139999997,0.022244963229999998,0.029708971199999996,0.0358979405,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,transportation,6 hydrogen,0.0,0.0,0.0,0.0,9.6678516E-6,3.51394874E-5,7.717444829999999E-5,1.427538564E-4,2.3779303850000004E-4,3.810090009E-4,5.922350880999999E-4,9.492937273000001E-4,0.0014495037090000002,0.0021533005690000007,0.003141870002,0.004468580818000001,0.006253166848999999,0.008523998372,0.01132526944,0.01466755882,0.0179841935,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,building,1 liquids,0.4201908,0.44006429999999996,0.3184006,0.3338822,0.3514211,0.36538869999999996,0.36317979999999994,0.3548049,0.3459238,0.3323907,0.31575830000000005,0.2997043,0.28440109999999996,0.2677756,0.2518838,0.23022489999999998,0.19181440000000002,0.1894277,0.16880299999999998,0.1514829,0.13730689999999998,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,building,2 gas,0.025367096,0.48277591,0.5273668,0.58711459,0.6372206899999999,0.6906966800000001,0.71864921,0.7247864399999999,0.70543576,0.67521057,0.63631605,0.5931722399999999,0.5463040600000001,0.4998907099999999,0.45707651,0.41889747499999996,0.39069303400000005,0.35486722099999995,0.330721199,0.30671749699999995,0.283856186,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,building,3 coal,0.3627172,0.039934399999999995,0.0357903,0.0372034,0.0367783,0.03649609,0.03511584,0.03325273,0.03094925,0.028475840000000002,0.02594606,0.02349088,0.021248089999999997,0.01909338,0.01703725,0.01520465,0.013651970000000001,0.01194061,0.01052212,0.00930166,0.00829451,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,building,4 biomass,0.0183765,0.015305199999999998,0.0284942,0.027064163999999998,0.025234926,0.023331022,0.021624123,0.019664883,0.016985754999999998,0.014629953000000001,0.012618877,0.010809538,0.009325142,0.008097029,0.006823077,0.005828254,0.005109038,0.004297744,0.0037436749999999997,0.003283405,0.002879483,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,building,5 electricity,0.12284753,0.589635,0.7525306,0.8462655000000001,0.9793532,1.0791129000000002,1.1556586,1.2038219,1.2305617,1.2366079,1.2244997,1.1985691,1.1610289,1.1174936,1.0707064,1.0232529000000001,0.981465,0.9265772,0.87876,0.8331242999999999,0.7902161999999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,industry,1 liquids,0.8011166,1.7973961999999999,2.0111908,2.0376698,2.0560604000000002,2.0645336000000003,2.0472883000000004,2.0131004,1.9668933999999998,1.9035308000000002,1.8271469000000002,1.7495694,1.6685301,1.58511063,1.50419559,1.4150521299999999,1.2996874200000001,1.2486274400000001,1.1691340799999999,1.0967855899999999,1.02949543,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,industry,2 gas,0.004186,0.2131205,0.3077273,0.32047471,0.32076124,0.32733902000000004,0.32779395999999994,0.32294938,0.30967295000000006,0.29374652,0.27540804799999996,0.25878977300000006,0.24082091500000002,0.223418852,0.20808020100000002,0.194220089,0.183432291,0.173216352,0.16670389300000002,0.159877826,0.15328911199999995,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,industry,3 coal,0.5766204,0.819407,1.0418972999999998,1.128624,1.0828362999999999,1.1213877,1.1304222,1.1312003,1.1097755,1.0804740000000002,1.0451691,1.0169416,0.9878549,0.9530038999999999,0.9168111000000001,0.881355,0.8553531000000001,0.8072290999999999,0.7673466999999999,0.729929,0.70276,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,industry,4 biomass,0.01142769,0.07017287,0.09122543000000001,0.09497453,0.09772691,0.10095198,0.10339565,0.1038524,0.10044171,0.09631744,0.09194370999999998,0.08789247,0.08374301,0.07987322000000001,0.075000245,0.070644037,0.066952319,0.063194242,0.060208109999999995,0.057578471,0.055342242,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,industry,5 electricity,0.2133295,0.6863393999999999,0.8574934000000001,0.8876776000000001,0.9598173,0.9773160000000001,1.0026106,1.016442,1.0281673999999998,1.0289767,1.0189236000000002,1.0059304,0.9851532000000001,0.9618057999999999,0.9374538,0.9139754999999999,0.8964451,0.8671456,0.8448893000000001,0.8231508,0.8035374,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.030112220000000002,0.04927812,0.0707176,0.0940834,0.1176118,0.1418219,0.1659864,0.1695785,0.1733344,0.1773982,0.178729,0.1808151,0.1846495,0.18513210000000002,0.18822440000000001,0.19097229999999998,0.1840476,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,transportation,1 liquids,0.68469438,1.7182592399999999,1.7269824599999999,1.83994049,1.9658504699999997,2.0597783899999995,2.11673248,2.136954737000001,2.1407705999999997,2.1192529400000004,2.06680104,2.0345669,1.9941342599999996,1.9506444400000005,1.9098626999999997,1.8632468399999997,1.8032694099999997,1.7701944600000001,1.7234622900000003,1.6781759999999997,1.63916835,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,transportation,2 gas,0.0,0.013561670500000001,0.04281960640000001,0.06127255639999998,0.0847303568,0.1150908949,0.14688482820999998,0.17987382500000001,0.209127949,0.23757568900000003,0.270186319,0.288265409,0.301494804,0.31037354300000003,0.315794416,0.318198306,0.3203862009999999,0.31712264500000004,0.31364700500000003,0.309291734,0.305452021,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,transportation,3 coal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,transportation,5 electricity,0.0036425700000000004,0.00936098,0.00787093,0.010447555260000001,0.013673355350000003,0.01719136084,0.020697943586000002,0.024209690555000003,0.027450437299999998,0.0308130215,0.0342702599,0.0368402399,0.038881791,0.040545715600000004,0.04211797030000001,0.043634115000000015,0.04551954200000001,0.04717997000000001,0.048978573,0.05087034800000001,0.05137772299999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,transportation,6 hydrogen,0.0,0.0,0.0,0.0,4.122491E-4,0.00135832199,0.00260860694,0.0041377947,0.005630601030000001,0.0072797576,0.00896798694,0.0106613962,0.012325733799999999,0.013947432100000002,0.015556450300000002,0.017112691,0.0187320882,0.020190636099999996,0.021546990000000002,0.0228220718,0.023716652300000002,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,building,1 liquids,0.145745179,0.2975683,0.36778350000000004,0.44285325,0.55768785,0.68337196,0.7977390499999999,0.9038344599999999,1.03072475,1.16148881,1.29361866,1.43488523,1.58030099,1.7140677100000001,1.8409662299999998,1.90505708,1.7860096799999998,1.95985906,1.9301285799999999,1.89373551,1.87263998,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,building,2 gas,0.007363999996,0.0076224,0.010142699999,0.01343266219,0.01715750431,0.02160948075,0.02610646823,0.03035442301,0.03435221889,0.03821126596,0.04176116174,0.04499400284,0.04784923091,0.05014966168,0.05218108447,0.05373700236,0.055378464589999996,0.05541757547,0.05596191036,0.0556643222,0.05516818080000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,building,3 coal,0.183440898,0.206412499,0.1968259,0.21925011000000003,0.23712651,0.25296224,0.26323948,0.26783269000000004,0.27103753,0.27135563,0.26895488,0.26532298,0.26050554,0.25392171,0.24650897,0.23843793000000002,0.23182776000000002,0.21808671999999998,0.20566266,0.19228893000000002,0.18255565,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,building,4 biomass,0.272675769,0.2479129,0.28898999999999997,0.32523324600000003,0.35964059000000004,0.387193728,0.40909837000000004,0.41836737199999996,0.407281589,0.392950106,0.377311561,0.35887298500000003,0.34056801800000003,0.3221522500000001,0.29736405000000005,0.27441653000000005,0.25512342499999996,0.23093064500000002,0.211977802,0.19400882600000002,0.177909189,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,building,5 electricity,0.23937819997999998,0.67570959999,0.928389,1.1690287114,1.514763199,1.9232673871000001,2.3852062868,2.8762336165999995,3.4083892780999996,3.9597866592999997,4.5108255765,5.057574078,5.576070918,6.0733103040000005,6.531839388,6.958331186000001,7.392865977,7.625148781,7.873030349,8.03801447,8.161244493,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,building,7 trad biomass,1.20571901,1.2835728,1.3275854,1.3035938999999999,1.2220283900000002,1.14016651,1.05563846,0.9730019,0.8897316200000001,0.80799766,0.7289524500000001,0.65331164,0.58322342,0.51549491,0.45389314999999997,0.39795684000000003,0.35234751999999997,0.29821019000000004,0.25479321,0.2164592,0.18536428,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,industry,1 liquids,0.677915883,1.8502666399999999,2.37940917,2.830972957,3.3870969082,3.9441030454999995,4.4419794967,4.886564797,5.332622515,5.73335678663,6.083680134820002,6.400810561429998,6.68219635474,6.926744382020001,7.1402114,7.25199,7.1107816,7.361401799999999,7.3387199,7.3116887,7.2946172,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,industry,2 gas,0.1642166,0.9714824,0.9065112,1.14480187,1.36526717,1.5978895,1.8097364,1.9916343000000003,2.1322609999999993,2.2420235699999997,2.316888940000001,2.35793599,2.3725185200000003,2.36928768,2.3614605300000004,2.3490882199999996,2.3697719099999994,2.3167916500000003,2.3149188300000003,2.2952271499999997,2.26655015,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,industry,3 coal,1.0184368,1.0654502000000001,1.3361501,1.69802662,1.98706453,2.2903416799999996,2.56839206,2.82092762,3.06003496,3.2727056600000006,3.453990559,3.609274186,3.7496415069999993,3.8627022390000003,3.9620922070000004,4.0492284409999995,4.1727656500000005,4.14160218,4.1409345769999995,4.130108419000001,4.15596626,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,industry,4 biomass,0.692809,0.8231203,0.9243520999999999,1.0252759,1.2242218,1.4240747999999999,1.6146461,1.7719729000000002,1.8722179,1.9499069,2.0112745,2.0523288,2.0859324999999997,2.1145873,2.1072348,2.1009023,2.1110884999999997,2.0688494,2.0509562,2.0342647,2.0262061,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,industry,5 electricity,0.22067319999999999,0.5629354,0.7494938,0.9317413999999999,1.1537052,1.3863610000000002,1.6379791,1.890741,2.1377990000000002,2.3629480000000003,2.554752,2.716758,2.842903,2.954099,3.045545,3.136889,3.2575339999999997,3.2760789999999997,3.3395479999999997,3.382739,3.398375,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.01098175,0.02062597,0.03329575,0.04907555,0.0679381,0.09012,0.115455,0.1274949,0.1407795,0.15500049999999999,0.1676696,0.1814295,0.198408,0.2083957,0.2221059,0.235561,0.2378556,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,transportation,1 liquids,1.7296148199999997,3.7538321600000004,5.173132700000001,5.70984086,6.402880593999998,7.106589575,7.759183445000001,8.354013709,8.938628950999997,9.490966078000003,9.966605939,10.618612320999995,11.287732343999997,11.973808577000002,12.670229462,13.299585177999992,13.681629903999998,14.418085046000005,14.922891019999998,15.381209759999997,15.804469800000003,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,transportation,2 gas,4.179575E-5,0.008078178,0.07806096000000001,0.12081263899999997,0.18711877899999996,0.2939104712,0.44494368269999995,0.6475692964999998,0.8971455629999999,1.1902476294999997,1.5715979024,1.8640402169999997,2.141817955,2.40194302,2.6410792500000007,2.868683201000001,3.1326609330000004,3.3503405299999995,3.577419802,3.8047672300000004,4.004228282999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,transportation,3 coal,5.86271E-4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,transportation,5 electricity,6.70882E-4,0.001947758,0.00757753,0.008568758355780002,0.01034038373605,0.012240601155258,0.014412147140862003,0.016911863366361,0.019839238277799986,0.02313766617100001,0.02699042521299999,0.030947612583000002,0.035358587846,0.040341632540000005,0.04632063332,0.053376508249999996,0.06299061880000001,0.0722350034,0.08450730599999999,0.0992904919,0.10888749339999998,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,transportation,6 hydrogen,0.0,0.0,0.0,0.0,9.200465199999999E-5,3.2071819199999994E-4,6.559362130000001E-4,0.0011327191540000004,0.001698943991,0.0024372034739999996,0.0033929086389999997,0.004818769825,0.006558810948,0.008690667396000001,0.01130381292,0.014354300490000003,0.01801347975,0.0222855292,0.027141104010000004,0.03239178666,0.03683922025,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,trn_pass_road_bus,1 liquids,0.02612441,0.06574529999999999,0.09937679999999999,0.1168992,0.1334363,0.1391774,0.1436073,0.1450844,0.1454519,0.1453716,0.1429701,0.1384081,0.1340521,0.1281015,0.1192172,0.110268,0.1009123,0.0930765,0.08482890000000001,0.07737720000000001,0.0709867,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,trn_pass_road_bus,2 gas,0.0,0.0,0.0,0.00663536,0.01537962,0.02419131,0.0335024,0.0425529,0.051246799999999995,0.059768299999999996,0.06713,0.0729333,0.0782263,0.0819527,0.082925,0.0831803,0.0835092,0.0812866,0.0794241,0.0772322,0.07512840000000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,building,1 liquids,0.08824089,0.09703159,0.0897061,0.10451089999999999,0.1214078,0.1319495,0.13411510000000001,0.1337324,0.1340474,0.13222689999999998,0.12868980000000002,0.1245208,0.1207181,0.1198632,0.1190193,0.11574074999999999,0.10606881,0.10789496,0.10253462,0.09755167000000001,0.0941592,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,building,2 gas,0.022311393,0.040813510000000004,0.04638091,0.05773691,0.0712306,0.08065428,0.08557468,0.08818577,0.08809826999999999,0.08605089999999999,0.08231142,0.07756429,0.07267625,0.06978353000000001,0.06707616,0.06473671,0.06493996,0.06033792,0.058772290000000005,0.056670609999999996,0.05467644000000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,building,3 coal,2.512E-4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,building,5 electricity,0.11036494,0.3137887,0.3250402,0.4371833,0.5392016,0.6076804,0.6487847,0.6771628000000001,0.6965752000000001,0.7026152,0.6969892,0.6848008000000001,0.6724270999999999,0.6760309999999999,0.6789267,0.6788853,0.6764976,0.668026,0.6586563000000001,0.6470318,0.6380946000000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,industry,1 liquids,0.40834463,0.90940835,1.07257871,1.04583981,1.03383497,1.02421346,1.00737506,0.99003408,0.9763799900000001,0.9616451,0.94607215,0.9304333100000001,0.9148956500000001,0.90251313,0.89003717,0.8710845799999999,0.8327454700000001,0.83294508,0.8112542999999999,0.7906384000000001,0.7710588,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,industry,2 gas,0.0154882,0.0411484,0.047092499999999995,0.05680039,0.058847290000000003,0.06092057,0.06211191,0.06273974,0.06220025999999999,0.06125087,0.05987563,0.05811931,0.056063589999999996,0.05444016,0.052930370000000004,0.05144766,0.050467910000000005,0.04940654,0.04916329,0.048609200000000005,0.047737709999999996,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,industry,3 coal,0.2587376,0.6617664,0.7448994,0.6132567,0.6202094,0.6490958,0.6621283,0.6765398,0.6913098,0.707082,0.7224527,0.7358832000000001,0.7487309,0.7647681999999999,0.779953,0.7896700000000001,0.8164659999999999,0.8187489,0.8225383999999999,0.8287129,0.8436284,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,industry,4 biomass,0.0,0.0012139,0.002093,0.0021246,0.00220554,0.00226722,0.00232618,0.00236102,0.00233068,0.00229715,0.00226763,0.00223206,0.00219963,0.00218674,0.00214404,0.00211154,0.00209137,0.00206983,0.00206737,0.00207144,0.00207965,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,industry,5 electricity,0.16508645,0.40165094,0.45714601,0.5613745099999999,0.58531863,0.59119391,0.6047621400000001,0.61628773,0.62475691,0.63067649,0.6348488099999999,0.6385417800000001,0.64269928,0.64791307,0.65311319,0.66287917,0.67183065,0.67442529,0.6844546,0.6927338200000001,0.69995339,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,industry,6 hydrogen,0.0,0.0,0.0,0.0,3.260978E-4,5.307898E-4,7.624190000000001E-4,0.001024598,0.0013065490000000002,0.001618542,0.00195947,0.002061243,0.002179957,0.002325737,0.0024435710000000003,0.002579929,0.0027491990000000003,0.0028857880000000002,0.00306698,0.00325369,0.0032718,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,transportation,1 liquids,0.3720112400000001,0.72623976,0.7443938299999998,0.7654389149999999,0.7905429430000003,0.8076848030000002,0.8101015509000002,0.8057258285000002,0.7970498723999999,0.7797695899999998,0.7458789730000006,0.7328326068,0.7217385406000002,0.7249582992000001,0.7311272058000003,0.7347410426,0.7262982812,0.7349288178000001,0.7328121807,0.7278047927999999,0.7211235147,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,transportation,2 gas,0.0,0.0,0.0,0.0073544215000000005,0.018130748399999997,0.033891671899999996,0.054398632480000014,0.08165825490999995,0.11238120809999999,0.14454692560000001,0.18850231259999994,0.20661859500000004,0.22181156740000002,0.23873233720000003,0.2523440988000001,0.2635555379,0.2763421777,0.28402819690000003,0.29136872070000003,0.2978738352,0.30127626800000007,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,transportation,3 coal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,transportation,5 electricity,7.117860000000001E-4,0.001880965,0.00418053,0.004740012160628,0.00541882378151,0.006023358356040001,0.006662483018529999,0.007350845199815001,0.008048271198519998,0.008725457115799995,0.009378515157999997,0.0099770313483,0.010600216725099998,0.011496014608999997,0.012531844551000001,0.013689802038000003,0.015173266509000003,0.016247959443000004,0.017709894497000004,0.01926179915,0.02018158523,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,transportation,6 hydrogen,0.0,0.0,0.0,0.0,7.0513594E-6,2.42893208E-5,4.64965407E-5,7.695451409999998E-5,1.0590057560000001E-4,1.4025651E-4,1.834817547E-4,2.329114618E-4,2.8702795349999996E-4,3.5611031539999993E-4,4.3645903400000007E-4,5.2590268E-4,6.305778080000001E-4,7.536406440000001E-4,8.930658430000001E-4,0.00103682325,0.001139481406,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,building,1 liquids,1.995717,1.903792,1.538606,1.521788,1.562403,1.5834199999999998,1.572351,1.5638230000000002,1.585406,1.599844,1.6094069999999998,1.624413,1.6501130000000002,1.666577,1.672797,1.632339,1.461122,1.5051919999999999,1.4047280000000002,1.3168009999999999,1.239365,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,building,2 gas,6.857001499999999,7.5971238,7.623211599999999,7.7693753,8.117729,8.4935718,8.7007804,8.7990063,8.7477458,8.6376059,8.4805862,8.29823893,8.09640468,7.88423235,7.679463170000001,7.49546348,7.378585190000001,7.1834221099999995,7.0910407499999994,6.97084904,6.815049209999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,building,3 coal,0.4034468,0.0880316,0.0631667,0.0606129,0.0602859,0.0606166,0.059764,0.0587778,0.0574984,0.0561428,0.0547766,0.0534169,0.0521703,0.0506049,0.0488827,0.0470677,0.0450657,0.0427044,0.0402757,0.037895,0.0357064,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,building,4 biomass,0.5666589000000001,0.5762032,0.5111528,0.48861922999999996,0.48102078000000004,0.4680658,0.46075424,0.45012404,0.42446842,0.40170817999999997,0.38443837,0.36813072999999996,0.35476602999999995,0.34301157,0.32182483999999995,0.3032483,0.28584516,0.26499174000000003,0.24632014,0.22984104000000002,0.21289450999999998,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,building,5 electricity,6.341497,9.952225,10.400421,11.407238,12.373062,13.178438,13.896506,14.497749,15.045095,15.512481000000001,15.915613,16.299237,16.67305,17.025074,17.299208,17.506919,17.676019,17.683777999999997,17.639046,17.548467000000002,17.404201999999998,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,industry,1 liquids,6.9232604,8.417748000000001,7.2263361,7.5052126,7.889973,8.255232000000001,8.55828,8.843028,9.152867,9.432231,9.689354,9.956218999999999,10.239381,10.510091999999998,10.758526,10.901669,10.773298,11.067172000000001,11.064598000000002,11.058112000000001,11.049595,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,industry,2 gas,7.36497798,6.818757400000001,6.594192659999999,6.665949059999999,6.940795699999999,7.301986,7.550618500000001,7.7214171,7.7642988,7.761412099999999,7.712669129999997,7.64922845,7.5558062,7.452997100000001,7.383577,7.334149230000001,7.36759647,7.357634969999998,7.4839509,7.5764485,7.6686939999999995,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,industry,3 coal,2.652244,1.6495320000000002,1.544009,1.5502250000000002,1.632638,1.7547890000000002,1.848844,1.941108,2.0320709999999997,2.1194010000000003,2.205659,2.293848,2.3904140000000003,2.475474,2.5484869999999997,2.61619,2.698953,2.684951,2.675729,2.659959,2.6659300000000004,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,industry,4 biomass,1.6154229599999999,1.60173148,1.47476959,1.4864784199999999,1.59118029,1.7104301300000002,1.8171101099999998,1.90713755,1.9425916,1.97398473,2.0107045599999998,2.04534029,2.0887184000000003,2.13564084,2.13772734,2.1410582400000004,2.1462510200000002,2.12608402,2.1119893100000002,2.09938325,2.08856476,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,industry,5 electricity,3.2840121,3.4674655,3.2956417,3.758073,4.042902300000001,4.239513100000001,4.4885293,4.724317,4.9932877,5.2498616,5.4997214,5.757780800000001,6.0199416,6.2882180000000005,6.5372015,6.7802182,7.0580077,7.1677684,7.2994219,7.4128651,7.5251853,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.0158619,0.02668568,0.039473669999999995,0.05451649,0.0717014,0.0914557,0.1139855,0.1236914,0.1350854,0.1478726,0.1590291,0.1712461,0.1852093,0.1950261,0.2066811,0.21802850000000001,0.21845799999999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,transportation,1 liquids,21.62850229,27.76724092,26.01438039,26.99355877,27.721078820000006,27.90322265,27.87639243,27.578768100000012,27.5461216,27.2961345,26.718203099999986,26.63486200000001,26.69821280000001,26.8718941,27.061269900000003,27.178409200000008,27.086596,27.20434699999999,27.130411199999998,26.997557699999994,26.9120549,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,transportation,2 gas,0.0,0.0223528,0.029762,0.19855756,0.48453839,0.9544789,1.5025266579999998,2.141943694,2.7560956050000005,3.4060646950000004,4.274114219000001,4.751728289,5.187758649999999,5.5725427000000005,5.894972590000002,6.16753869,6.449826549999999,6.649826110000001,6.83701369,7.013549579999999,7.216079500000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,transportation,5 electricity,0.014848598900000001,0.026844098,0.027507697999999997,0.035395686,0.069884093,0.125171709,0.19078493330000001,0.2690900681,0.345056229,0.43513673900000005,0.5389600400000001,0.6326516800000003,0.72153372,0.80582217,0.88972147,0.9759618800000002,1.07388198,1.16988767,1.2690979599999999,1.3714392999999998,1.4363047799999997,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,transportation,6 hydrogen,0.0,0.0,0.0,0.0,0.01092649,0.03593773,0.06848343,0.10828494799999999,0.146002674,0.188721083,0.23459559,0.28402227,0.33808902,0.3958543,0.4566761,0.5200432500000001,0.5888288500000001,0.6549089,0.7208589600000002,0.7861153099999999,0.8424450200000001,EJ, Industry feedstocks (liquids only) scenario,region,input,1990,2005,2010,2015,2020,2025,2030,2035,2040,2045,2050,2055,2060,2065,2070,2075,2080,2085,2090,2095,2100,Units, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,All input,0.015989,0.0179424,0.0258461,0.0562923,0.0914848,0.137726,0.198315,0.276542,0.374257,0.503063,0.666295,0.877117,1.13663,1.45004,1.8039,2.19053,2.5864,2.9857,3.36901,3.72807,4.09476,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,All input,0.131474,0.186893,0.183878,0.237519,0.266006,0.304591,0.336819,0.369832,0.400516,0.43417,0.468217,0.51078,0.554808,0.601135,0.643014,0.681228,0.712336,0.738905,0.760454,0.774277,0.787695,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,All input,0.00748629,0.00995037,0.0115693,0.0245274,0.0441339,0.0676192,0.0951471,0.127903,0.168539,0.224057,0.29821,0.397504,0.522334,0.678535,0.863774,1.0752,1.30534,1.5514,1.80382,2.05365,2.29948,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,All input,0.0331267,0.0210763,0.0180579,0.050648,0.097597,0.166908,0.261491,0.38624,0.543445,0.751784,1.02121,1.3744,1.81718,2.36309,2.9989,3.71337,4.47592,5.27365,6.07769,6.86342,7.64467,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,All input,0.0679806,0.127506,0.131524,0.165685,0.186618,0.209026,0.23136,0.254082,0.279588,0.305251,0.334011,0.362709,0.395039,0.429092,0.467061,0.506088,0.547209,0.589217,0.630481,0.666289,0.705982,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,All input,0.160073,0.189458,0.191007,0.214244,0.243479,0.274314,0.30487,0.336352,0.367671,0.399348,0.430001,0.46054,0.489707,0.517178,0.542333,0.565045,0.585881,0.60563,0.624582,0.643892,0.66084,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,All input,0.360624,0.50232,0.644979,0.734979,0.864706,0.993096,1.12073,1.241,1.37037,1.50025,1.64252,1.77828,1.93036,2.08801,2.26484,2.4471,2.63573,2.82179,2.99908,3.15354,3.32433,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,All input,0.473604,0.844149,0.808359,0.836122,0.871645,0.906214,0.93063,0.95235,0.965021,0.978289,0.987996,1.00053,1.01173,1.02522,1.03828,1.05409,1.07203,1.09309,1.11377,1.13259,1.15063,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,All input,0.0161748,0.0225847,0.0198291,0.0191522,0.0214836,0.0241566,0.0267787,0.029523,0.033091,0.0369137,0.0413613,0.0458328,0.0507992,0.0557518,0.0609079,0.0657841,0.0703141,0.0741597,0.0773779,0.0791636,0.0813345,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,All input,0.215914,0.0594412,0.0590225,0.0958989,0.13417,0.17965,0.228092,0.2797,0.337344,0.398266,0.462841,0.527189,0.592863,0.659579,0.729355,0.799346,0.871663,0.947415,1.029,1.11801,1.20279,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,All input,0.744726,2.14564,3.76751,4.7029,5.66029,6.6087,7.50896,8.36642,9.17956,9.95661,10.6843,11.3941,12.0755,12.7676,13.4558,14.1835,14.9194,15.6541,16.2741,16.6235,17.039,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,All input,0.013144,0.0675202,0.0442042,0.0676921,0.0846075,0.101364,0.122352,0.145636,0.174216,0.205682,0.24364,0.283546,0.331339,0.384446,0.446636,0.512528,0.582243,0.651767,0.718076,0.778466,0.843481,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,All input,0.359158,0.431686,0.394353,0.437224,0.482366,0.522398,0.557839,0.588147,0.624556,0.657162,0.693347,0.717707,0.743434,0.762124,0.785499,0.803647,0.823047,0.842824,0.872335,0.914982,0.943467,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,All input,2.99867,3.5997,3.41843,3.50032,3.58178,3.67634,3.73209,3.7783,3.79512,3.81674,3.82592,3.85614,3.87901,3.90196,3.91571,3.93164,3.95274,3.98719,4.0391,4.11728,4.13481,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,All input,0.581101,0.153835,0.104817,0.118511,0.130483,0.143354,0.156164,0.170006,0.186553,0.204268,0.223947,0.243891,0.26474,0.284906,0.305229,0.324316,0.342761,0.36091,0.38043,0.401528,0.419647,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,All input,0.160737,0.191716,0.337948,0.499697,0.560075,0.617313,0.664588,0.706285,0.741553,0.772897,0.799688,0.82357,0.842897,0.858441,0.870962,0.880322,0.888765,0.898202,0.912461,0.934312,0.942836,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,All input,0.101827,0.100394,0.111114,0.113148,0.122747,0.132945,0.142338,0.151569,0.15942,0.167852,0.176215,0.186225,0.195984,0.205809,0.214948,0.224181,0.233479,0.243338,0.253903,0.265751,0.273642,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,All input,0.182426,0.893048,0.883269,1.28011,1.78779,2.40645,3.09511,3.86877,4.69093,5.54743,6.40578,7.23401,7.99623,8.71395,9.39657,9.99919,10.5293,10.9782,11.4316,11.8909,12.2998,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,All input,0.137259,0.192723,0.209844,0.346919,0.4933,0.662933,0.835982,1.00796,1.1764,1.34821,1.51745,1.68554,1.84429,1.99459,2.12909,2.2523,2.35905,2.45423,2.53671,2.60577,2.67468,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,All input,1.41679,1.74619,1.64083,1.65184,1.65834,1.67283,1.68384,1.6912,1.70222,1.7095,1.71613,1.71728,1.71598,1.71161,1.70364,1.69196,1.68062,1.6722,1.66998,1.6787,1.67409,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,All input,0.273178,0.267778,0.226463,0.240313,0.267977,0.310982,0.358955,0.409606,0.469669,0.533856,0.610219,0.688455,0.778547,0.875993,0.987304,1.10333,1.22449,1.34938,1.47337,1.58576,1.70909,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,All input,0.572477,1.21013,1.48394,1.69828,1.85976,2.06111,2.24986,2.4388,2.64042,2.83986,3.03903,3.22779,3.41324,3.58233,3.74452,3.88437,4.01355,4.12573,4.22578,4.3069,4.38999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,All input,0.0084139,0.0250323,0.0132696,0.0266009,0.0358971,0.0511302,0.0714649,0.0985048,0.133858,0.178603,0.231806,0.293192,0.358833,0.426086,0.494759,0.564841,0.630965,0.693373,0.753268,0.808819,0.866822,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,All input,0.798186,0.927618,1.09569,1.15677,1.17491,1.22331,1.26513,1.30913,1.36678,1.4252,1.4888,1.54855,1.61014,1.66328,1.71462,1.75844,1.79734,1.83353,1.87545,1.9232,1.9554,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,All input,0.0581685,0.0752643,0.115617,0.127297,0.146684,0.167978,0.18657,0.205214,0.221033,0.237895,0.253861,0.273874,0.293948,0.31548,0.334693,0.353765,0.370573,0.386674,0.400323,0.410714,0.420953,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,All input,0.0365564,0.0641377,0.0391793,0.061751,0.0856848,0.113985,0.145801,0.180589,0.219676,0.261892,0.309255,0.35914,0.41507,0.475172,0.542516,0.61422,0.692315,0.77448,0.857157,0.934093,1.01652,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,All input,0.0273764,0.0451669,0.0587714,0.0863111,0.112896,0.144291,0.1792,0.216819,0.261597,0.310783,0.367796,0.428117,0.496846,0.571067,0.653986,0.742142,0.836571,0.933957,1.03188,1.12254,1.21981,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,All input,0.0079812,0.0230752,0.0165406,0.0361316,0.0554086,0.0837329,0.119125,0.162241,0.215764,0.281722,0.359221,0.450421,0.548875,0.650355,0.747392,0.840732,0.927499,1.00839,1.08444,1.15123,1.21897,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,All input,0.269028,1.27108,1.58867,1.57551,1.55317,1.53087,1.50099,1.47136,1.43835,1.40657,1.36929,1.34273,1.30971,1.27774,1.23457,1.19272,1.14792,1.10723,1.06788,1.03428,0.995101,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,All input,0.137017,0.889345,1.48275,1.89808,2.34172,2.80365,3.26659,3.70471,4.10663,4.47622,4.81683,5.15181,5.46033,5.74389,5.98223,6.20252,6.39148,6.56262,6.6963,6.78068,6.8697,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,All input,0.154296,0.600272,0.864283,0.828362,0.831501,0.839072,0.839143,0.837613,0.835069,0.830661,0.824318,0.815625,0.805505,0.795076,0.782529,0.766695,0.748442,0.728416,0.707147,0.684536,0.664601,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,All input,4.40191,6.09029,5.24012,5.48539,5.77964,6.11615,6.40419,6.68937,6.97612,7.26867,7.59293,7.87188,8.17843,8.46181,8.78568,9.08617,9.3991,9.70235,10.0362,10.3861,10.7071,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,All input,0.015989,0.0179424,0.0258461,0.0452801,0.081529,0.140141,0.229491,0.357487,0.537215,0.776061,1.08625,1.47199,1.92999,2.45064,3.01294,3.59684,4.16744,4.78374,5.39381,6.01038,6.61888,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,All input,0.131474,0.186893,0.183878,0.197535,0.242898,0.303147,0.366102,0.43076,0.502049,0.575091,0.648332,0.722245,0.795598,0.865263,0.928758,0.977443,0.988934,1.05643,1.08223,1.10823,1.1351,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,All input,0.00748629,0.00995037,0.0115693,0.0284489,0.0544706,0.09323,0.146481,0.216866,0.312715,0.442601,0.613274,0.827888,1.08567,1.38301,1.71101,2.05894,2.41176,2.79646,3.18847,3.59081,3.9918,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,All input,0.0331267,0.0210763,0.0180579,0.0506,0.102502,0.198437,0.34942,0.569505,0.878224,1.29543,1.84296,2.53219,3.35994,4.31532,5.3676,6.48521,7.61821,8.84012,10.0825,11.3572,12.6427,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,All input,0.0679806,0.127506,0.131524,0.148907,0.155662,0.177553,0.198717,0.219681,0.241083,0.261503,0.281577,0.301717,0.321635,0.340931,0.359285,0.374787,0.382701,0.402117,0.413154,0.424215,0.435115,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,All input,0.160073,0.189458,0.191007,0.221659,0.257643,0.29596,0.335527,0.37701,0.422141,0.469821,0.519441,0.571253,0.62582,0.680419,0.734574,0.784793,0.822802,0.875836,0.912864,0.946268,0.975369,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,All input,0.360624,0.50232,0.644979,0.720255,0.809646,0.941928,1.06749,1.18775,1.30692,1.42201,1.53012,1.63184,1.72876,1.81851,1.90062,1.9735,2.02654,2.09648,2.14743,2.19495,2.23688,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,All input,0.473604,0.844149,0.808359,0.859296,0.91557,0.97178,1.0254,1.07707,1.12852,1.17981,1.23099,1.28191,1.33269,1.37983,1.4234,1.46083,1.48658,1.51818,1.53674,1.54761,1.54959,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,All input,0.0161748,0.0225847,0.0198291,0.0211745,0.0236047,0.026466,0.029137,0.0317951,0.0349995,0.0381781,0.0412395,0.0442476,0.0470992,0.0496386,0.0519595,0.0533248,0.0517419,0.0548507,0.0544473,0.0541948,0.054173,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,All input,0.215914,0.0594412,0.0590225,0.0930153,0.13043,0.17477,0.220608,0.268,0.31848,0.369935,0.421008,0.472313,0.524756,0.578422,0.632023,0.680667,0.713386,0.771843,0.812506,0.854478,0.897568,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,All input,0.744726,2.14564,3.76751,4.74211,5.6176,6.51673,7.26224,7.87146,8.40592,8.85028,9.19081,9.43792,9.61953,9.73775,9.80853,9.7947,9.61176,9.63936,9.4971,9.34708,9.16771,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,All input,0.013144,0.0675202,0.0442042,0.0598865,0.0761269,0.0942598,0.115868,0.140478,0.168297,0.19879,0.231599,0.266337,0.302453,0.33946,0.376572,0.412672,0.446083,0.480458,0.511293,0.53994,0.565978,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,All input,0.359158,0.431686,0.394353,0.436724,0.484968,0.52815,0.565708,0.598761,0.630709,0.659893,0.687254,0.713065,0.73785,0.760002,0.778375,0.791185,0.793649,0.810679,0.817968,0.825855,0.833568,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,All input,2.99867,3.5997,3.41843,3.55562,3.71667,3.86825,4.01441,4.16449,4.32465,4.48255,4.6335,4.7838,4.93408,5.07617,5.21002,5.32692,5.39852,5.53691,5.62068,5.69392,5.74837,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,All input,0.581101,0.153835,0.104817,0.115401,0.122303,0.126983,0.137815,0.148264,0.160477,0.17289,0.185572,0.199174,0.214018,0.228855,0.243189,0.254595,0.256858,0.273984,0.280529,0.287393,0.294563,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,All input,0.160737,0.191716,0.337948,0.39801,0.461361,0.533273,0.602775,0.669726,0.735951,0.798917,0.857887,0.913199,0.964076,1.01009,1.05154,1.0873,1.11398,1.14616,1.17056,1.19253,1.21136,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,All input,0.101827,0.100394,0.111114,0.121815,0.13374,0.146456,0.159672,0.173353,0.187692,0.202704,0.218516,0.235364,0.252744,0.270119,0.287339,0.3038,0.317663,0.335443,0.349634,0.362703,0.374141,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,All input,0.182426,0.893048,0.883269,1.29539,1.90706,2.55628,3.25487,3.99864,4.81026,5.64721,6.48669,7.31952,8.12492,8.87506,9.56096,10.1521,10.4952,11.1251,11.4704,11.7767,12.0565,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,All input,0.137259,0.192723,0.209844,0.28636,0.391178,0.527649,0.66906,0.812057,0.959625,1.10211,1.23562,1.36164,1.48167,1.59377,1.69614,1.78302,1.83423,1.92899,1.98371,2.03463,2.08341,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,All input,1.41679,1.74619,1.64083,1.65535,1.66344,1.67159,1.67097,1.66111,1.6467,1.63081,1.61315,1.59599,1.5783,1.55658,1.53129,1.50214,1.46597,1.44002,1.40684,1.37358,1.33959,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,All input,0.273178,0.267778,0.226463,0.267433,0.316222,0.368401,0.422893,0.479437,0.539734,0.60166,0.664941,0.728678,0.790812,0.851783,0.911741,0.967213,1.00429,1.07174,1.11678,1.1625,1.20849,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,All input,0.572477,1.21013,1.48394,1.69312,1.88055,2.09012,2.2932,2.49105,2.7027,2.90566,3.09732,3.28442,3.4662,3.63703,3.79375,3.91189,3.92958,4.0959,4.1495,4.2023,4.25199,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,All input,0.0084139,0.0250323,0.0132696,0.0173202,0.0240693,0.033126,0.0451908,0.0610047,0.0823012,0.108722,0.140891,0.179123,0.223362,0.272441,0.32511,0.375368,0.406825,0.470438,0.508774,0.548691,0.591057,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,All input,0.798186,0.927618,1.09569,1.14727,1.15829,1.19484,1.22334,1.25188,1.29456,1.33759,1.38151,1.42908,1.48243,1.53346,1.58179,1.61406,1.59553,1.65921,1.66455,1.67242,1.68213,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,All input,0.0581685,0.0752643,0.115617,0.147206,0.171638,0.203779,0.236351,0.269347,0.303787,0.338535,0.37347,0.408783,0.444501,0.479654,0.513562,0.54336,0.561007,0.596741,0.619574,0.640398,0.658467,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,All input,0.0365564,0.0641377,0.0391793,0.0565457,0.0696328,0.0937926,0.120731,0.150075,0.181657,0.215352,0.250715,0.287542,0.325123,0.362717,0.399694,0.435015,0.467095,0.5033,0.535639,0.56653,0.595345,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,All input,0.0273764,0.0451669,0.0587714,0.079191,0.101348,0.132044,0.165262,0.201142,0.241369,0.284369,0.329251,0.375879,0.423213,0.470722,0.517668,0.561012,0.593373,0.643972,0.680997,0.718147,0.754875,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,All input,0.0079812,0.0230752,0.0165406,0.0244441,0.036929,0.0541269,0.0749518,0.0995838,0.13115,0.168615,0.211916,0.262999,0.321894,0.386897,0.456186,0.523133,0.566066,0.650566,0.701865,0.751885,0.800959,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,All input,0.269028,1.27108,1.58867,1.61626,1.63711,1.64928,1.64423,1.62292,1.58619,1.53603,1.475,1.4092,1.33946,1.26819,1.19811,1.12808,1.05641,0.997307,0.936738,0.880098,0.825256,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,All input,0.137017,0.889345,1.48275,1.79873,2.17994,2.57373,2.94886,3.29327,3.61835,3.91156,4.16674,4.38791,4.58023,4.74849,4.8906,4.99831,5.05057,5.13897,5.17375,5.19507,5.20586,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,All input,0.154296,0.600272,0.864283,0.851986,0.847124,0.840412,0.82949,0.817412,0.805382,0.791982,0.777299,0.761812,0.746275,0.733191,0.719822,0.704545,0.684937,0.673013,0.656044,0.639078,0.621978,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,All input,4.40191,6.09029,5.24012,5.50464,5.82021,6.13103,6.41038,6.6626,6.896,7.10778,7.3016,7.49551,7.6941,7.88735,8.06287,8.20669,8.29553,8.43224,8.51261,8.57723,8.61966,EJ, Refined liquid fuel production by technology scenario,region,sector,subsector,technology,1990,2005,2010,2015,2020,2025,2030,2035,2040,2045,2050,2055,2060,2065,2070,2075,2080,2085,2090,2095,2100,Units, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.0111459,0.0258553,0.0461898,0.07636599999999999,0.11600069999999998,0.16721024,0.22198818,0.2815162,0.342723576,0.414550728,0.49699129999999997,0.58849924,0.68379382,0.78113075,0.88009901,0.9853638899999999,1.1025524400000002,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.0134801,0.0314857,0.0566449,0.0941379,0.1431854,0.2065424,0.2744995,0.34852236000000003,0.424846856,0.5149123,0.6190360699999999,0.7356649400000002,0.85834977,0.9850793,1.11556138,1.25620551,1.41441094,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,0.018325,0.0623286,0.11847549999999998,0.2012632,0.3212228,0.4858422,0.66991952,0.87665686,1.092240601,1.34165889,1.62070794,1.92011216,2.2216990500000002,2.52212204,2.82099564,3.1382367999999996,3.5164742,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,refining,gas to liquids,gas to liquids,0.0,0.00960074,0.0111242,0.0109241,0.0310972,0.07478138000000001,0.12856635,0.20327561,0.30277796,0.42714774,0.549554876,0.6643906300000001,0.762215779,0.85695546,0.94676573,1.0304555199999998,1.11077386,1.1988300499999998,1.29572252,1.40687117,1.5368655900000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,refining,oil refining,oil refining,0.327822,0.512014,0.698933,1.116892,1.2622900000000001,1.404652,1.5343559999999998,1.655739,1.7665389999999999,1.906504,2.131603,2.5419601,3.05305449,3.74323244,4.5533212,5.4545167999999995,6.3869431,7.3399854,8.2613828,9.0380425,9.6965637,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.0145242,0.037931099999999995,0.0652026,0.11027630000000001,0.170779,0.2401498,0.29328983,0.33232981999999994,0.361452097,0.37911306999999994,0.39613553,0.41346371000000004,0.42837346,0.44146083,0.45483946999999997,0.46930907,0.48747737,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.017566,0.0462179,0.0799601,0.13596229999999998,0.2108313,0.2966567,0.36263152,0.41132028,0.44782907299999997,0.47035330000000003,0.49260686,0.51597036,0.5368710699999999,0.55584947,0.5755546500000001,0.59712018,0.62402055,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,0.0238794,0.0938992,0.1691991,0.29283760000000003,0.4758314,0.69874,0.8797092000000001,1.02217611,1.1350475,1.21103718,1.28183207,1.3456098399999998,1.39298422,1.4287474,1.46186828,1.4982939,1.5557584100000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,refining,gas to liquids,gas to liquids,0.0,5.66972E-5,6.83961E-5,6.71659E-5,0.0245377523,0.095316443,0.1696767015,0.285097498,0.4409100945,0.6118134530099999,0.7314080437399999,0.80204282,0.83355923,0.8268042099999999,0.80069777,0.76238353,0.72245984,0.6938898299999999,0.67901442,0.67563437,0.6832426400000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,refining,oil refining,oil refining,2.01049,2.83366,3.33534,4.052374,4.219203,4.385834,4.3911679999999995,4.232507,3.874813,3.4702140000000004,3.184642,3.1707007,3.24202948,3.4325888000000004,3.6416692999999998,3.8571618,4.0390197,4.193376199999999,4.3221625,4.3798481,4.3878342,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.00699263,0.014254329999999999,0.023298489999999998,0.03665479,0.054986110000000005,0.07829715000000001,0.10308758000000001,0.13035226,0.158178664,0.18984884600000002,0.227161724,0.269447407,0.31308723400000005,0.35666569000000004,0.40002382000000003,0.44350895,0.4941549899999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.00845706,0.01734599,0.028536109999999996,0.04513154,0.06781816,0.09666606999999999,0.12743986,0.16136431,0.196075251,0.23579608500000002,0.282926009,0.336818952,0.39300987,0.44978554,0.50702245,0.5653047499999999,0.63379289,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,0.0114967,0.0332214,0.058198,0.0948596,0.1504332,0.22576647,0.31007662999999996,0.40578878,0.504246049,0.61448511,0.74077514,0.87908888,1.01717791,1.1515686299999999,1.2822407299999998,1.4127127800000001,1.5761402199999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,refining,gas to liquids,gas to liquids,0.0,0.00205735,0.00235503,0.00231267,0.01437224,0.0361647,0.06047947,0.09415831999999999,0.140897365,0.198163186,0.254184729,0.30713621999999996,0.35157258299999994,0.3930213,0.43351412,0.47227490000000005,0.50883212,0.54749277,0.58896832,0.63342184,0.68902429,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,refining,oil refining,oil refining,0.239498,0.340846,0.513987,0.645997,0.7380301,0.8047019999999999,0.8494257000000001,0.8758002999999999,0.8928187,0.9306319000000001,1.0200745,1.2017112600000002,1.42903073,1.73663957,2.10775026,2.52901639,2.961107,3.3932568,3.8017848,4.1222593,4.4048104,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.0153999,0.0398971,0.07403699999999999,0.12323109999999998,0.1840853,0.2579919,0.33811997,0.43094757,0.537204316,0.65879205,0.79996413,0.9585737400000001,1.1249869399999999,1.29365739,1.46547795,1.6452018400000001,1.84690416,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.018625,0.0486117,0.09085170000000001,0.1519731,0.2272779,0.3187146,0.41811784,0.5335383699999999,0.666007959,0.8184378499999999,0.99663899,1.19852792,1.4123402,1.6314842,1.85762482,2.09754238,2.3695372999999997,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,0.0253192,0.0986008,0.19285960000000002,0.3277963,0.5118976,0.7493803,1.0183848,1.34010226,1.7127338799999998,2.13393911,2.61056774,3.12864545,3.65557104,4.177185400000001,4.6972722,5.239483099999999,5.8905886999999995,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,refining,gas to liquids,gas to liquids,0.0,0.0101239,0.0117228,0.011512,0.0386284,0.11186689999999999,0.20320509,0.32646982,0.48045966000000007,0.6605795999999999,0.839716666,1.0184656799999998,1.18972978,1.35212003,1.51148847,1.66714644,1.8204481899999998,1.9828654300000002,2.1570007700000002,2.3487941,2.5740507,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,refining,oil refining,oil refining,0.685554,1.15211,1.2014,1.517599,1.7179339999999999,1.95733,2.17954,2.38567,2.5754710000000003,2.829985,3.2325232,3.9180776999999996,4.8337077,6.007140199999999,7.3953507,8.9547182,10.579123599999999,12.228343899999999,13.8299768,15.161973799999998,16.3067893,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.00564901,0.01224766,0.0214299,0.03536145,0.05530312999999999,0.07686280000000001,0.09449480000000002,0.10493585000000001,0.113141014,0.117446575,0.122764271,0.12819898100000002,0.13381942500000002,0.1390857,0.144242332,0.14832721199999999,0.15499785700000002,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,refining,biomass liquids,biodiesel,0.0,6.69766E-4,0.0195058,0.013438000239429,0.00661329,0.006515143,0.006136783,0.0054705368,0.005693343777,0.0055789489801,0.00513905120412,0.00415190643007,0.00409756569154,0.0040464363066,0.0048161272227589995,0.005169033701081,0.0051657344984049995,0.004816543404426,0.004511735225905001,0.0042637775677370005,0.004775935523954,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.00683205,0.01490935,0.02627032,0.04357994,0.06825741,0.09493484,0.11683081,0.12987158,0.14016879399999999,0.145694906,0.152653661,0.159991528,0.16775346,0.17518259,0.18256717,0.18871016499999999,0.198395206,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,refining,biomass liquids,corn ethanol,0.0,0.0,0.00263706,0.01570093,0.01870417,0.02297282,0.029297709999999998,0.03842381,0.050223655,0.061055495,0.070290605,0.07752890900000001,0.08463678300000001,0.090077497,0.09722433100000001,0.105250043,0.113827903,0.12213721999999999,0.130132143,0.137046978,0.146213652,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,0.0129393,0.040686,0.07677239999999999,0.131887,0.2193256,0.3217769,0.41352927,0.47603557,0.53063346,0.5682143599999999,0.61231803,0.6555925499999999,0.69655026,0.7325464,0.76564548,0.79287469,0.8401380799999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,0.0132595,0.041308700000000004,0.0769498,0.1284069,0.20286320000000002,0.2813879,0.34230633,0.37317216000000003,0.389527181,0.38784962,0.38105464,0.36898682999999993,0.35817788,0.35306424000000003,0.3539362999999999,0.35674846,0.36846671,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,refining,oil refining,oil refining,0.766759,1.0842,1.2999,1.655329,1.749689,1.8149670000000002,1.8382020000000001,1.794395,1.6910439999999998,1.5525075,1.4724692,1.471904,1.5245964900000002,1.6215061299999998,1.75289042,1.89404296,2.0355030000000003,2.1659004,2.2781583000000003,2.33177,2.380046,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,7.45948E-4,0.001660869,0.0036283220000000002,0.007938762,0.015288565,0.022923372,0.028543652,0.032047771,0.0352029335,0.0373591219,0.040774959699999995,0.045463340000000005,0.050902932,0.056379001,0.062707778,0.072182686,0.08697005000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,refining,biomass liquids,biodiesel,0.0,0.0,0.00234401,0.011631299999999999,0.013799019999999999,0.014705469,0.016118934,0.018740336479,0.021854171518930002,0.02237420674559,0.0211601698711,0.01978076218,0.02026470358,0.02067956595,0.022405103032,0.023173241384999998,0.02277481315,0.0218468567,0.021606998500000002,0.0219236482,0.0218890811,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,refining,biomass liquids,cellulosic ethanol,0.0,4.60463E-4,0.00945963,0.009745539999999999,0.010371990999999999,0.010812356,0.011826350999999999,0.014979214000000001,0.02182515,0.029704611,0.0358470656,0.039694622400000004,0.0436118908,0.0463439855,0.050724002000000004,0.056802464000000004,0.06390881300000001,0.071116458,0.07948271400000001,0.09203632699999999,0.111685966,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,0.0107755,0.033421,0.0748941,0.1537163,0.2811154,0.41225029999999996,0.51000047,0.5686299300000001,0.6125407290000001,0.6297243699999999,0.6435820699999999,0.65041661,0.6518766500000001,0.6483148599999999,0.64410796,0.64572917,0.6525786499999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,refining,gas to liquids,gas to liquids,0.0268719,0.0,0.0,0.0,0.0110421,0.0339345,0.0748962,0.1484965,0.2570577,0.35787995,0.42330266,0.45205886,0.460929262,0.44314511,0.41235904,0.37412486,0.33998428,0.31529445,0.29953451,0.29158888,0.28710984,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,refining,oil refining,oil refining,1.52597,2.07254,2.16231,2.2107803,2.2798880999999995,2.303065,2.2867676,2.1969259,2.0490855,1.8876365,1.7928229999999998,1.7623074,1.75736276,1.79354631,1.8365345899999999,1.8727917000000003,1.8995543000000001,1.9121118,1.9138578,1.9006908000000002,1.8587348000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.0118652,0.024065,0.0409694,0.0663183,0.1045039,0.14651009999999998,0.18371469,0.20880913999999998,0.231915962,0.249265892,0.272766294,0.3011513,0.33283653999999996,0.36353541,0.39301705,0.42012799999999995,0.45948696000000006,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,refining,biomass liquids,biodiesel,0.0,0.0,0.0850955,0.09038826999999999,0.0960695,0.10352470000000001,0.1120959,0.11906696,0.12700872000000002,0.13499621,0.143590466,0.14783239,0.152376729,0.157073227,0.16138304,0.16542153199999998,0.16959232000000002,0.17293216,0.17645379,0.18022143300000001,0.18328167,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.01435,0.0292837,0.0501991,0.081695,0.1289501,0.18093019999999999,0.22712833999999998,0.25843487000000004,0.28735072899999997,0.309305396,0.339347889,0.37611006,0.41759825,0.45829978,0.49789931,0.53503353,0.58880597,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,refining,biomass liquids,sugar cane ethanol,0.245075,0.291452,0.503624,0.0166976012199,0.0075846343719300005,0.007842769463463,0.010900331129406,0.01642734310495,0.028206848238190002,0.03685258438879,0.042120164357230004,0.03477663579721,0.037215843962454004,0.038251706322083995,0.051738648871802004,0.06301331886693,0.07029909460845,0.07086765276925999,0.07145762714987,0.073795117996,0.0934688534097,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,0.0668817,0.1879977,0.3368303,0.5506559,0.8974398,1.2921078,1.6472118,1.8884455999999998,2.09893232,2.2418993,2.40774538,2.5747826,2.7337982,2.8660147,2.975593,3.0566263,3.2138733000000004,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,0.0685363,0.19097340000000002,0.3379678,0.5375893,0.8327719,1.1345485,1.3678851,1.4825554,1.54092289,1.5298683899999999,1.4989678899999999,1.4501530500000002,1.4069682000000001,1.3824758000000001,1.3764344,1.37590282,1.41020357,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,refining,oil refining,oil refining,2.37788,3.67436,4.48847,5.62481,6.135019,6.453016000000001,6.611053,6.527673,6.298514,5.9376679999999995,5.747017,5.775483100000001,5.9926888,6.3515087999999995,6.843543199999999,7.3884486,7.9387218,8.424404599999999,8.8062566,8.9499928,9.0770931,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.00188475,0.00409729,0.008476049999999999,0.019205319999999998,0.03732467,0.05598833,0.068255982,0.07528900499999999,0.0807461137,0.08291827000000002,0.086509808,0.09192127699999998,0.09810983,0.104412539,0.111349617,0.120424078,0.133212891,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,refining,biomass liquids,biodiesel,0.0,0.0,0.00728313,0.016427729999999998,0.0166731,0.016339760000000002,0.016989405,0.020929720643999998,0.02360555938014,0.021674225038247,0.016744147359107998,0.013241301656970001,0.01339619825772,0.013993075603200001,0.0178871505544,0.019528971428600002,0.0182253656748,0.015434821251000002,0.012975133064,0.011315096334,0.00943011022,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.00227947,0.0049878100000000005,0.01040545,0.02373563,0.04615438,0.06923606,0.08444655000000001,0.09319917600000001,0.10002216,0.102828337,0.10756136,0.11478042200000001,0.12310795999999999,0.13163119,0.141026442,0.153330204,0.170707292,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,refining,biomass liquids,corn ethanol,0.0,0.0071158,0.037839,0.04669953,0.054865529999999996,0.061068,0.06910239,0.08315318999999999,0.10385196999999999,0.12236642,0.13208453,0.134917576,0.136542172,0.13349254400000002,0.132238215,0.13404381999999998,0.13859193,0.14498934,0.152938457,0.16348998499999998,0.177710159,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,0.0142582,0.0441416,0.0955931,0.2063118,0.3914438,0.5838224,0.71422152,0.79008597,0.8448397289999999,0.8617274899999999,0.87941931,0.89665574,0.9095204800000001,0.91928656,0.92960391,0.9463246200000001,0.97613509,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,refining,gas to liquids,gas to liquids,0.0142735,0.0237333,0.033444,0.0328424,0.047054,0.0748624,0.12067040000000001,0.21632240000000003,0.36634716,0.50926872,0.59400623,0.62929218,0.639036905,0.61121514,0.56667125,0.51522626,0.47166439000000004,0.44427618999999996,0.43032838,0.42630856,0.4288185,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,refining,oil refining,oil refining,3.12207,4.12866,3.9566,4.0160814,4.0842347,4.0742943,3.9556652999999997,3.6897166999999995,3.294219599999999,2.8944009,2.6220947999999997,2.5120387500000003,2.45630912,2.49499818,2.5523853499999998,2.6210332000000003,2.6813569,2.7333676,2.7752405,2.7934903999999996,2.7866637999999995,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.00685294,0.01507723,0.027963830000000002,0.04726639,0.07337149999999999,0.0989755,0.11996045,0.13529129,0.148306319,0.1585967,0.171054083,0.18583341200000003,0.20236909,0.21852535,0.23399687000000002,0.24759804,0.26556586000000004,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,refining,biomass liquids,biodiesel,0.0,0.0,0.0,0.00197309,0.002875918,0.0034456269999999997,0.003983426,0.004494384,0.0051246249,0.0056670401,0.0061813775,0.00658766674,0.007147870497,0.007808961481,0.008864923869,0.0098883978553,0.0107226176352,0.0113232949098,0.0119205900266,0.012478900248,0.0138153206905,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.00828812,0.01835532,0.0342994,0.05828223,0.09058637,0.12226861,0.14833017,0.16745687999999997,0.183761797,0.19681332099999999,0.212821288,0.23207741999999998,0.25384588999999996,0.27539000999999996,0.29633345,0.31522445,0.34019146999999994,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,refining,biomass liquids,sugar cane ethanol,0.0580575,0.0297611,0.0097529,0.00486106,0.00438064,0.005286640306228999,0.008306451915236,0.01249570457776,0.019251810507494,0.022469736061597998,0.024151259931380002,0.021844166555908998,0.023224269135318002,0.025418007299821,0.03209673444523,0.037314577719940005,0.04036128720666,0.04066604241593,0.041494887109380006,0.0428594871414,0.0514093930138,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,0.0171267,0.0552222,0.11111460000000001,0.1954088,0.32394520000000004,0.461385,0.58453433,0.68483274,0.777331877,0.85785526,0.9495389000000001,1.04856038,1.15077445,1.2468195899999999,1.33646972,1.4160381700000002,1.5298387999999998,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,0.0175504,0.0560615,0.1112644,0.1899673,0.29943410000000004,0.40475910000000004,0.48640888000000004,0.5373898300000001,0.568189211,0.57799568,0.58064945,0.58011839,0.58467322,0.59714131,0.6161125700000001,0.63631442,0.6701404999999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,refining,oil refining,oil refining,1.17853,1.75,1.89676,1.9395950000000002,2.0609595,2.1463848999999997,2.1925613999999998,2.1537596,2.0643409000000004,1.9744202000000002,1.9766934999999999,2.06539619,2.19956871,2.41316828,2.68270533,2.9928743,3.3241595000000004,3.645145,3.9322902,4.1123008,4.270991,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.0128271,0.0309247,0.053152899999999996,0.0838472,0.1248615,0.16986990000000002,0.2091998,0.23726484000000003,0.260254946,0.27734712100000003,0.29554361,0.31419735,0.33335481999999994,0.35323108000000003,0.3749509,0.40175557000000006,0.43111704999999995,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.0155135,0.0376664,0.0651687,0.1033059,0.1540622,0.20976,0.25860961,0.29364267,0.322467396,0.34416242,0.36761967,0.39218828999999994,0.41789432,0.4449380799999999,0.47475617999999997,0.51167232,0.5524808600000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,0.0210892,0.0752282,0.1366049,0.2208261,0.3450267,0.4903871000000001,0.6254265,0.72938941,0.81840182,0.8878209399999999,0.9578098899999999,1.02328972,1.08397308,1.14253103,1.2039779,1.2812172800000001,1.3753616800000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,0.0216109,0.0763404,0.1369596,0.21558880000000002,0.32131,0.4324816,0.5212718000000001,0.5717359900000001,0.59728724,0.5995231599999999,0.5911794200000001,0.5746016500000001,0.55877254,0.55247075,0.55762735,0.5764628900000001,0.60270503,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,refining,oil refining,oil refining,2.55016,1.09805,1.38878,1.7954890000000001,1.9607139999999998,2.124806,2.2258769999999997,2.252323,2.2210460000000003,2.15363,2.14031,2.2121698,2.33236229,2.5082457799999998,2.7123249100000004,2.923271,3.1321877,3.3422268999999996,3.5466546,3.7203516,3.8389311999999998,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.0673503,0.1475387,0.25795999999999997,0.42177659999999995,0.6265661,0.8465072,1.0362786,1.1907949999999998,1.32909114,1.4424106,1.56795813,1.7158482599999998,1.8802619900000002,2.0504207,2.2097027000000002,2.3376113,2.5238717,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,refining,biomass liquids,biodiesel,0.0,0.0,0.007367,0.181490162713,0.1480669367273,0.12892858926439998,0.12452115324732001,0.130341016517904,0.13813600297796602,0.14271700198325402,0.141887004698871,0.133942006028383,0.13209900598418,0.129355008374408,0.134748006407169,0.135655005226046,0.127578005367141,0.112423005936011,0.092383707543307,0.06958911348798501,0.057969410173126,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.0814551,0.1796122,0.31623330000000005,0.5197723000000001,0.7732068000000001,1.0453937,1.2811319,1.4738689000000003,1.64697213,1.79024407,1.9509363199999998,2.14269485,2.3582828,2.5840316999999997,2.7988822,2.9766848999999995,3.2338582000000002,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,refining,biomass liquids,corn ethanol,0.0,0.0,0.0433228,0.30160560000000003,0.5014891,0.6815646,0.8674485000000001,1.0690884,1.2616813,1.3865781099999999,1.43676514,1.4593634000000002,1.48043441,1.49616889,1.53097087,1.5909292999999998,1.6741773000000002,1.7749708000000002,1.8785497000000002,1.9675633999999997,2.1080623000000003,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,0.396903,1.218038,2.1880290000000002,3.504347,5.225685,7.127396,8.818617,10.1752562,11.3107835,12.1570535,12.942219399999997,13.686432199999999,14.3500828,14.9050895,15.2778858,15.388537,15.809643099999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,0.406722,1.2368130000000002,2.194829,3.423701,4.88814,6.337108000000001,7.4264980000000005,8.043847399999999,8.3026581,8.2298714,7.9996225,7.698304200000001,7.419365399999999,7.234263100000001,7.1007144,6.9461079,6.9491062,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,refining,oil refining,oil refining,4.92161,13.6324,18.1086,20.956970000000002,24.15205,26.72243,28.61116,29.66992,29.827260000000003,29.611549999999998,29.744837999999998,30.707556000000004,32.126188,34.14532,36.399536,38.819442,41.176601,43.324793,44.778972,44.716452,44.4671,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.00315168,0.00613758,0.01113394,0.018549410000000002,0.02888189,0.040240410000000004,0.05068465,0.058386541,0.06600721100000001,0.07257508700000001,0.080505244,0.08903862100000001,0.09797776300000001,0.106457101,0.114333213,0.12133771099999999,0.130122804,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,refining,biomass liquids,biodiesel,0.0,0.0,5.85954E-4,0.0090107459388,0.008233348000000001,0.009155555000000001,0.010283905000000001,0.011257879,0.012326033399999999,0.013406296,0.014624614250000001,0.015456277000000001,0.0163790877,0.0173643404,0.0183585073,0.019345069700000002,0.020382092499999997,0.0213154037,0.0222731909,0.023266495800000002,0.024176808499999997,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.00381172,0.00746671,0.013648549999999999,0.02286216,0.03564865,0.04970371,0.06267033,0.072269899,0.081794641,0.090077505,0.100182602,0.11120998800000001,0.12290904899999999,0.134165497,0.144797119,0.154489928,0.16669501099999998,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,refining,biomass liquids,sugar cane ethanol,0.0,4.18968E-5,3.34874E-4,0.00100347,2.64024E-4,3.55816E-4,7.72E-4,0.0014120202631639999,0.002657320778052,0.0040070636644279995,0.005355919315835,0.005235634199794,0.006482188171384,0.007674599945426,0.010590551606665999,0.013132769992243,0.015406709387188,0.016755868950017,0.018196700584480002,0.02011875816234,0.02508550019938,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,0.00804964,0.022082690000000002,0.04387623,0.07632739999999999,0.12730658,0.18834968,0.24918311999999998,0.29860233,0.349984071,0.397063163,0.45266602999999994,0.51075327,0.56940155,0.62405994,0.6742310799999999,0.7196203,0.7819950199999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,0.00824878,0.02243492,0.043959479999999995,0.07425715,0.11766677,0.16446339000000001,0.20512669,0.23130544,0.251816156,0.263494746,0.27337427000000003,0.28038357,0.28804353,0.29820319,0.31048052000000004,0.32317778,0.34242144,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,refining,oil refining,oil refining,0.397834,0.505195,0.534127,0.723264,0.7851739,0.8206747999999999,0.8516994999999999,0.8600065000000001,0.8549838000000001,0.8381371999999999,0.853268,0.90907451,1.00807183,1.1375940800000002,1.30210288,1.48222872,1.66964541,1.84949933,2.00849861,2.1133446399999998,2.20593242,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.00803057,0.01551603,0.028597980000000002,0.05058483,0.08507511000000001,0.11777193,0.14148345,0.15289543,0.160449837,0.15967104399999998,0.159561778,0.15853572999999999,0.15773538,0.15694821,0.15866234,0.16390386899999998,0.168626247,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,refining,biomass liquids,biodiesel,0.0,0.00138131,0.0461682,0.0388289,0.03860843,0.03814247,0.03716262,0.03398628,0.028257844000000004,0.022526228000000002,0.018483934,0.0141379238,0.01149647065,0.01002563686,0.011014264970000002,0.011110608143999999,0.010369251231,0.008927249189,0.008337581882000001,0.008662459114,0.008353106439,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.00971238,0.0188752,0.03506116,0.062378869999999996,0.10505811000000001,0.1455133,0.17496045000000002,0.18923367,0.198750735,0.19799484400000003,0.19830458800000003,0.19775209,0.19764534,0.19757517,0.20070233999999998,0.20848243,0.21577598999999997,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,refining,biomass liquids,corn ethanol,0.0,0.00184168,0.0259932,0.0374713,0.04172923,0.04547386,0.05219359,0.06461475,0.08906992,0.11306112,0.13227479,0.14372701799999998,0.15422273400000003,0.157766328,0.16228485,0.165680608,0.16911074,0.17229582999999998,0.17772733999999998,0.18685441,0.195066309,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,refining,coal to liquids,coal to liquids,0.00422773,0.0144827,0.0207611,0.0203876,0.0389121,0.0692402,0.11836759999999999,0.2029479,0.35607871,0.51665858,0.6460690309999999,0.7207841300000001,0.781366604,0.80242883,0.82969872,0.8484552,0.86129229,0.86779813,0.8837879099999999,0.9187572199999999,0.95691259,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,refining,gas to liquids,gas to liquids,0.0,0.00138131,0.00339045,0.00332947,0.02228345,0.05420560000000001,0.10529062,0.18796172,0.321732632,0.446929751,0.533991015,0.57035971,0.5842217749999999,0.5626303100000001,0.530046,0.48703606999999993,0.44829646,0.4209948,0.4098149099999999,0.41377008,0.42009574000000005,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,refining,oil refining,oil refining,3.22469,2.78458,2.81513,2.99922,3.1262559999999997,3.163813,3.1337709999999994,2.969796,2.7338059999999995,2.458739,2.2967151,2.2295612,2.22285679,2.26529209,2.34798787,2.4238017000000003,2.4911126,2.5414594000000004,2.6078365000000003,2.6785016,2.6919967000000002,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.0131129,0.0362505,0.0928533,0.2314839,0.4560622,0.6754182,0.8106621,0.87444357,0.9091443880000001,0.89271239,0.86996494,0.8438357299999999,0.8184152,0.7960293,0.78179201,0.7775182699999998,0.7701218200000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,refining,biomass liquids,biodiesel,0.0,0.0563401,0.372027,0.0941681,0.09359547,0.09122642,0.08425486000000001,0.066857349,0.059242230756000006,0.0445399113384,0.02806856873593,0.0180035994479,0.017409009080765002,0.018024979347024,0.026112079064977,0.02954825022128,0.02701335900371,0.02166650182135,0.01859955842741,0.01927461834688,0.02050818459974,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.0158591,0.044181399999999996,0.11421300000000001,0.2864447,0.5643032,0.8355501,1.0031693899999998,1.0825280800000001,1.12607002,1.10665919,1.08084096,1.0524898900000002,1.0256029,1.0020506999999998,0.98834223,0.98765904,0.9838205800000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,refining,biomass liquids,corn ethanol,2.51186E-4,0.070446,0.114563,0.1323966,0.13652784,0.14443179,0.17011346,0.24651207,0.36465843,0.47509218,0.54514488,0.578952761,0.6002440849999999,0.5914887959999999,0.5879186700000001,0.59402907,0.6069194099999999,0.6205341799999999,0.63647784,0.65985213,0.68200664,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,refining,coal to liquids,coal to liquids,1.67391E-4,0.0,0.0,0.0,0.0302032,0.12837289999999998,0.3535456,0.9098149,1.8922575,2.9093001000000003,3.5753033,3.9286960300000002,4.1710891100000005,4.19799418,4.225548300000001,4.2296096,4.2022372,4.1521255,4.117623,4.1290307,4.148258800000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,0.0309504,0.130191,0.3525886,0.8720525,1.7096866,2.4942955,2.9474517,3.12986694,3.1753089500000002,3.01342928,2.7568943999999997,2.4525023,2.1888978,2.0100732999999997,1.9077752,1.8616590999999998,1.8254026999999997,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,refining,oil refining,oil refining,22.912,25.917,23.1086,23.329246,23.327113999999998,23.018481,22.105917,20.286591,17.665406,15.010376,13.204797,12.3712885,11.839042500000001,11.8532775,11.9596804,12.090745199999999,12.167193999999999,12.169872999999999,12.157456199999999,12.087626,11.774988500000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.00230063,0.00520214,0.00997062,0.01822061,0.03022831,0.04267039,0.05246189,0.05890920300000001,0.063807908,0.066301136,0.06842029999999999,0.070116172,0.071672859,0.073301821,0.075294568,0.07827041900000001,0.081374585,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,refining,biomass liquids,biodiesel,0.0,0.0,0.00142311,0.031577600000000004,0.03452025,0.03541748,0.035058223,0.033477901000000004,0.030732884999999998,0.027834682899999998,0.0258901594,0.023827139,0.0219806471,0.0207409604,0.0192185634,0.017713306999999998,0.0164180107,0.015200442299999999,0.0143125372,0.0138307361,0.012695739000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.00278244,0.00633414,0.012234,0.022484120000000003,0.03734233,0.052733920000000004,0.06488435000000001,0.072919296,0.079054386,0.08224814999999999,0.085071521,0.087487174,0.089817045,0.09228867699999999,0.09526971799999999,0.099594972,0.104179042,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,refining,biomass liquids,corn ethanol,0.0,0.0,0.0,0.00669129,0.00828425,0.01051496,0.014394550000000002,0.0212379,0.0317834,0.042341170000000004,0.051074322000000005,0.05828257199999999,0.06512871419999999,0.070364098,0.07606852900000001,0.081715728,0.087168799,0.092468722,0.097911738,0.104372644,0.11077653700000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,0.00531524,0.0177671,0.03699759,0.07083224,0.12633056,0.1891398,0.24301692,0.283001855,0.31747791999999997,0.341221921,0.364359101,0.38434051999999996,0.40123231000000004,0.41627966000000005,0.43183897,0.45298004999999997,0.47829042,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,0.00544673,0.01803442,0.03702775999999999,0.06861989,0.11590432,0.16417790999999998,0.20036607,0.22136598300000002,0.233159316,0.233235556,0.22740069599999999,0.21714291000000002,0.20725971,0.20142076,0.20012909,0.20396603000000002,0.20981368000000003,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,refining,oil refining,oil refining,3.48201,0.669215,0.865545,0.963452,0.999098,1.0204841,1.0211271,0.9875954,0.9282647999999999,0.8644866,0.8386824,0.85780514,0.89674748,0.95816809,1.02636864,1.09276604,1.1542949999999998,1.2123766,1.26671185,1.3115367199999999,1.33378987,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.0109474,0.0218939,0.0344363,0.052967600000000004,0.07960350000000001,0.11225388,0.13771204999999997,0.15015305,0.156365252,0.155293425,0.15334548099999998,0.15092909599999998,0.14753029,0.14436813999999998,0.14266859999999998,0.14303733,0.142249856,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,refining,biomass liquids,biodiesel,0.0,0.0,5.02271E-4,0.0320735,0.0142222111,0.0130847056,0.0114699757,0.00924913277,0.0086896100692,0.00886124845663,0.007742963044729,0.0057918759696,0.00492869265432,0.00431362444308,0.0051479633138,0.00582595580972,0.00575958423419,0.0051861501893100004,0.00461846468311,0.00443678949554,0.00415170587948,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.0132401,0.0266396,0.0421581,0.0651838,0.09814900000000001,0.138559,0.17020202,0.18579810000000002,0.19367751300000002,0.192551315,0.19050022300000002,0.18813669,0.18473883000000002,0.18168811,0.18046271,0.18188796,0.18186427000000002,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,refining,biomass liquids,corn ethanol,0.0,0.0,1.25593E-4,0.036044334000000004,0.042705886,0.050729472,0.06045754569999999,0.0739802464,0.08952361710000001,0.102019871,0.11028148635000001,0.11645979999999999,0.121083199,0.122177426,0.123653054,0.12602877299999998,0.128362109,0.13070959999999998,0.13355073,0.137622825,0.140134072,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,0.0248892,0.07067380000000001,0.11987119999999998,0.193548,0.31136569999999997,0.4676753,0.602736,0.68264122,0.73341818,0.7490599200000001,0.76136229,0.7698622100000001,0.76903625,0.7643140900000001,0.7629829999999999,0.7711717699999999,0.77675444,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,0.0255049,0.0717888,0.1203785,0.18915890000000002,0.2894257,0.40904039999999997,0.49795490000000003,0.53483405,0.54246143,0.52151839,0.48910722999999995,0.44817724999999997,0.40596915,0.37382103,0.35478158,0.34755117,0.34165196000000003,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,refining,oil refining,oil refining,1.45339,1.73556,1.75716,2.672836,2.868296,2.9904119999999996,3.021491,2.944395,2.742567,2.4581030000000004,2.223322,2.1298639,2.1024763,2.1259443499999997,2.16281732,2.2055108,2.2301498,2.2457396,2.2596100000000003,2.2609323999999997,2.2103533,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.0,0.0,0.00102638,0.007145230000000001,0.01686866,0.02631509,0.032296104,0.035387268,0.037344844,0.03718360899999999,0.0366907432,0.036016535,0.035383763,0.034895162,0.034658559000000005,0.034807605000000005,0.034773164999999995,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,refining,biomass liquids,biodiesel,0.0,2.09288E-4,0.004981,0.00397967,0.00409884,0.00410181,0.00406736,0.0031414215,0.0024693212272,0.001707872938732,0.001016091254334,6.11894592212E-4,5.9664392136E-4,6.78387727193E-4,0.001041820489221,0.00118475010806,0.0010805602735819999,8.60963766276E-4,7.27167405915E-4,7.68103178584E-4,8.38451873377E-4,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.0,0.0,0.00126986,0.00887161,0.020901219999999998,0.03257992,0.03998535,0.04381885,0.046258399,0.046095289000000005,0.045589813199999996,0.044934936999999994,0.04435879,0.043942859,0.043825584,0.044220184999999995,0.04442737099999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,refining,biomass liquids,corn ethanol,0.0,4.18976E-5,2.92982E-4,2.53261E-4,2.55414E-4,2.4624E-4,0.001119407,0.005883301,0.012184427099999999,0.0177425093,0.0213101939,0.023230893000000002,0.024400837,0.024261514,0.024340432200000005,0.02491318,0.025834576,0.026790304,0.027736369,0.028949293999999997,0.030059053999999998,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,0.0,0.0,0.0041055,0.02865893,0.07091285,0.11406589,0.14254609000000001,0.15831225,0.16989035,0.17298054799999998,0.176245697,0.17855087,0.17970982,0.18001843,0.18051335000000002,0.182797188,0.1852952,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,0.0,0.0,0.00405498,0.026985739999999998,0.06302675,0.09640673,0.11615427,0.12531625000000002,0.12934729,0.124471271,0.11488868099999999,0.10301956,0.09296181,0.08665255000000001,0.083371753,0.082314071,0.081486372,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,refining,oil refining,oil refining,0.911975,0.957761,0.96387,0.842775,0.866243,0.876103,0.8626443,0.7915193,0.688242,0.5856952,0.5203466,0.4946516,0.48054452000000003,0.48854891999999994,0.499946751,0.5122518699999999,0.52261268,0.5300263300000001,0.53519659,0.5370797700000001,0.52729451,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.131918,0.298397,0.511109,0.784475,1.1000169999999998,1.430622,1.7294001,1.9861593000000002,2.19117328,2.3530529199999997,2.5062307,2.6514294,2.7832793,2.9011723,3.0296742,3.1826598,3.3593256,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,refining,biomass liquids,cellulosic ethanol,0.0,0.0045625,0.00761808,0.21403233,0.37323351,0.57607889,0.83636524,1.16673703,1.52761578,1.87015005,2.175472452,2.46788532,2.71526926,2.9205487700000003,3.1178707,3.3092009000000004,3.4876417,3.6521835,3.8341143000000004,4.0517723,4.3038439,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,0.216887,0.714919,1.302285,2.052528,3.009754,4.085663,5.13089,6.0901738,6.8905078,7.542544299999999,8.133277099999999,8.6453813,9.061773599999999,9.3963257,9.7388086,10.156767,10.7191165,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,0.222253,0.725717,1.305832,2.006236,2.820553,3.640221,4.317156,4.7798406,5.0038327,5.0419541,4.9769669,4.842976,4.690077200000001,4.5724889,4.532420800000001,4.5821798,4.7033437000000005,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,refining,oil refining,oil refining,2.4402,4.78257,6.16306,7.710769999999999,9.493839999999999,11.19334,12.6848,13.918940000000001,14.9274,15.798418999999999,16.790312,18.2011139,19.666305,21.3285219,23.059949,24.731283,26.223028,27.541385,28.780519,29.640541,30.121395,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.0458563,0.0994313,0.1636993,0.2413191,0.3279974,0.4189189,0.4955386,0.55701755,0.60012716,0.6276412899999999,0.64466273,0.65954577,0.66655412,0.66994763,0.6700667699999999,0.6708757599999999,0.67797158,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,refining,biomass liquids,biodiesel,0.0,0.0,0.0014231,0.15036897999999999,0.17606338,0.21660648999999998,0.272314825,0.33408936799999994,0.39262738099999994,0.43754473200000005,0.4777852092,0.52157957,0.55763464,0.58510856,0.60148967,0.61214356,0.61383217,0.61147047,0.61102407,0.61681054,0.6256797799999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.0554598,0.12104,0.2005575,0.2970031,0.4042896,0.5168831,0.6122730000000001,0.6892639,0.7435894700000001,0.77887195,0.8016618400000001,0.8226873400000001,0.83462785,0.84272436,0.8472481700000001,0.8531709199999999,0.86757593,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,refining,biomass liquids,sugar cane ethanol,0.0,0.0,0.0,0.00472899,0.003257,0.005739800100420999,0.009209981151317,0.013994003678585,0.021577910134871002,0.03231443820178,0.043693492665439995,0.050459231813665,0.053489472738811,0.057346272609170995,0.06279546062334701,0.07314896776415,0.07938260537602,0.08724792454675,0.09348864800008,0.1016804133604,0.11379176922289999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,0.116928,0.36892899999999995,0.651445,0.9961720000000001,1.4325709999999998,1.9385184999999998,2.4205731,2.8595677000000004,3.20890442,3.4732222,3.6673463999999996,3.8309964,3.9278546,3.9883835999999997,4.0191959,4.0540445,4.1551428,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,0.119821,0.37457,0.653599,0.9754079999999999,1.346502,1.7312875,2.0406614000000003,2.2463984,2.33291331,2.3285845000000003,2.2605476,2.1651906,2.0512007,1.9539887,1.8787145,1.8336596,1.8267988,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,refining,oil refining,oil refining,1.35552,2.68801,3.00853,4.23096,5.19364,6.055424,6.766114999999999,7.289290000000001,7.631498000000001,7.84862,8.08779,8.6113347,9.1774888,9.8282802,10.3915584,10.9405089,11.336369099999999,11.6530445,11.837818299999999,11.8134962,11.6933049,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.0,0.0,0.00955133,0.08216424,0.1992658,0.31202996,0.384359,0.41504172,0.43274613000000006,0.42414393,0.41640174700000004,0.4124311,0.40702009999999994,0.40106441,0.39743917000000006,0.39745414999999995,0.40039608000000004,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.0,0.0,0.0118172,0.1020277,0.2469027,0.3863138,0.4758692,0.5139189599999999,0.5359906,0.52569077,0.517319763,0.51465016,0.5104709700000001,0.50524869,0.5026039299999999,0.50475751,0.51139029,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,0.0,0.0,0.0263624,0.2253419,0.5780892,0.9352168000000001,1.1700352,1.2741702000000001,1.3426142,1.33398298,1.33199076,1.33294494,1.3180120000000002,1.2952633,1.27749,1.27093387,1.27962267,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,0.0,0.0,0.026038,0.21186660000000002,0.5127496,0.7890139,0.9519141,1.0118749,1.0313143,0.9752978900000001,0.88322377,0.77729633,0.6842625,0.6230251,0.58918898,0.57211335,0.5629240400000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,refining,oil refining,oil refining,10.4289,10.201,8.43984,8.17919,7.82405,7.71458,7.522652300000001,6.858261199999999,5.9151442,4.968753700000001,4.3620555,4.045457399999999,3.8314866999999997,3.7988577000000006,3.8061886400000002,3.8510332,3.8586693,3.8368799000000005,3.8081447999999996,3.7591469999999996,3.6651929999999995,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.00128231,0.0182539,0.04733733,0.09361942,0.15836229000000002,0.21849638000000002,0.266053446,0.298671619,0.330031071,0.353241556,0.38116974000000003,0.41086331,0.44278264,0.47270785000000004,0.5002814999999999,0.52353425,0.55641573,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,refining,biomass liquids,biodiesel,0.0,0.0,0.0,0.0188277,0.02076614,0.02827029,0.035595720000000004,0.04178891,0.046160839999999995,0.04932008,0.052813599,0.055943221,0.0594334684,0.063339524,0.06760760299999999,0.07204255300000001,0.076903148,0.081608439,0.086666678,0.09215279999999999,0.09794942000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.00155085,0.022325670000000002,0.058308610000000004,0.11580801,0.19590908,0.27026407,0.329192529,0.369753032,0.40894660530000004,0.43836659899999997,0.47429674999999993,0.5131675099999999,0.5554026,0.59555568,0.6332606599999999,0.66620713,0.7125514000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,0.00144537,0.05458328,0.1438171,0.28750749,0.51345003,0.7399526,0.9307040870000001,1.0768906729999999,1.2353714081,1.3725857499999998,1.53588522,1.70216892,1.8688969000000002,2.0203818,2.15793578,2.27805615,2.4616363,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,0.00148113,0.05519881,0.14333377,0.27751736,0.47013868999999997,0.64470754,0.773977566,0.850912896,0.9081656639,0.92722644,0.93590221,0.9358493299999999,0.9447889199999999,0.96578419,0.9950532599999999,1.0244432700000001,1.07848665,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,refining,oil refining,oil refining,2.87684,3.75661,3.69399,3.5736250999999997,3.6490221999999997,3.7347982,3.7582116,3.6246369,3.4128013700000004,3.1976374,3.17082952,3.2922916669999998,3.5363334450000004,3.9113006899999996,4.3931102,4.9140764,5.4536856,5.9593633,6.401012700000001,6.668591099999999,6.9188832,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.0817647,0.19360139999999998,0.3462095,0.5777124,0.8915417999999999,1.2147784000000001,1.468489,1.6416475999999998,1.76221626,1.82169908,1.88633813,1.9427421,1.9989964000000002,2.0400242,2.0801295,2.1203085,2.1995781999999995,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.0988883,0.2357862,0.4246024,0.7122364999999999,1.1005879,1.5005503,1.8156513,2.0318224000000003,2.1832684500000004,2.2599638900000003,2.34558848,2.4241398,2.505068,2.5682547,2.631585,2.6968219,2.8151621000000002,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,0.13443,0.46899100000000005,0.890361,1.525449,2.47497,3.516643,4.3874321,5.0324615,5.51825937,5.8077917999999995,6.097728900000001,6.3206725,6.500343300000001,6.6037849,6.6880096,6.7719954,7.0222109999999995,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,refining,gas to liquids,gas to liquids,0.0,0.0,0.0475507,0.0466954,0.1848896,0.5196855,0.9287333,1.5106813,2.3081543,3.0985101800000003,3.66733613,3.9735925,4.08143527,3.9925191,3.8256767000000003,3.5936265999999994,3.3786569999999996,3.2120299999999995,3.1100730999999997,3.0564131,3.0845307,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,refining,oil refining,oil refining,6.81066,11.6328,14.6389,16.44028,17.41533,18.23937,18.56508,18.178559999999997,17.18452,15.978091,15.301625,15.4096181,15.7170656,16.4074224,17.270267599999997,18.066448100000002,18.804151,19.343720999999995,19.743034,19.789718,19.791717,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.0138668,0.034934599999999996,0.0657616,0.10955500000000001,0.16439720000000002,0.2309351,0.29652304000000007,0.3597013,0.409315693,0.46504415899999996,0.52166941,0.58169341,0.63531596,0.6851962500000001,0.7297986200000001,0.77370642,0.82220278,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.0167709,0.042559799999999995,0.08070060000000001,0.135112,0.20297690000000002,0.28529720000000003,0.36667550000000004,0.44528694,0.507272772,0.57735512,0.6493010100000001,0.72654453,0.7967519399999999,0.8632419899999999,0.92399811,0.9850542699999999,1.0532806000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,0.0227986,0.0858221,0.1709341,0.2910589,0.4569698,0.6707706999999999,0.8917013,1.11371974,1.29515574,1.49682974,1.6961977400000001,1.8966611800000002,2.06610578,2.2159924,2.3436358,2.4682664,2.6234143000000003,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,0.0233626,0.0870736,0.1711357,0.2832919,0.42456249999999995,0.5885101,0.7362869999999999,0.85671033,0.92628489,0.98329596,1.01955781,1.0431593399999999,1.05285116,1.0664776,1.08430455,1.11114887,1.15045299,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,refining,oil refining,oil refining,0.4406,0.696632,0.915302,1.541476,1.7224309999999998,1.9293480000000003,2.136967,2.328163,2.488249,2.643047,2.8589726,3.2504574,3.6301629199999996,4.1737734,4.7493663,5.3608391,5.9041779000000005,6.407675299999999,6.822271899999999,7.0912912,7.255040299999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.0103929,0.035110199999999994,0.07943729999999999,0.1600664,0.27939531,0.40043735,0.49278651,0.55149719,0.599823808,0.6247382499999999,0.65111711,0.67600642,0.7012694,0.72694529,0.75633363,0.7967603400000001,0.84014572,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.0125695,0.0428255,0.09766920000000001,0.19784259999999998,0.34548579999999995,0.4951771,0.60966629,0.68271916,0.743155406,0.77500819,0.80970389,0.8437676700000001,0.8791540099999999,0.9155364500000001,0.95718344,1.0140211000000001,1.07588016,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,0.0170871,0.0910232,0.2133886,0.4344191,0.7944178,1.1801746,1.48657855,1.6942849199999999,1.8773826710000001,1.9888890300000002,2.1024531,2.197503,2.278649,2.3515191,2.4302455000000003,2.5430558,2.681549,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,0.0175098,0.0922524,0.21311049999999998,0.4195059,0.7263434,1.0233626999999998,1.2301935099999999,1.33768394,1.3941754190000002,1.37464239,1.32138663,1.24425389,1.1762361,1.1367601999999999,1.1260290999999998,1.14531433,1.1764883300000002,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,refining,oil refining,oil refining,9.63678,6.10564,6.46258,6.885025,6.959995,7.0484,6.986376,6.656535999999999,6.1125549999999995,5.528881999999999,5.2191031,5.2044791,5.33127466,5.6149267,5.9514336,6.277268599999999,6.5846635,6.8761446,7.1551106,7.3906821,7.503035799999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.0,0.00638904,0.0185814,0.03135924,0.041264930000000005,0.05170448,0.05996323,0.06595577,0.06996199,0.072740577,0.07548281,0.078322573,0.080958551,0.08341206500000001,0.085877813,0.088861823,0.092120942,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.0,0.00782076,0.022905509999999997,0.0387802,0.05103595,0.06394459,0.07418255000000001,0.08165056999999999,0.08670215999999999,0.090294946,0.093925064,0.09776829100000001,0.101434331,0.104953711,0.108602835,0.11306027799999999,0.117980802,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,refining,coal to liquids,coal to liquids,0.16056,0.0857208,0.0960599,0.0943321,0.0801642,0.1037187,0.1229859,0.1358019,0.1434533,0.1622168,0.18255971999999998,0.19969399,0.21723224000000002,0.231501629,0.24436801000000002,0.25530611999999997,0.26376037,0.27047477,0.27644066,0.28388914,0.29410197,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,refining,gas to liquids,gas to liquids,0.0365822,0.06157,0.0658398,0.0646556,0.0549448,0.0773094,0.10068730000000001,0.11816839999999999,0.1283794,0.14393559,0.15695181000000002,0.16270333,0.16279147,0.156945646,0.14956661,0.14238877,0.13619665,0.13184321999999998,0.12912676,0.128463672,0.12925381,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,refining,oil refining,oil refining,0.581312,0.835562,0.799628,0.7389110000000001,0.807059,0.8006933999999999,0.7591315999999999,0.7249592999999999,0.6986849,0.6555411999999999,0.6115666999999999,0.6126632,0.628333,0.66123398,0.6975018199999999,0.7339312,0.7659843700000001,0.7945719699999999,0.8184066000000001,0.83025462,0.82847625,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.0104918,0.035404200000000004,0.0589619,0.08325180000000001,0.10432258,0.12447747,0.14163393,0.15225082,0.15781390499999998,0.16220262,0.16801525,0.17500363999999996,0.18276265,0.18993666999999997,0.19642461,0.20163127000000003,0.20970715,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,refining,biomass liquids,biodiesel,0.0,0.0,0.0,0.00679005,0.004688022,0.005299488,0.0059359370000000005,0.00647731,0.007029174000000001,0.007552956,0.0082359168,0.0088733654,0.00952295406,0.01022940052,0.01094995691,0.011665878349999999,0.01250842912,0.01329671184,0.014020645580000001,0.01460272911,0.01549966708,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.012689,0.043184,0.0723311,0.1025114,0.1285925,0.1535577,0.17494284000000002,0.18834754,0.19552727,0.20131404,0.20901486,0.21839404,0.22898042000000002,0.23907008000000002,0.24852811000000002,0.25657824,0.26854631,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,refining,biomass liquids,sugar cane ethanol,0.0,0.0,0.0,0.0203335,7.45190240416E-4,0.002668370517456,0.003374632168743,0.00437645453038,0.005268638083508,0.007361808247913,0.010734460123676,0.012508761543953,0.014064768609002,0.015960194360705,0.018341819759753998,0.020587253613753,0.023882523345617,0.02687772216438,0.02994804502723,0.03240232425427,0.03833003150654,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,0.0190615,0.10510749999999999,0.183285,0.26660459999999997,0.3505587,0.4422508,0.5356507699999999,0.6151916100000001,0.6809269099999999,0.7435463,0.81004633,0.8767990800000001,0.9435025100000001,1.0051487,1.0620550500000001,1.11274961,1.18891054,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,0.0195331,0.10651769999999999,0.1837307,0.2615143,0.3328695,0.402271,0.46072935,0.49164694000000003,0.49807927500000004,0.49475133,0.49027634999999997,0.48599127,0.48422033999999997,0.48638655000000003,0.49280818000000004,0.50144681,0.52128492,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,refining,oil refining,oil refining,0.820451,1.25366,1.65668,1.9681499999999998,2.051483,1.983437,1.931051,1.858335,1.823648,1.785943,1.7815036999999996,1.8476502999999997,1.94587825,2.099892,2.2902115,2.4977023,2.714786,2.9250040000000004,3.1106862,3.2165416000000002,3.3067564000000003,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.0134281,0.02818,0.0473078,0.0725806,0.107314,0.1445132,0.17669086,0.19803684,0.21510173100000002,0.22686564199999998,0.241171438,0.25628807000000003,0.27171874,0.28587556999999997,0.29874605,0.30907227,0.32619264,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,refining,biomass liquids,biodiesel,0.0,0.0,0.00322299,0.0173774,0.00661483099,0.00588709948,0.005505862348999999,0.0052912583712000005,0.005718727332753,0.005772331495623,0.005629790793431,0.004848490608066,0.00473927,0.00470061,0.00544161,0.00583095,0.00591883,0.00565186,0.00536092,0.00511383,0.00589404,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.0162403,0.034297999999999995,0.0579642,0.0893664,0.1323521,0.178396,0.21838868,0.24507511999999998,0.266503718,0.28149121299999996,0.29996502,0.31990359,0.3406465000000001,0.36009046,0.37816759,0.39330398,0.41766243000000003,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,refining,biomass liquids,corn ethanol,6.27862E-4,5.85962E-4,0.00280441,0.02574397,0.03274279,0.0414534,0.05255109,0.0657232,0.081716723,0.095336404,0.107354582,0.11815272,0.129114848,0.139107741,0.152157506,0.166889769,0.182591106,0.19784506999999998,0.21227328999999998,0.22502957,0.24278008,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,0.0302887,0.0912048,0.1643443,0.2608893,0.4082466,0.5800317,0.7436187999999999,0.86711983,0.97493417,1.06043729,1.15919786,1.2587458299999998,1.3543477899999998,1.4390215899999999,1.5138405300000002,1.57605651,1.68603283,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,0.031038,0.09261849999999999,0.164855,0.25498509999999996,0.3803878,0.5116143,0.6189032,0.6786283200000001,0.7104354,0.71515972,0.71313651,0.7032002199999999,0.6943601800000001,0.69314533,0.6998319700000001,0.7090956900000001,0.73904541,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,refining,oil refining,oil refining,0.836427,1.39582,1.82989,2.345285,2.580692,2.755168,2.862082,2.855882,2.7744890000000004,2.641606,2.5953064,2.6622692,2.8048371000000003,3.0272311,3.3206968,3.6402901,3.9628467,4.2618629,4.513410400000001,4.6430484000000005,4.7781914,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.0189153,0.0437336,0.0750631,0.11355099999999999,0.15984299999999999,0.2155304,0.27221436,0.32953645,0.38171595699999994,0.43179592999999994,0.48000605999999996,0.52920787,0.5742502300000001,0.61690979,0.65609646,0.69490339,0.74315559,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.0228767,0.0532564,0.0920194,0.1398409,0.1971332,0.2660582,0.3364644,0.40788201,0.4731021899999999,0.53612111,0.59740503,0.66080297,0.7198942700000001,0.77697513,0.83064457,0.8848916299999999,0.95234002,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,0.0310989,0.1053437,0.191853,0.2974848,0.437893,0.6183972000000001,0.8131536000000001,1.01874143,1.20987579,1.39222914,1.56260616,1.7272943499999998,1.86930642,1.99661285,2.1075196,2.2166447000000002,2.3710267,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,0.0318682,0.10692280000000001,0.1923643,0.2909773,0.41042700000000004,0.5482307000000001,0.6764436,0.78439048,0.85806138,0.90761756,0.9365863,0.9526602400000002,0.9576797399999999,0.9655691599999999,0.97771497,0.9986958300000001,1.03945116,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,refining,oil refining,oil refining,0.222211,0.551145,0.631771,1.159058,1.418151,1.680947,1.919882,2.120214,2.293858,2.456746,2.6675679,3.038088,3.4617616,3.9556009999999997,4.4545021,4.9666891,5.432515,5.8722554,6.2423024,6.477670999999999,6.660574699999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.00173899,0.00605457,0.017447360000000002,0.045598360000000004,0.09036393000000001,0.13444676,0.161220853,0.174893617,0.1831222452,0.181670473,0.17902498999999997,0.17725166,0.17498808000000002,0.17247145999999997,0.17070246,0.17098355,0.17243305400000003,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,refining,biomass liquids,biodiesel,0.0,4.60479E-4,0.0125574,0.012297,0.01296587,0.01253557,0.012309780999999999,0.012740092699999999,0.013843197429999999,0.013337358348000001,0.01147792956,0.01069250261,0.01071654036,0.01078528756,0.01155877572,0.012064483017000001,0.011669947632000001,0.01098542425,0.01071520151,0.01105662081,0.01144189693,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.00210318,0.0073858299999999995,0.02148139,0.05645543,0.11184023,0.16634797,0.19952282,0.216520666,0.2268254521,0.225233363,0.22246071599999998,0.22114715000000001,0.21934846999999996,0.21714785000000003,0.21582442,0.21722315,0.22037141999999998,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,0.00429239,0.02351002,0.06944348,0.17821363,0.36057542,0.54894725,0.671414,0.740198832,0.788116881,0.796431514,0.79923923,0.79911493,0.79092186,0.7782899699999999,0.7664444800000001,0.7628420200000001,0.7682981900000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,0.00439858,0.023825850000000003,0.06919351,0.17076866000000002,0.32625588000000005,0.47160357,0.55495179,0.590557744,0.599700277,0.569915988,0.52011651,0.4628238,0.41244773,0.37760103000000006,0.35580634,0.34434161,0.33807097,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,refining,oil refining,oil refining,2.09484,4.16594,4.18048,4.14162,4.1424949,4.0930642,3.9473096,3.6475394000000003,3.1997267000000003,2.7578428,2.4625021,2.33679807,2.25534822,2.26686533,2.27944645,2.3009689000000004,2.3053946,2.2953819,2.2763952,2.2460536,2.1889174,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.0446873,0.09646199999999999,0.1678033,0.2675028,0.3883251,0.5172782,0.6300879,0.7303228700000001,0.82105809,0.89801608,0.97215019,1.0516625800000001,1.1282772399999998,1.20335365,1.2738122200000002,1.34407181,1.43041088,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,refining,biomass liquids,biodiesel,0.0,0.0,0.0227284,0.0917957,0.1257673,0.16472969999999998,0.22194519999999998,0.29783930000000003,0.39151266999999995,0.49428109,0.59677176,0.68999543,0.77678452,0.85165005,0.9213017899999999,0.98980263,1.05316136,1.11476813,1.18059339,1.2562682,1.34266767,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.0540459,0.11742240000000001,0.205691,0.3295672,0.4790932,0.6387004000000001,0.7788872,0.90393033,1.01749408,1.11470168,1.20962728,1.31302984,1.41444912,1.515581,1.6125653199999999,1.7112617700000001,1.83265305,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,refining,biomass liquids,sugar cane ethanol,0.0,0.001465,0.0136036,0.067252,0.045723400505909,0.052022802343759,0.07016951324839199,0.09613503546386999,0.12989408388811502,0.16202327122203,0.18324516256895998,0.1860971930021,0.19142223290114002,0.19609153325231998,0.21122374977442,0.23009802264286,0.2360267036791,0.241599584794,0.24496959725359999,0.25406573198189997,0.275089573126,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,0.165511,0.5117160000000001,0.947816,1.548408,2.35345,3.2713259999999997,4.1259296,4.9189505,5.64341572,6.254827,6.8073956,7.3376714000000005,7.7915113,8.1947707,8.5388176,8.8722394,9.357572900000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,refining,gas to liquids,gas to liquids,0.0,0.0402773,0.0363013,0.0356484,0.20849569999999998,0.5558681,0.9811414,1.5334276,2.20995392,2.90468622,3.4584868199999996,3.8504997999999997,4.08795363,4.170154,4.1523707000000005,4.0885247,4.009742500000001,3.9704859,3.9654100000000003,4.0003153000000005,4.106031400000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,refining,oil refining,oil refining,3.13926,6.26521,8.23937,9.66144,10.999250000000002,12.08042,12.94142,13.451839999999997,13.607870000000002,13.670957000000001,13.999120999999999,14.9828997,16.2638927,17.8695509,19.492966000000003,21.186722500000002,22.736480000000004,24.194936,25.385882,26.042938999999997,26.443385,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.00221704,0.00925582,0.02057257,0.04216288,0.07240954,0.10139079000000001,0.11973470000000001,0.12954089300000002,0.136036059,0.137353017,0.137924134,0.13950027,0.14043353,0.1403724,0.140225546,0.140386022,0.142078007,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.00268134,0.011297419999999999,0.02529902,0.052122550000000004,0.08954576,0.12538609,0.14813257,0.160354503,0.16851879800000003,0.170351037,0.17146595,0.17409518,0.17603151,0.17670618,0.17728726000000003,0.17837972200000002,0.18164549,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,0.00364505,0.02469944,0.055938440000000006,0.1151188,0.20634848,0.2986668,0.35974893,0.39548185100000005,0.42275330000000005,0.434722009,0.44376082,0.45272769,0.45614864,0.45437612,0.45123809,0.44890856999999995,0.45392994000000003,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,0.00373523,0.025019259999999998,0.05587329,0.11113598999999999,0.18889428,0.25995653,0.30078701,0.317329601,0.320585286,0.30688642,0.28397277,0.25876082999999994,0.23643685000000003,0.22031413,0.20972109,0.20282759,0.19972925,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,refining,oil refining,oil refining,1.07078,1.83458,1.98546,1.90193,1.9814205,2.0039547,1.9667971,1.8477906000000002,1.6489783,1.4464713,1.3101747000000001,1.2518169499999998,1.21948475,1.2445826199999999,1.27204399,1.3092038300000002,1.3338694999999998,1.3432075,1.34271357,1.3235306599999999,1.29326271,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.0425257,0.0978039,0.20196969999999997,0.4099625,0.7282048999999999,1.0421036,1.26524,1.3909902600000001,1.4873636,1.5194817700000003,1.5565862400000001,1.5946558400000002,1.6363414,1.6751328,1.7261066999999999,1.79570843,1.8892788000000003,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,refining,biomass liquids,biodiesel,0.0,0.0123896,0.0312251,0.05031511096,0.0281846207,0.0328311304,0.049800738899999995,0.074890571305,0.09489301193329999,0.0953127552275,0.08581792360900001,0.072818983409,0.08331798934399999,0.09595035481,0.13450104047,0.15873422809999999,0.1670099618,0.166970167,0.177869708,0.20040963500000003,0.218312954,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.0514316,0.11909700000000001,0.2479771,0.5063903000000001,0.9001575,1.2884094,1.5651850999999999,1.7218613500000002,1.84257427,1.8845474999999998,1.9352248899999998,1.9901529000000002,2.0514776,2.1097205000000003,2.1841738,2.2844415000000002,2.4185204,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,refining,biomass liquids,corn ethanol,0.0,0.325437,1.03105,1.3888,1.532941,1.64772,1.7799600000000002,1.979534,2.274604,2.512887,2.6425987999999996,2.6727989,2.71417592,2.67181122,2.6518873000000003,2.6561521999999997,2.6913429000000004,2.7393248,2.8074068,2.8937669,2.9973929999999998,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,0.117722,0.406817,0.921982,1.9589290000000001,3.7090579999999997,5.5559704,6.9622919,7.8468505,8.59968626,9.0003374,9.4392475,9.8256754,10.1505201,10.392512199999999,10.661949700000001,11.021190899999999,11.5745428,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,0.120634,0.41288199999999997,0.921697,1.8899650000000001,3.381558,4.8030914,5.7508531000000005,6.2047208000000005,6.42434488,6.2796596,5.9825585,5.5853995,5.2398878,5.0182228,4.935848300000001,4.9635146,5.0793055,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,refining,oil refining,oil refining,31.688,38.9652,34.1005,34.926570000000005,35.526901,35.600156999999996,34.849821999999996,32.812791000000004,29.785909,26.717066000000003,25.005633,24.5965688,24.829491400000002,25.8513641,27.1771459,28.516737999999997,29.756374000000005,30.776657,31.748687999999998,32.42248,32.818658,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.00111666,0.00315188,0.006696509999999999,0.012776220000000001,0.02242082,0.035984909999999995,0.053571617999999994,0.07597968599999999,0.1024717282,0.1331313426,0.16720394,0.204621753,0.250845708,0.306032017,0.357495873,0.41599812,0.4826818,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.00568629,0.01586869,0.03338834,0.06299669,0.10870788,0.17143239999999998,0.25100314999999995,0.3502825,0.465500153,0.597110447,0.74045407,0.89556848,1.08551811,1.31348502,1.5272147399999998,1.7739799799999998,2.05945355,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,3.21434E-4,0.001504766,0.004590159,0.011725523,0.02666815,0.053375246,0.09624771300000001,0.16260953179999998,0.2561009563,0.38218644690000003,0.548676448,0.762468319,1.06207391,1.45125757,1.85653487,2.34381966,2.9315513600000003,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,refining,gas to liquids,gas to liquids,0.0,0.00960073,0.0111242,0.0109241,0.011192426,0.012481426,0.015989371999999998,0.024656479000000002,0.043576418,0.076835212,0.12670776900000003,0.196517614,0.2840338265,0.3881807415,0.509921755,0.6484973330000001,0.82372566,1.03902352,1.25427163,1.50583606,1.7924786,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,refining,oil refining,oil refining,0.327822,0.512014,0.698933,0.905488,1.203382,1.608704,2.1139910000000004,2.743398,3.580935,4.622536,5.8853006,7.4531904,9.2175867,11.1718272,13.284942400000002,15.263672300000001,16.3406333,18.456055,19.7335826,20.693840700000003,21.410156999999998,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.00201104,0.00553679,0.01061706,0.018427270000000003,0.02968297,0.04237301,0.054105879999999995,0.066052973,0.0782037556,0.08873579000000001,0.098805579,0.10818761,0.11734581,0.13275900899999998,0.14437325299999998,0.158179876,0.174656633,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.0102407,0.0278801,0.05299,0.0910246,0.14435973,0.20295421,0.25563464,0.30758805,0.358809812,0.40162588299999996,0.44084836,0.47623184999999996,0.5103077699999999,0.57161156,0.6179516,0.67511077,0.74526428,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,5.78884E-4,0.0026288540000000003,0.007051513,0.016223304,0.03370519,0.059006831,0.089151472,0.128554533,0.17877930009999998,0.2345410029,0.302690195,0.381732567,0.472382066,0.6079856499999999,0.7300794400000001,0.87402967,1.04616369,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,refining,gas to liquids,gas to liquids,0.0,5.66972E-5,6.83961E-5,6.71659E-5,0.0011382023000000002,0.004749493,0.0121552015,0.026583418,0.0517043745,0.08473920901,0.12013507774000001,0.16116866100000002,0.2064909962,0.24906963999999998,0.29320524,0.336573079,0.37972534999999996,0.44624452000000003,0.50217221,0.5684634000000001,0.64514546,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,refining,oil refining,oil refining,2.01049,2.83366,3.33534,3.4270650000000002,3.9521930000000003,4.607031,5.181012,5.649849000000001,6.083924700000001,6.4598253,6.780558200000001,7.19190954,7.5936852,7.9660565,8.2973804,8.4668588,8.1606703,8.4599286,8.3880892,8.2500657,8.0780831,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,9.03881E-4,0.002432184,0.004746775,0.0082264,0.013641923,0.021404359,0.03116785,0.042975975,0.0560391101,0.0704036029,0.08579141399999998,0.101855879,0.11808948799999999,0.143060965,0.164048365,0.18753126299999998,0.21777556199999998,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.00460278,0.01224896,0.023689050000000003,0.040634390000000006,0.06629710999999999,0.10217068999999998,0.14626672,0.19840929499999999,0.254954527,0.31627196599999996,0.380553745,0.446506196,0.51205094,0.6146714,0.7012377699999999,0.7999162400000001,0.92931232,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,2.60185E-4,0.00114879,0.003163739,0.0072500080000000005,0.01565665,0.03102017,0.055123181,0.0908024885,0.1381129195,0.1989652697,0.27693667489999996,0.373522623,0.48931342199999994,0.671566769,0.84648171,1.05203512,1.32204824,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,refining,gas to liquids,gas to liquids,0.0,0.00205735,0.00235503,0.00231267,0.002725632,0.004124116,0.00715018,0.013041213,0.024585374,0.044313746,0.072592535,0.11018521540000001,0.15422029710000001,0.20401214070000004,0.26017476300000003,0.32122822,0.38548886399999993,0.484339468,0.57442377,0.6777825199999999,0.8085304899999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,refining,oil refining,oil refining,0.239498,0.340846,0.513987,0.775823,1.021013,1.329551,1.6589589999999999,2.002851,2.43248,2.96034,3.584517,4.351411000000001,5.1715197,6.0557183000000006,6.9825626000000005,7.7868227999999995,7.998195900000001,8.9041411,9.3201572,9.585901000000002,9.8675105,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.00160313,0.005494870000000001,0.01226903,0.02333856,0.03993407,0.06287788999999999,0.09225684099999999,0.12986671,0.17525831320000002,0.227789931,0.285434545,0.34678567800000004,0.414929214,0.50859623,0.5899618499999999,0.6811325799999999,0.79291606,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.0081635,0.02763438,0.06111647,0.11502597,0.19368408,0.29979309,0.43271786999999995,0.59925564,0.796461448,1.021708731,1.26396929,1.5179444000000002,1.7967586600000003,2.1837210700000003,2.52103803,2.90506034,3.3835076,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,4.61465E-4,0.00272413,0.008620094,0.021608655,0.04731015,0.09245237199999999,0.16407380300000002,0.27584427310000004,0.4369631494,0.654249651,0.937320382,1.290335903,1.74300862,2.40318502,3.05430403,3.8290385,4.81713942,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,refining,gas to liquids,gas to liquids,0.0,0.0101239,0.0117228,0.011512,0.012022294000000001,0.015172201,0.023303409000000004,0.041050725999999996,0.075305817,0.132581509,0.216366133,0.33416029599999997,0.4847501678,0.6639272780000001,0.870580579,1.098677662,1.35983487,1.72515921,2.0679246,2.46363872,2.9447503999999998,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,refining,oil refining,oil refining,0.685554,1.15211,1.2014,1.542573,1.971049,2.756266,3.7414689999999995,4.915543,6.383285000000001,8.176931999999999,10.3208137,12.977043900000002,16.0116579,19.368893500000002,22.9567113,26.1987606,27.615998400000002,31.232752,33.134266000000004,34.431582000000006,35.574824,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.0,5.15651E-4,0.001318718,0.002659834,0.004689321,0.006863671,0.008434324,0.009540375,0.010537692500000001,0.0111393411,0.0117466633,0.012275066300000002,0.0127626725,0.013801184999999999,0.014382681500000001,0.0151326822,0.0162257213,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,refining,biomass liquids,biodiesel,0.0,6.69766E-4,0.0195058,0.0076960227,0.00761331,0.007738594,0.007411107,0.006720987439999999,0.0060798331189,0.00523623092137,0.0043279228614000005,0.0037315050208,0.0038413235429,0.00395300867677,0.0044201549026,0.0045035584937500005,0.0042497036579,0.00426506483743,0.0036274755921999998,0.00365256132422,0.0037722365515200002,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.0,0.00257997,0.00654922,0.01308092,0.022702550000000002,0.0327651,0.03985856,0.04464019,0.048692624000000004,0.05079737100000001,0.052702357,0.054185122,0.055552059,0.05944932,0.061589039,0.06460269,0.069234104,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,refining,biomass liquids,corn ethanol,0.0,0.0,0.00263706,0.00441274,0.004270889999999999,0.007401690000000001,0.012140370000000001,0.01869225,0.026747325,0.034245858000000004,0.03952079900000001,0.042938640699999996,0.04545111899999999,0.046603538,0.048194403999999996,0.050368974,0.053062526000000006,0.057448110000000004,0.060575321,0.06410215500000001,0.06824515800000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,0.0,3.94439E-4,0.001367615,0.00372502,0.008667543,0.015654932,0.022303214000000002,0.029022012,0.0379138727,0.047505418599999995,0.06102747210000001,0.07728427800000001,0.094949853,0.11875076200000001,0.137785435,0.160158539,0.18964031600000003,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,0.0,6.95805E-4,0.00232768,0.006040624,0.013150479999999999,0.022291756,0.030129072,0.037101242,0.044984593,0.0518782352,0.0600352444,0.068245175,0.075974879,0.087095969,0.095214477,0.10494972600000001,0.117645124,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,refining,oil refining,oil refining,0.766759,1.0842,1.2999,1.4175170000000001,1.382315,1.506969,1.590287,1.6416169999999999,1.67563,1.6856145999999999,1.6817835,1.7043558400000003,1.7274691,1.74697545,1.7619011100000002,1.7451935,1.643137,1.6625300000000003,1.6185696,1.5660236,1.5125541999999998,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,2.57337E-5,6.391469999999999E-5,1.443013E-4,3.265554E-4,6.76119E-4,0.0011098031,0.0015077025999999999,0.00185357966,0.0022557116199999998,0.00268573994,0.0033029597,0.00416604636,0.0055458293,0.0071510693,0.0090159851,0.0121212964,0.0188661827,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,refining,biomass liquids,biodiesel,0.0,0.0,0.00234401,0.010262798,0.0116445894,0.0127861754,0.01452986032,0.01672556640556,0.019132413081714,0.02063292421998,0.021386070366831003,0.0219968599074,0.0235731127325,0.025068487412,0.027350540554099998,0.0293439727051,0.031524526595,0.032174711530000004,0.032479270729999996,0.0336088724,0.0343895106,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,refining,biomass liquids,cellulosic ethanol,0.0,4.60463E-4,0.00945963,0.009359200600000001,0.0092147108,0.008727540899999999,0.00770806,0.0064073033,0.0058686432,0.0064352155999999995,0.0075332587999999995,0.00860075288,0.01033093105,0.012141553880000001,0.0146912428,0.0182345966,0.0239247098,0.0305997082,0.038434523,0.05165629020000001,0.080639183,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,1.56191E-4,5.97031E-4,0.001908347,0.005659212,0.014373206,0.026954653000000002,0.0401201063,0.0529925672,0.06913405278,0.08732431830000001,0.113338909,0.147330466,0.19528708399999997,0.24201663,0.283303229,0.32996235300000004,0.385926938,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,refining,gas to liquids,gas to liquids,0.0268719,0.0,0.0,0.0,2.89522E-4,0.001067174,0.003266009,0.00917337,0.021707099,0.03816139,0.053689640999999996,0.06713986229999999,0.08165436390000001,0.09512085240000001,0.111317919,0.129490887,0.153736582,0.175863517,0.19453270399999997,0.215626652,0.239752796,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,refining,oil refining,oil refining,1.52597,2.07254,2.16231,2.263792,2.3928399999999996,2.492272,2.5790599999999997,2.6512569999999998,2.7519173,2.8287051,2.8942065999999995,2.9738868600000004,3.06430107,3.1567026,3.2402447999999997,3.2812048000000003,3.2029938,3.2592551,3.2210684000000005,3.1556397,3.0590119000000002,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,1.3612E-4,5.678020000000001E-4,0.0011660659999999999,0.002198007,0.003973482,0.006251784999999999,0.0082800607,0.010045794600000001,0.01184956597,0.013426436400000002,0.0154246327,0.017925339499999998,0.0209803615,0.025454873,0.029447404,0.0346705776,0.042780133,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,refining,biomass liquids,biodiesel,0.0,0.0,0.0850955,0.075522251,0.07751279999999999,0.08503155,0.09192453,0.09825415000000001,0.106386755,0.11307106,0.117553901,0.11975764600000001,0.12203408,0.124010377,0.125467408,0.127634222,0.13373053499999998,0.132075351,0.134522041,0.13687414799999997,0.13900678,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,6.93154E-4,0.002852978,0.0058099350000000004,0.010835586,0.019251327,0.02978885,0.038948502,0.04668499599999999,0.0543537098,0.060821534999999996,0.068822889,0.078755407,0.090916655,0.109237962,0.12575314199999998,0.14781531,0.182593479,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,refining,biomass liquids,sugar cane ethanol,0.245075,0.291452,0.503624,0.00152947,5.5655E-4,0.00164534,0.0021301,0.00338486,0.0057786,0.00765609,0.00754252,0.00698226,0.00784838,0.0083497,0.01173,0.015653700955903998,0.019509349285856,0.026289920412291,0.026693753830129,0.0347604106803,0.0523207407948,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,3.52185E-4,0.0025265,0.006850284,0.016467506,0.037217032,0.069037847,0.102103742,0.13600657749999998,0.1756410377,0.21527963099999997,0.26865391899999996,0.33589570799999996,0.415030038,0.5159965500000001,0.5956171600000001,0.68164142,0.7906825700000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,6.52827E-4,0.0044883760000000005,0.011738613,0.026884784000000002,0.056726416,0.098324845,0.13723185300000001,0.172389422,0.20747423890000002,0.23573429199999998,0.267066739,0.299920661,0.33381170000000004,0.37897903,0.41123812,0.44671927,0.49175279,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,refining,oil refining,oil refining,2.37788,3.67436,4.48847,5.5640600000000004,5.846483999999999,6.493767,6.945586,7.244705,7.509093999999999,7.656931999999999,7.6659310000000005,7.7576158,7.81792,7.8395932,7.823566199999999,7.6933442,7.2048833,7.190355,6.924663899999999,6.626313499999999,6.3344556,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,7.954E-5,1.958749E-4,4.7227230000000003E-4,0.0011690710999999999,0.0025213047,0.0040697898,0.005237167599999999,0.0061365966000000004,0.00709725373,0.007987595560000001,0.0093054605,0.011100985,0.0135776278,0.0161928784,0.0188705819,0.022462589600000003,0.0278763236,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,refining,biomass liquids,biodiesel,0.0,0.0,0.00728313,0.014761959,0.016562216,0.018588309,0.0219300232,0.0266787315687,0.03057204706197,0.031369502198205,0.0301201733401,0.02984255494,0.031731895860000005,0.033896811539999995,0.037584233368,0.039559597208,0.03979007994,0.0373972917,0.0357503122,0.0335454697,0.028938467199999998,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,4.05037E-4,9.87089E-4,0.002353192,0.005746737,0.012157187,0.019322706000000002,0.024603068,0.028557531599999998,0.0326548821,0.0362909578,0.0415569705,0.04871352400000001,0.058702727999999996,0.06941248600000001,0.08054409,0.095754219,0.11898481400000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,refining,biomass liquids,corn ethanol,0.0,0.0071158,0.037839,0.04052811,0.043107709999999994,0.044596939999999995,0.04606948,0.04863408,0.0547219,0.06203173,0.067382011,0.070465216,0.074229029,0.076226108,0.08001006000000001,0.086555822,0.097305057,0.109643791,0.12236735200000001,0.139112683,0.16336317099999997,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,1.95677E-4,7.46838E-4,0.0025833289999999997,0.008347694,0.021952060000000002,0.040984735999999994,0.0585784233,0.07490740139999999,0.09514049013,0.1176008405,0.15246051929999999,0.199032248,0.25826126699999996,0.31529318300000003,0.36657345799999996,0.42443640699999996,0.49698829,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,refining,gas to liquids,gas to liquids,0.0142735,0.0237333,0.033444,0.0328424,0.032220515,0.030792277,0.028863943999999996,0.030215088,0.042056511000000005,0.06194530000000001,0.080296609,0.0957326196,0.11373696409999999,0.1297662679,0.150720985,0.17486926800000002,0.20345895200000003,0.22956078999999996,0.25235126,0.27815735199999997,0.30923514999999996,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,refining,oil refining,oil refining,3.12207,4.12866,3.9566,4.078245,4.206319000000001,4.276886,4.31379,4.319205999999999,4.346291,4.331756899999999,4.2863069,4.31655526,4.3654533099999995,4.42861275,4.4808471,4.486138,4.3718542000000005,4.377745,4.2990744,4.1905928,4.044914299999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,5.39051E-4,0.0013862599999999998,0.0026315289999999996,0.004676283,0.007856464,0.011554100000000001,0.014748907,0.017488180399999997,0.0196430228,0.0213999147,0.0230408114,0.0248506681,0.026737102000000002,0.029894163999999997,0.031950796000000004,0.034240928000000004,0.037161133000000006,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,refining,biomass liquids,biodiesel,0.0,0.0,0.0,0.00137684,0.0016079290000000001,0.001916716,0.0022654586000000003,0.002686512178,0.00318956602036,0.00362698618931,0.00394199901985,0.004128214556884,0.004279636385183,0.004511001815643,0.004831839882983,0.005193195627069,0.00546070790307,0.0059686758672709995,0.005931582726735,0.006213197468612,0.006689675322313,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.00274498,0.00698365,0.01313845,0.0230961,0.038166179999999994,0.0552455,0.06960093,0.081480397,0.090388466,0.09722925199999999,0.103167238,0.10959654499999999,0.11630255,0.128661164,0.136703083,0.146093146,0.158510487,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,refining,biomass liquids,sugar cane ethanol,0.0580575,0.0297611,0.0097529,0.00461119,0.00220401,0.00322969,0.00443536,0.00671454,0.0103888,0.0125956,0.0123725,0.0115821,0.010978,0.0118298,0.0144543,0.017993401339899,0.02033447052202,0.026302423861059,0.02346987194767,0.02626475294788,0.0322567676297,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,2.37332E-4,0.001033071,0.002880135,0.007146097,0.016093863,0.029603442,0.044890109,0.06237024050000001,0.0812583437,0.1028340298,0.1305505452,0.166770184,0.20951472799999998,0.268443619,0.317016375,0.37005696,0.43480617899999996,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,4.3993E-4,0.001843637,0.0049408130000000005,0.011659127,0.024526786000000002,0.042182926,0.060174305000000004,0.07840989749999999,0.0952798701,0.1113131234,0.128460673,0.14768127900000003,0.167586483,0.195919368,0.21759759899999997,0.24128088399999997,0.26938304,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,refining,oil refining,oil refining,1.17853,1.75,1.89676,2.096383,2.2987050000000004,2.527148,2.72202,2.875431,3.0268800000000002,3.158738,3.2687367,3.4192612999999996,3.5052972000000002,3.6046586,3.6770981999999997,3.7146817,3.5522291,3.6491995,3.5915076,3.5031467,3.4018298,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,8.37861E-4,0.00242026,0.004475977000000001,0.007592955,0.012177824,0.017527143000000002,0.02231147,0.026335011999999998,0.030201800999999997,0.0333772047,0.0364166047,0.03926624100000001,0.042364679,0.047213370000000005,0.05053211899999999,0.054649291,0.059814473,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.00426659,0.01218344,0.022344009999999997,0.037523100000000004,0.059247980000000006,0.08394747,0.10541764,0.122784437,0.138851054,0.15141469300000002,0.162810817,0.173065234,0.18428181999999999,0.20328111,0.21628300999999997,0.23322658,0.25519924000000005,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,2.41181E-4,0.0011612229999999999,0.002950892,0.006611721,0.013734788000000001,0.024401869,0.036738873,0.0505438156,0.06758774120000001,0.08620341810000001,0.10946861869999999,0.13708220599999998,0.17044620500000002,0.216231244,0.254853702,0.300525029,0.35652179500000003,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,4.47065E-4,0.002070038,0.00507097,0.010836093,0.021077923,0.035009179,0.049490592,0.0637821681,0.0789595904,0.0927813779,0.107248905,0.12162697300000001,0.136970599,0.158664229,0.17555685099999999,0.1959864,0.22047020499999997,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,refining,oil refining,oil refining,2.55016,1.09805,1.38878,1.661658,1.8805809999999998,2.176995,2.403801,2.572432,2.7085339999999998,2.7945480000000003,2.8409153999999996,2.8950922999999995,2.9527337,3.0182442,3.0745226,3.0786787999999996,2.9306509,2.9890277999999997,2.9243539,2.8488803000000003,2.7693044999999996,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.0020081,0.00541237,0.00962501,0.015856790000000003,0.02553441,0.03752618,0.04871614,0.058193568,0.0673134745,0.074347749,0.08211538800000001,0.091166977,0.10389187300000001,0.12246391,0.137508978,0.156252835,0.18005729399999998,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,refining,biomass liquids,biodiesel,0.0,0.0,0.007367,0.17341427674200002,0.18042971042800002,0.195441548709,0.199594740183,0.206549383259,0.21921709171009998,0.22856867013471,0.23170879068279998,0.22091885985,0.21716123725,0.20651422930000002,0.20731709097,0.20139898092,0.18954081550000001,0.1764365772,0.14046176999999999,0.1107908299,0.0753025013,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.0102257,0.0272579,0.048079,0.07842589999999999,0.12427891,0.17964391,0.22988199,0.27089637,0.30904076099999994,0.33706537,0.366975787,0.40147401,0.45106117,0.52618822,0.5876037,0.66626654,0.7681212,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,refining,biomass liquids,corn ethanol,0.0,0.0,0.0433228,0.1057416,0.166052,0.2380773,0.3063977,0.3742647,0.44357080000000004,0.49226971,0.51275878,0.5120053,0.49937175,0.49075265000000007,0.47672517999999997,0.48570825000000006,0.52560657,0.56496364,0.62612935,0.7016960400000001,0.81083262,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,0.00410135,0.017479889999999998,0.04145471,0.08742569,0.17697604,0.31315546,0.47040088,0.635451092,0.8214081099999999,0.9948333060000001,1.20482211,1.45374252,1.7707685899999999,2.16639063,2.4607748899999997,2.76325526,3.0766212699999995,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,0.00760246,0.031202459999999998,0.07140326999999999,0.14379594,0.27253251,0.45027928,0.63449493,0.80426598,0.9670212730000001,1.08794354,1.20503127,1.31541486,1.44143138,1.60460186,1.7073002599999998,1.8160203200000002,1.92311166,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,refining,oil refining,oil refining,4.92161,13.6324,18.1086,21.72043,25.453699999999998,29.750130000000002,32.74841000000001,34.66166,36.02921,36.705189999999995,36.689987,36.421482999999995,35.948716,35.309093999999995,34.516408,33.215196999999996,30.640291,29.931317,28.193443000000002,26.419881,24.565077999999996,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,2.36679E-4,5.31404E-4,0.00100343,0.001764257,0.002904931,0.004263965,0.005504991000000001,0.0065910542,0.007638269,0.008544251499999999,0.0094448023,0.0103468034,0.0114208094,0.0127048996,0.013728222799999999,0.014888315499999999,0.0162569064,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,refining,biomass liquids,biodiesel,0.0,0.0,5.85954E-4,0.0063986918289999995,0.006718514,0.007614797,0.0085706442,0.009489453200000001,0.010462527499999999,0.011446846059999998,0.01242257913,0.0129639894,0.0134921065,0.013947629,0.014432370899999998,0.014940261,0.0158517683,0.0159881422,0.016561455000000003,0.0171135144,0.017644237700000003,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.00120523,0.00267978,0.00501277,0.00871781,0.014122609999999999,0.020397820999999997,0.025971913,0.030686674000000004,0.0350831416,0.0387325819,0.042197931,0.045570001,0.049632616,0.054676753,0.058740992,0.063529747,0.06935373900000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,refining,biomass liquids,sugar cane ethanol,0.0,4.18968E-5,3.34874E-4,1.37771E-4,1.13304E-4,1.93567E-4,3.82439E-4,7.06377E-4,0.00126049,0.00182546,0.00215884,0.00229161,0.00273321,0.0032095,0.00423906,0.00543291,0.007082895132741999,0.008802226938441,0.009320102928775,0.011442981582902,0.01448320258045,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,9.06042E-5,3.3725020000000005E-4,9.782842E-4,0.0024629848,0.0055258613000000005,0.0103503307,0.0161596031,0.022918873500000003,0.03138180269,0.0412089378,0.054075485300000004,0.0703317351,0.091684496,0.117549476,0.14188953,0.169837506,0.203356473,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,1.67948E-4,6.030370000000001E-4,0.0016779249999999998,0.004016129,0.008420704,0.014726283,0.0215693482,0.0286449331,0.036332800400000004,0.043911498900000005,0.052385403299999994,0.06161473,0.072597486,0.085481008,0.097089096,0.11031728799999999,0.125503651,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,refining,oil refining,oil refining,0.397834,0.505195,0.534127,0.6488700000000001,0.7293923,0.8027584,0.8805551,0.9540042,1.0304067,1.1017375,1.1662335,1.24559056,1.32965701,1.41302773,1.49347356,1.55275175,1.5399179999999997,1.6051349,1.6126461,1.6033224000000001,1.5819974,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,5.95405E-4,0.001259851,0.002417801,0.004704866,0.008528649999999999,0.012604596,0.015450926,0.017304765,0.018683665500000005,0.0192332415,0.0197329708,0.020258568,0.02121115,0.022317666,0.022907754000000002,0.023727437,0.024924899,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,refining,biomass liquids,biodiesel,0.0,0.00138131,0.0461682,0.029506150000000002,0.03050467,0.03153416,0.032186099999999995,0.0316817,0.029508679,0.026871242,0.02523919,0.0237632319,0.0227598146,0.0229422391,0.022818424599999998,0.0227237707,0.023879063000000002,0.0207573963,0.0203217252,0.019737909400000003,0.018816335,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.00303195,0.00635626,0.01207944,0.02321719,0.04133868,0.06016976,0.07294242000000001,0.080883601,0.08639012399999998,0.087907516,0.08879568,0.08960743100000002,0.09233574600000001,0.09611112499999999,0.09805541699999999,0.101256527,0.106306337,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,refining,biomass liquids,corn ethanol,0.0,0.00184168,0.0259932,0.02923433,0.03191485,0.03441743,0.03830052,0.04627541,0.06114393,0.07681326,0.087444304,0.09381808,0.09868521499999999,0.09927521199999999,0.100252337,0.10234731500000001,0.10626242,0.11282595000000001,0.11706187100000001,0.122522148,0.12971802500000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,refining,coal to liquids,coal to liquids,0.00422773,0.0144827,0.0207611,0.0203876,0.019987995999999997,0.019001966999999998,0.017290632,0.016485834,0.021029813,0.031327205,0.042510861999999996,0.053400216300000004,0.0667110024,0.0799925273,0.1000205779,0.126859106,0.161344235,0.196812135,0.22472143700000002,0.255921159,0.29600772100000006,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,refining,gas to liquids,gas to liquids,0.0,0.00138131,0.00339045,0.00332947,0.0036216900000000003,0.004267706,0.006103140999999999,0.011607216,0.024258588,0.041279917,0.055961466,0.0681394301,0.0798672158,0.08896117029999999,0.100232343,0.11303066,0.128413151,0.143832915,0.155025791,0.168026972,0.18457571,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,refining,oil refining,oil refining,3.22469,2.78458,2.81513,3.007781,3.18148,3.282975,3.335311,3.327487,3.3008419999999994,3.224487,3.1195486,3.0814920000000003,3.04397245,3.01526175,2.9722912999999997,2.8939553,2.7051708,2.6736121,2.5746523999999997,2.4742555,2.3683827999999996,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.00167115,0.00376241,0.01010977,0.02643462,0.056794910000000004,0.08953989,0.112626372,0.126389249,0.1376172732,0.14299980360000003,0.149107653,0.155595346,0.16601034,0.17690391,0.18215365,0.188930137,0.199360291,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,refining,biomass liquids,biodiesel,0.0,0.0563401,0.372027,0.06680057,0.0667611,0.06984771000000001,0.069594359,0.06987955946999999,0.06654252130741001,0.056066323014599996,0.043591607606879995,0.03411232334185,0.03450684535003,0.03701337791072,0.04737167855517,0.05122185070094,0.0485270167303,0.044485523736279994,0.0354753174763,0.035209935280099997,0.037333622459,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.00850989,0.018972740000000002,0.05034517,0.12985056,0.27377994,0.42530919,0.52970948,0.58983503,0.636273516,0.653976165,0.67097338,0.68764982,0.72169546,0.7610249600000001,0.77928005,0.80607469,0.85023163,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,refining,biomass liquids,corn ethanol,2.51187E-4,0.070446,0.114563,0.12602180000000002,0.13146829000000002,0.13591482,0.15692377,0.20557667000000002,0.28328873,0.35979207,0.41355179999999997,0.4446727240000001,0.46498806600000003,0.47091990699999997,0.47546833999999993,0.49961745,0.55425612,0.5909131,0.63135151,0.67129848,0.7216887999999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,refining,coal to liquids,coal to liquids,1.67391E-4,0.0,0.0,0.0,6.07102E-4,0.002223566,0.010061851,0.03961113199999999,0.11494850000000001,0.221194471,0.318651411,0.398304212,0.4927869083,0.5930425582,0.759127375,0.9837309,1.27075213,1.5545148,1.7598058300000001,1.98807444,2.29547052,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,0.00112535,0.003976830000000001,0.01712039,0.06366064,0.17204144,0.3110902,0.426302177,0.509690643,0.5937302969,0.663081963,0.7590430300000001,0.86957787,1.0021556399999998,1.1296254300000002,1.21300222,1.30798678,1.43452125,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,refining,oil refining,oil refining,22.912,25.917,23.1086,23.862347,24.189239,24.098024,23.866531000000002,23.495007,23.328217,22.937099000000003,22.551039999999997,22.508151899999998,22.5195262,22.5657558,22.5017584,22.094960999999998,20.811861999999998,20.756819,20.080888,19.341735,18.520276000000003,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,1.51273E-6,4.298019E-5,4.7062728999999997E-4,0.00127534281,0.00255212859,0.00383719537,0.0047189867650000005,0.00531395606,0.005889658592300001,0.00628317596,0.0066651266,0.0069945827,0.0073158462,0.007903632,0.0081771455,0.008558233200000001,0.009101372600000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,refining,biomass liquids,biodiesel,0.0,0.0,0.00142311,0.01503641,0.0154339,0.017496922999999998,0.019308204,0.018591841,0.017098870000000002,0.0158705146,0.015263873700000001,0.014829992100000002,0.014532227180000001,0.0145025862,0.014423741300000001,0.0144111562,0.015431366,0.013985808999999998,0.0141248797,0.0140709988,0.013738033899999998,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,7.7032E-6,2.1517775E-4,0.00232888709,0.00624818454,0.01230200683,0.01825267589,0.022250209549999997,0.02486059323,0.027250993816,0.02868630749,0.029913203000000003,0.030857475000000002,0.03181482,0.034028916,0.035014714,0.03653937,0.038837023000000005,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,refining,biomass liquids,corn ethanol,0.0,0.0,0.0,2.79179E-4,2.9978970000000003E-4,7.218973E-4,0.0037555974000000004,0.0088956256,0.0163980809,0.0233378147,0.0278018003,0.03061413093,0.033057723936,0.0343916603,0.035959528000000004,0.037591497,0.038978500000000006,0.042410142,0.044133905,0.046344756,0.049133167,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,3.38718E-7,2.5646430999999997E-5,5.298637799999999E-4,0.001913393296,0.004972147454,0.009053486527,0.012659018458999999,0.0159678226908,0.020685648864,0.02642141295,0.034713434599999995,0.0447390046,0.055619441,0.069293544,0.079366867,0.09188141899999999,0.10866739899999998,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,6.27864E-7,4.5271616E-5,8.90778711E-4,0.0030699206650000002,0.007470634687000001,0.012813603125,0.017078456732,0.020540742538,0.024753570997,0.02892318428,0.0339822232,0.039148876,0.044110688,0.050636334000000005,0.054924401,0.060382557,0.06755268,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,refining,oil refining,oil refining,3.48201,0.669215,0.865545,0.86090901,0.8563177780000001,0.8407254749999999,0.870838472,0.887220484,0.9020730509999999,0.904176099,0.903722765,0.920870148,0.9439155507,0.9682661000000001,0.98511656,0.9810711300000001,0.9273268,0.94502532,0.9217190600000001,0.8933766700000001,0.8605019700000002,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,5.91129E-4,0.001440779,0.002678435,0.004730881,0.007836774000000001,0.011230649,0.013973534000000001,0.016045296,0.0178224107,0.018988142799999996,0.0200331496,0.0210272809,0.022488079000000005,0.024174814,0.025313427,0.026714121,0.028487178,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,refining,biomass liquids,biodiesel,0.0,0.0,5.02271E-4,0.019383605,0.020115394,0.020176884,0.0193735874,0.0175193825,0.01537225025,0.0134339390253,0.0117303835182,0.01048486433,0.010169164195,0.01019951389,0.010838053186,0.011125136053000001,0.01113281569,0.010337380745,0.008998664666,0.008522400109,0.008365487161,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.00301017,0.0072611099999999994,0.013378270000000001,0.02337322,0.03809045,0.053759430000000004,0.06605101,0.07493609700000001,0.082175382,0.086436309,0.08983126200000001,0.092845888,0.097863034,0.104122726,0.10836425200000001,0.114010924,0.121516368,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,refining,biomass liquids,corn ethanol,0.0,0.0,1.25593E-4,0.003412154,0.0070871960000000005,0.013022421999999999,0.0217691657,0.0346666864,0.0509458271,0.06584048070000001,0.07679627701,0.084474766,0.090133987,0.093128511,0.096209288,0.10022039199999999,0.10686128700000001,0.11467374500000001,0.120607168,0.12711556000000002,0.134043011,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,2.05136E-4,8.38486E-4,0.002307122,0.005844719,0.01339248,0.024556414,0.036843741,0.049986093100000004,0.06576803776,0.08258897450000001,0.10478581249999999,0.132582992,0.169448717,0.210717172,0.24665876199999998,0.287605927,0.337388061,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,3.8025E-4,0.0014974900000000002,0.003960109999999999,0.009531342,0.020385755999999998,0.034976213,0.049434626,0.0631151043,0.0772368757,0.0896225352,0.103222206,0.11759359,0.135165257,0.15421286300000003,0.16982175900000002,0.18789216700000003,0.209267535,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,refining,oil refining,oil refining,1.45339,1.73556,1.75716,1.921325,2.102902,2.2854530000000004,2.429933,2.537438,2.638265,2.7090471,2.7587342,2.8296368,2.89665877,2.9569584,3.0005633,2.9984372,2.8720404000000004,2.8968336,2.8301212,2.7490654,2.6577001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,8.41435E-5,1.986777E-4,4.796904E-4,0.00118535,0.0024734978999999997,0.0038538315,0.0048437455,0.0054791875000000006,0.006022361060000001,0.0063255287,0.0066534358,0.0070013571,0.0075641044000000004,0.008136813900000001,0.0084821466,0.008901218699999998,0.009475435800000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,refining,biomass liquids,biodiesel,0.0,2.09288E-4,0.004981,0.00335069,0.003533965,0.00364627,0.0034972230000000003,0.0031818390680000003,0.002782913440647,0.002245970355049,0.001748661999492,0.001434972402409,0.001511806338655,0.0016653591779329999,0.002089024943846,0.0022644125367250003,0.00221500569002,0.002023245945337,0.001682201452418,0.001673438679618,0.001750956677535,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,4.28479E-4,0.001001514,0.0023904440000000002,0.005827129,0.011933652,0.018319955,0.022792686,0.025566061,0.0278220088,0.0288932302,0.029906650000000003,0.030922170000000002,0.032873356,0.035000756,0.036284998,0.037976043,0.04041241,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,refining,biomass liquids,corn ethanol,0.0,4.18976E-5,2.92982E-4,4.49135E-4,9.11385E-4,0.0016318069999999999,0.0034110370000000004,0.006820512,0.0113994338,0.0155458251,0.0183658712,0.020094222380000006,0.0212555844,0.0217945724,0.022517945499999997,0.023998929000000002,0.026696031,0.028958781,0.031060363,0.03319028,0.035602691,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,2.97796E-5,1.164105E-4,4.565345E-4,0.0017157564999999999,0.0048769707,0.009309766,0.013461533500000001,0.01710831926,0.02153336402,0.02631482283,0.0338808317,0.044021322700000004,0.057456058,0.070926707,0.081544439,0.093489673,0.109002784,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,5.52009E-5,2.0801940000000002E-4,7.783514E-4,0.0027616214000000003,0.0073092139,0.013109933800000001,0.0180158104,0.0218346587,0.02579251255,0.02918718301,0.0336720535,0.0388114106,0.045249854,0.051487357,0.056075008,0.061301289999999994,0.06790443199999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,refining,oil refining,oil refining,0.911975,0.957761,0.96387,0.967146,0.9851175600000001,0.9884283699999998,0.9815870099999999,0.97035788,0.96904796,0.9617167499999999,0.95619867,0.9646234709999999,0.97500469,0.98675096,0.9937421200000001,0.9864227400000001,0.941839,0.9498021,0.9290350199999999,0.90340953,0.8725489200000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.0114025,0.0261097,0.045961600000000005,0.07323640000000001,0.111421,0.15708991,0.20484766000000001,0.25352591,0.29810496200000003,0.335677233,0.369956151,0.4009819,0.42728439,0.48549547,0.5235124099999999,0.56768337,0.62044511,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,refining,biomass liquids,cellulosic ethanol,0.0,0.0045625,0.00761808,0.051566719999999996,0.10937415,0.18233416000000002,0.27894176,0.40839161999999996,0.58155,0.776987886,0.9763177869999999,1.1811327200000001,1.3661726800000003,1.51842875,1.6512616500000001,1.76684688,1.8604252399999999,2.0913018,2.2410319,2.4227556999999997,2.6470190000000002,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,0.00328226,0.01183397,0.029120230000000004,0.061185869999999996,0.12072814000000001,0.21282535,0.33762017,0.500386228,0.688140274,0.889408118,1.1256058770000001,1.3981807,1.6978168799999998,2.2180560700000003,2.64846763,3.1373686000000003,3.71105638,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,0.00608415,0.02116949,0.05015481,0.10064930999999999,0.18623851000000002,0.30641455,0.45282068000000003,0.62232807,0.7915062159999999,0.9450847069999999,1.0971641500000002,1.24396844,1.3778643099999999,1.63076764,1.82117848,2.04002717,2.2904674199999997,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,refining,oil refining,oil refining,2.4402,4.78257,6.16306,8.03044,11.13892,14.0794,16.78423,19.16155,21.56369,23.655105,25.397905,27.205578600000003,28.691561999999998,29.913567999999998,30.975181999999997,31.419693,29.918236999999998,30.990778999999996,30.420229,29.649500999999997,28.835282,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.00210182,0.00548576,0.00979058,0.015484730000000002,0.02319404,0.0316282,0.039255189999999995,0.046504845999999996,0.052734578399999996,0.057195512,0.060633478000000005,0.063195359,0.065012632,0.07038965999999999,0.073402571,0.077014463,0.081701336,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,refining,biomass liquids,biodiesel,0.0,0.0,0.0014231,0.03571979383,0.028794666,0.0421119307,0.058979768,0.11506724400000001,0.189268208,0.266812821,0.3379196761,0.36426287999999996,0.38546282,0.40492657000000004,0.42057811999999994,0.44746858,0.46668115,0.48989164,0.5063931700000001,0.52850073,0.55936382,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.010703,0.0276333,0.04891,0.0766384,0.1131569,0.15203642,0.18606063,0.21710721,0.24255058499999999,0.259525506,0.2713105,0.27901107,0.28353283,0.30367412,0.31455247,0.32885560999999996,0.34859046000000005,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,refining,biomass liquids,sugar cane ethanol,0.0,0.0,0.0,5.54333E-4,9.54855E-4,0.00214999,0.00340785,0.00520087,0.0084413,0.0114107,0.0138993,0.0165248,0.0185343,0.0196917,0.02319910039807,0.027254402476876,0.031207239556589002,0.048458945307096,0.0479599337366,0.05667099063402,0.0686541675818,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,8.68303E-4,0.0038278130000000002,0.009722456,0.020598623,0.040544743,0.06943366200000001,0.104766991,0.15098820100000002,0.205211597,0.26157898999999996,0.325980695,0.39826769900000003,0.476639218,0.60491222,0.7130687800000001,0.83405092,0.9771770799999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,0.00160953,0.00683017,0.01671431,0.03384191,0.06251661,0.10021845,0.141616424,0.18952708899999998,0.2378737332,0.279806226,0.31948107699999995,0.356041874,0.38866607000000003,0.44788318,0.49304936,0.5444580099999999,0.6045704700000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,refining,oil refining,oil refining,1.35552,2.68801,3.00853,3.522564,4.327226,5.317804000000001,6.175982,6.851800999999999,7.461876999999999,7.9087130000000005,8.2054045,8.567793400000001,8.8287561,9.0135377,9.1204811,9.054889600000001,8.5037703,8.5978732,8.3128463,7.975209099999999,7.6463934,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00647301,0.02091933,0.036667809999999995,0.04695919,0.05140311,0.05462644,0.05450282,0.056277600000000004,0.05964947599999999,0.064460128,0.06842609,0.069298178,0.07018466599999999,0.07318087100000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0315265,0.1000261,0.172975,0.2197439,0.2394785,0.25308349999999996,0.25063529999999995,0.25438718,0.26382227999999996,0.27970517,0.293737,0.29604936000000004,0.29919609999999996,0.311932305,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00758491,0.029858219999999998,0.06042225,0.08472977,0.09771508999999999,0.11110683,0.12113975,0.15299958,0.205358801,0.26949900000000004,0.3222771,0.34886578999999995,0.37349128,0.418683925,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0119469,0.0439944,0.0840231,0.1128549,0.1265473,0.1382446,0.14284116,0.15852842,0.18212698300000002,0.20971086,0.23151998000000001,0.24007714,0.248071251,0.265065404,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,refining,oil refining,oil refining,10.4289,10.201,8.43984,8.13779,7.78963,7.57456,7.33178,6.9853700000000005,6.632911,6.242984,5.9051279999999995,5.66104,5.458508999999999,5.26068,5.048696,4.803729799999999,4.3626508,4.2319,4.0172839,3.8103113,3.5946303,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.00165063,0.00377784,0.00705758,0.01259977,0.02120251,0.03060882,0.037998666,0.043778767,0.0489651364,0.052381925999999995,0.055749619,0.058981898000000005,0.06220578900000001,0.067453627,0.07075509499999999,0.074682675,0.080075595,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,refining,biomass liquids,biodiesel,0.0,0.0,0.0,0.0284996,0.0310837,0.03566805,0.04059682,0.045311180000000006,0.05007751,0.054929179999999994,0.059752336999999996,0.062395019999999995,0.0647107904,0.0670277775,0.069154235,0.07189553100000001,0.07704581999999999,0.07771661099999999,0.080863883,0.08404389400000001,0.087328228,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.00840543,0.019047969999999997,0.03525844,0.06224763999999999,0.10301174,0.14644219,0.17955846,0.20440178,0.225693803,0.238386092,0.24987843699999998,0.26029718999999996,0.27074617,0.29054578000000003,0.30292701000000005,0.31876708000000004,0.34162284,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,4.0583E-4,0.001541096,0.004403087,0.011437031,0.026592672999999997,0.048730716,0.072256649,0.0980121468,0.12981465879999998,0.1636723894,0.210732919,0.270753173,0.341623313,0.43329002,0.51149795,0.60093157,0.7157228,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,7.52266E-4,0.0027548900000000003,0.007553905999999999,0.018631501,0.040427119,0.06936229299999999,0.09704632299999999,0.123876593,0.1524035429,0.17740785499999998,0.20673259900000002,0.23873086500000001,0.27225792000000004,0.31630230000000004,0.35149558999999997,0.39201442,0.44293193999999997,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,refining,oil refining,oil refining,2.87684,3.75661,3.69399,3.987252,4.333069999999999,4.635941,4.890972999999999,5.0710489999999995,5.238333000000001,5.343824,5.400860099999999,5.544057,5.7046236,5.8473209,5.9897833,6.055725499999999,5.813655499999999,5.958032899999999,5.8755107,5.7529651,5.6254441,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.00617366,0.0163602,0.03197518,0.05829363,0.09925686,0.1464322,0.18659976,0.2208798,0.250426499,0.272747515,0.294967926,0.3158731,0.3356106,0.37156963,0.39323922,0.41874638000000003,0.45607622999999997,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.0314378,0.0824013,0.1595802,0.28774849999999996,0.4818743,0.6998322,0.8804487999999999,1.02927965,1.1522031099999999,1.239145,1.32041426,1.3931078599999998,1.4604499,1.599977,1.6831948399999999,1.7870876900000001,1.9457838499999998,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,0.00177711,0.00769988,0.0212935,0.05219339,0.1157377,0.20932793,0.311515465,0.42555836999999996,0.5551592909999999,0.693464789,0.876282538,1.09734427,1.3456656599999999,1.70018139,1.9786004799999999,2.29102685,2.70747659,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,refining,gas to liquids,gas to liquids,0.0,0.0,0.0475507,0.0466954,0.04858974,0.05562451,0.07129839,0.10897424,0.18936671,0.30454362,0.42127792999999997,0.537576304,0.652808827,0.7535958979999999,0.86449954,0.9761793599999999,1.08369661,1.24828425,1.36495157,1.49859951,1.67811384,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,refining,oil refining,oil refining,6.81066,11.6328,14.6389,16.25856,17.80137,19.522100000000002,20.93949,21.94081,22.751559999999998,23.246361999999998,23.512677999999998,24.098208,24.455682499999998,24.799192,25.057263999999996,24.871285,23.346573,23.629137,22.908813,22.078915000000002,21.356566,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,7.39054E-4,0.00179759,0.003489706,0.006281854,0.010624202999999999,0.016142621,0.021944775,0.028184426,0.0341775461,0.0404255004,0.0471341403,0.054287362000000006,0.061812172,0.07299059100000001,0.08168049000000001,0.09160443099999999,0.103332229,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.00376344,0.00905932,0.01742278,0.03102021,0.05159756,0.07709481,0.10324843,0.13065991600000001,0.156296099,0.18247108199999998,0.209812305,0.23844423099999998,0.268219494,0.31370918000000003,0.34920958,0.39074745,0.44085146999999997,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,2.12739E-4,8.28224E-4,0.002301365,0.005580182,0.012319988,0.023263246,0.03778175,0.0572173701,0.0803113874,0.1093839905,0.1475363046,0.195872431,0.254770807,0.341312093,0.41910797400000005,0.510420244,0.62189848,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,3.94344E-4,0.001480076,0.003950248999999999,0.009113861000000001,0.018805642,0.033107096,0.050216413,0.0706503614,0.09181135609999999,0.1148560619,0.14110143400000003,0.170093022,0.20133036099999999,0.24678876300000002,0.285392038,0.33014118,0.38232154999999995,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,refining,oil refining,oil refining,0.4406,0.696632,0.915302,1.078604,1.271047,1.465768,1.6651420000000001,1.8638930000000002,2.093094,2.3393006,2.5941340999999998,2.91084436,3.19765284,3.5155577,3.8491778,4.1319515,4.1435916,4.486411,4.5922486,4.6467357,4.6682331,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.0,0.00144148,0.0051624999999999996,0.013253019999999999,0.02719862,0.04231456,0.05315481,0.060381987,0.067819501,0.0730903949,0.079093579,0.084910016,0.091147594,0.100014705,0.10484668899999999,0.11123653700000001,0.120162767,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.0,0.00721218,0.0256037,0.06500771999999999,0.1311283,0.20111738,0.25023442,0.28191061,0.31310441,0.333220634,0.35462862100000003,0.3743108,0.39601854,0.43027057,0.44867081,0.47473813,0.51268335,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,0.0,8.37978E-4,0.004075514,0.013558036,0.035076231,0.064520916,0.090681049,0.113516239,0.145066509,0.1800656958,0.23290313499999998,0.298136648,0.37221826,0.46064088999999997,0.5251708399999999,0.60352779,0.70794475,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,0.0,0.00147823,0.00690713,0.02184249,0.05279958,0.09133718,0.12224026999999998,0.146008513,0.173995726,0.19876521609999998,0.230070859,0.26250327900000003,0.29555381000000003,0.33657276999999997,0.36323558,0.3967597,0.4407468200000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,refining,oil refining,oil refining,9.63678,6.10564,6.46258,6.658665,6.491338,6.703614999999999,6.833138,6.863961000000001,6.862928,6.768008,6.655818199999999,6.650542,6.6951321,6.7501501,6.773461600000001,6.6659648,6.2504656,6.3003872,6.1068951999999985,5.8933969,5.6546278999999995,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.0,6.32217E-4,0.001899566,0.003913223,0.006896890000000001,0.010761473,0.014222713000000001,0.016937578,0.019398862,0.021586344200000003,0.023880779300000002,0.0262981922,0.029636306999999997,0.032972062999999996,0.035776757,0.038944521999999995,0.042521453,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.0,0.00316318,0.00942721,0.01923441,0.033379980000000004,0.05126919,0.06694251000000001,0.0788551,0.089206101,0.09797834700000001,0.106771583,0.11581862700000001,0.128668792,0.141791752,0.153011306,0.16614081299999997,0.18137745899999996,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,refining,coal to liquids,coal to liquids,0.16056,0.0857208,0.0960599,0.0943321,0.0866785,0.084976828,0.071695635,0.051860609,0.03427236,0.027432098,0.028927141000000003,0.032891514,0.0431907215,0.0554292493,0.07186554640000001,0.092772299,0.12193031900000001,0.15276449,0.181592391,0.214344557,0.252713128,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,refining,gas to liquids,gas to liquids,0.0365822,0.06157,0.0658398,0.0646556,0.0594097,0.058639834,0.050630115,0.03913508,0.03054952,0.030560726000000003,0.035740731,0.041516857,0.050728273000000004,0.059879982799999995,0.0702944493,0.08163706600000001,0.09635744500000001,0.11114157899999999,0.124511913,0.13966431,0.156533754,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,refining,oil refining,oil refining,0.581312,0.835562,0.799628,0.9464919999999999,1.029815,1.1853620000000002,1.336535,1.480349,1.6073179999999998,1.696166,1.7506531,1.8294865999999999,1.9004085,1.9672585500000002,2.03051358,2.0680538,2.021512,2.069932,2.0605815,2.0325344,1.9826710999999997,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.0,0.0,9.41959E-4,0.002999048,0.006002169,0.009332999,0.011791355,0.013453540000000002,0.014642867999999998,0.015553277,0.0162245008,0.0168461952,0.017660779,0.018746415,0.019370027,0.0201461739,0.0212796181,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,refining,biomass liquids,biodiesel,0.0,0.0,0.0,0.00409114,0.00306152,0.00356388,0.00422425,0.0048789969999999995,0.0055976737,0.00624907695,0.0066884666999999995,0.006950511499999999,0.0072582815,0.0075830184,0.00797928874,0.008346286,0.00873030585,0.00883862711,0.008937177099999999,0.00921221539,0.009573163229999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.0,0.0,0.00465577,0.014674689999999999,0.02891405,0.04434007,0.055497069999999996,0.06283058,0.06774493,0.071045063,0.072914446,0.074419931,0.076833612,0.08071875799999999,0.082927067,0.085996956,0.090783753,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,refining,biomass liquids,sugar cane ethanol,0.0,0.0,0.0,0.00368817,0.0,0.0,7.4467E-4,0.00187056,0.00324236,0.00429119,0.00389831,0.00317688,0.00350067,0.00491389,0.00681107,0.008780570259485,0.010374724274760001,0.011361211249601,0.010514583229333,0.01293451326107,0.01772834513395,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,0.0,0.0,9.54865E-4,0.0040661970000000006,0.010494544,0.019962894,0.02886705,0.036909543,0.046069893,0.058811312,0.0765286073,0.099620763,0.127596759,0.158385352,0.18337714900000002,0.21203146,0.24989625399999998,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,0.0,0.0,0.00160119,0.00650176,0.01575057,0.02814761,0.03869186,0.04715127,0.055299664000000005,0.064622608,0.07535984880000002,0.08737133600000001,0.10065781700000001,0.11520075500000002,0.126297235,0.139039222,0.15537112,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,refining,oil refining,oil refining,0.820451,1.25366,1.65668,1.718454,1.524086,1.6480860000000002,1.752623,1.827788,1.8903569999999998,1.935873,1.9591207,2.0304361,2.0872865,2.1562316,2.1907318599999996,2.1946174999999997,2.1057188,2.1369159,2.1014410999999997,2.0486636000000003,1.9822908,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,7.15548E-4,0.0020609,0.0037727679999999997,0.0062303459999999995,0.009782022,0.013842683,0.017214633,0.019993239,0.022307199299999997,0.0238659341,0.0252440449,0.026483195,0.027712988,0.030216895,0.031818789,0.033796777,0.03661035,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,refining,biomass liquids,biodiesel,0.0,0.0,0.00322299,0.01094650141774,0.009326450299999999,0.009292790503000001,0.008301413163000001,0.0073427354510600005,0.0065924023103,0.00587126,0.0051734403245389995,0.004771510205256999,0.00471903033069,0.004628351075302,0.005040520645693,0.005129660634364,0.004703315048721,0.00537516,0.004396550837804,0.004279570872375,0.00444570056434,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.00364375,0.01037478,0.018835739999999997,0.03080355,0.04763154,0.0663735,0.08146503,0.09336426699999999,0.102753586,0.10850565000000001,0.11310716400000001,0.116931873,0.12072161000000001,0.130212199,0.13624514100000001,0.14425527999999999,0.156195361,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,refining,biomass liquids,corn ethanol,6.27862E-4,5.85962E-4,0.00280441,0.007124430000000001,0.01092892,0.017896580000000002,0.02653242,0.036708439999999995,0.04838676,0.058986322,0.066375775,0.071120028,0.074105678,0.076502603,0.078625114,0.082842132,0.090432058,0.094598455,0.10264831499999999,0.109858705,0.117182419,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,2.64388E-4,0.001341542,0.003476905,0.007838154,0.016472550000000002,0.029578237,0.044386885,0.0615132102,0.0814948559,0.1023718688,0.128768981,0.160791947,0.197888374,0.25115078,0.29629634000000005,0.347645893,0.41353245,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,4.90083E-4,0.002390212,0.0059708109999999995,0.012839038,0.02525442,0.042373998999999996,0.059764601,0.0775283716,0.09530302360000001,0.11063439389999999,0.126779278,0.143163657,0.15956748,0.184486155,0.204051907,0.22673029900000002,0.25567623,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,refining,oil refining,oil refining,0.836427,1.39582,1.82989,2.132769,2.364877,2.701146,2.957307,3.1334640000000005,3.272317,3.369846,3.4246854000000004,3.5169360000000003,3.5826454,3.6401034,3.6839034999999996,3.6719363,3.4744305000000004,3.5269651,3.4418842000000005,3.3415917,3.2546222000000005,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,8.8036E-4,0.0021980159999999997,0.003959422,0.006390877,0.009970328,0.014525539,0.019546089,0.025238584,0.0311367706,0.0369582881,0.0429715337,0.048999786,0.054735959,0.065564349,0.073598002,0.08289803000000001,0.094372508,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.00448301,0.01107522,0.01978116,0.03162152,0.048579040000000004,0.06960204,0.0921618,0.117058225,0.14223523700000001,0.166610171,0.191152697,0.21526171800000002,0.23774307299999997,0.28192811,0.31473247,0.35364828,0.40267191,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,2.53415E-4,0.001019559,0.002553178,0.00541071,0.01098294,0.020101957,0.032934711,0.051122961300000005,0.0740775534,0.10119762970000001,0.13514041040000002,0.17603125300000003,0.22296008,0.305524751,0.377803388,0.463444857,0.57057142,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,4.69742E-4,0.001821232,0.0043928,0.008892711000000001,0.016903484,0.028809999000000003,0.043897940999999996,0.0629590199,0.0839911519,0.10554087810000001,0.12899543900000002,0.15347645299999998,0.177789638,0.221499942,0.25725939200000003,0.29920232599999996,0.34982644,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,refining,oil refining,oil refining,0.222211,0.551145,0.631771,0.8246220000000001,1.063346,1.325631,1.56088,1.761634,1.9757019999999996,2.1881088,2.4012789,2.67610671,2.9597312000000002,3.2529976000000005,3.5573069,3.7966785,3.7708198,4.1216715,4.2159953,4.2662608,4.3115551,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,5.7496E-4,0.0013556520000000002,0.0027168189999999997,0.005600475,0.010550304,0.015990764,0.019700936,0.021713263,0.0231447238,0.023378410999999998,0.023906189699999997,0.024717751,0.026351059,0.027441789,0.027699344000000004,0.028104143,0.029131931,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,refining,biomass liquids,biodiesel,0.0,4.60479E-4,0.0125574,0.013047947,0.01344001,0.014027959999999999,0.014698804999999999,0.015694633439999998,0.0167831017221,0.0169188192037,0.016033767201999997,0.015118127700000001,0.0147232685,0.0142715995,0.01427477575,0.014274281459,0.014119267540000001,0.01322045647,0.0125261296,0.0122711988,0.0121826151,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.00292784,0.00683371,0.01356139,0.02760477,0.05106555,0.07621641,0.09290803,0.101517175,0.107147777,0.107073084,0.107733711,0.10934737,0.11458339,0.1180743,0.118507935,0.119896998,0.12421384399999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,2.14984E-4,8.417660000000001E-4,0.002593207,0.007965393000000001,0.020314671,0.037569565,0.05267255,0.06415152860000001,0.0765247868,0.0871012663,0.1064664324,0.13401311999999999,0.170646229,0.200586994,0.219711468,0.239236537,0.267469709,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,3.98505E-4,0.001504165,0.0044410000000000005,0.012901837,0.030664486,0.053230506999999996,0.071017499,0.08283942650000001,0.0933765594,0.0994175422,0.10883246699999999,0.120372011,0.135565713,0.14669451,0.152352568,0.158577633,0.168550968,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,refining,oil refining,oil refining,2.09484,4.16594,4.18048,4.312618,4.476801,4.585812,4.609094999999999,4.550758,4.436749,4.261191999999999,4.0552628,3.88918533,3.7138089,3.5416819000000004,3.3659758,3.1669326000000004,2.8840726999999995,2.7512008,2.5757922,2.4097568000000003,2.244621,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.00172561,0.0042184100000000006,0.007939960000000001,0.014025570000000001,0.02337259,0.03469559,0.045556211,0.056077173999999994,0.0665819839,0.075974347,0.085786318,0.096243865,0.10980819900000001,0.126557087,0.141305076,0.15857469300000002,0.179256096,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,refining,biomass liquids,biodiesel,0.0,0.0,0.0227284,0.021472307,0.023894775,0.031476369,0.049492209999999995,0.10441813999999999,0.18511986,0.28378505,0.385667973,0.435806822,0.487247311,0.54093393,0.59976682,0.68478877,0.7890862599999999,0.88622358,0.98403719,1.10101903,1.24327617,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.0087872,0.021258779999999998,0.03965294,0.06928861,0.11357999999999999,0.16587821,0.21473183,0.26065601,0.30520370799999996,0.343765919,0.38267279700000006,0.42335453999999995,0.47664496,0.54408471,0.6041522899999999,0.67639893,0.76476163,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,refining,biomass liquids,sugar cane ethanol,0.0,0.001465,0.0136036,0.0190464,0.0217537,0.0280635,0.0374198,0.053818,0.0782861,0.0938534,0.0958947,0.092317300364593,0.094362500727491,0.093920501752229,0.10737200320212699,0.120735012626151,0.14372465937848,0.1601232047015,0.15033535685684998,0.1607833307942,0.173869472328,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,0.00153318,0.00598307,0.01585794,0.03722139,0.07961615,0.14389827,0.220632001,0.313106232,0.42494097950000004,0.5475407,0.7013629610000001,0.88938967,1.14017932,1.4453668999999998,1.7297154300000002,2.05292974,2.432754,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,refining,gas to liquids,gas to liquids,0.0,0.0402773,0.0363013,0.0356484,0.03742168,0.04266577,0.05378827,0.07904401,0.13161472000000002,0.21014756,0.2977348,0.39239458,0.493138553,0.585952873,0.684157141,0.78615597,0.91014178,1.0569319099999999,1.18723227,1.33557742,1.5033808700000002,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,refining,oil refining,oil refining,3.13926,6.26521,8.23937,9.29505,10.70326,12.10424,13.332619999999999,14.336840000000002,15.257712,16.027271,16.658323,17.4842663,18.2653125,18.9953026,19.636914400000002,19.969693999999997,19.422256,19.933996000000004,19.760281,19.419252,18.964679,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,1.50192E-4,4.86827E-4,0.001243444,0.00327476,0.006950077000000001,0.010960174,0.013617282,0.0151386648,0.016459002759999997,0.0171521011,0.0181703743,0.0196015165,0.021162206,0.022709085000000004,0.023567796000000002,0.024561629499999998,0.026084099,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,7.64816E-4,0.002449021,0.006188697999999999,0.016081777999999998,0.033505867,0.052065125000000004,0.06408138,0.070709211,0.0761470506,0.0784594888,0.08170783200000001,0.08648046599999999,0.091882015,0.097630745,0.10080233999999999,0.104790932,0.11125570499999998,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,4.32334E-5,2.389545E-4,8.974365E-4,0.0032793184000000004,0.008956592,0.0167969045,0.0232962377,0.028268333580000003,0.03432992638,0.040714812399999994,0.052043977100000006,0.068607736,0.087349065,0.10518659100000002,0.118095067,0.132208385,0.151925916,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,8.01395E-5,4.2539819999999997E-4,0.0015295633,0.005281038,0.0134481378,0.023707606,0.0313794707,0.036535161499999996,0.04180863869,0.045971547300000005,0.0522532844,0.06040403,0.068750609,0.07651759699999999,0.08161835199999999,0.08729970599999999,0.095221173,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,refining,oil refining,oil refining,1.07078,1.83458,1.98546,2.0034632,2.0235614,2.0377015,2.0173703,1.9747085000000002,1.9173935000000002,1.8410650999999998,1.7563362900000001,1.70282456,1.6567203099999999,1.62579119,1.59483564,1.561505,1.4540921,1.434893,1.3825816999999998,1.3240368500000002,1.25747646,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.00258602,0.0060072300000000006,0.01363496,0.03121415,0.06281621,0.09702548999999999,0.12107238000000001,0.137062404,0.151366701,0.16063012100000001,0.172074324,0.186312417,0.20812438,0.2264006,0.24145540000000001,0.25939005800000003,0.28357203,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,refining,biomass liquids,biodiesel,0.0,0.0123896,0.0312251,0.0400942675829,0.039476358469,0.04868333851,0.07803222654,0.114528417294,0.1381713107824,0.13654757592436,0.1229660263177,0.12010287366,0.1366601922,0.1682852594,0.2115523632,0.24495952,0.278954973,0.275552118,0.300643121,0.320774422,0.34075544999999996,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.0131686,0.030285600000000003,0.0679862,0.1535984,0.3034018,0.46163479999999996,0.5701393,0.63971278,0.6990672720000001,0.733081654,0.7724469899999999,0.82158791,0.90319977,0.9731305600000001,1.03241107,1.10645316,1.20958111,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,refining,biomass liquids,corn ethanol,0.0,0.325437,1.03105,1.120621,1.1825609,1.2117898,1.2335205,1.2736906000000001,1.3820162,1.5012565,1.5693116,1.5811082,1.6005447899999998,1.56087695,1.53136895,1.5329382999999999,1.5875284,1.6453223000000001,1.6860587999999996,1.7376519300000002,1.80818917,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,0.00153717,0.0057636399999999996,0.02007525,0.06570714999999999,0.17568034999999999,0.33052829,0.471891936,0.5979416790000001,0.7503227227,0.9140994539999999,1.169919721,1.5177889100000002,1.98397094,2.39597199,2.7533924599999997,3.1560536200000002,3.6819624500000003,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,0.00284938,0.01030496,0.03430297,0.10617139,0.26436217,0.46693138,0.63370047,0.765050679,0.900151414,1.014803362,1.16421668,1.33920808,1.56261505,1.74484431,1.89742878,2.07202272,2.2947964499999998,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,refining,oil refining,oil refining,31.688,38.9652,34.1005,35.15057,36.21181,36.717119999999994,36.85216,36.53565,36.27529,35.651507,34.843958,34.6910175,34.668908699999996,34.8000835,34.776052,34.393447,33.056228,32.787189,31.942168000000002,30.954418000000004,29.809768000000002,EJ, GDP by region scenario,region,1990,2005,2010,2015,2020,2025,2030,2035,2040,2045,2050,2055,2060,2065,2070,2075,2080,2085,2090,2095,2100,Units, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,29289.6,51313.2,69017.4,102827.0,126629.0,152896.0,183239.0,219931.0,263998.0,320528.0,391868.0,486011.0,604843.0,753571.0,937063.0,1154470.0,1405110.0,1689480.0,2017880.0,2396110.0,2798040.0,Million1990US$, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,115864.0,199485.0,243312.0,317979.0,367378.0,420758.0,469619.0,517890.0,560867.0,606695.0,655563.0,717235.0,788176.0,868825.0,956247.0,1044840.0,1132890.0,1220720.0,1315480.0,1418660.0,1514170.0,Million1990US$, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,32529.2,53208.5,73880.1,85872.1,103064.0,118280.0,132906.0,149155.0,169362.0,197441.0,234776.0,285562.0,350229.0,431473.0,531780.0,650396.0,787716.0,944205.0,1125630.0,1335140.0,1559040.0,Million1990US$, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,88438.0,139825.0,176708.0,225800.0,275045.0,338986.0,412563.0,499869.0,601363.0,728925.0,888728.0,1099640.0,1364830.0,1694690.0,2098210.0,2571750.0,3112550.0,3719420.0,4413370.0,5203160.0,6030750.0,Million1990US$, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,72706.3,130395.0,174776.0,260751.0,300820.0,344088.0,392845.0,441672.0,498103.0,553168.0,622022.0,690248.0,778091.0,878845.0,1010160.0,1159080.0,1333410.0,1524640.0,1726480.0,1917630.0,2139450.0,Million1990US$, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,260522.0,446801.0,490385.0,548951.0,610896.0,674643.0,742380.0,811570.0,887262.0,964506.0,1043340.0,1121770.0,1202000.0,1275350.0,1349690.0,1412810.0,1477060.0,1538620.0,1606740.0,1700710.0,1777220.0,Million1990US$, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,408942.0,628042.0,752813.0,838859.0,976038.0,1107270.0,1238010.0,1356460.0,1502590.0,1647650.0,1826590.0,2000980.0,2230590.0,2489280.0,2831670.0,3231210.0,3698080.0,4206000.0,4738530.0,5244400.0,5841800.0,Million1990US$, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,440774.0,666489.0,690655.0,771766.0,845803.0,916857.0,985002.0,1055380.0,1131200.0,1211110.0,1304380.0,1396130.0,1500440.0,1605400.0,1725490.0,1851090.0,1984780.0,2128940.0,2293670.0,2488850.0,2682230.0,Million1990US$, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,94674.7,155160.0,185941.0,200728.0,230998.0,267431.0,310851.0,357514.0,417759.0,485502.0,571998.0,665114.0,785944.0,931650.0,1125610.0,1359900.0,1647160.0,1980100.0,2351970.0,2734670.0,3189110.0,Million1990US$, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,42378.5,46470.4,65156.1,97116.6,124602.0,157183.0,192732.0,231314.0,278554.0,331287.0,391812.0,453731.0,521107.0,596463.0,684318.0,781750.0,893103.0,1021710.0,1169330.0,1343960.0,1527020.0,Million1990US$, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,446032.0,1690660.0,2567710.0,3552360.0,4818070.0,6277200.0,7956670.0,9829880.0,1.18502E7,1.39868E7,1.62216E7,1.85222E7,2.09903E7,2.36709E7,2.67487E7,3.02894E7,3.42864E7,3.85805E7,4.2676E7,4.54606E7,4.87683E7,Million1990US$, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,64505.2,104386.0,126248.0,179024.0,209836.0,236696.0,272028.0,310593.0,360112.0,414028.0,482382.0,554514.0,647443.0,757541.0,902072.0,1071890.0,1275200.0,1503230.0,1748520.0,1989160.0,2267760.0,Million1990US$, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,271734.0,399608.0,453318.0,524369.0,606103.0,681142.0,767097.0,850403.0,970352.0,1090470.0,1247570.0,1374950.0,1538660.0,1689890.0,1891110.0,2083330.0,2295620.0,2513380.0,2793770.0,3165550.0,3502730.0,Million1990US$, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,5210350.0,7138690.0,7209600.0,7525870.0,7995750.0,8485340.0,8949090.0,9381120.0,9808030.0,1.02314E7,1.06887E7,1.11511E7,1.1679E7,1.21828E7,1.27722E7,1.33176E7,1.39049E7,1.44787E7,1.52148E7,1.61787E7,1.65971E7,Million1990US$, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,69216.3,50958.1,57150.1,79034.2,91939.1,105941.0,123062.0,142612.0,168062.0,197536.0,233848.0,273423.0,318092.0,366724.0,421962.0,481803.0,548622.0,624602.0,711686.0,818770.0,927126.0,Million1990US$, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,187946.0,312336.0,354824.0,724029.0,868960.0,1019600.0,1166750.0,1303850.0,1442040.0,1576000.0,1717330.0,1853920.0,1996120.0,2126230.0,2273180.0,2409190.0,2549150.0,2683390.0,2848740.0,3058290.0,3167970.0,Million1990US$, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,280899.0,382416.0,401530.0,341504.0,371785.0,397860.0,421918.0,443287.0,464088.0,486263.0,513430.0,542938.0,575185.0,606718.0,643843.0,679328.0,717076.0,753469.0,797057.0,851328.0,876422.0,Million1990US$, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,218493.0,522808.0,745987.0,1027300.0,1382000.0,1842760.0,2404600.0,3097040.0,3922740.0,4903560.0,6055630.0,7400820.0,8908860.0,1.05785E7,1.24138E7,1.43939E7,1.65386E7,1.88498E7,2.15226E7,2.46349E7,2.78607E7,Million1990US$, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,108303.0,211476.0,260911.0,442931.0,633430.0,884898.0,1189310.0,1545770.0,1959610.0,2435150.0,2961680.0,3568560.0,4222040.0,4925910.0,5606820.0,6338550.0,7053750.0,7806090.0,8561450.0,9361070.0,1.01753E7,Million1990US$, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,3341300.0,4048790.0,3937570.0,4138660.0,4339440.0,4546210.0,4766180.0,4989910.0,5249800.0,5512120.0,5797640.0,6079360.0,6372020.0,6671650.0,6966520.0,7242500.0,7533850.0,7828080.0,8159310.0,8567420.0,8923910.0,Million1990US$, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,376422.0,604511.0,638835.0,607295.0,683569.0,771053.0,874768.0,982150.0,1113580.0,1254410.0,1437290.0,1627950.0,1872650.0,2163770.0,2548290.0,3004790.0,3555030.0,4178190.0,4860600.0,5547010.0,6359840.0,Million1990US$, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,354599.0,649164.0,799311.0,974231.0,1174060.0,1392630.0,1635400.0,1889570.0,2189090.0,2498920.0,2852310.0,3189990.0,3578330.0,3967750.0,4432680.0,4896340.0,5423530.0,5952470.0,6525260.0,7119570.0,7769380.0,Million1990US$, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,43517.3,83775.9,96558.5,172085.0,218316.0,285098.0,378037.0,502699.0,666897.0,883517.0,1159160.0,1515330.0,1954080.0,2495970.0,3122590.0,3868810.0,4690560.0,5621320.0,6643290.0,7794950.0,9053260.0,Million1990US$, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,338432.0,308850.0,350315.0,395888.0,460235.0,524267.0,600244.0,679944.0,777742.0,880502.0,1000190.0,1124150.0,1269000.0,1421560.0,1594070.0,1777760.0,1978810.0,2206350.0,2468360.0,2794560.0,3116910.0,Million1990US$, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,106461.0,148802.0,169021.0,145698.0,161309.0,175513.0,185741.0,195063.0,201819.0,208782.0,216190.0,227234.0,240783.0,256272.0,273254.0,290426.0,306935.0,322622.0,339208.0,356905.0,371640.0,Million1990US$, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,72496.4,105483.0,120587.0,141351.0,156855.0,178432.0,203843.0,231084.0,264566.0,300956.0,347363.0,395881.0,458382.0,530078.0,622270.0,728994.0,856131.0,998364.0,1150310.0,1297030.0,1467250.0,Million1990US$, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,97661.2,191670.0,234897.0,325486.0,391389.0,463248.0,541799.0,620312.0,717005.0,820303.0,948573.0,1079720.0,1246500.0,1441820.0,1697980.0,1997270.0,2353880.0,2753000.0,3182710.0,3605180.0,4100050.0,Million1990US$, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,36401.3,77487.5,99669.6,185595.0,263617.0,364291.0,491180.0,645549.0,836531.0,1075880.0,1369840.0,1741870.0,2190230.0,2730190.0,3336720.0,4060740.0,4862450.0,5784550.0,6812590.0,7991140.0,9306050.0,Million1990US$, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,230025.0,538826.0,607043.0,656707.0,706988.0,756462.0,810681.0,870578.0,941232.0,1017390.0,1099630.0,1187730.0,1282630.0,1378250.0,1475140.0,1570970.0,1668710.0,1766110.0,1880230.0,2024750.0,2151600.0,Million1990US$, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,226566.0,494485.0,586645.0,805491.0,1051060.0,1346800.0,1708650.0,2133480.0,2628780.0,3215010.0,3893080.0,4706080.0,5626830.0,6676450.0,7796130.0,9077400.0,1.04383E7,1.19376E7,1.35068E7,1.51107E7,1.68404E7,Million1990US$, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,117947.0,264007.0,302344.0,310941.0,388058.0,450756.0,512619.0,577917.0,642241.0,704683.0,759545.0,813093.0,865979.0,951674.0,1030950.0,1113110.0,1183890.0,1249020.0,1304290.0,1356380.0,1402030.0,Million1990US$, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,5728650.0,9104330.0,9601260.0,1.07572E7,1.19149E7,1.31758E7,1.44598E7,1.58304E7,1.74671E7,1.91662E7,2.12519E7,2.31994E7,2.55183E7,2.78733E7,3.06695E7,3.35834E7,3.67431E7,3.99698E7,4.3837E7,4.81526E7,5.27564E7,Million1990US$, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,45886.2,84512.7,115111.0,143044.0,191928.0,259127.0,348384.0,463619.0,617776.0,821360.0,1085340.0,1422750.0,1847810.0,2374740.0,3016680.0,3783180.0,4680490.0,5714520.0,6888630.0,8203190.0,9651030.0,Million1990US$, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,174060.0,312565.0,391024.0,416645.0,521213.0,667444.0,835702.0,1021780.0,1228340.0,1454920.0,1698960.0,1964380.0,2252440.0,2560870.0,2879010.0,3201610.0,3528230.0,3859780.0,4197240.0,4538980.0,4880000.0,Million1990US$, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,50396.5,80467.5,116822.0,151815.0,194858.0,250042.0,315179.0,392168.0,494305.0,630999.0,810854.0,1042310.0,1333840.0,1694850.0,2133630.0,2656080.0,3269480.0,3978680.0,4786410.0,5692830.0,6696370.0,Million1990US$, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,162800.0,284830.0,382851.0,489485.0,626996.0,864024.0,1179640.0,1584650.0,2116130.0,2808560.0,3700630.0,4838840.0,6266580.0,8025340.0,1.01492E7,1.2661E7,1.5574E7,1.88941E7,2.26235E7,2.67442E7,3.12257E7,Million1990US$, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,135643.0,233513.0,307677.0,348894.0,348350.0,412815.0,481176.0,552488.0,624052.0,694818.0,767550.0,842530.0,918875.0,996116.0,1072850.0,1147610.0,1221580.0,1295540.0,1369900.0,1443930.0,1516680.0,Million1990US$, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,459499.0,747676.0,851009.0,970768.0,1119040.0,1279810.0,1437250.0,1597220.0,1768040.0,1953040.0,2140320.0,2333630.0,2546510.0,2774640.0,3012460.0,3249550.0,3485680.0,3716540.0,3944380.0,4171900.0,4398100.0,Million1990US$, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,774550.0,1141710.0,1419390.0,1497630.0,1629470.0,1915120.0,2186040.0,2446180.0,2713910.0,2983650.0,3249640.0,3521410.0,3797840.0,4067700.0,4335610.0,4612160.0,4884260.0,5152230.0,5420290.0,5693070.0,5970470.0,Million1990US$, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,667729.0,1003540.0,1068960.0,1184350.0,1314700.0,1454110.0,1597850.0,1756730.0,1927360.0,2101190.0,2272290.0,2444870.0,2633090.0,2842720.0,3068920.0,3301710.0,3539440.0,3776020.0,4012710.0,4252170.0,4494400.0,Million1990US$, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,113544.0,179822.0,220413.0,256631.0,300804.0,360812.0,428187.0,502959.0,588659.0,685940.0,794005.0,913335.0,1044230.0,1188050.0,1345060.0,1515040.0,1698080.0,1893390.0,2100050.0,2317290.0,2544230.0,Million1990US$, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,126298.0,134509.0,198594.0,260338.0,328258.0,426583.0,526229.0,625801.0,723323.0,814183.0,893377.0,967660.0,1046970.0,1135380.0,1225660.0,1311010.0,1394960.0,1479880.0,1568270.0,1659850.0,1751020.0,Million1990US$, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,634800.0,2444330.0,4097640.0,5912420.0,7951320.0,1.05956E7,1.30367E7,1.50922E7,1.6911E7,1.85094E7,1.97579E7,2.06489E7,2.13813E7,2.19605E7,2.24056E7,2.26876E7,2.28898E7,2.29757E7,2.30031E7,2.29997E7,2.29837E7,Million1990US$, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,98009.1,152213.0,190000.0,236953.0,281537.0,329017.0,386039.0,450143.0,522729.0,602556.0,689667.0,784202.0,885852.0,994793.0,1109970.0,1229560.0,1353540.0,1479950.0,1607470.0,1735420.0,1862660.0,Million1990US$, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,523683.0,714315.0,829653.0,928022.0,1079210.0,1230740.0,1383010.0,1534200.0,1678940.0,1809980.0,1933220.0,2052600.0,2180300.0,2316600.0,2451650.0,2575720.0,2692320.0,2804990.0,2917570.0,3034360.0,3155880.0,Million1990US$, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,7015490.0,9615180.0,9957200.0,1.03682E7,1.12924E7,1.21766E7,1.31024E7,1.41123E7,1.52448E7,1.64478E7,1.76824E7,1.89778E7,2.03962E7,2.19025E7,2.34475E7,2.49979E7,2.65746E7,2.81732E7,2.97976E7,3.14493E7,3.31064E7,Million1990US$, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,163100.0,114725.0,130554.0,124212.0,141092.0,167809.0,196890.0,227474.0,258612.0,288980.0,318520.0,350058.0,385928.0,424556.0,463133.0,499289.0,533868.0,567816.0,601721.0,635376.0,667444.0,Million1990US$, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,309152.0,494907.0,572808.0,684297.0,805217.0,956358.0,1111780.0,1271350.0,1441150.0,1615710.0,1793300.0,1977410.0,2166610.0,2359340.0,2553480.0,2744920.0,2932910.0,3118490.0,3303010.0,3485680.0,3663940.0,Million1990US$, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,447753.0,604048.0,650903.0,702439.0,765960.0,832774.0,901007.0,972635.0,1052120.0,1140040.0,1238730.0,1347650.0,1465000.0,1590890.0,1723800.0,1859640.0,1998680.0,2138270.0,2276550.0,2413350.0,2549650.0,Million1990US$, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,316261.0,753264.0,1122980.0,1547960.0,2234280.0,3013670.0,3912260.0,4934840.0,6105320.0,7407100.0,8825350.0,1.03619E7,1.20108E7,1.37502E7,1.55449E7,1.73652E7,1.91904E7,2.10029E7,2.28004E7,2.45697E7,2.62768E7,Million1990US$, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,186551.0,355299.0,469691.0,613619.0,808803.0,1091860.0,1406040.0,1746910.0,2123660.0,2519610.0,2925290.0,3342240.0,3765220.0,4186320.0,4595680.0,4998200.0,5396000.0,5788510.0,6174090.0,6552000.0,6920630.0,Million1990US$, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,3013250.0,3577270.0,3637170.0,3760530.0,3903350.0,4111430.0,4304120.0,4447720.0,4561460.0,4685400.0,4805360.0,4939610.0,5086750.0,5230530.0,5369690.0,5499390.0,5623230.0,5748790.0,5878120.0,6009400.0,6138390.0,Million1990US$, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,410287.0,632736.0,696055.0,798165.0,932455.0,1089690.0,1262160.0,1447230.0,1643450.0,1856080.0,2089360.0,2340860.0,2605160.0,2888930.0,3187930.0,3504280.0,3836280.0,4181710.0,4542440.0,4919470.0,5310360.0,Million1990US$, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,549554.0,1041920.0,1306880.0,1540040.0,1843430.0,2237460.0,2683300.0,3152270.0,3649600.0,4156400.0,4665170.0,5199860.0,5776880.0,6398760.0,7048610.0,7719270.0,8418280.0,9143770.0,9902290.0,1.06892E7,1.14929E7,Million1990US$, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,52824.3,99194.9,117328.0,141898.0,180415.0,227685.0,289264.0,367705.0,467795.0,591693.0,741062.0,918620.0,1127890.0,1372900.0,1656470.0,1974310.0,2322250.0,2697730.0,3100540.0,3531120.0,3985190.0,Million1990US$, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,936278.0,848542.0,1009850.0,1067440.0,1120300.0,1317260.0,1523380.0,1720410.0,1898450.0,2043380.0,2161120.0,2283060.0,2442350.0,2610650.0,2775360.0,2922380.0,3054460.0,3181610.0,3310590.0,3440240.0,3559850.0,Million1990US$, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,142548.0,206044.0,241707.0,268321.0,299611.0,364513.0,432721.0,503849.0,578672.0,655488.0,733529.0,814762.0,900855.0,988916.0,1077030.0,1165070.0,1251460.0,1335410.0,1416860.0,1494770.0,1567900.0,Million1990US$, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,158112.0,220826.0,264823.0,256120.0,220391.0,259728.0,302932.0,350729.0,402176.0,458672.0,520102.0,586338.0,656840.0,729024.0,801897.0,875758.0,951691.0,1029300.0,1107440.0,1185020.0,1262070.0,Million1990US$, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,143871.0,270298.0,339262.0,417422.0,490384.0,601346.0,718034.0,839562.0,971958.0,1114910.0,1266610.0,1426150.0,1592930.0,1768380.0,1951400.0,2139880.0,2333610.0,2531500.0,2732800.0,2937600.0,3145350.0,Million1990US$, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,44814.3,89835.5,122881.0,166484.0,227124.0,303314.0,391854.0,492317.0,611803.0,751254.0,913086.0,1100960.0,1318100.0,1565860.0,1845740.0,2160900.0,2510270.0,2894770.0,3315590.0,3774840.0,4271710.0,Million1990US$, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,249698.0,592525.0,724835.0,838931.0,996176.0,1164830.0,1320550.0,1459460.0,1580880.0,1687520.0,1777250.0,1857840.0,1916120.0,1962180.0,2008460.0,2044950.0,2079840.0,2110370.0,2135140.0,2154480.0,2169790.0,Million1990US$, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,309017.0,660885.0,842792.0,1061140.0,1348430.0,1687430.0,2060500.0,2458960.0,2899690.0,3378560.0,3889660.0,4438100.0,5022550.0,5641360.0,6285210.0,6949100.0,7627930.0,8314850.0,9010780.0,9714070.0,1.04215E7,Million1990US$, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,104193.0,227518.0,278726.0,320306.0,370584.0,415979.0,453273.0,488472.0,520570.0,545340.0,561088.0,569555.0,577573.0,604875.0,631993.0,656442.0,677348.0,692692.0,703460.0,710027.0,713157.0,Million1990US$, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,6045970.0,9610760.0,9974570.0,1.10388E7,1.24811E7,1.39847E7,1.53603E7,1.66213E7,1.78152E7,1.89431E7,1.99822E7,2.10265E7,2.21236E7,2.32707E7,2.43717E7,2.54184E7,2.64705E7,2.74725E7,2.8434E7,2.9363E7,3.02551E7,Million1990US$, Population by region scenario,region,1990,2005,2010,2015,2020,2025,2030,2035,2040,2045,2050,2055,2060,2065,2070,2075,2080,2085,2090,2095,2100,Units, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,151294.0,229496.0,261195.0,290437.0,316741.0,343604.0,367627.0,392456.0,410576.0,429462.0,443316.0,462107.0,476063.0,490068.0,497165.0,504095.0,507225.0,509059.0,506716.0,501188.0,498888.0,thous, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,118829.0,155017.0,167629.0,176959.0,183264.0,188973.0,192389.0,195957.0,196326.0,197346.0,196198.0,197353.0,196496.0,195799.0,192472.0,189335.0,185274.0,181315.0,176528.0,171141.0,167362.0,thous, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,81775.0,121174.0,136928.0,151677.0,165392.0,179644.0,192680.0,206396.0,216935.0,227941.0,236490.0,247645.0,256261.0,265086.0,270283.0,275326.0,278494.0,281149.0,281469.0,279880.0,279979.0,thous, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,242102.0,365301.0,416138.0,463145.0,506983.0,553511.0,597213.0,644032.0,681377.0,721429.0,754629.0,795458.0,827750.0,860966.0,882366.0,903332.0,917589.0,929311.0,933346.0,931378.0,935554.0,thous, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,32459.0,38476.0,40306.0,42284.0,44248.0,46035.0,47793.0,49419.0,51120.0,52644.0,54185.0,55535.0,56910.0,58194.0,59485.0,60637.0,61691.0,62614.0,63373.0,63813.0,64537.0,thous, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,20497.0,24511.0,25800.0,27023.0,28193.0,29354.0,30398.0,31369.0,32134.0,32789.0,33249.0,33619.0,33782.0,33805.0,33626.0,33338.0,32937.0,32485.0,32005.0,31569.0,31113.0,thous, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,148809.0,184998.0,194435.0,204306.0,214024.0,222725.0,230726.0,237518.0,244062.0,249492.0,254444.0,257888.0,261134.0,263404.0,265402.0,266451.0,266917.0,266467.0,265156.0,262514.0,261080.0,thous, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,27692.0,32312.0,33890.0,35034.0,35928.0,36793.0,37381.0,37905.0,38121.0,38339.0,38420.0,38625.0,38750.0,38933.0,39066.0,39279.0,39517.0,39809.0,40090.0,40339.0,40612.0,thous, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,59218.0,74803.0,80040.0,85282.0,90334.0,94941.0,99357.0,103322.0,107201.0,110637.0,113958.0,116771.0,119519.0,122087.0,124790.0,127272.0,129651.0,131653.0,133255.0,134171.0,135706.0,thous, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,68789.0,75885.0,79447.0,82854.0,86066.0,88673.0,90951.0,92613.0,94034.0,94770.0,95068.0,94511.0,93632.0,92452.0,91288.0,89927.0,88647.0,87526.0,86876.0,86884.0,86436.0,thous, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,1132110.0,1311550.0,1348170.0,1383800.0,1410530.0,1425300.0,1431640.0,1428890.0,1416580.0,1397880.0,1372580.0,1348110.0,1320740.0,1295560.0,1268210.0,1244390.0,1220870.0,1198400.0,1171820.0,1137900.0,1110670.0,thous, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,33017.0,42812.0,46173.0,49613.0,53046.0,56255.0,59362.0,62192.0,65013.0,67601.0,70122.0,72329.0,74569.0,76569.0,78559.0,80324.0,81888.0,83107.0,84013.0,84421.0,85129.0,thous, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,107609.0,103758.0,103019.0,101885.0,100703.0,99438.0,97948.0,96128.0,94360.0,92284.0,90229.0,87469.0,84694.0,81552.0,78724.0,75762.0,73127.0,70782.0,69246.0,68759.0,67384.0,thous, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,367144.0,390522.0,397492.0,399793.0,399450.0,399602.0,397433.0,395576.0,390287.0,385558.0,378851.0,374128.0,367643.0,361528.0,353602.0,346582.0,339688.0,334216.0,329796.0,327526.0,323323.0,thous, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,66274.0,60393.0,58112.0,56169.0,54639.0,53340.0,52353.0,51407.0,50659.0,49842.0,49115.0,48226.0,47417.0,46457.0,45546.0,44563.0,43657.0,42839.0,42257.0,41995.0,41436.0,thous, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,78877.0,92544.0,96540.0,99401.0,101732.0,103842.0,105109.0,106018.0,105837.0,105321.0,104075.0,102790.0,100877.0,98830.0,96279.0,93658.0,90959.0,88522.0,86559.0,85377.0,83661.0,thous, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,11282.0,12470.0,12907.0,13230.0,13487.0,13789.0,14012.0,14222.0,14283.0,14356.0,14359.0,14438.0,14437.0,14420.0,14298.0,14181.0,14046.0,13947.0,13866.0,13849.0,13731.0,thous, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,849515.0,1094580.0,1214460.0,1291720.0,1352180.0,1412220.0,1456110.0,1494750.0,1521580.0,1544450.0,1561580.0,1569150.0,1569660.0,1559180.0,1544500.0,1519120.0,1487950.0,1449540.0,1411440.0,1377390.0,1340540.0,thous, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,183599.0,226915.0,244436.0,260144.0,273985.0,286206.0,296773.0,305555.0,312463.0,316989.0,319187.0,319010.0,316941.0,312762.0,307010.0,299537.0,290883.0,281212.0,271117.0,260836.0,251721.0,thous, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,123478.0,127773.0,126995.0,126369.0,125521.0,124121.0,122841.0,121335.0,120020.0,118428.0,116732.0,114698.0,112501.0,110071.0,107461.0,104726.0,101995.0,99478.0,97414.0,96155.0,94208.0,thous, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,83833.0,105918.0,113126.0,120655.0,128148.0,135028.0,141600.0,147475.0,153226.0,158294.0,163199.0,167349.0,171337.0,175124.0,179288.0,183320.0,187236.0,190645.0,193443.0,195349.0,198241.0,thous, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,131495.0,188106.0,210542.0,232198.0,253011.0,273172.0,292929.0,312247.0,330563.0,347974.0,363789.0,378471.0,390958.0,401515.0,409339.0,415117.0,418699.0,420752.0,421589.0,422203.0,423371.0,thous, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,111391.0,158375.0,176897.0,196628.0,217070.0,237250.0,256456.0,274732.0,292454.0,309218.0,324798.0,337769.0,348451.0,356695.0,362926.0,366966.0,368883.0,368805.0,366889.0,363691.0,361094.0,thous, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,148256.0,143551.0,141728.0,140765.0,140002.0,139014.0,138297.0,137449.0,137176.0,136642.0,136289.0,135276.0,134314.0,132895.0,131631.0,130142.0,128787.0,127570.0,126946.0,127197.0,126474.0,thous, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,36528.0,48232.0,50653.0,52199.0,53037.0,53816.0,54030.0,54315.0,53777.0,53486.0,52761.0,52783.0,52404.0,52091.0,51076.0,50087.0,48780.0,47487.0,45931.0,44188.0,42802.0,thous, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,20816.0,27962.0,30410.0,32920.0,35377.0,37693.0,39962.0,42038.0,44078.0,45934.0,47747.0,49354.0,50952.0,52366.0,53702.0,54820.0,55803.0,56552.0,57038.0,57138.0,57412.0,thous, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,58813.0,75252.0,80197.0,85187.0,90001.0,94392.0,98557.0,102217.0,105783.0,108849.0,111762.0,114132.0,116441.0,118534.0,120730.0,122702.0,124506.0,125928.0,126938.0,127317.0,128295.0,thous, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,154854.0,215912.0,236380.0,257436.0,278747.0,299724.0,319872.0,338744.0,356248.0,371702.0,385175.0,395879.0,404178.0,409812.0,413272.0,414161.0,412870.0,409378.0,404437.0,398452.0,393589.0,thous, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,42869.0,48138.0,48501.0,48866.0,48896.0,48574.0,48264.0,47965.0,47528.0,47119.0,46495.0,46156.0,45559.0,45025.0,44054.0,43149.0,42102.0,41194.0,40297.0,39629.0,38805.0,thous, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,285383.0,364841.0,393017.0,420307.0,445659.0,468667.0,489436.0,507502.0,522855.0,535346.0,545074.0,552587.0,557962.0,561072.0,561763.0,560131.0,556367.0,550677.0,542972.0,533062.0,524825.0,thous, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,20151.0,22690.0,23658.0,24024.0,24306.0,24574.0,24841.0,25091.0,25337.0,25557.0,25773.0,25940.0,26092.0,26191.0,26257.0,26251.0,26191.0,26068.0,25917.0,25747.0,25686.0,thous, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,250284.0,299839.0,321813.0,336377.0,349743.0,365229.0,379129.0,393438.0,407489.0,421987.0,437264.0,450786.0,464583.0,476709.0,489862.0,501173.0,512211.0,521959.0,532466.0,544158.0,554807.0,thous, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,152395.0,227408.0,258513.0,292077.0,327250.0,362941.0,398625.0,433737.0,467664.0,499832.0,529721.0,557088.0,581788.0,603820.0,623231.0,640003.0,653877.0,664853.0,672948.0,678523.0,681660.0,thous, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,119694.0,153606.0,165907.0,177958.0,189345.0,199607.0,208611.0,216569.0,223623.0,229682.0,234438.0,237916.0,240134.0,241247.0,241278.0,240381.0,238841.0,236805.0,234438.0,231697.0,228677.0,thous, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,82371.0,120072.0,135522.0,152533.0,170880.0,189754.0,208927.0,228106.0,247099.0,265290.0,282583.0,298546.0,313172.0,326617.0,338819.0,349556.0,359014.0,367193.0,373806.0,378910.0,382552.0,thous, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,243864.0,361978.0,411864.0,465760.0,523803.0,584660.0,647570.0,711776.0,776117.0,839639.0,901711.0,958956.0,1011580.0,1060810.0,1106110.0,1146880.0,1182890.0,1213720.0,1239540.0,1260930.0,1278300.0,thous, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,32642.0,38681.0,40412.0,42045.0,43570.0,44939.0,46155.0,47219.0,48142.0,48854.0,49377.0,49702.0,49834.0,49830.0,49664.0,49350.0,48902.0,48392.0,47830.0,47222.0,46575.0,thous, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,20494.0,24538.0,26637.0,28751.0,30839.0,32898.0,34842.0,36688.0,38490.0,40260.0,41973.0,43599.0,45115.0,46409.0,47493.0,48372.0,49028.0,49446.0,49598.0,49468.0,49087.0,thous, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,149650.0,185987.0,194946.0,203150.0,210743.0,217420.0,222819.0,226941.0,229841.0,231531.0,231868.0,230802.0,228665.0,225548.0,221581.0,216853.0,211583.0,205939.0,200123.0,194262.0,188415.0,thous, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,27701.0,32283.0,34017.0,35858.0,37764.0,39641.0,41384.0,42992.0,44540.0,46068.0,47585.0,49053.0,50465.0,51700.0,52762.0,53647.0,54322.0,54757.0,54945.0,54831.0,54424.0,thous, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,59547.0,75197.0,80249.0,84810.0,88972.0,92714.0,96000.0,98782.0,101032.0,102765.0,103957.0,104631.0,104798.0,104693.0,104354.0,103763.0,102967.0,101952.0,100784.0,99501.0,98155.0,thous, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,68820.0,76041.0,80114.0,83909.0,87178.0,89762.0,91693.0,93149.0,94260.0,94934.0,95059.0,94673.0,93894.0,92923.0,91756.0,90386.0,88831.0,87186.0,85550.0,83963.0,82391.0,thous, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,1151350.0,1314880.0,1348930.0,1371370.0,1387490.0,1393730.0,1389580.0,1374530.0,1349140.0,1314940.0,1273180.0,1225640.0,1174180.0,1120900.0,1067620.0,1014690.0,962133.0,910773.0,862210.0,817448.0,776501.0,thous, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,33203.0,43041.0,46295.0,49332.0,52233.0,54915.0,57328.0,59422.0,61225.0,62735.0,63900.0,64733.0,65297.0,65565.0,65588.0,65372.0,64912.0,64230.0,63408.0,62472.0,61436.0,thous, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,107019.0,103910.0,103663.0,103391.0,102964.0,102312.0,101330.0,99994.0,98497.0,96966.0,95389.0,93681.0,91763.0,89513.0,87014.0,84430.0,81917.0,79559.0,77374.0,75327.0,73350.0,thous, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,364443.0,387381.0,397391.0,405921.0,412619.0,418915.0,424667.0,429939.0,434772.0,438964.0,442269.0,444611.0,446215.0,446769.0,446694.0,446140.0,445013.0,443217.0,440454.0,436701.0,431684.0,thous, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,66269.0,60516.0,58617.0,56930.0,55407.0,54068.0,52859.0,51796.0,50887.0,50060.0,49269.0,48515.0,47808.0,47019.0,46168.0,45253.0,44284.0,43280.0,42265.0,41238.0,40174.0,thous, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,78332.0,92029.0,96668.0,100913.0,104851.0,108429.0,111557.0,114198.0,116349.0,117989.0,119114.0,119687.0,119765.0,119389.0,118570.0,117330.0,115732.0,113873.0,111903.0,109847.0,107695.0,thous, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,11199.0,12370.0,12904.0,13433.0,13932.0,14455.0,14972.0,15458.0,15912.0,16345.0,16763.0,17159.0,17523.0,17822.0,18063.0,18256.0,18403.0,18498.0,18521.0,18467.0,18336.0,thous, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,873785.0,1140040.0,1224610.0,1307930.0,1388090.0,1461770.0,1528600.0,1590440.0,1645880.0,1694570.0,1733800.0,1762640.0,1779300.0,1784820.0,1781250.0,1768800.0,1747800.0,1718940.0,1684430.0,1644920.0,1602940.0,thous, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,184346.0,227303.0,239871.0,251396.0,261705.0,270395.0,277364.0,282723.0,286314.0,287958.0,287522.0,285512.0,282010.0,277241.0,271456.0,264911.0,257844.0,250451.0,242867.0,235195.0,227518.0,thous, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,122251.0,126393.0,126536.0,126105.0,124813.0,122850.0,120410.0,117670.0,114754.0,111708.0,108609.0,105523.0,102415.0,99095.0,95619.0,92122.0,88690.0,85172.0,81686.0,78276.0,74941.0,thous, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,84307.0,106484.0,113423.0,119973.0,126183.0,131812.0,136747.0,140908.0,144298.0,146898.0,148719.0,149772.0,150033.0,149955.0,149685.0,149196.0,148421.0,147341.0,145998.0,144559.0,143066.0,thous, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,132332.0,190129.0,215480.0,239992.0,263092.0,285231.0,306336.0,326606.0,345934.0,363626.0,379267.0,392680.0,403763.0,412618.0,419368.0,423999.0,426714.0,427809.0,427591.0,426374.0,424121.0,thous, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,111845.0,158645.0,173593.0,190015.0,207341.0,224144.0,239684.0,254203.0,267979.0,280898.0,292577.0,302301.0,310048.0,316184.0,320897.0,324545.0,326985.0,328462.0,328660.0,327939.0,326374.0,thous, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,148244.0,143843.0,142958.0,142671.0,141969.0,140910.0,139632.0,138489.0,137792.0,137238.0,136715.0,136087.0,135424.0,134504.0,133427.0,132158.0,130636.0,128882.0,126968.0,124905.0,122622.0,thous, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,36794.0,47793.0,50133.0,52493.0,54797.0,56845.0,58585.0,60028.0,61254.0,62250.0,63045.0,63631.0,64042.0,64183.0,64028.0,63591.0,62884.0,62019.0,61000.0,59823.0,58484.0,thous, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,20934.0,28112.0,30490.0,32734.0,34835.0,36795.0,38593.0,40166.0,41510.0,42627.0,43510.0,44171.0,44616.0,44840.0,44835.0,44615.0,44235.0,43706.0,43049.0,42283.0,41433.0,thous, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,59145.0,75654.0,80408.0,84705.0,88621.0,92144.0,95180.0,97666.0,99619.0,101013.0,101846.0,102145.0,101963.0,101499.0,100796.0,99862.0,98695.0,97324.0,95805.0,94215.0,92587.0,thous, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,155484.0,216282.0,231965.0,248779.0,266253.0,283166.0,298953.0,313432.0,326434.0,337659.0,346965.0,354309.0,359633.0,363269.0,365412.0,366284.0,365976.0,364597.0,362296.0,359282.0,355745.0,thous, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,42980.0,47044.0,48184.0,48906.0,49378.0,49641.0,49661.0,49342.0,48630.0,47560.0,46183.0,44598.0,42906.0,41155.0,39392.0,37655.0,35975.0,34371.0,32855.0,31436.0,30044.0,thous, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,287781.0,365562.0,388124.0,409493.0,429717.0,447641.0,462887.0,475280.0,484828.0,491539.0,495416.0,496992.0,496510.0,494066.0,489977.0,484268.0,477214.0,469124.0,460305.0,451064.0,441509.0,thous, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,20233.0,22728.0,23216.0,23216.0,23216.0,23216.0,23216.0,23216.0,23216.0,23216.0,23216.0,23216.0,23216.0,23216.0,23216.0,23216.0,23216.0,23216.0,23216.0,23216.0,23216.0,thous, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,256971.0,300712.0,314242.0,326649.0,339508.0,352372.0,364622.0,376039.0,386598.0,396256.0,405392.0,414503.0,423721.0,432406.0,440154.0,446684.0,451824.0,455629.0,458294.0,459938.0,460474.0,thous, Primary energy with CCS (Direct Equivalent) scenario,region,fuel,1990,2005,2010,2015,2020,2025,2030,2035,2040,2045,2050,2055,2060,2065,2070,2075,2080,2085,2090,2095,2100,Units, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,a oil,0.3410638321055842,0.5294176238092931,0.7293950104371278,1.1703866967424812,1.3249395798367098,1.4756364980450956,1.6129339400981961,1.7413325119917757,1.8579190233925496,2.0034578078767087,2.236582982584543,2.6616492302184804,3.190203086134146,3.90395503445079,4.7392494473577305,5.666025912720508,6.621513371249802,7.594797818080122,8.532157756379606,9.316845594157558,9.973056980139575,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,b natural gas,0.0,0.01784059843066816,0.0238143516653842,0.07335465932883628,0.14281807572502928,0.2555107914757522,0.395998531353593,0.5825088383873136,0.8152973273790372,1.1000128826739446,1.401390951617596,1.696787483769749,1.975516545200954,2.2661432265848442,2.5560215623957503,2.8265717706683486,3.080139844121201,3.3415986467661734,3.6617233286203423,3.989696894952963,4.290511192950439,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,c coal,0.00864167966373384,0.010928725616987541,0.01576316687508165,0.041060898014039685,0.09450698901720146,0.20127581042565634,0.3361906788426849,0.5313312422932023,0.810273872161821,1.1943448987627807,1.632351275746733,2.132794435144823,2.681387693528713,3.323617325176868,4.0598561211315864,4.856911763292871,5.696582442526991,6.560791780903758,7.476891326853442,8.492582179639088,9.719210446713832,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,d biomass,0.5984681648574127,0.833701747427757,0.9626097907400377,1.3825396842977378,1.796263594924802,2.1953378174273275,2.6457904603354914,3.139623120209434,3.6132149677786853,4.210237097779176,4.8586502459567695,5.59459406296592,6.360923254031337,7.186325200284431,7.986458944007504,8.743169317810683,9.392959184516247,9.946010160100094,10.401426639543105,10.81278882859273,11.300127033394748,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,e nuclear,0.0,0.0,0.0,0.0015648989661687048,0.00248355727211479,0.007756202426976751,0.018190267447788473,0.035117281214925564,0.05667441177484561,0.0884568902864444,0.12796729772171125,0.17810781015482488,0.2444286449904548,0.32006915358646426,0.39831163797558955,0.4826712349346547,0.5694443437491856,0.653195260577768,0.736381293650988,0.8142041165715856,0.8871210715322473,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,f hydro,0.02195964259982854,0.03539187610149868,0.05392175202793784,0.07124137670598645,0.08890095648849854,0.10646303566854051,0.12408133252420872,0.14176130470504605,0.1767986366856366,0.21202320486359377,0.2474651199452524,0.28253609391093515,0.31781913454039584,0.3532294424324566,0.3885407183390768,0.4240291561040113,0.45954105688114627,0.49511589885049906,0.5308894124699628,0.5666315325924827,0.5656555125120465,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,g wind,0.0,1.109999250468233E-5,2.3270065608032954E-4,0.010142839625951658,0.02004995067031738,0.035047846970442345,0.05749886941446423,0.08965330202252303,0.13246663362501046,0.18858223271144348,0.262742204639073,0.36211101232924864,0.5015828608506182,0.6576812563635447,0.8353078821256267,1.0239550704620453,1.2128164295966823,1.3874456641344788,1.5424511761774142,1.6875224996254,1.8377979823176163,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,h solar,0.0,3.599997569088593E-6,7.200010299835281E-6,0.008257361592438102,0.01589148985158425,0.024237291461056885,0.03614515254355829,0.053743017889288515,0.07853916376565473,0.10867953576842826,0.15566872521148764,0.2215533534910983,0.31109195307382803,0.4166985054503545,0.5377694796306292,0.6703009329271523,0.8085180575252389,0.9473360233649419,1.0846955377172431,1.2201580022246867,1.3578102348657306,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,i geothermal,0.00117360693231624,0.00361079756179497,0.00529561493055005,0.01978384415798585,0.02897325760233549,0.03905906394298915,0.050257276641641216,0.06235538113403583,0.0704316870816596,0.07448114286327984,0.07466236966087823,0.0746982201619547,0.07478413909842525,0.07487596259062665,0.07493193103344153,0.07501409304433682,0.07508018428320208,0.07514853494843152,0.07523993727203666,0.07531234089858582,0.0751886693627422,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,j traditional biomass,1.377214,2.0188930000000003,2.5967089999999997,2.6376340000000003,2.6608579999999997,2.670944,2.662766,2.64954,2.6081760000000003,2.4906,2.297035,2.105086,1.8748529999999999,1.647697,1.4066070000000002,1.200481,1.018971,0.87417,0.753066,0.657583,0.606448,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,a oil,2.2111559986838065,3.037532367474579,3.589360144254038,4.345329331835651,4.520673812697513,4.693859681926795,4.693384288669067,4.5130208960545515,4.114786641321618,3.6646680598869645,3.3456112454090388,3.318241541811837,3.3819679177032684,3.5746947588667357,3.784745915240558,3.9995976842600705,4.178680944502335,4.329217221718855,4.4534219124275705,4.504554649602464,4.504130709634182,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,b natural gas,1.0127169955784043,2.470169065609815,3.0313050884484247,3.7923501248148557,4.396016733396299,4.975063502521716,5.488534675219754,5.988142743748385,6.4081250683726205,6.810755707824015,7.092913758030311,7.292571081302003,7.175216975927528,7.079474991363109,6.910678362518644,6.743776105663227,6.572618489827541,6.470899653738722,6.376589953964746,6.325571917599241,6.553926670227447,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,c coal,0.10944211950393293,0.2047869504893969,0.1666300711632714,0.2196784108977366,0.31199062311487,0.49427570202737514,0.688762710110116,0.9892314090085503,1.4201805710973865,1.9476029297519388,2.4098343764358927,2.8354954834841624,3.2424438184252073,3.6182376770312454,4.009413776647251,4.38188810165209,4.715345565090074,5.0046363384704335,5.33508270446843,5.72954751158978,6.273736701015499,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,d biomass,0.0302875501,0.0503842,0.0942316,0.11759689370477189,0.20715595715894805,0.3289883273816852,0.4693723202006808,0.6844202174290315,0.9539175246630145,1.2633429579538853,1.501472984621561,1.6810483768946938,1.830470821397304,1.9309390885477027,2.027512313666963,2.1231516736233584,2.2040920378486586,2.2733904490133505,2.3468590498050608,2.4241647136008977,2.515972800388672,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,e nuclear,0.0,0.0,0.0,8.712757934835801E-4,0.0016139000027089283,0.005946222922687192,0.01383626929077523,0.02496694122419844,0.03653567222069149,0.048628839323075886,0.06045463076012176,0.0725314490754711,0.09354729379793023,0.11506656509689736,0.1358538208378807,0.15561195233077252,0.17503920436121873,0.18996099085154808,0.20192653706988842,0.20964618281978809,0.21551824945298723,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,f hydro,0.0407969355450152,0.0515904106172327,0.06027726138445204,0.06322469810704573,0.06621212578590492,0.06919300436255726,0.07217719846051075,0.07516066701419553,0.08108161131139291,0.08700717278127591,0.0929373614540818,0.09886176696071328,0.10479496345325148,0.11073207965092917,0.11666833690825773,0.12260743221930402,0.12854669775211064,0.13448461007093754,0.14043289237691434,0.14637979773664395,0.14638352882408642,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,g wind,0.0,0.0028800829316464726,0.008219737457801558,0.01772561254615104,0.030383618974000076,0.04683514358690787,0.0683925369426794,0.09443666000605869,0.11444302015186571,0.13552294930228206,0.15363676499016063,0.17137431297353367,0.21527055804845974,0.2600902644848461,0.3081043819541484,0.35768779055457756,0.4095522648838682,0.4579442250573949,0.48177887189393676,0.4990050161146988,0.5099430014110988,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,h solar,0.0,0.0,0.0,0.00481428821336465,0.012717554835384089,0.023802824882847226,0.0386683429302271,0.05719162462456377,0.07801056849567564,0.09787317628658121,0.11662354559414286,0.13588614517051986,0.16027326225713825,0.18056479921357932,0.20069176443014244,0.21984064272060944,0.2385877758526286,0.25396265377523064,0.26567433135770546,0.2788241983819623,0.29610175681650897,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,i geothermal,0.0,0.0,0.0,0.0072640494299788996,0.016113897266572724,0.025683160111894462,0.0357965159433477,0.04567354166429866,0.054235061405223266,0.05616927800697331,0.056606861477006984,0.05722569634133449,0.06383049398074805,0.06961368429208606,0.07265180135917025,0.07265691369986109,0.07266483115732202,0.07266929958506271,0.07267969050007352,0.07268606146415428,0.07268340108331411,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,j traditional biomass,0.062738,0.0925072,0.1004378,0.10180449999999999,0.1032082,0.104867,0.1065751,0.10851409999999999,0.1101128,0.112142,0.1146148,0.11799699,0.12230329999999999,0.12742372999999999,0.13329396,0.1390505,0.14467737,0.15022549,0.15622563,0.16272446399999999,0.169069074,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,a oil,0.2487467343048265,0.3505672376792083,0.5241692762538934,0.6635591669992256,0.761015439468487,0.8318231204387374,0.8800566111821192,0.9099814734933573,0.9308412289571987,0.972713203668677,1.0666977809082347,1.255209586161039,1.4904100885955882,1.8077528188834335,2.1896312766629893,2.6218821278446165,3.0635996285586655,3.5036333939029003,3.917757013549685,4.239891198709155,4.521436256663481,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,b natural gas,0.01846021,0.04078552901972707,0.062222318875076156,0.1409225972298151,0.2253153656685539,0.3209833287767927,0.4287632215282729,0.5612775540148432,0.7236150311208419,0.9230614473099443,1.1453070500505442,1.382540750862408,1.6044441235803992,1.8506348152829055,2.1011818997665817,2.35247539240315,2.599610587406919,2.8544845887828534,3.0888090739345917,3.3168942787884106,3.5870670996304037,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,c coal,0.17708672863824543,0.12864235948318312,0.10955303438544402,0.2047849033227981,0.3057853207910984,0.4078904423770079,0.5185020431051202,0.6611782025630188,0.8594491637485131,1.1284336256123222,1.4548683609422108,1.8603176629521405,2.3521123287089707,2.9376602563908794,3.627739778079939,4.348339280521656,5.148651431895978,6.00243510798661,6.911220991042874,7.896605009260856,8.952037704767223,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,d biomass,0.37663409499999995,0.616619908,0.7085608969999999,0.729542556192722,0.913787751173874,1.0571039647954,1.1864707992070636,1.3160536157386749,1.4413703954968526,1.627387520237779,1.8456763470194602,2.104474606826629,2.36919635933266,2.661191331685779,2.959474184021014,3.258777690292111,3.524618066856238,3.7534644388315717,3.946252117854769,4.111969430469154,4.321584307258612,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,e nuclear,0.0,0.0,0.0,1.1935683121088938E-4,2.9407488081171454E-4,9.085092517447115E-4,0.0021087087326478074,0.00410382360742999,0.006940789731307289,0.011214323396400569,0.017466011889569352,0.02628085351475919,0.03890633857062957,0.05524502411317938,0.07325114635523343,0.09524211455060398,0.11998443444202073,0.14656549791986187,0.17512611582245394,0.20564486835818582,0.23242353593490053,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,f hydro,0.054906318605825566,0.12279986282803355,0.14380348113770627,0.15222555703064578,0.16078797576865303,0.169287328112301,0.17778025582415805,0.18627126822617943,0.20310064261006924,0.21995739746856977,0.23683674444150127,0.25363754826855106,0.2704756189204695,0.2873222014542094,0.304152772038921,0.321009678311557,0.33786222874167143,0.35470225118531495,0.3715658572346636,0.3884083092675755,0.3883626165616229,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,g wind,0.0,2.399997319114938E-6,3.550001877597253E-5,5.207860478732318E-4,0.001364978173761879,0.0024278689586827665,0.004051095524026721,0.00648110009926238,0.010132141413878231,0.0155099667788804,0.023622345093376598,0.035994449887943675,0.055135180101049716,0.08039100421103881,0.11210363284900057,0.1525364374305375,0.19884320612769918,0.2487137004129911,0.3002410593767106,0.354845622647309,0.39922595033550945,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,h solar,0.0,0.0,0.0,8.587027769084094E-4,0.0024082065499428274,0.004509094019881663,0.00738808033557953,0.011465281120636689,0.01748092900569728,0.02635328321033042,0.03980035617309847,0.060278453061578655,0.09152254632405965,0.13192033563136207,0.17922382427901337,0.2300378916384144,0.27889595057794486,0.32319711206414475,0.36250445214599264,0.3979306671389204,0.4341682818954114,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,i geothermal,0.0,0.0,0.0,0.001160127411356751,0.00287708874337662,0.0049080685039380794,0.00768315510221964,0.01134835047754338,0.016136179672621785,0.02150692538753043,0.02818253984987428,0.03664357606243627,0.04689285293187405,0.05710777902782344,0.06654344964300947,0.07081162079887734,0.07082403371912073,0.07083421209566004,0.07085218416798857,0.0708656136346505,0.07086279957420179,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,j traditional biomass,0.9525201,1.331009,1.516337,1.529416,1.540284,1.5538720000000001,1.55902,1.565513,1.55833,1.54116,1.4911340000000002,1.400452,1.276456,1.143194,0.989501,0.8482449999999999,0.713704,0.597642,0.49309899999999995,0.40533299999999994,0.353637,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,a oil,0.7422939129088946,1.230899331501618,1.2428750477516777,1.5766310182545762,1.788783227655426,2.041849264585746,2.2770860512780633,2.4960293846750847,2.697856305269143,2.965371745897559,3.3843547579229547,4.095212351496087,5.042841080292917,6.25491793509466,7.685213436006434,9.28763617363487,10.951305313390568,12.634024614785837,14.261208646160267,15.604479753887793,16.748212015854055,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,b natural gas,0.14069156655765988,0.4126739344274451,0.4003274016690722,0.5792588072128515,0.8062114651954697,1.1770801742149328,1.6354672791147287,2.2111920597479457,2.8786125344923454,3.6618763396096727,4.530214308058579,5.483238481747472,6.4771118797096126,7.542916219404158,8.633643187998159,9.729351773572247,10.834369112331617,11.997613467955341,13.074095760111167,14.075750598558958,15.018337717055747,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,c coal,0.01605138244714842,0.023705822029246044,0.03241407142944298,0.049283672956867135,0.12071546261780994,0.2970271718453047,0.5235395319848067,0.8447787337586499,1.2822287288126986,1.8535641372710618,2.527353231401992,3.365253337191964,4.391742835105971,5.622649435151982,7.094929276273331,8.79455048474101,10.617949634446667,12.502759263788864,14.55786593510846,16.88475063555316,19.71359886252603,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,d biomass,0.8578774189892077,1.3382216910405385,1.4926864957339667,1.9334860718841937,2.5013331254884124,3.176555595986316,3.9402504555068254,4.7776443738026195,5.57942415608788,6.549867378467051,7.627929794893775,8.895863537515412,10.269695376162424,11.764319883141914,13.264650478469427,14.731978458955343,16.024479650885286,17.118451573288894,18.038673183449855,18.831659491362675,19.72488269238174,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,e nuclear,0.0,0.0,0.0,1.6029918916965708E-4,5.624273970024355E-4,0.002439925395832776,0.00655966877060208,0.013791942706686568,0.023292871558951708,0.0363744515269058,0.054178296632561115,0.07906223122562675,0.114800757198286,0.16537115768321942,0.21999313233958204,0.28633550906290206,0.3622627728058708,0.44425425755611997,0.5323537676337193,0.6257570068300671,0.7090955787822952,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,f hydro,0.08142536723038464,0.10931049057146054,0.11379168471091616,0.1397872929235683,0.16613630695943624,0.19234129681551676,0.21857157403300542,0.24483431083852264,0.2969583544249227,0.3492643962524113,0.40176859736560055,0.4540935028189347,0.5066712779777026,0.5593675395829381,0.6120606092043032,0.6648907518827155,0.7176913612007608,0.7704322316986765,0.8234147121993364,0.8763512934112258,0.8760199389793409,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,g wind,0.0,1.1700052508343796E-5,1.7689950985448085E-4,0.0013807878256560935,0.004181303653258464,0.009889690364842352,0.01959772608197235,0.03471786013073349,0.05528326215348136,0.08369858299752132,0.1221887016828331,0.17504528846618828,0.2516738396494669,0.3542354897303414,0.48763231504635873,0.654326593008604,0.8488722278581027,1.0601136112408889,1.2787996366240904,1.5050272188906357,1.7014801065364678,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,h solar,0.0,1.4400064625636214E-5,1.07999700759009E-5,0.0017619938161393845,0.005096136384025674,0.010688956915394442,0.019400954030423207,0.03260151570515939,0.051290342215921075,0.07790464626487081,0.11418036111449881,0.16022813514379314,0.2185996690647226,0.2909718809290447,0.3839707718274815,0.49574632822842174,0.6226573776688727,0.758437836335452,0.9088633655416469,1.0717044873308885,1.2559415517041381,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,i geothermal,0.0,0.0,0.0,0.001573941208496374,0.004750366447112508,0.010781339073584988,0.01968862216016148,0.03149177226629141,0.045054923737780556,0.05971393935649778,0.07554506448602245,0.09241961164101141,0.11160007293462487,0.13132666281718383,0.14600578612350792,0.14613994519730308,0.14625004281779064,0.14633297509407348,0.14645592401469082,0.1465563824116643,0.14650534257381165,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,j traditional biomass,3.31438953,5.054457299999999,5.700202,6.025495599999999,6.2310305999999995,6.380770900000001,6.4783954,6.5579564,6.5714982,6.547805800000001,6.4520732,6.339117900000001,6.1525947,5.9342233,5.586481099999999,4.9127064,4.2231976,3.5818904000000003,2.9655616,2.4109825000000003,2.031838,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,a oil,0.8781008011495126,1.1268098650533915,1.3443854421401804,1.7194993034880222,1.819372954149501,1.888820341899802,1.9147712392652998,1.87151197348641,1.7665233823677668,1.623378767958439,1.539317613132064,1.5372741879537328,1.5902450051194663,1.688481243909157,1.8214511622872058,1.9635059754296953,2.1052131348232703,2.235302083350766,2.3466587266621897,2.3977047178014343,2.4427067629496406,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,b natural gas,0.788218538878429,1.43436027639146,1.5605144539344895,2.073084667584462,2.3068272489854538,2.5356287775319664,2.783249104993645,3.018682258531166,3.266787482603791,3.4866399291739336,3.690514981479477,3.801852462683787,3.764383813484082,3.7719018648413787,3.785800353794737,3.7953603357655163,3.8212562688001923,3.873267702819417,3.9170757474833047,3.9606956953169843,4.3284954702359375,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,c coal,0.03951589153682511,0.036794871423530516,0.04123187987628308,0.06615998254070808,0.10961786082721858,0.18341203817131163,0.2774613284780492,0.41451814327833186,0.6256151838722902,0.875452904161849,1.117959117122935,1.3196657030819434,1.528945471684036,1.7281028962557141,1.967043062880654,2.210492122399104,2.4618066487074324,2.6944005858788183,2.952970199514526,3.2235864607632516,3.61684120206493,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,d biomass,0.06693409435120509,0.09223786697540974,0.10364087571752567,0.12580970033266317,0.16073052374021538,0.20541098682354947,0.26525936365444885,0.3440563386938983,0.4462144063876878,0.5550304457719726,0.6477869422020784,0.7065157701124576,0.7692880981325794,0.8106435191696575,0.8618972878219325,0.908196624849241,0.9570918578203219,1.0017843321059767,1.0474816258629003,1.0851887169332526,1.1380562968703107,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,e nuclear,0.02621156724893717,0.02474273514481149,0.025815066732270728,0.02940592864487124,0.03145707081914451,0.033329409124748355,0.0355478207994992,0.03779424751260571,0.04054682028711482,0.04370585846102736,0.047949330430563174,0.052581841806564854,0.06355770433629122,0.07470465690737389,0.0851710852669687,0.09306300145035756,0.10385882208429961,0.11417799100201204,0.12429865992574528,0.13269896711850118,0.1398283412630353,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,f hydro,0.06435351959099034,0.12241367913158392,0.1209120271130451,0.12383856054179365,0.1268119426960117,0.12977285677113443,0.13273443488924025,0.1356952412707081,0.14091598097649938,0.14614260511816576,0.151376283163794,0.15659814767838168,0.16182641572505466,0.16705809801821003,0.1722847365349183,0.17751433914363,0.18274113948508758,0.18796856615919263,0.19320296732457543,0.19843939490863316,0.19843545050197478,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,g wind,0.0,2.6999929228296003E-4,8.999927584439595E-5,0.003989794928049719,0.00880867722452079,0.01596909030123123,0.02708913442434309,0.04162391260984546,0.05990311419578928,0.07699989711553135,0.09682211426289293,0.11556559479831696,0.15814483090817766,0.1977732908192629,0.24393155677254597,0.29812286743579264,0.3568358652674319,0.41803862176506873,0.4614421528313986,0.500843826832335,0.5337969853814373,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,h solar,0.0,0.0,0.0,0.00116879206105477,0.00271531586273339,0.00491946785347034,0.008185137901771729,0.01235685798757873,0.01765095142636742,0.02272014959415967,0.02868459188248271,0.03447101876421017,0.043357150067363605,0.04982152010501609,0.056863179139953014,0.0646825269386915,0.07267484545555399,0.08073501839057222,0.08635378625591032,0.09281953505936207,0.09930609018003692,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,i geothermal,0.0,0.0,0.0,0.004215572686083671,0.008684095545172531,0.014454594756831479,0.02209177402428007,0.0306482871238251,0.03990685776544734,0.045231079331793544,0.05092957084485586,0.05510872849401962,0.06556071630241496,0.07345744640091621,0.08192862559811623,0.09098436218704993,0.09942417322069344,0.10724227463069458,0.10919909008880332,0.11140821406936167,0.11301031177811366,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,j traditional biomass,0.005148801,0.0028465,0.0020511,0.001269993,0.0011008860000000001,9.51548E-4,8.25114E-4,7.29457E-4,6.473550000000001E-4,5.83278E-4,5.162284E-4,4.628227E-4,4.0416530000000005E-4,3.471711E-4,2.875774E-4,2.349568E-4,1.874453E-4,1.4836019999999998E-4,1.179641E-4,9.5576E-5,7.883489999999999E-5,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,a oil,1.5911311224189504,2.1282399914196177,2.2508264392363335,2.301858418159946,2.37514288567216,2.400380105851338,2.3848144653838057,2.293110498397166,2.141104851607059,1.9738044417215481,1.874545127671044,1.8413952989804927,1.8341399041866353,1.868935809520553,1.9095818827441389,1.9423927097871512,1.9653281225276997,1.9741438187567737,1.9723317614594775,1.9553025037449263,1.9085468008807807,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,b natural gas,0.7817509415273937,1.1509170281924732,1.3776108700317373,1.4551697639704417,1.5527923991737105,1.687817243879763,1.8441242194535805,2.03398333362476,2.2674826297801505,2.4567732539860616,2.5760197335511,2.609824482164136,2.5718210173741523,2.505219397839391,2.4276863533772066,2.356554354804663,2.3036207201299095,2.2801232159305433,2.2743948635962186,2.344221875134171,2.8407655334482764,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,c coal,1.5244137565854745,2.2453228927464206,2.204479365574042,2.381503607541377,2.5357113659384702,2.652122841405065,2.7978606129373538,2.9855833702685532,3.2927919461256847,3.553444019951422,3.743698435403363,3.880406034787952,4.030003174462418,4.136888801657228,4.197598096147693,4.127944094764515,4.096418006082145,4.058763566544496,3.996977128350294,3.957065967673424,3.933616809821826,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,d biomass,0.1979000125439441,0.2712628425744995,0.28424764080817594,0.3025680724693943,0.33939682610207184,0.3698305558463588,0.4014403027637799,0.43341587256392144,0.4646848774037507,0.49988100019199444,0.5299221955168602,0.5505702230362696,0.5704698252930869,0.5837171989180395,0.6013750064631951,0.6210721061509252,0.6308071799382013,0.6341959931130947,0.6433715828618211,0.6661725003377906,0.7085640071943873,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,e nuclear,0.0,0.0,0.0,0.0,1.1660568084591E-4,6.5794590356134E-4,0.0018386809039897401,0.0036202255852130103,0.007680962805646259,0.0124582651780373,0.01782256430747347,0.02328109917281983,0.02924751246318221,0.03539236885439794,0.04077013671906048,0.04743778120613748,0.05277484144215249,0.0571728397505643,0.06129196438712055,0.06490788230962741,0.06650914385377714,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,f hydro,0.1354377682638639,0.14144103172598024,0.1366296509926284,0.14267567367359266,0.14853795846892015,0.15453761888980422,0.160249513913868,0.16587662208686435,0.17285098853053746,0.17992311159629087,0.18705590389943516,0.1941532993522077,0.20128113681797835,0.2084270860396875,0.21558251027130904,0.22275501433688427,0.2299294488640085,0.2371176592308664,0.2443356771189126,0.251546130970216,0.2514522826958351,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,g wind,0.0,0.00549536010113646,0.023634472800966002,0.03102358704003385,0.03907199210937153,0.04950531298945875,0.06671340588790084,0.08908267392278477,0.09862172746669605,0.12225335823574472,0.1445897740388665,0.1645151472399473,0.1806960021658183,0.18807852096847202,0.1938349445829288,0.21664504162743603,0.23102894234386961,0.24321906702316765,0.2580369278590221,0.27847026817318565,0.30062099465361464,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,h solar,0.0,2.896152960737495E-4,0.00101784134499361,0.00282340496210968,0.005569185250393746,0.00960051895618687,0.01637469214983852,0.025416173480150215,0.03767606497190359,0.0481693548214651,0.056230325966382416,0.06175514132521585,0.06486123299751584,0.06529369750076766,0.063458057480128,0.06424004642898831,0.06524533510373985,0.06703779957525184,0.06954493596752699,0.07274523297772209,0.07542258058884706,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,i geothermal,0.007524519775884569,0.011353673602523278,0.021418740975875438,0.028024869053051307,0.03426325396745292,0.04146037464392573,0.05187898058425918,0.06384218945571425,0.05990409269468141,0.06823208013911435,0.0755504690128147,0.08116112064698862,0.08425912075090541,0.08411154231703542,0.08214690041743045,0.0878454816160547,0.09089478010861997,0.09363341353529887,0.09730682192834084,0.10275796473716028,0.10777242285193443,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,a oil,2.5264320799985502,3.935915237521412,4.661721874539466,5.861050982422155,6.4003063135410745,6.737102635782173,6.907121874497827,6.826175030088161,6.592885512418999,6.216915921609144,6.012574918569658,6.034529490969341,6.251881712876949,6.6149469097420655,7.112439279359311,7.66077514016694,8.212036407535418,8.695813234210721,9.072638676577942,9.204689894181845,9.317865947748123,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,b natural gas,0.13147643922866295,0.7002442603749911,0.9634167641345586,1.4718504008947217,2.0469897363110787,2.6887573579517614,3.3826242096589474,4.125638179167907,5.052878507301344,5.946140915367613,6.778386688748642,7.269534707357586,7.467355966959579,7.581822393397373,7.728675259990222,7.886785149512338,8.112948301008611,8.385714783240324,8.648705424719251,8.841573700897982,9.353376490983013,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,c coal,0.4068360582893719,0.5429225111603139,0.6068854648070645,0.7876534462338273,1.0933676554487957,1.4910098347955734,1.9438530942807961,2.523482994390652,3.4106198882475214,4.398247292473122,5.343908682663169,6.07271135103474,6.8562468963226175,7.557589654949672,8.404878264725689,9.224081862452769,10.101767189979109,10.951727571692874,11.843140272057411,12.74472108263315,14.01797866265406,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,d biomass,1.666775775634842,2.300487593006537,3.103372446692541,2.689785282807374,3.098250947576967,3.412731988203081,3.732838634182579,3.9819568279068527,4.197480088558501,4.416794261380369,4.636989525754205,4.751097820542991,4.95338737196937,5.1183706334117405,5.32022780007047,5.427008000968119,5.514579217508571,5.558477843699755,5.568653648457408,5.5494191562605595,5.601139371569581,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,e nuclear,0.008051898779519819,0.035468222012807075,0.05227062995081045,0.04890998962985949,0.050687695303062094,0.05234693101684362,0.05420289753364068,0.05580701449979488,0.05907048449561353,0.06347437818872191,0.07130922194220762,0.08114419469632189,0.10259391330734371,0.1298415289065906,0.1566875560207796,0.19252188044965082,0.2284722325348589,0.26510537877883567,0.30181357093848926,0.33618528363175254,0.367871419335045,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,f hydro,0.7441473109156186,1.2148412325055211,1.4518341920221296,1.4757890855570246,1.5002414818753245,1.5244619542131852,1.5486883817789672,1.5729290027529115,1.6155438512244105,1.6582319690564797,1.7009285052071048,1.7433376324648724,1.7858302135366286,1.8283169166261795,1.8707151430098836,1.9131521209606586,1.9555501265120778,1.997918898764159,2.040353739455855,2.082763864135152,2.082575681405706,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,g wind,0.0,3.347965837771014E-4,0.00783714864794467,0.019465739137897353,0.033317929879567984,0.04951497690459814,0.06977699030451968,0.09242265244738276,0.11463451231131692,0.1366732923384087,0.16512090438234295,0.1930977267554136,0.2544323140360344,0.3270269319023732,0.41685400762785174,0.5313402386238296,0.6575904483207448,0.7944798874817673,0.9060696238867902,1.003029135234812,1.0863003585834878,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,h solar,0.0,0.0,0.0,0.002079290500934206,0.006154797443453135,0.012045915241739731,0.020385168124046317,0.031090646949524722,0.046211234120231016,0.0635542463559674,0.085921894344441,0.10986431239446304,0.15184444625434768,0.2008050423634256,0.2619143474381857,0.33504275667543815,0.41108583547279137,0.48615864070841164,0.547620431832611,0.5981143720846271,0.6477323407571813,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,i geothermal,0.0,0.0,0.0,0.00407453688092946,0.01120367477154788,0.020933709948172535,0.03368304877635534,0.048008722047629765,0.066376867328042,0.08209635538609661,0.09876296620003268,0.11316137699508565,0.14167282475783044,0.17160056950466937,0.2042166465951502,0.24144225301473043,0.2764451116885656,0.3101143748501298,0.3286098423992574,0.3421811556721017,0.3521838987849767,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,j traditional biomass,0.33324729999999997,0.344634,0.3045312,0.2800761,0.2579711,0.2394167,0.2233192,0.2096719,0.1945916,0.1804154,0.1647928,0.15014709999999998,0.13398759999999998,0.1173808,0.0997963,0.08284346000000001,0.06706258999999999,0.05335684,0.04204846,0.03318997,0.0264934,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,a oil,3.351030815936772,4.361318277015908,4.097694417313258,4.160957448124149,4.233730891450438,4.225275222017317,4.104883798264671,3.833571776941005,3.4293309060096373,3.0190439326292995,2.7379559067577466,2.6231123816079593,2.563388741799661,2.599908817105269,2.6538730881208075,2.718031482570563,2.773518762987778,2.8212806551646348,2.8593168736182784,2.8732161767799154,2.860834101720774,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,b natural gas,2.287875866911783,3.1679895931522837,3.3534371606010795,3.269631959740908,3.3140198873264146,3.417960422300366,3.52045391690995,3.6723929159743984,3.8656802400641834,4.0192426347570605,4.067137416183477,4.02893799957953,3.8938385435210963,3.730505243403061,3.5627684656339067,3.417222207406542,3.30371787158036,3.238342742182567,3.1978668301352418,3.227303461145339,3.662667981210848,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,c coal,1.0657887841895068,1.2415852901285234,1.0299194412381079,1.1314025529645302,1.2313569366133263,1.315967016802791,1.4433882812249312,1.6859494295840778,2.100596025116428,2.5139482945768448,2.8051342852457797,3.0051416661839463,3.1902721910417604,3.314061676336726,3.4291150842065186,3.4835501151832955,3.555811756472629,3.6335323357551226,3.716554748750241,3.8273436593972057,4.008804870159779,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,d biomass,0.3415149506480351,0.5104641016317194,0.5070438775125025,0.5357869136326737,0.5855577072894542,0.6206394507804227,0.6633227556554123,0.7290647404794482,0.811809862105718,0.8958071276434059,0.9451406646653615,0.9698114532269838,0.993076122009934,1.0000258196734053,1.0169380463611322,1.0444211296791035,1.067290272257816,1.0888409322759622,1.1161331214439103,1.1547705060197049,1.2137291426439016,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,e nuclear,0.2625703003721823,0.3312786587794856,0.3263631732372731,0.35047246453183506,0.36895519208467487,0.3754814889453332,0.3880080876632304,0.40301963187034995,0.4284548558123728,0.44143660643563376,0.4503019584103133,0.46009728866659866,0.4784662365366404,0.4982098090041845,0.5096787598574111,0.5061496646091043,0.5096736949343894,0.5140656350663506,0.5068774257089979,0.4887342292295541,0.4637210198455685,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,f hydro,1.0685964120851115,1.309399367122185,1.2656730010847916,1.307184110076324,1.3489867000396218,1.3907387631876582,1.4324706745672238,1.4741956065248336,1.5004910595969256,1.5268325239368314,1.5531978916557105,1.579450859264661,1.6057558304488682,1.632058688829153,1.6583463651281498,1.684668413494042,1.7109893516374854,1.7373321818117486,1.7637191911658054,1.7901122739545499,1.7900414918410261,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,g wind,0.0,0.005294545706715869,0.03440416951069854,0.04613559237555068,0.05859729702356446,0.07088553124934781,0.0918088747414623,0.12018592612293919,0.1306257121468054,0.16176343252590905,0.1907971552781379,0.2182237376812939,0.24228232227418567,0.25552698760370396,0.26308990108370833,0.29169306739057016,0.3115390494388869,0.3289268880007178,0.34895015710925,0.3736394364459123,0.4109628782804359,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,h solar,0.0,6.118783134577916E-5,5.687836167753031E-4,0.0011041960991496598,0.0020535105660988034,0.0042857419172032014,0.00925135995525795,0.0171789555591489,0.030091901622322243,0.043394021997437096,0.0567752003533339,0.06868839342534946,0.08007464366104064,0.08744824362248714,0.09368937928301857,0.10696474364665357,0.11630583850920828,0.12448032215780426,0.13375956894319885,0.14488660521747085,0.16192408012690482,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,i geothermal,0.0,0.0,0.0,0.00369446082149784,0.007026177487914399,0.00962508472888332,0.012685830802644639,0.013111203326494531,0.01312432549921614,0.01313648093507129,0.01314507638778632,0.013148955215493,0.01315157628924964,0.01315210110544391,0.013151188582397009,0.01314987736623955,0.013148216091485398,0.01314644640228526,0.013145241718440332,0.01314424986498954,0.01314132729661283,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,a oil,1.2966515139625185,1.8259955617559391,1.9759996730517475,2.0213712476376857,2.150362290437624,2.2412437271202275,2.2913166074477664,2.2527274262142614,2.1611488073753535,2.0679800595617164,2.06952951006718,2.159811481646551,2.296458867321091,2.514806280898606,2.7895042299095256,3.104792912432312,3.440747288000947,3.765276194300684,4.054344353971715,4.232633058880673,4.387218928207782,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,b natural gas,0.19753442183246014,0.7016927721498409,0.904634110229577,1.0134462620550313,1.1787197458419807,1.3952758396811042,1.6633615508431256,1.9640959600934569,2.3251754618189793,2.6719213455503295,3.0013387273706122,3.237225028660071,3.4183095822340976,3.566630320468119,3.713097010844678,3.8476090838583072,3.9997281072052897,4.165742361374189,4.304768002369182,4.412982752706777,4.659630647573165,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,c coal,0.008982330047698436,0.04111380068804027,0.04762649659137108,0.06634092964106406,0.12058831661813456,0.21926211671401874,0.3599135507844035,0.5636578659009139,0.8673656086009689,1.1979333528498841,1.5152692609511698,1.8022863755955205,2.106104410281121,2.4161993936320028,2.7925075201402865,3.212185053028852,3.670138539820171,4.129190676187508,4.622569463330918,5.140732819649808,5.85287872262742,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,d biomass,0.43100059280059505,0.2828898861028101,0.2832385233148877,0.26023585402345956,0.35278383302854854,0.4480463855393286,0.5788539350250166,0.7300805038597585,0.9038845612902038,1.0757106951328128,1.236162578712679,1.3639241676827527,1.5071899458775646,1.6466836410959291,1.816300354933951,1.9733411122787237,2.140305795638049,2.2982401682642566,2.446898403947307,2.577898921184408,2.7417615858334443,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,e nuclear,0.0,0.0,0.0,0.0,1.1666439260758E-4,2.1607913581294E-4,3.4466551567786E-4,5.0151320731452E-4,0.00911928087761121,0.025624980309307117,0.05094711394019548,0.07603228231415916,0.10818351876407564,0.1430027114421203,0.18120171932814214,0.22201499624029034,0.26546489715735644,0.3089238525867777,0.35296638055872087,0.3946256185158433,0.4297360552654757,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,f hydro,0.04860990588735221,0.07679990234987848,0.0855113586049241,0.08912279478595063,0.09282776480384201,0.09648427194024133,0.10014444110140254,0.10379906370677625,0.11022777025496788,0.1166722937310428,0.12312587587101191,0.12953430220551432,0.1359608758365507,0.14239234028431907,0.1488059290592233,0.1552353963549428,0.16166381949874514,0.16809628593359402,0.17454920917843258,0.18101141170717797,0.18095572722716632,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,g wind,0.0,9.1440002797827E-4,0.0020700062601486,0.012250642083287145,0.029498402991177227,0.05431942052665424,0.09125384884505224,0.13629380736961103,0.18856652138808522,0.23882418562815,0.2912124484400115,0.3387458490684766,0.40028990783879714,0.4645279057916445,0.5408654096540575,0.6235161078627053,0.7097065195773079,0.794630350320608,0.8581614600186134,0.9045048830813832,0.9446778017477236,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,h solar,0.0,0.0,4.320013064657707E-5,0.005043547173156009,0.0138090247896201,0.02448765524413441,0.03625195529604922,0.052437573909299,0.07448191672385124,0.0981813011503617,0.12678197333017993,0.15895502765671793,0.20796831315121456,0.2632917826464406,0.33079913737533945,0.405776450920404,0.4868030969313619,0.5681092534233231,0.6383899178556253,0.6953858455207307,0.7492597658722439,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,i geothermal,0.00289800035098914,0.009417600288154221,0.01178643564474176,0.01907557525105771,0.026859693910831695,0.03378462289124085,0.033781616396408046,0.033774744692980134,0.03376618989054986,0.033766035838691824,0.03377577184979803,0.03378698173143365,0.033788599715926244,0.03380011017433043,0.03380616419999482,0.03381238538726535,0.033819859762568474,0.03382585251211141,0.03383703387054536,0.03385477898399082,0.03383989171041375,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,j traditional biomass,0.327264,0.4026073,0.4420999,0.4452606,0.4251093,0.398953,0.3717397,0.34349630000000003,0.3126607,0.2825664,0.2511859,0.2229147,0.1931484,0.16409662,0.1349921,0.10846149,0.08471954000000001,0.06491954999999999,0.049210540000000004,0.03754909,0.02869379,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,a oil,2.7712778372262434,1.169640444932032,1.4980423110887613,1.927585623430467,2.101861141007517,2.2728761815224705,2.3759127962165127,2.3972654731420584,2.3539447067610237,2.2711434276162263,2.2469706522779638,2.314746899904976,2.4335566765200114,2.612068536237914,2.8185561700096535,3.030829376478783,3.2400118801050986,3.449742280632659,3.6532238909332415,3.8246356129324535,3.938869193288663,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,b natural gas,3.38086604804558,3.271900256941309,3.758152907782676,4.346561059136947,4.923585159712025,5.494049843944725,5.996620332483836,6.407615839171995,6.804815586440825,7.135397229086916,7.363774359354844,7.403611042715605,7.091794058982338,6.847738337416725,6.635580133897041,6.475871559189349,6.309973221340053,6.194360496210474,6.10247564726395,6.088219014799084,6.408696980689869,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,c coal,2.114264723746773,1.3439272153207922,1.6823412222710687,2.004546208594856,2.2299238764577503,2.4414793964551396,2.637760035268422,2.850979382374205,3.155674729145058,3.5065432411428765,3.860188170265349,4.182649718482265,4.542713706890795,4.881422290449709,5.22150776610088,5.394216533413819,5.658634645407422,5.932414911372623,6.271786699275348,6.722754159347455,7.307839750324844,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,d biomass,0.0278787,0.022311402,0.023483594,0.02763974655428266,0.09063293044775977,0.17565506546126605,0.2810314496030149,0.4223975424202209,0.6068915271092309,0.8080638478962358,0.9837891357244697,1.108815807902633,1.2183624955517938,1.298016699326121,1.3830233115571267,1.4801824225401166,1.569365782397577,1.6601525009188727,1.76316785743045,1.887752042709185,2.020562674439067,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,e nuclear,0.0,0.00978388564935184,0.008981382144798891,0.08465837978869048,0.12194902253496138,0.1562069373261205,0.20049522951881849,0.24901662209260184,0.30308444483352504,0.35190421915669085,0.3929752175311439,0.4250608633676402,0.4817791415171858,0.523846837588494,0.5619689519652004,0.5591968797770145,0.5767074485976659,0.5936413185514768,0.6075412285404136,0.6157417031290161,0.6148822467650562,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,f hydro,0.1837149974660883,0.2115757916917212,0.2178949166152985,0.23705589788021303,0.25640897619655634,0.27576774453188757,0.2951153264357211,0.31446694928841296,0.33594978028448774,0.3574625223596454,0.3790018261070272,0.40050123670592525,0.4220361921978657,0.44358058393038385,0.46511494909125495,0.4866725850212643,0.5082374690600234,0.5297942215524276,0.5513979691728886,0.5729944397563496,0.5729380318675266,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,g wind,0.0,0.0,2.88558068143838E-5,0.00746959880433626,0.01553838752748344,0.024113529339671334,0.03640117173882476,0.050933929693876105,0.07112371117677777,0.08594048188118632,0.10011785862443462,0.11135656730806005,0.1381380629392139,0.15499388114724677,0.16796084727813687,0.21491319066368283,0.24883592634056398,0.2853275128718967,0.31517019198935914,0.35546257320985253,0.39514266950038934,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,h solar,0.0,0.0,0.0,0.0017468657701343098,0.0038249726878528656,0.00612691108195093,0.009547814747892179,0.01385391175140007,0.01999073006626205,0.025349406526814146,0.03097327850521328,0.03595984011353888,0.046025399837517286,0.05324811088591962,0.05971841546043587,0.07640726373183603,0.08862883060329706,0.10094225562876169,0.11101749738743072,0.1243457666494629,0.13766278002737375,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,i geothermal,0.0,0.0,0.0,0.0079133499648235,0.014489688386325321,0.020189185726080187,0.02676035810596854,0.033135398029063845,0.040307243822764564,0.040181662773541064,0.04095215322496047,0.04156496086618512,0.04604873388884367,0.04796534948774202,0.04916321769891403,0.05636314283028479,0.05986897958391522,0.06346309097480625,0.06497354080278767,0.06750709419641598,0.0675005487962837,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,a oil,5.468879754724205,15.431070835043903,20.661302761186764,23.83490991793063,27.268463120326285,29.89573065852652,31.767752897510867,32.69061735455795,32.616630411377095,32.14971046595975,32.08323040181338,32.930354100812835,34.276731483854725,36.27364941625232,38.487649789471824,40.86313576322077,43.16402912156436,45.24357149614552,46.60651382549415,46.41460147563984,46.030245410033224,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,b natural gas,0.47600761000979486,1.5543984988514377,3.852338734198922,5.256189493622743,7.14677920703967,9.769168368030337,12.516398364341345,15.497210930984375,18.633220525719988,21.39822259892675,23.25463418067254,23.997692864895214,24.035234680955483,23.585919557536936,23.02443269899175,22.61074998420131,22.572916279958154,23.07030405223658,23.707872063275673,24.338261211103383,25.935370243646698,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,c coal,21.39482385485869,49.70810343800482,66.27195755010742,76.8762316797626,86.10673535650722,94.41982473652152,102.30803211753472,109.38720136759027,116.00867301405896,121.79680608814796,126.32075811127454,130.2569239783651,133.73535602972677,136.6482122610245,138.46416195487004,137.31368045680048,136.1545946104635,135.0566714777956,132.4367276614304,128.46224420705664,126.72131956487901,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,d biomass,7.064931099276758E-4,0.25379647987405424,0.6822982608104637,1.2912237327869989,2.1329586007123122,3.044969178198033,4.226627696352096,5.684330647808398,7.234727042906002,8.80409182839487,10.164021247181482,11.301017210338193,12.302369474598258,13.128352327856003,13.97013346859244,15.01250663290792,15.84459227467268,16.413482599301204,16.727688930821508,16.51309646171705,16.268859102819462,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,e nuclear,0.0,0.19120314953900744,0.2662379435965414,0.42987506059151703,0.6668658676374948,0.9555274050412358,1.3835642903032248,1.888742404586589,2.4822426618485687,3.1044731897446702,3.719530732005781,4.286614551776993,4.789491838872766,5.230939176319087,5.6962578268357955,6.321233789615351,6.794062622520812,7.111036489254634,7.266394015674164,7.212276656421594,7.111752955651921,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,f hydro,0.45667513189429654,1.4309493831246194,2.603245116451625,2.645370699243914,2.6875685400244573,2.729669202886576,2.7718130270740797,2.813980132773873,2.910980855347884,3.008106801805572,3.105341788864844,3.2023981788710087,3.299524585563881,3.3967385175059968,3.4939458614902317,3.5911990315255586,3.688545634618628,3.7858925062734325,3.8833993004854537,3.9809153118229004,3.9808521592377355,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,g wind,7.1927381857559656E-6,0.00730348112031159,0.16080253345366713,0.2699056516457162,0.43966474769732783,0.661754092230183,1.000735581573107,1.4078221687142478,1.7148644546299099,2.0871742336336476,2.3864755941949336,2.646152932855459,2.7813265867204495,2.8308311385286786,2.910383231701954,3.3965050265310697,3.841280198770127,4.189971870495225,4.567027591637613,4.821698489647142,5.097775096280647,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,h solar,7.189669884350637E-6,2.7404216595785716E-4,0.0033913468312472303,0.02935594173584414,0.08194873024604007,0.15877644494936305,0.2850017759451966,0.4492349284673248,0.6491361037218794,0.8501151599720599,1.0375277761440316,1.217816936580082,1.3628759475403907,1.4773023414666173,1.6054217150607806,1.8792727357400278,2.091020399921874,2.230698448453742,2.3463824048730193,2.392084372368885,2.421792108964502,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,i geothermal,0.0,4.1366521336509E-4,5.8304562124031E-4,0.04843402496327724,0.09555187394184908,0.1157842143329157,0.11578964230815758,0.11579497426228769,0.11580067341318104,0.11580738724275573,0.11581446644692346,0.11581450561105852,0.11581626811519954,0.11581957766292744,0.11582150614961402,0.11582448962581887,0.11583913801895135,0.1158338663633049,0.11584252219988593,0.11583825030667487,0.11584733805628662,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,j traditional biomass,8.39255,8.28969,8.064680000000001,6.90845,5.71063,4.738770000000001,3.8898400000000004,3.1752000000000002,2.5922799999999997,2.112988,1.714561,1.40147,1.134047,0.910171,0.714398,0.5523629999999999,0.417948,0.312959,0.2352784,0.1827838,0.1418916,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,a oil,0.4470155749243007,0.5482243338059986,0.6108496652080027,0.8100353224946444,0.8748018109719907,0.9106292535104858,0.9395015869875983,0.9403688956413319,0.9228644599101329,0.8923840544517273,0.8989611281852129,0.9519708551582088,1.0509504720321425,1.183796400276838,1.3520810587506755,1.535646532122207,1.7259952235196487,1.908010720429913,2.0681133946703043,2.172205269226694,2.262950064404922,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,b natural gas,0.13466118006821096,0.2561373586537186,0.3254976102421679,0.5333325831351864,0.6546893051923296,0.7658175459539615,0.9201396702768635,1.0920728225730878,1.2917383588310203,1.4917605538932264,1.7023685261908035,1.8708349720887183,1.9947478200785935,2.1354939470857683,2.301115003413548,2.4642236737667744,2.631097603675329,2.800940182557402,2.9368276936005717,3.0496230830196107,3.370976087867458,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,c coal,0.13843132400799585,0.11641258135628266,0.11155663026049452,0.18840407198415973,0.2497042024967938,0.31117366845436883,0.39849636791825227,0.5115422929564531,0.6720254798563314,0.8578084900697202,1.0591198372145896,1.2480682628803725,1.4818217482125537,1.7267129998261894,2.0237672329730807,2.3143665309670673,2.642171423108178,2.9682107676706067,3.2949001887079,3.618081397815736,4.050286009190428,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,d biomass,0.08995713974791864,0.09041765697733119,0.07854733513610435,0.11060388949967506,0.14190614629600948,0.17008263943665453,0.21220319711448143,0.2610824127847265,0.318994184376022,0.38333477937341814,0.44865828855221535,0.4992368640215814,0.5596114443117459,0.6162667260170612,0.6845312774084072,0.7548588294961766,0.8255533615650695,0.8891031032444053,0.947667230049437,0.9995667612638655,1.0643535469428187,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,e nuclear,0.0,0.0,0.0,0.0,2.611424085356E-5,5.733158290424E-5,1.020070700225E-4,1.5949288160254E-4,0.0014217652336899098,0.00393156272546433,0.008209217400600467,0.012823224723817089,0.02057829712728136,0.02918172981844603,0.03855721380189654,0.050112706218773284,0.0626194929329259,0.07539209761498024,0.08814188953977693,0.10002198742885221,0.11131188492805481,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,f hydro,0.09898886789754233,0.14329055410739058,0.14544320744951048,0.15205601024201726,0.15869443374293773,0.16532668383343282,0.17195792670809928,0.17858954240921493,0.19029781263957485,0.20201244215275507,0.21373210802694353,0.22544222440647183,0.23715389557367472,0.24887195456145403,0.2605873153100046,0.27230207573374643,0.28401912096763815,0.29573556282769375,0.30745910466051873,0.3191934725828689,0.31918298570788883,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,g wind,0.0,1.7639945107887742E-4,1.403992349351749E-4,8.973475604538357E-4,0.00174978983999209,0.0027021847293506097,0.00431872246427759,0.006442125436211391,0.00900785699072538,0.0114281193135139,0.01464030055550103,0.018179344930120713,0.02444428825614932,0.030927057220888027,0.03859880858625065,0.04852226621998718,0.05892292977183314,0.06940888072563438,0.07680644903462708,0.08275426068532372,0.0885990487894914,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,h solar,0.0,0.0,0.0,3.067046123121873E-4,7.608427020919942E-4,0.0014093220267161154,0.0027216132723038014,0.00477396190444803,0.0077611499825212486,0.011380938899831789,0.01652990121376412,0.02263975763633048,0.03386756310882015,0.046643326692212904,0.06303151086322097,0.08492338648133371,0.10954093579602182,0.13560412004340908,0.15793004204869696,0.17731846978433805,0.19739044008508777,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,i geothermal,0.0,0.0,0.0,0.0015342288448414799,0.0033405363755373094,0.0053121817433278,0.008465704578801848,0.01230225823088312,0.016739412316720652,0.0200430646018568,0.02396382149011582,0.027864749689406762,0.03396735774630219,0.03928168063447777,0.04482239902289887,0.051105009041981064,0.056353070536738346,0.058798628530838844,0.058797891197883805,0.05879982793896828,0.05879368322986313,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,j traditional biomass,0.14111010000000002,0.0457948,0.0595668,0.0510138,0.0487041,0.047306100000000004,0.0448963,0.042413400000000004,0.039669499999999996,0.0369776,0.0338589,0.0309759,0.027778,0.02437466,0.020716190000000002,0.01723967,0.01394207,0.011063429999999999,0.00874823,0.0069809,0.00561323,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,a oil,3.7071957872605585,3.0210250209317926,3.051820889147907,3.2420739991632908,3.3743064285502395,3.410457922895554,3.3708664209833348,3.1842669846850717,2.9151749533370577,2.604279404311157,2.4180003992160652,2.337754869030976,2.3224440558913924,2.362426018914032,2.4423396601531286,2.5148339839827196,2.5781715399327862,2.6244422126568545,2.6876810602228596,2.755236323603296,2.7638605375435104,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,b natural gas,3.181941323446538,2.8331281166952436,2.514822837239549,2.766919706706038,3.031328447742773,3.272422104972083,3.5258094597232152,3.760614242660277,4.090743301164461,4.321470004194542,4.482567603887817,4.433049694088322,4.297901460094229,4.088617342261738,3.9026985319216214,3.730468205904768,3.5998584002069838,3.510746137708309,3.4737252689599876,3.5197026611472775,3.7626459600717297,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,c coal,6.9085152876327856,4.672858363763994,4.600517320895936,5.028823111942183,5.440519529100773,5.73269419863706,6.040026648822573,6.341656508555442,6.862466300105481,7.314527789894613,7.732655870897604,7.95167538575533,8.197641459146633,8.301624136784149,8.37714424744642,8.183827539119136,8.019547370179833,7.87771212588305,7.78138912887759,7.8264190439105334,7.839564584659842,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,d biomass,0.25939126414213,0.6892474520290028,0.9899805146365398,0.995684673502249,1.1125265710697159,1.1812957126082526,1.26910872320527,1.3577406081418886,1.4733568348614665,1.5914427268881546,1.6838266872723355,1.704139776028588,1.7146876089258989,1.6787093888865205,1.6506021477275936,1.6228853760522937,1.5832268561018095,1.5361315904854809,1.5161427266848986,1.5239231228613102,1.5151380386249835,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,e nuclear,0.2847000130409805,0.36759325672192195,0.34272335400099124,0.3894856492766168,0.4344649245827827,0.46360905140425296,0.49719619960024375,0.5232327846999352,0.5577269882116754,0.5823839522935171,0.608410191375611,0.6207467735634815,0.6396094070656022,0.6506855329653948,0.6569475621208593,0.6372241605482677,0.6228408703126401,0.6094804795651395,0.592401654885417,0.5788858455888763,0.5506297618607877,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,f hydro,0.0980422398809942,0.15655560373764502,0.16732697917893416,0.16557308907019821,0.16450077935624385,0.1641052961116728,0.16313512810795291,0.16224437111247236,0.16737678718977908,0.17264724511571822,0.17801085485705784,0.1834467691088784,0.1889369206520459,0.19445104370252206,0.19999427562077524,0.20557415940171642,0.21116831822096407,0.216775711009785,0.22241487680592853,0.2280381830450314,0.22801220051994453,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,g wind,0.0,0.0010633459987845898,0.01548112763046269,0.024128912053463878,0.03629318094561741,0.05071810336709539,0.07446292687051799,0.10342996821385274,0.1303342192201878,0.16444006120023555,0.19862308797469574,0.21900447111614893,0.23276820139082152,0.22980743714872398,0.22464377891536566,0.2500212345638843,0.26672432663892676,0.28526170777470544,0.3197981591192804,0.37454303946684364,0.4201473952373163,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,h solar,0.0,3.7976627744023465E-6,0.00252175759126781,0.00360046940406383,0.00513676294547198,0.007320481413260889,0.01145271325471806,0.01718663432798074,0.02359420421340917,0.0321683421984874,0.04179026427222945,0.04837010096499634,0.05388992192775689,0.05506396914365369,0.055935084280701396,0.06375842631792401,0.06903968269222235,0.0744554995299519,0.08400637339638052,0.098937088177216,0.11231120243536444,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,i geothermal,0.0,0.0,0.0,0.006293465421082729,0.014427555136052041,0.0224355837758748,0.03261389590172399,0.04219303471528223,0.05221347862510513,0.055622969454393434,0.05777471144589897,0.05779628139422469,0.05694720666890412,0.05424001920848833,0.05268914159202475,0.05684712624236797,0.05802814960458268,0.058014942066174836,0.058010491707098356,0.05800220884513176,0.05799097253444646,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,a oil,24.30334609654072,27.730707342401477,24.697923428151146,24.92108185429315,24.915273617080707,24.581753838940806,23.594582392933805,21.619378287200277,18.76247839102215,15.860753353910129,13.885967563047624,12.96683252613859,12.371185653726293,12.368300452278715,12.451270045107927,12.552901077625986,12.598504950641265,12.573909546542898,12.539326115800833,12.446798594199937,12.103201853081025,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,b natural gas,9.240620718739759,16.216240901748783,16.559704440882975,16.829025470099204,16.989493718513728,17.369255038563637,17.757324096061474,18.44981499332403,19.63342036087562,20.37001390101715,20.428138672739774,19.905049747734882,18.776844465776065,17.523924174613597,16.181780405517912,15.008047253388995,14.032810317403284,13.275186259033738,12.832313370315969,12.621985533292541,12.675443164442378,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,c coal,12.6921323285083,9.452940862752072,7.95836217736391,8.348776857776576,8.650033139341977,8.997658662855708,9.547588496888997,10.72659432619526,12.976378190362146,15.075823702212341,16.47423820520579,17.368829109385157,18.22481424243528,18.701349611382017,19.135364228382997,19.278892756617633,19.475444329637167,19.591928538949606,19.81605629225607,20.280428725642544,20.782207345644142,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,d biomass,1.7015622107111832,3.0127469825225517,4.750590184593922,4.060402758616344,4.470675973491564,4.795084221105687,5.251011627208399,5.981634921706026,6.993295019337869,7.991878740713948,8.640798767019119,8.99039515038787,9.183697454855322,9.102945433945251,8.967674257360631,8.718664868746385,8.361993965171095,7.9634912127842865,7.619044984304255,7.320420507344384,6.925458474339333,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,e nuclear,2.6656342315354657,3.4350570403425325,3.162661793630794,3.249914816214027,3.3231897842363605,3.3494161158077405,3.343941736655857,3.29376452242627,3.3570914828631824,3.309834382582127,3.266647303939142,3.2775183992039234,3.3904962416063418,3.5276043264059207,3.6039549288248676,3.5855806588866055,3.6185961635560915,3.65174088187577,3.6416292483687926,3.6041185127261666,3.42009938814546,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,f hydro,0.9660456594887168,1.0151795396308656,1.2464371047525702,1.2224961953103666,1.206188987846798,1.1918310210275662,1.1745227627586756,1.15679656475405,1.1559014420831164,1.156902428803453,1.158899236503433,1.1602505001767385,1.1627473652679585,1.1656875338049166,1.1689636681690918,1.1729275039137743,1.1772541901646676,1.1822579278461909,1.1877296463110059,1.193068412153196,1.192016883110153,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,g wind,0.00287959684220104,0.2675020062802818,0.5551886127124432,0.658201486287967,0.7565099280726671,0.8917678026587694,1.0948983439570448,1.359158668814123,1.261915352810861,1.520162127585247,1.7562634729779534,1.9616813657714642,2.1598238393048703,2.2537724775977486,2.313707449987748,2.4722638006447792,2.5951305865238656,2.761212563105367,2.904907286451689,3.1115178387871345,3.2583419761721326,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,h solar,4.437979471552065E-5,0.00555173546981191,0.08579819519814703,0.10008908094335218,0.11858138994990933,0.14228547957085355,0.17961165780306582,0.23235440589354756,0.23857561227081697,0.30302035725692256,0.3690990163288518,0.43025546290092576,0.49458086679743496,0.5341146812385802,0.5762926197933305,0.634734098611255,0.6777832717114428,0.7295730783613855,0.7756443402703959,0.8375093613379445,0.8820081361662517,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,i geothermal,0.01193073278985261,0.02056461763925736,0.02144856764267355,0.05229998517940119,0.08457235854964723,0.12481602394790939,0.17375600484283696,0.222886064196128,0.2655214418587499,0.2658966569859901,0.2652448450873868,0.2644577517890021,0.2639580131812241,0.2635485052271543,0.2632145052957658,0.26303760867172576,0.26294328599714634,0.2630074331238147,0.26317270864418507,0.2633050922382043,0.2630690883767071,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,a oil,4.2298530551121125,1.000482395366871,0.9089471469339087,1.010487877253522,1.047879995575441,1.0702292867922492,1.0706457793682396,1.035492210987505,0.9734282791610477,0.9062605532037493,0.8782376261248678,0.8969042121102762,0.9359946415760819,0.9982030979859686,1.0666197217261526,1.1329742699073415,1.1940003555060852,1.2514069727480368,1.3049233629949641,1.3485354273812007,1.3687736233702206,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,b natural gas,4.781681105483241,3.8893002483907937,3.028881820630731,3.332856547533861,3.3855544336019925,3.4490854641988378,3.521509001748407,3.5767492715952827,3.646545857297394,3.696175972707657,3.7218965745097576,3.6957414480811095,3.556716026978086,3.448808588032431,3.344784921297768,3.270933095534242,3.2001365390704053,3.1568184713269805,3.1234377312811263,3.1565949952209027,3.5437569001602993,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,c coal,3.5816493206617963,1.6254964400167164,1.625315334684549,1.7945512709368732,1.8555917744849806,1.9017608475613859,1.9630537568018211,2.046231359725728,2.1896526803147265,2.353953051429243,2.522497247638842,2.683077417406156,2.867005365026983,3.0331596144184747,3.188837348765037,3.2485455387470497,3.359117716870216,3.4714188577822584,3.6012809784807494,3.7847239131941186,4.009354016043011,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,d biomass,0.0250323,0.07342311903226016,0.14972080011693076,0.1874981729266821,0.21145246034576998,0.23217029404546605,0.26462930537296886,0.3108906889505447,0.3725151657027462,0.44003247504805587,0.4986954432212761,0.5407487926050071,0.5805915954004555,0.6062082880239551,0.6328575847799671,0.663732656739074,0.684303331734314,0.7036078180618183,0.7301253488375486,0.7644579172852259,0.7943331362859508,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,e nuclear,0.280705008048329,0.3279525388173897,0.3292564437062387,0.3729034190641583,0.38891415500636584,0.39483663865427293,0.41668899295287914,0.44593148047195597,0.48395108297678524,0.5194076053260384,0.5549949606085592,0.5867464917497653,0.6348491631280399,0.6724920824928575,0.7033845296746216,0.7158079525295196,0.741662567762178,0.7665015911973347,0.7787676921038122,0.7795834755386238,0.7644528338462199,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,f hydro,0.039579522288475784,0.0460090462516687,0.04916076294518378,0.049090768424578546,0.04932698245184829,0.04971924008183736,0.049973594924702915,0.05019139091519144,0.05038860069829356,0.0506255810295239,0.050885208479415696,0.051157302887755,0.051445627171867556,0.05173922263851619,0.05203814670878965,0.052339891963048474,0.052649113867295046,0.05296216455717855,0.05327849851642932,0.0535937427845052,0.05356777044671904,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,g wind,0.0,1.4398183940399814E-4,1.9188598184053998E-4,0.00507665368181647,0.009679223919996243,0.01413800859204146,0.02352546414521324,0.03635410393256287,0.05522414215534521,0.07245075106829267,0.09210533815702487,0.11116807840505823,0.13213339584255512,0.14473839217317372,0.15618043016313413,0.1828649222837228,0.1952622494968942,0.20711143219698197,0.22363611912983503,0.25073777382194234,0.2744467650095615,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,h solar,0.0,0.0,0.0,6.575160485393401E-4,0.0013742380241253877,0.0028242225570535343,0.006848734057530914,0.01340584505137639,0.02403458188777667,0.036530108964152985,0.0511509237498071,0.06509646831778693,0.08141120624791924,0.09225160035031772,0.10287317651749545,0.12419648736206693,0.13526256834393818,0.14580820157596547,0.16042421870854037,0.183544937501958,0.20529831474805033,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,i geothermal,0.0,0.0,0.0,0.004193780767705269,0.00671872179443384,0.00845787600827456,0.009869808281788359,0.0098788776168957,0.009885504893850169,0.009894921979047821,0.00989696119980306,0.00989022549319275,0.00988534511907561,0.009875948165616091,0.00986734678390705,0.00985924609822003,0.009852741466014281,0.00984678908540714,0.009841997066949179,0.00983817667678037,0.00983232883557079,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,a oil,1.6127047612515633,1.8586802338476767,1.8442723071040836,2.8066937298587398,3.012179429283776,3.1403803463378694,3.172790876865315,3.092123832308855,2.880329387376034,2.579508803117091,2.328964042884798,2.2269111077828754,2.1944870127002924,2.215441426622646,2.2491468784152264,2.288259360675944,2.308017921242283,2.3187199872374054,2.3282787491714525,2.325407544164914,2.2694306224824605,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,b natural gas,0.3475932207937715,1.1812695164757256,1.5546204618115134,2.737818503018906,3.134956728081659,3.542367656718612,3.8960087049290046,4.199141219775153,4.465657459654376,4.700683413330508,4.836592015709009,4.844733629734842,4.377135565739713,4.09712837107565,3.804424748859786,3.6350697510748384,3.4050344073447403,3.2284650172690927,3.0903195299986153,2.994539529799241,2.9666917900883147,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,c coal,1.396433990960796,1.5862138761641487,1.9611230257119427,3.0392151485082457,3.42269794454915,3.7707375504275698,4.0726963828519,4.374010265120835,4.715385472229176,5.11935602488292,5.468372151650028,5.727585294141821,6.145700232595623,6.35781011045983,6.5160696582812445,6.181757451979129,6.117240132260732,6.04204468408659,6.0441733723414455,6.1082165319485195,6.188691919501768,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,d biomass,0.4053529,0.33117569620375964,0.31928732133544035,0.42811052370790875,0.4958979145488792,0.5656255523929369,0.6388260700979784,0.7244515888018889,0.8237839185536904,0.9570145858203549,1.0570812990268452,1.1004130382673454,1.1294422112392457,1.113752005688804,1.0969560932240532,1.102413504330799,1.0775456619970867,1.0528138004033947,1.043405609600699,1.0446005764546367,1.0347431613792337,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,e nuclear,0.0,0.0,0.0,0.08923996733589865,0.12381553128760638,0.15474161237329714,0.18564123105569186,0.21417337009676904,0.24047544334176674,0.2663810989197115,0.28944546364737966,0.3101696531654151,0.364975291862542,0.3944984163987188,0.4217457573189146,0.4003385773794991,0.4015874342244558,0.3994240943892438,0.4027039977587529,0.4042431496722888,0.3999375469789094,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,f hydro,0.15840173300012783,0.2695360550046713,0.3406252259470569,0.3283040932898804,0.3160103431767014,0.30401913514486384,0.2918539972405013,0.27974326410547834,0.29585483610334534,0.31196503801198544,0.32806663024443555,0.34410218137366505,0.36019601261588424,0.3762392088152573,0.3923021501688288,0.40840323949901863,0.4245121019732974,0.44064626436724225,0.4568038922409669,0.4729353272204909,0.47285360410259775,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,g wind,0.0,2.54316734795272E-4,0.011180425396988259,0.026453249014159186,0.03547298109682027,0.046447776377763025,0.06048417831300223,0.076270239245235,0.08151948515084853,0.08427919003964282,0.0925750003130898,0.09889900598141772,0.13430592400485242,0.14666224693509106,0.15957005670046065,0.21742609527034182,0.24263719204159367,0.26123980270571323,0.2579458595779036,0.27237380313802406,0.2765091924470023,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,h solar,0.0,0.0,0.0,0.0020916710203284796,0.00402002612943298,0.00686874384243447,0.01103807647189007,0.016376224654777224,0.02255119353721872,0.027841705734264238,0.03395434268183119,0.039843013595185495,0.05796815657570706,0.0673454181053984,0.0772153677002662,0.10727327546509657,0.12272383625082905,0.1345995449700423,0.13818764797588992,0.1479722099929468,0.152309678110837,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,i geothermal,2.9592998197002006E-4,3.4646093927055504E-4,0.00244388241254819,0.012271298772511341,0.0184062275791081,0.02533411790713149,0.033124195433425055,0.04076902140035916,0.04551306593893795,0.04393723054001096,0.045378107277949324,0.04593521185431546,0.05622539490864069,0.05831812445637948,0.06093306308445735,0.07349921545525749,0.07645932618735195,0.07823014353963079,0.0750570653796018,0.0766472419504026,0.07629283714120538,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,a oil,0.9535333277766902,1.0044211671674594,1.005685328647585,0.8793277261930897,0.9038097373629895,0.9140872264514258,0.900127538190641,0.8262715789282197,0.7188509584757139,0.6119317558904176,0.5436124913401819,0.5165759930350262,0.5014488547392868,0.5091363266152997,0.5198212580525021,0.5311057782485729,0.5404081186406803,0.5469189926515522,0.5513299517924922,0.5523845372532122,0.5413128552963031,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,b natural gas,0.15091611111344663,0.30307674900042436,0.34327937604633957,0.3426036022010762,0.38968736383331704,0.43493489064502594,0.48801345947231145,0.5676926704266204,0.6487085638150608,0.7197476465923807,0.7683433279500296,0.7981762148828231,0.8189041410074002,0.8234644681982518,0.8242267679812129,0.8304931847675145,0.8545004500688199,0.9098668876046233,0.9671789395709659,1.083108733672061,1.587098466200309,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,c coal,0.053628886687450285,0.04296410719916755,0.04071125353361601,0.04148194876395193,0.051463299358761004,0.06103942422885003,0.08080326322367917,0.1442391254173691,0.24159889623784736,0.3415776118557881,0.413881986890922,0.4606345432016312,0.5007449337234411,0.5236568195939957,0.5453541356002479,0.5622685903935863,0.5727109867025457,0.5828070254942331,0.5963390265925257,0.6192970751674615,0.6456460673143206,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,d biomass,0.10377773478135169,0.1442200996685971,0.16961211516507788,0.15664622023120564,0.18488120804350447,0.2051512947530412,0.23104636469299003,0.2737922243831165,0.312635142086453,0.3527508204293041,0.37954446826200106,0.3949583984532738,0.4048752263056995,0.40512890585015215,0.39865176938115365,0.3877681355431728,0.37203128602190955,0.3553278560586509,0.338900138280179,0.3262627550254461,0.3172629541545569,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,e nuclear,0.08556158997171798,0.0852131298430216,0.09630638627310815,0.08867861203118034,0.08538015269351046,0.07968945768549843,0.07166418038099474,0.061472949273157655,0.05466924644821359,0.050758504199729354,0.053567943827004263,0.06391608496138616,0.07700810739583558,0.09281077704178603,0.09692459020491592,0.10546415959070922,0.11398512726824575,0.12222584076807437,0.13085051986965804,0.14026414653306143,0.1410620446447553,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,f hydro,0.5618447809731906,0.635160027142169,0.6077523881592226,0.5909239217285063,0.5785221455148184,0.5646559138960711,0.5502466897386465,0.5355233475250406,0.5416583475668301,0.5477575976868057,0.553912662764595,0.5589779928636306,0.5643227544047396,0.5698507575095346,0.5753475185565716,0.5809880551970587,0.5866562371854682,0.5924255216923483,0.598375998900603,0.6043149706341815,0.6037342955799053,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,g wind,0.0,0.0018509558554413,0.0034077847504451293,0.00542557222400063,0.01749685376290329,0.03832539495226227,0.06895800834390267,0.1039694119869951,0.1148674477568606,0.12696410216211831,0.1343018062848487,0.14284369462711397,0.14540021114568374,0.14678869009083118,0.1584659402375907,0.16517425135696093,0.16917887112753796,0.16377332592062827,0.15751969309762623,0.15258501754105244,0.14919654131048107,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,h solar,3.6101637132446826E-6,6.915613072613E-5,3.0265856225293E-4,3.8998558756169003E-4,0.00135167259135258,0.00236993173789038,0.00370160525535217,0.00490815172752719,0.00525945413778563,0.005796105886479361,0.00608259755620643,0.005964834907243081,0.00556435230305981,0.00530117112677032,0.005705074655349489,0.00604889574759068,0.00632996609976646,0.006414421274022709,0.00651321306061904,0.00668192936671685,0.00658285961545787,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,i geothermal,0.0010852884346667401,0.0060487335807215496,0.01631552952964739,0.01929862606348846,0.02741932954757946,0.03522719374316748,0.03606305623587401,0.03605096446790156,0.03485084856499867,0.035011654743652074,0.031931542003131724,0.0305986253734627,0.03115536701076903,0.03241452238687194,0.033224890257762846,0.033451794669469986,0.03295631071401245,0.030794000421804208,0.02897856255430229,0.02803421191513504,0.027636209704957792,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,a oil,2.5727581436448537,5.265202933440152,6.875596275171798,8.505919980466826,10.38289496935761,12.160749884222525,13.698934296117624,14.930354716826225,15.88423852325249,16.682968566061444,17.63064610162049,19.039975427848933,20.509949024547133,22.200682083786763,23.954891238945237,25.63807546821714,27.128095231724455,28.43295182425607,29.650839280698882,30.475824145798807,30.908935076440446,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,b natural gas,0.4422936196233034,1.3281032888301034,2.2058124186968526,3.135417700182767,4.561897405331041,6.678232252054376,9.175124557976764,12.05759026210139,15.087929297394473,18.05412026525213,20.67118830183944,22.61034148423155,23.59212734278551,24.03251460833803,24.07231875122303,23.93194226079482,23.68856371787593,23.54124926674327,23.523939077679916,23.726832595682893,24.12913795807581,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,c coal,4.3901083440218205,8.692809229278682,11.901930126073175,16.260956607129625,21.360663613764004,27.41230776874514,34.22763768896691,41.747573094441556,49.78558128055179,57.83371334645535,65.51140696239563,72.75630701587819,79.4704329180661,85.5329905805452,91.08111767481823,94.61063168340004,97.38112042922513,99.30871106209564,100.86105520154005,102.61192463272917,104.63354536710139,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,d biomass,1.13930329,1.448953460709084,1.5561134649871082,2.3359621042842678,3.617181215133056,5.112494033624129,6.8150686233113555,8.67226629780213,10.410829637205213,12.110564796310213,13.627624329729843,14.938408936105724,16.00231294527683,16.87451339194911,17.69080114648704,18.508403752789064,19.215535312706333,19.806996390712424,20.485566571144922,21.303885684442132,22.158200755776953,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,e nuclear,0.02210767929225579,0.06236629388948987,0.09455744922547628,0.15144401092563337,0.2178365044639321,0.2954096014443309,0.3914912293438558,0.5000955907112614,0.6305596077766426,0.7754498796701175,0.9299807931789803,1.0848419649216654,1.2377102861645406,1.3827409632316416,1.521255722178281,1.6389566809449916,1.7487233468010421,1.843736135869875,1.9334297692639628,2.0220462125541285,2.079372343499582,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,f hydro,0.25796292521978365,0.36622796411780234,0.4119257788081701,0.44785125798528097,0.4838053859420784,0.5197518775899878,0.5557018161737264,0.5916515006447115,0.6549621658014843,0.7182796391918955,0.7816025744349758,0.8448997150898345,0.9082081046701044,0.9715236838923188,1.0348317074011362,1.0981497298849345,1.1614699223240792,1.2247900809303733,1.288129301005495,1.351466093178592,1.351452546659775,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,g wind,1.1520041318226001E-4,0.02377079767099035,0.07167946151027182,0.11846652219873684,0.18874984234142345,0.2924094143352028,0.44471954442140654,0.641009295067623,0.8075581626142969,1.0234506354480832,1.229413451996067,1.4116370484437057,1.5576960892350038,1.65919076124568,1.735961568767946,1.8841649109491976,2.031020909224348,2.175465695142684,2.3530740324072132,2.568303390063969,2.7521908040847882,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,h solar,0.0,6.839989329833001E-5,8.279985553896E-5,0.013445337449628909,0.04605383785650553,0.10851190944118898,0.21713129906536427,0.38094713672746117,0.6067084176210412,0.877544174309671,1.1822238439589652,1.5069859161230252,1.838484644717419,2.1424715808026358,2.425014959151665,2.784885259343409,3.130643108178042,3.4413756463011143,3.766027513199425,4.0988770918150115,4.374576993458553,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,i geothermal,0.0,0.0,0.0,0.022067122815701824,0.04747853128288202,0.056557499235219105,0.05655449099830444,0.056553004652482884,0.056552615048111314,0.05655372898237657,0.0565567541905204,0.0565580617475931,0.056561072152680164,0.05656430876941628,0.056566869453947156,0.056568795735361825,0.056579216749894676,0.056571598415476196,0.056576993322543186,0.05660212798297704,0.05658054702674964,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,j traditional biomass,4.4472504,5.21060866,5.57558156,5.04559128,4.33170261,3.69460743,3.06687621,2.50131649,2.00080132,1.57828539,1.22628383,0.93527026,0.7059924900000001,0.5238743469999999,0.388165138,0.283796667,0.206195552,0.14837155300000002,0.105739522,0.07511277499999999,0.054471933,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,a oil,1.48820573819064,2.832053577563879,3.10468570387153,4.394801817437603,5.411420743066427,6.320758605878338,7.071596355460657,7.62730635448282,7.993554563339723,8.22266954253077,8.46531465703527,8.99816210979076,9.572399168426145,10.231722865694389,10.797525875789354,11.344907422280963,11.731260143676199,12.033648752360202,12.199163771943526,12.150050782365732,12.002632044697563,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,b natural gas,0.6173077438204592,1.2218861804990602,1.5887475249945122,2.5326935776796575,3.511075211164475,4.784945606414014,6.11443094861956,7.455899880740644,8.799714423050967,10.089339923550039,11.16188002847474,11.940205677367645,12.238539512743758,12.312631294884744,12.134041101957457,11.90591312306519,11.605576239454479,11.376359838930146,11.118352787936683,10.929959962828965,11.076139921115463,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,c coal,0.1869461533790809,0.911629267583157,1.3225678161928558,2.210556938636029,3.191848941679615,4.458282355028247,5.821784843154413,7.302257975462189,8.984861583603145,10.794212166960138,12.527399775052388,14.198415531871408,15.774809316915208,17.16650425914327,18.350195683469835,19.106297665633047,19.686512785726602,20.098757298218565,20.40827249325196,20.775548652226952,21.383414472112754,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,d biomass,0.409056388,0.3197684102461965,0.3184309844817969,0.6554197724337839,1.0640306592127726,1.5237980828288227,2.038855046856981,2.577648336820049,3.092093169839582,3.6121590898435807,4.059073792040449,4.426866412191755,4.697928012090683,4.887172003294644,5.006017399021937,5.120312662958441,5.164602251598169,5.1772898344517095,5.175679813580463,5.18774661135812,5.232121678143632,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,e nuclear,0.0,0.0,0.0,0.003852545689945935,0.007455065334922151,0.01526741428635347,0.02878677396231633,0.0478878046824325,0.07165831000730043,0.09861304829362724,0.1272460452795802,0.15639385923891802,0.18924698037651544,0.2215184093914973,0.24880545223038208,0.28036467184193203,0.30941693854070457,0.33375967699361825,0.3521093126846296,0.3642001571214342,0.36795919317025916,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,f hydro,0.02054872678398869,0.03861002523400326,0.0636336662363203,0.06425558310331006,0.06492739731871518,0.06560220386754055,0.06628205158534012,0.06696226514603203,0.06901042777201294,0.07106271397635637,0.07311704769079101,0.07516417017443976,0.0772175756671015,0.07927193286049505,0.08132438907254391,0.08337664708108597,0.08543115168934773,0.0874850816363206,0.08954452050033991,0.0916041745388424,0.09160378107181162,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,g wind,0.0,0.0,0.0,0.0027053969376636413,0.00725355362743125,0.01440773297479074,0.024882525749640092,0.03805810690719531,0.05410872090951498,0.06937354763943056,0.08370030609167807,0.0966598794016584,0.11013469280452935,0.12083472216008855,0.12810859552334633,0.14218811660718592,0.1541128145887219,0.1655059001835213,0.17393435042031566,0.18276349604215178,0.19030175006146363,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,h solar,0.0,0.0,0.0,0.0019063311375485108,0.005881748447188031,0.01352401636206459,0.026850662885759623,0.04685953103636921,0.07487625371532612,0.10866047048554411,0.14709375381091316,0.18897412679659867,0.238105900171293,0.2838988783963565,0.32307960319254947,0.3782904038354547,0.4265557554996061,0.4717237407490836,0.5088595203335058,0.5446265394554044,0.5791220228166966,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,i geothermal,0.00404998556972446,0.02377441553802868,0.03368523506298082,0.05959760729541617,0.08038015510842661,0.10119340282770291,0.12226948187114303,0.14118142357140026,0.1347673936309624,0.1360334095864105,0.14075741208010129,0.14509624221692163,0.15084773154884293,0.1550551909345786,0.1550662619890783,0.15509742295307177,0.15509117145668863,0.15510746830767874,0.1551345374957431,0.15515729801221512,0.15515814126194866,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,j traditional biomass,1.41181,1.78826,1.93778,1.72233,1.47546,1.228,1.01244,0.823544,0.66029,0.519872,0.405506,0.310359,0.236695,0.17868,0.13716,0.103764,0.078689,0.0589414,0.0442735,0.0331929,0.0255365,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,a oil,10.78951443268896,10.648479855318094,8.754044914422565,8.483671831188362,8.115339648472483,8.001814510107053,7.803948956461279,7.121528510216037,6.152379373120584,5.17759946339125,4.551295768697308,4.223245043009914,3.9996995761567344,3.961137745718598,3.959663406949834,3.9941801781130395,3.990787779836493,3.95978773208282,3.923961612125376,3.8679161508112694,3.76465204635436,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,b natural gas,2.0253897984561,3.1051088690459028,3.80758410092341,4.277005413003163,4.544597801634014,4.646593460819129,4.808208398676651,5.190108142743826,5.747102826024763,6.204651152676665,6.439613876329141,6.422599808193188,5.753906417651533,5.316975981692402,4.937707283575574,4.6333969005623805,4.289419591860376,3.967776271960146,3.747951832437033,3.621009887405102,3.7410073837003757,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,c coal,3.2667909761403155,4.682332078253823,4.601325735111624,5.228133746703739,5.4644985782952675,5.457653587952315,5.522115360991457,5.920225897776099,6.686737023734757,7.441911772119816,7.949692369360877,8.1977201763548,8.646549024953178,8.793266068313644,8.8603696849338,8.331818039027105,8.162999056151856,8.119218325194568,8.100819892114822,8.132062479080364,8.152016653923585,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,d biomass,0.20971113925069398,0.2973293076829269,0.30078370766797785,0.32617335040584855,0.32133504112218697,0.32189813201042583,0.3742396042737499,0.6953705974372396,1.1979709721377556,1.6782280740784261,1.9844859825282155,2.110368191701666,2.202803939522712,2.1614272108048764,2.115106503271532,2.0807957186681953,2.037202816834784,1.9981831602823845,1.977471187644179,1.972618973104545,1.971821931455529,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,e nuclear,0.7281330787737438,1.0970711096120396,1.0375959503472276,0.9588825084000349,0.9140486693401879,0.8594371546423298,0.8044465137907176,0.7518333795018565,0.7076696571667337,0.6586352840455549,0.6133283778605272,0.5744834938325875,0.6238419597764042,0.6401984908075536,0.6173081637887771,0.6957022304758065,0.743901944090233,0.7751667397187844,0.7983638470862956,0.796783348363595,0.7678793719170005,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,f hydro,0.32147816682130054,0.2752797323057802,0.2959532880242634,0.29497192777893144,0.29399966533349936,0.29302286726925014,0.29204813983176936,0.2910742211476102,0.2942468051355988,0.2974227688527318,0.30059966132826654,0.30376805795035855,0.30694108792248775,0.3101148368674932,0.31328463264106715,0.3164586751940814,0.3196332017602826,0.3228044175703281,0.3259850292834363,0.329163617545265,0.329161629912015,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,g wind,0.0,0.0063059987619353405,0.01424790451832952,0.02590193002433627,0.03369382522715077,0.038631641138575014,0.04892077847954448,0.06347567870414562,0.07336957031743559,0.08813145352180204,0.10612505680965183,0.12281858298528404,0.16442660460684977,0.17975044801809623,0.18597286139637928,0.20516290971150092,0.2097997632311878,0.21656176945165911,0.20724529200214659,0.2225287232007062,0.23625879082712573,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,h solar,3.5930041058825534E-6,0.005367647403100299,0.013661733787262448,0.019050083528193748,0.02208058489991106,0.02449425381555663,0.029908707932279583,0.038244148164767615,0.03846612931427353,0.048787329430577724,0.061831197665052344,0.07332040270202987,0.10177706853373912,0.11350442493250422,0.1200558152046499,0.1347420216415973,0.13921099390842118,0.1444949611708168,0.1382183326051629,0.14753629473506863,0.15601784854084533,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,i geothermal,0.00625541016780952,0.011598166603838618,0.00946502905470235,0.017631728631612806,0.02231921288072993,0.02496650878433528,0.02972948819142495,0.03543695824109458,0.035610213049217014,0.03736276518281007,0.04126640101247876,0.04497588643736758,0.05303164815651793,0.05432850943938506,0.05353380551251957,0.055386751806590875,0.054667977133340914,0.05511143769671931,0.053430142845114624,0.056093737548588485,0.0565481435888824,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,a oil,3.272688199694502,4.411343395289168,4.230038760886257,4.091146582973669,4.176445777615996,4.256226655098738,4.255032475144645,4.0606535795452094,3.754814389124696,3.444806801509309,3.3601136082284797,3.457360150402309,3.6889346046603544,4.0723199529682,4.563356274154387,5.0923786874154855,5.639149944076778,6.149992283693547,6.5937391548177,6.857289846418601,7.100686037512223,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,b natural gas,0.9678456472462059,1.5795707643716352,2.2293390247511775,2.1382639170738695,2.5040412857961667,2.9065801832233484,3.40977253313908,3.963328232676355,4.6338932985401735,5.235716330184911,5.849904026791256,6.277051696057121,6.651212889937749,6.907217971657307,7.2102640965349005,7.522070501750477,7.9115849110087755,8.355639823615798,8.763735539440074,9.10657306259696,9.777358576920626,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,c coal,0.147263572077845,0.39936511635097843,0.4047762669549464,0.40767358150260197,0.4771747679123002,0.6369947822985245,0.8797626483947766,1.2381547634708596,1.7885945002077048,2.3498889450452656,2.8807950144881715,3.3597603167885204,3.942795033975918,4.5682145862672145,5.340501963000104,6.212130417695199,7.123517434942116,8.049145781773039,9.035701305719662,10.090331599889947,11.490078014219687,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,d biomass,0.08162710000000001,0.10568808267917663,0.09091648370179159,0.0776355473752543,0.10853408942598453,0.20637105226238656,0.3633947138224489,0.5925066575716522,0.8968247780871428,1.1788926288062498,1.4129414754301994,1.580678853129507,1.7514668098564041,1.8975004195618923,2.0729033600894895,2.2596880067247267,2.4586049773608822,2.6507737142420287,2.8337149102555728,2.9994663748966373,3.2022385873858723,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,e nuclear,0.01057319611634999,0.03878711778698321,0.021132501147480786,0.02090317367274205,0.02339037711389888,0.025731159971126263,0.029071858114891453,0.033088598206433166,0.03940990757463247,0.04664995087985902,0.05702296973564777,0.06883344621256718,0.08599489433328497,0.11079703959376412,0.13815245329548956,0.1699143565254299,0.20471375295495187,0.24267280891343493,0.28011915376792573,0.3170630070501747,0.3497856782728477,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,f hydro,0.08452076895460169,0.09956628957133704,0.1336322104399392,0.1336321721758734,0.13365281952935687,0.1336659408126235,0.1336785280645196,0.13369324225249038,0.13370911881369346,0.1337287810093443,0.1337501647698047,0.13375697603424716,0.13376831283843388,0.1337783147772683,0.1337855953884804,0.1337924828973601,0.13379651270091875,0.13379745678728136,0.13380561272184863,0.1338128424337983,0.13380643320010988,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,g wind,3.5999986776807888E-6,6.839570252449772E-5,0.00446026351525188,0.005720804600525191,0.01110529081094275,0.018096019165685928,0.02918853623777508,0.04377152356039046,0.060450064261610634,0.08267551571121329,0.10766674898173888,0.13405600019351652,0.17010613554068518,0.22127328610974417,0.28447626561123696,0.3599200300107616,0.4467976774879947,0.543584151780821,0.6314662577569199,0.7059924692642525,0.7631654763035925,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,h solar,3.5999986776807888E-6,3.23076409146583E-5,1.1143179717161242E-4,7.8503311637288E-4,0.0034815949389585136,0.00739147409303573,0.013829377750862648,0.022835987547681454,0.03636606821969457,0.05267680747979266,0.07363116731063005,0.09786646338943669,0.13122448956141833,0.170907649782307,0.21194353643272898,0.2546209999541416,0.3002700065392807,0.3477903232926538,0.3898866637397022,0.42731843700532113,0.4719238617317469,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,i geothermal,0.018446393224439018,0.026201496781785318,0.023788891409087912,0.026482884759616784,0.033446243837689765,0.040021196662466695,0.04804868104228158,0.05648241790929984,0.04654315256619205,0.056212354595081324,0.06323915621108979,0.0701425851680212,0.07865983280898164,0.08944274226398138,0.09699001334689625,0.09699680477108436,0.09700188615145282,0.09700550676595038,0.0970188688202178,0.09703157308306432,0.09703068444945658,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,j traditional biomass,0.27636,0.266313,0.259741,0.261532,0.272057,0.264377,0.25582099999999997,0.246735,0.23486400000000002,0.222331,0.206565,0.1912814,0.173589,0.1551389,0.13524819999999999,0.1158044,0.0969001,0.0797267,0.0650375,0.0533839,0.0441511,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,a oil,7.311674415438229,12.456065159278898,15.520701986123564,17.42060436179245,18.45055168873301,19.31589909223431,19.648594845645015,19.21743773690449,18.127721119263043,16.805076816634575,16.045539039280435,16.118858404970254,16.402327655783512,17.09376039220886,17.9553869957322,18.740361627968756,19.460916929203844,19.97708582601104,20.349805831962616,20.36072712657662,20.32280094753396,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,b natural gas,3.057036712468292,9.226302055522515,13.131911587566307,14.395868087504397,16.085644140093944,17.809819461673847,19.636163760326706,21.507109619733384,23.510200738254163,25.31679669216469,26.76812936566708,27.538922490806456,27.519718987590352,27.160595799928437,26.561176267991293,25.86565563742937,25.325321022043553,24.994339036686778,24.72436574031002,24.48353394350763,24.42085252651609,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,c coal,0.1251171768122908,0.3828281851819387,0.39464932661842134,0.4672881920135524,0.8417112788305343,1.6357835559431364,2.6265110965248915,4.0865424102869135,6.243704332487732,8.646199851073238,10.790368859017903,12.60426525440656,14.253859939758069,15.650415288404247,17.194632554577403,18.70663536734484,20.169698034475115,21.427766431205207,22.874481879182465,24.61507094807518,27.134547238316408,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,d biomass,0.0198416,0.0297346905993163,0.026304393587948522,0.03585896383599293,0.42021382241063654,0.9412456753682172,1.6527346606601985,2.7147682988439854,4.1261321203235815,5.569567638287864,6.7063233261236475,7.485244029769189,8.061786895867987,8.374725108120533,8.720404596290042,9.036665286549853,9.367319471262128,9.642108087043088,9.934339739440233,10.24106080949325,10.679518520612808,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,e nuclear,0.0,0.0,0.0,0.0078122765834612185,0.021973920967512085,0.04515142249366905,0.08074724371721287,0.12808345757762357,0.181816755848116,0.23791422255097683,0.29629336895675207,0.35299054987143985,0.4376266417367888,0.5297220821982366,0.6216965710141537,0.7132180020172157,0.8127170805726454,0.9111184383414077,1.0058910800864982,1.0937182550859934,1.1512499293207201,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,f hydro,0.04289342073684487,0.09915576134002498,0.0642237609836532,0.08552556218559197,0.10699234874902788,0.12844208071479435,0.14989594919481108,0.17135458894792585,0.20305035169559088,0.2347650852651306,0.2664963148060879,0.29819707732738404,0.32992363822598014,0.3616663246721353,0.39341299638340427,0.4251727497816835,0.4569273403136005,0.48867459258169993,0.5204514937083741,0.5522385017337925,0.5522378483266106,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,g wind,3.5969225650712234E-6,3.0585760526328316E-4,6.262211583761495E-4,0.00988334477953238,0.026540108185508057,0.05168184041343706,0.08910305231783494,0.1378000324144747,0.19714107411257142,0.2548727953191783,0.3118386718622551,0.3611401028022215,0.44346248770968966,0.5246023979054815,0.619813620862301,0.7304296847669451,0.8719339893635979,1.0390044680348856,1.188462754451035,1.3473039553291342,1.4431004792176554,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,h solar,0.0,0.0,2.519284544049136E-4,0.015717265292941155,0.039771758563965844,0.07137570885205337,0.11453452103700537,0.16978714503940973,0.23956416284065474,0.31681062667792287,0.40424745248658345,0.49402950708738014,0.6234610789053463,0.7435503489622519,0.85374409027307,0.9437585505687048,1.0227285947055105,1.0875609658963288,1.1192168578254444,1.1564213216957402,1.2116690806189248,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,i geothermal,0.0,0.0,0.0,0.01102074993954579,0.024229717955086112,0.03808209368436711,0.05222207591231541,0.056550672139978365,0.05657224206359014,0.05659372074449103,0.056613180796769365,0.05662018157953454,0.05663155275237302,0.05664214544307069,0.05665160652208058,0.056662185815155426,0.056670038489290496,0.056673235687240024,0.05668176141933999,0.05669360740543488,0.056699021173134315,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,a oil,0.45759557857354205,0.7183564674897136,0.9563633315620043,1.617029754119663,1.8083118703387555,2.026573927957888,2.2453063661457704,2.44635122801957,2.6136056391522073,2.772866751851154,2.994018726467981,3.3972962629285695,3.7872146337030905,4.345992893309736,4.935311220024054,5.558945994638222,6.109626394654167,6.617021599570079,7.031418752007875,7.294849012943479,7.44828380727771,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,b natural gas,0.40399135822816395,1.0777737197751878,1.130629742393182,1.9549871059353308,2.431383557027162,3.1016666823807317,3.9568303515978145,4.989207495732406,6.162682553481842,7.463813257420562,8.737915991625522,9.916132863715259,10.719473312492342,11.453722688566868,11.998951763717754,12.415268413493672,12.700159969513194,12.997817123381747,13.135752984144437,13.118624772183438,12.860567139664454,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,c coal,0.08380380033251461,0.15057040716455647,0.17120749708144317,0.3250293184748737,0.45407611297472555,0.687728832410831,0.9949297039924929,1.408866815164914,1.9619668928443719,2.668263086665115,3.451068680073609,4.326894189848911,5.2276359146904126,6.267880910549007,7.422646446647101,8.68965897650017,9.925686334575744,11.113181138221568,12.38270456449807,13.801892380408018,15.61506960642335,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,d biomass,0.101175602,0.14935700000000002,0.1634214,0.28583528441293243,0.4494662439729885,0.675806502831899,0.9911626664463593,1.3950424132859518,1.8521118306303463,2.4000872404416045,2.965258098226578,3.530287076799344,4.07814397154989,4.6296877244258345,5.1878300695058,5.767882186455341,6.297640515687832,6.787904507823261,7.25235199896508,7.6819998698674175,8.107933822914127,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,e nuclear,0.00105480046547632,0.00894241987724311,0.012311984103135939,0.03199546160239584,0.04207519394813297,0.05506601527489055,0.07329103754496742,0.09819983840850631,0.12860841201545023,0.16598447794617432,0.20743157478255514,0.25393448210214575,0.31311365126965474,0.3706787973456908,0.4280474749780866,0.4726003429814426,0.5277268874064699,0.5816301104967281,0.6342201441101849,0.6786879074325357,0.7163257763599918,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,f hydro,0.06093002688800963,0.1111032469606975,0.11451985213540682,0.1177043872299765,0.12093274686203895,0.12414583999824728,0.1273617953878933,0.13057716980121165,0.14025849883678712,0.1499551178962331,0.1596658050209596,0.16934885291719678,0.17904982547126044,0.1887542735520926,0.19845103302195288,0.20815748699334538,0.21786326685875032,0.22756464442936203,0.23728586388090653,0.24700452824301106,0.24694563907784986,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,g wind,0.0,0.0,0.0,0.02227713076168605,0.04525814192287789,0.08304416029078561,0.1431563645610833,0.23025986810197768,0.3399483507122337,0.4550007424486532,0.5846488482964394,0.7171182320766103,0.8808970414241494,1.0149474177937337,1.1430914441183284,1.278212534532243,1.4055818445994703,1.5258566595581644,1.6130262941889308,1.696703619398799,1.7657425726094662,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,h solar,0.0,0.0,0.0,0.014572006633688852,0.03151630469044786,0.05314097468342525,0.08006934691727234,0.12299078181548909,0.18538496608814503,0.26143579328809075,0.36302265651498644,0.4926811292610899,0.678626129720386,0.8722103415178859,1.077398635664575,1.3009022000109698,1.5176096517253095,1.72150914875183,1.893752760907981,2.0484192628658833,2.1858724831789647,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,i geothermal,0.0,0.0,0.0,0.024388683106329752,0.04223614025313436,0.06302765787593581,0.08064574082959845,0.08066092336755784,0.08067921331499836,0.08070491401143774,0.08073594050216715,0.08074263459310259,0.08077560068875556,0.08079666663611414,0.08081112765359283,0.0808276137691315,0.08084600006020168,0.08085287079081471,0.08087171876498686,0.08091004418338724,0.08086988436305409,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,j traditional biomass,0.6844110000000001,0.9536132,1.0434866,0.8339449,0.7954936,0.7284446,0.6408773,0.5465397000000001,0.45868634,0.37619438,0.30356936,0.23811633,0.18330419,0.13727665,0.10284668,0.07573887,0.055775396,0.040656658000000005,0.029660330999999998,0.021508585,0.015943706000000002,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,a oil,12.50879260061553,6.9435108333787845,7.3525398635544885,7.777511532586229,7.817307568411522,7.88197458977173,7.763110533290946,7.334555083471754,6.653651744764967,5.934496778353915,5.535909461677113,5.478188228488699,5.578064895176003,5.858995558328331,6.186120201287598,6.508925916134736,6.811580125183976,7.098143572966393,7.371976894423191,7.600384430537002,7.701045082886924,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,b natural gas,19.631882984879084,17.033737847878403,18.58638383630864,18.368288663198616,18.829447815311326,18.98109398150652,19.14107030316947,19.125450242014544,19.148829721667102,18.999919929836253,18.69646267825978,18.08898293967761,17.102037725899375,15.979433912590016,14.863369970208025,13.960555446892789,13.192097221236114,12.55918295085583,12.04204116206422,11.684512237978122,11.669662200029913,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,c coal,10.252523918161994,5.202680549072172,4.699684347994367,4.749966576930369,4.88094643542908,5.072490456529296,5.344808753072143,5.809903299662969,6.6104904478782,7.489844982773599,8.288865477776742,8.98090809924351,9.734306245600948,10.37580672302291,10.991004335804988,11.554023283695267,12.01638895207667,12.411759482376368,12.921576503967763,13.66906595141063,14.635227095347922,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,d biomass,0.6937325995513319,0.3616886010427503,0.369641223512841,0.36575580860298657,0.4542909570829477,0.5903236780305992,0.8215503880762569,1.203203244712688,1.7376290094847486,2.280855802562919,2.7034308561763267,2.974940508359619,3.212205598566291,3.3446951417518767,3.4810749474952605,3.6113360807171158,3.7336066717756538,3.8524908436620593,3.9979587076428214,4.196478609839322,4.392783121314464,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,e nuclear,0.4461818447562886,0.5635871479552887,0.6476205170573097,0.7148188089316789,0.7959994325763768,0.8623708852964397,0.9591800364334679,1.0656061961644268,1.18373385693618,1.280382156056702,1.3679917403099446,1.4373574987334092,1.5502493427397082,1.6623073576193779,1.7557695899445989,1.7880276255117107,1.8214351271867626,1.8587261853145545,1.8648739654744162,1.8521186452097884,1.8064059840310347,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,f hydro,0.6257245877214083,0.6512091657034871,0.6327121578594416,0.6700514599214337,0.7029714322764599,0.7393141067406721,0.7742419902721953,0.809329306670825,0.8480671248476704,0.8879783990499509,0.9286365636037414,0.9696160349354964,1.011040821617132,1.0523820531794188,1.0938565923988377,1.1353635668600608,1.1768817460559873,1.2184846387544164,1.2602811523819895,1.3019633800481833,1.3012189761137674,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,g wind,0.0,2.6377680692987458E-5,1.5196616027886081E-5,0.012352347275903258,0.03795176126428896,0.06526245689272417,0.10730565646263036,0.1582491862169868,0.22801068348908735,0.29018290836895855,0.3430415605008473,0.38643910747696275,0.44178316391847194,0.488127984907602,0.5302835687522601,0.5829329710242661,0.6420086250492476,0.7164131318267735,0.7900156663974545,0.8789531867797424,0.9529538355197473,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,h solar,0.0,0.0,0.0,0.00113887576471959,0.004610866771829678,0.011260667789738308,0.024350763895511718,0.04294000428037959,0.07060019785012722,0.10081697287902593,0.1325132303301074,0.15818896080722827,0.19049966525918424,0.2179796928319663,0.24472182306869725,0.27565404569624824,0.3088460066076416,0.3498050088502241,0.39273506574452866,0.44596572351455877,0.49369832740638936,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,i geothermal,1.0503278870308836E-4,0.00154141355865048,0.00191526138386625,0.015026799574362898,0.036001673531726563,0.0543572769515183,0.0769021165404694,0.09909235321072407,0.1219169012731547,0.13275091762974103,0.1361052259511781,0.13889707162054107,0.1440114885217137,0.14805202248568913,0.1521172321595216,0.15913906370814665,0.16649756152668754,0.17615818779707124,0.18359932868962847,0.1923935092549095,0.19655041144524618,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,a oil,0.7715063845368526,1.0300200922231282,0.9760254188266085,0.8546343639185012,0.9437124174087244,0.9178870557581912,0.8483710754124948,0.790333456294158,0.7499142389418303,0.6960498643791196,0.6442979408745729,0.6421761224598698,0.6556810499154025,0.6884217747680983,0.7245122224256728,0.7607369281534131,0.7923973782386091,0.8203992528937821,0.8433381746126536,0.8538049625826918,0.850216709580218,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,b natural gas,0.06340162767253642,0.11697330087360759,0.12484867675609115,0.23284459806406985,0.2527929092841903,0.31834311583967223,0.37241394466116307,0.4185338878306217,0.44474498683073643,0.4782481616130775,0.509734377802408,0.5218049746879976,0.5247443470885849,0.5186361991138239,0.5106881637850592,0.5008113127396233,0.4950792571440937,0.49847855918636613,0.5033004612038796,0.5097488394846966,0.5119726736034821,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,c coal,2.8927040061502223,3.6416418800505155,3.8819016967662097,3.253531420863279,3.4249502246004737,3.513016407330652,3.5212501875063085,3.4779388430346954,3.372738989518764,3.2843192719774392,3.205826283095625,3.190010499986241,3.2093764535746723,3.2548827900756376,3.23908218638453,3.32151906299851,3.358232176521617,3.3132757853722836,3.249596192686257,3.178439813035221,3.1397711773493495,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,d biomass,0.20193241,0.26179245454836836,0.2772379581649171,0.24488719679181117,0.26995889628206304,0.3222801896119182,0.39038362922324044,0.4528038166621849,0.4854694237116434,0.5260542576773951,0.5583111063433057,0.5842911003750026,0.6005465830313219,0.6132788790005433,0.6270694606527235,0.6334944771430114,0.6384161580931859,0.6465547550159849,0.6532839499023956,0.6617006810196153,0.671749674568271,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,e nuclear,0.030416406437838432,0.040654541817377134,0.04355274763513808,0.0358397437893751,0.03842630106835079,0.03727038083914788,0.03692356497343831,0.03784754196902007,0.03921269551268799,0.04137213846066587,0.04399742882365852,0.04787604605943174,0.05180413562314466,0.055880482817885276,0.06012990897229289,0.06336957041336136,0.06636766429842954,0.07068211580070721,0.07348607354840181,0.07441446031570548,0.07474371545641395,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,f hydro,0.0036360007695841897,0.00476635797113454,0.007640899128154399,0.00697833440820109,0.00801925752339014,0.008217146844240878,0.00842006237968599,0.00862181481375139,0.00900623602830516,0.00938886034118461,0.00976999089589904,0.010149191671290041,0.01052790172866036,0.01090554875275346,0.01128278927828166,0.011660152779790111,0.01203765273516626,0.01241487367231078,0.01279256407907067,0.013170285599034468,0.0131694490274174,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,g wind,0.0,1.1519883513354492E-4,1.1519086898231887E-4,1.0257154956812242E-4,6.9737685642736E-4,0.00610191837122994,0.01455346728660477,0.026599948173639372,0.04132361676465148,0.05846300319796166,0.07513703411984915,0.08959953639994236,0.10047128313383662,0.10727136190053879,0.11927592406297328,0.11452672498342915,0.1099246179119478,0.11660426257706194,0.1266886180301392,0.14025944872520651,0.1498702348979836,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,h solar,0.0,7.514498513313E-5,7.505062906906001E-5,1.4897628042542E-4,6.5056511773892E-4,0.004074222978727861,0.00960505050151958,0.01774608885114557,0.028010046756679428,0.03899098479693757,0.046083203408132115,0.04993119250174878,0.051991650399808395,0.051966057898168994,0.051836000624141336,0.04844563935672081,0.04929545512152011,0.053482738243025955,0.058087178821219554,0.06281725274273366,0.06649813904924999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,i geothermal,0.0,0.0,0.0,0.0,5.9531658443715E-4,0.004415464499016581,0.00841345196004287,0.01225052512672918,0.0152536744159133,0.0154484856376995,0.015470719330610989,0.01548035517361539,0.01548619470302375,0.015485908572461269,0.01548478529768376,0.0154830149563672,0.015482584999633151,0.015481315109024068,0.01548056714704898,0.01548020683226977,0.01547956159618789,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,j traditional biomass,0.233914,0.305578,0.323662,0.31605500000000003,0.314234,0.316535,0.31310099999999996,0.309601,0.30204600000000004,0.295339,0.287404,0.281764,0.275582,0.27007000000000003,0.26302939999999997,0.2563978,0.2487313,0.2414121,0.2339429,0.2262005,0.2220183,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,a oil,0.9761922536347349,1.4733989817076403,1.9484800771576403,2.256156188906863,2.335996783228175,2.21755864694481,2.1249254200517,2.0106693380308815,1.9479591048432954,1.8907983418414511,1.8745587420991243,1.9362148528615062,2.0324073473368887,2.188530036685347,2.3817565324696104,2.5922873711411216,2.811813106818844,3.023293306690088,3.2087856931299434,3.3116853595770257,3.3974184753499554,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,b natural gas,0.8302300087934155,1.1554285909599147,1.3100134741490888,1.275849540805735,1.3665586079536667,1.5257061316612353,1.7017757652158476,1.870091397800654,2.0363467506878337,2.2118988683126983,2.396570146866041,2.518847951646687,2.542977762830074,2.5995027164775895,2.666414105049167,2.7468622067714166,2.8530235070524728,2.986428557249487,3.110213187766421,3.2643731604850124,3.8375916293994026,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,c coal,0.01939828,0.0015823199,0.00838015,0.02156905585912904,0.07314018021133568,0.2656838809642533,0.4440298860126464,0.6354052878818112,0.8324711900150186,1.0519494008100072,1.2837849285441691,1.494490812762697,1.693815751220292,1.901180388231662,2.1389773145523887,2.38787928242373,2.652310672355764,2.9082469961518007,3.180999456518075,3.4596637038629323,3.853387636258874,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,d biomass,0.025143261295548346,0.03209621490809222,0.029288844469198015,0.0638259572468999,0.10128153016546781,0.22883062903110316,0.3539967775677605,0.48260313066224586,0.5944685394968079,0.7060869081985517,0.8065104890740594,0.8745522290424647,0.9378053116294959,0.9922065137021431,1.060339496755642,1.130260220011535,1.2057302939971588,1.2741714495437995,1.3409341834571735,1.3929269852401336,1.46357386375169,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,e nuclear,0.0,0.0,0.0,0.0,2.4110565854114E-4,4.126944226686E-4,6.1981899455133E-4,8.6171601829556E-4,0.00804956085438459,0.022543379460713716,0.04252587187185712,0.06164478092300892,0.09217110989444012,0.12021772225946724,0.14832895778646038,0.177116028700612,0.20581908835768725,0.23310493472275712,0.26157454724174234,0.2859232168011671,0.303227409383298,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,f hydro,0.13536035173228195,0.28053777217130244,0.27939733465435307,0.2828800066375579,0.28681481483218113,0.29052375298058014,0.29424719303315205,0.2979750194981498,0.3043915226743896,0.3108532369030505,0.3173566089584264,0.3236413387802783,0.3300384195039447,0.33643056427909285,0.34274782708026474,0.34911779381082647,0.3554698267955626,0.3618134407835299,0.36824395080058325,0.3746949979719889,0.3744621728156198,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,g wind,0.0,0.0,0.0,0.009078474687432982,0.018097041566393107,0.030703463305637287,0.047824821572953244,0.0672971832616684,0.08894054320673386,0.1058313420422158,0.12417913526428977,0.13916791288959174,0.16930384134670767,0.1935046968961126,0.2219846828355416,0.2495395938750195,0.2779625456019691,0.30498779054065156,0.31737133626243685,0.32620356162648717,0.3341176197356524,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,h solar,0.0,0.0,0.0,0.005196529158102911,0.01122030644849013,0.01988096765033443,0.03201499073548117,0.04548490104465137,0.059895236579513365,0.07340504081940509,0.08999909264845204,0.10634184814910176,0.13560576137494798,0.16407052082528545,0.1992799376252073,0.23539760161316797,0.2724291672730692,0.30714418185836917,0.3310407861224727,0.348584333525873,0.36471626469933804,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,i geothermal,0.0,0.0,0.0,0.012334419383432979,0.02191655191416362,0.03258129495248357,0.04404335102699428,0.05462266555446736,0.06421192456892241,0.06405707292755318,0.06656159849620341,0.06794426934919884,0.06883652439208106,0.06887881014757485,0.06890425760049121,0.06893909628658912,0.06896793107667612,0.06899356278772674,0.06903693234643606,0.0690807986528924,0.06903924901273936,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,j traditional biomass,0.017020091199999997,0.0220903096,0.0231320917,0.020243024300000002,0.0199329968,0.0190053373,0.017946151400000002,0.016863227,0.0156402743,0.014396248300000001,0.0130164519,0.0117811541,0.0104397907,0.009050501099999999,0.0075870456,0.0062157421,0.0049539199,0.0038833049,0.00302651772,0.00238086681,0.00187901294,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,a oil,0.8934541962018573,1.4945145039213215,1.937165572339533,2.48346367613995,2.7335953898821646,2.9179417097569784,3.029548651740121,3.020171215762135,2.9291437009460384,2.7824006950511513,2.7265155736637583,2.7900936821520217,2.9326590047119354,3.1591458347720613,3.457671348489514,3.7815273041661412,4.1067431706067605,4.406633280576825,4.657146398305441,4.781674988226105,4.910626653473472,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,b natural gas,0.10200860966100572,0.44390404833718444,0.5534298425770627,0.9163127516020485,1.2249617012898544,1.5880103722267715,2.0036214824613605,2.439634371332208,2.9332356187199404,3.4139655828668025,3.8776775876435146,4.185743088846279,4.347254300189816,4.501242087923714,4.666124001249973,4.829594609241056,5.013646221111304,5.224925855795144,5.408205920322516,5.559310772994727,5.966088280380434,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,c coal,0.11513453535776343,0.15273393764951346,0.23103571064403614,0.3933803075384541,0.5784258808136162,0.815320681743775,1.0874574829757075,1.4052445889808634,1.8360435613203876,2.32200890049983,2.817180241343458,3.2401876204965343,3.7053554414657435,4.16088262126658,4.704190190934029,5.182242639208213,5.72372570082767,6.249726265749258,6.788141854425961,7.333019914080696,8.114059056402983,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,d biomass,0.15285808710946538,0.19595533260914796,0.26465902474761344,0.37443370146482163,0.48414431961221294,0.5998846977898656,0.7340624281809431,0.8793214494941152,1.0519544701202825,1.2364719106843998,1.4061657758340467,1.5246563973544036,1.6384348865174803,1.728348850017827,1.839086248192762,1.9484069242413353,2.0577806207577094,2.1533187408184618,2.239017373731841,2.3069711457987427,2.4198504429184093,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,e nuclear,0.0,0.0,0.0,0.0,9.7779523507452E-4,0.0023511190718723952,0.004711149880668361,0.00792518570110857,0.01349316523520015,0.02103278826241077,0.03128595228651701,0.043989299213002,0.06400525651596263,0.09002121321867713,0.11130344281594966,0.13651268037981884,0.1631915883860931,0.18910787860807585,0.21426761315999196,0.23702070350787552,0.2557030347081995,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,f hydro,0.21793360896837097,0.40518574983292915,0.4241362807044356,0.4550242886130708,0.4874369749068436,0.5190052565672002,0.5502297479107464,0.5815126081708338,0.63737106969723,0.6937909901535484,0.7505465940672028,0.8067702132034074,0.8633393313392286,0.9199542403321633,0.9763799303271118,1.0329853249326644,1.0895329135933245,1.146062644310512,1.2029307142116528,1.259834686585502,1.2594601875468443,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,g wind,0.0,2.9135955947033044E-5,0.001484748009435152,0.00565172925940474,0.011815983521407647,0.02036602915478945,0.0331718261930086,0.049048676327318574,0.06709338804490471,0.08520104272555216,0.10684167280019606,0.1279997646332894,0.16369319658428994,0.20256766186487388,0.251814178714879,0.31649164335246655,0.38634564551366374,0.45810502133283915,0.5149395707624675,0.5623375787831454,0.6060844199655316,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,h solar,0.0,0.0,1.1021752871315593E-5,0.0012402726767866,0.00412029021174257,0.00777352458082884,0.01301496150211432,0.01953899077576893,0.02787146336191339,0.03683034249270901,0.04790169721279158,0.05906869887502375,0.07702730691020765,0.09710368152897578,0.1232813688317325,0.1550927030295802,0.1858888946341259,0.21170433763127466,0.22852483872027182,0.23915473879925067,0.24757961945079393,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,i geothermal,0.0,0.0,0.0,0.0034661545810722397,0.00830157321179469,0.015202076812716521,0.02477460707729532,0.035565266452092334,0.04743020346911781,0.056389985429666334,0.06556002212123156,0.07311909963999076,0.08535102295345352,0.09723361118605899,0.11120335225295905,0.1282086459650057,0.14380320470830585,0.15767356932703458,0.1647100902914531,0.169419494403946,0.17366613461148772,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,j traditional biomass,0.2725087,0.2679878,0.3247083,0.28809779999999996,0.2625592,0.23758559999999998,0.2151084,0.1953015,0.17447829999999998,0.1552297,0.1355099,0.11841,0.10100100000000001,0.0844902,0.0683319,0.0542619,0.0420967,0.03226537,0.02469326,0.019200870000000002,0.01523016,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,a oil,0.23250754163116688,0.5676676111605243,0.6391338525495449,1.1955980185438873,1.4703861963191698,1.7486317047541906,2.0022609928325434,2.2163978498434407,2.4031731000259247,2.5766624580978172,2.7966865561693504,3.1802186787560265,3.6176365462795976,4.125994199668448,4.637467276798182,5.160368769495807,5.632598961402076,6.075271170440267,6.444323685039863,6.673192741900186,6.846168868301783,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,b natural gas,0.16151918976386556,0.4580893419734703,0.6993260638441974,1.5274373013975786,2.318947722737637,3.299573707502404,4.443560790939972,5.6762939072573495,6.9913957115573,8.398077229294174,9.79365160526038,11.100615147312523,12.027890845492962,12.803443131437994,13.301831366133474,13.622073850716712,13.844455870653888,14.097648725236098,14.183421169989362,14.09593790433245,13.692114648959022,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,c coal,0.018663211,0.04005030331725738,0.05994034581874501,0.14214405309548175,0.2855357502904246,0.5371356062245931,0.8412525984229153,1.2159616011489087,1.6983262328179738,2.3114411166615936,3.0255773997097637,3.8521385833144506,4.7564491777466005,5.757170574732705,6.8470792853542175,8.019347729905128,9.160977747703049,10.249715403360568,11.426932657418826,12.776594212215933,14.529144729927872,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,d biomass,0.03912939132844486,0.0898888991803048,0.10029486903892845,0.18406757889025424,0.3604254581458311,0.5749581836962808,0.8361412073134972,1.12703663284699,1.437311184773723,1.808551237025345,2.2016003677691263,2.6160835750366505,3.0203459106472574,3.411556218319078,3.7779085273540605,4.13216822062861,4.437327645282048,4.704940211634759,4.951598249330605,5.191969144156332,5.468441097172416,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,e nuclear,0.0,0.0,0.0,0.0048437188674220815,0.009887920869196978,0.020293059031759618,0.03806568965009457,0.06369035641333502,0.09603984788358046,0.13607158008037423,0.18380399695109828,0.24231007189510742,0.318856705578593,0.4107658990379822,0.4873891927787024,0.566082524259825,0.6482921854854928,0.7284055285587125,0.8047956562381415,0.8752710112841707,0.9296646321654549,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,f hydro,0.0268079043787579,0.04630894531654028,0.07103796373900331,0.07480921837182647,0.07888931033863408,0.08286660152300399,0.08684885940321713,0.0908299480392284,0.10271334590049837,0.114662134486835,0.12666908226878937,0.1385869729324041,0.15058920378240795,0.16262399638304326,0.17464767113225751,0.18671265680923183,0.19877272526774126,0.21082684354079398,0.2229794498885924,0.23515568160351027,0.2351056860454803,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,g wind,0.0,4.920004814569048E-5,1.3119937896258E-4,0.007984635479456235,0.023521552786444033,0.050656431988250664,0.0941832575295281,0.1548194838692987,0.23449240130332344,0.32847922033684784,0.43678968861269774,0.5608310539104265,0.7189276419066877,0.8837602815157525,1.0483867084501617,1.2283145520134136,1.4141263319916877,1.599977342760379,1.7593454984179644,1.9110810319480824,2.0511720877858246,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,h solar,0.0,5.01200490459711E-4,5.4759740792612E-4,0.004323785533119623,0.011743699471262971,0.02384206602959881,0.042740834111843956,0.06860638129392713,0.10101852528369976,0.13699170878369193,0.17661392841758186,0.2203203826832045,0.2754403861791041,0.3356049761700798,0.4030021354614985,0.4825307093018439,0.5702167320648599,0.6631361349287626,0.7529885612474881,0.8420174729871928,0.9306619502595843,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,i geothermal,0.0,0.0,0.0,0.008310058264518565,0.02027199207507074,0.035937103350926126,0.05419639354754092,0.07280947642075905,0.09011632878065538,0.10032048042651555,0.1005829030494516,0.10065733823610722,0.10076432332381344,0.10088150728037756,0.10097623194859759,0.10108155495030012,0.1011721090877123,0.10124706315246847,0.10136312955229884,0.10147472343238885,0.10145335275418547,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,j traditional biomass,0.7144003,0.8983974,0.9657846,0.7820926,0.6872084,0.5911234999999999,0.5040693,0.4284794,0.3621954,0.3014477,0.2477799,0.19892010000000002,0.15717029999999999,0.1210792,0.0932682,0.06997489999999999,0.052029729999999996,0.03797785,0.02772628,0.02013359,0.01501997,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,a oil,2.1343344976661416,4.389448509696788,4.482800573425345,4.439851511481818,4.439169048503545,4.385284265892231,4.226109688446816,3.897717955434288,3.4051319892296017,2.9175395837140568,2.591198525174066,2.4502840583887213,2.3573390956027342,2.365913468922829,2.3738056825517586,2.3899476166655402,2.388462224427562,2.3729887962588068,2.3493632591048925,2.314283400696977,2.2512602182914425,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,b natural gas,0.11908457434334047,1.1700425644437953,1.6448477714684255,1.6997902769084197,1.786321951079095,1.8750540099233794,2.0052057678005744,2.2128705059453897,2.4897411204319133,2.730944848719552,2.8496118670955957,2.859420133277919,2.7391268626205854,2.5553608876456853,2.3460625133938864,2.1558064267047183,1.9770946851171145,1.82595996118815,1.7081364216547201,1.6218161767936197,1.5322210593180792,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,c coal,1.1133228134737707,2.3021928625107093,3.155535912684488,3.2925469935895704,3.335146559572854,3.389293359956591,3.4779699814655127,3.6792024582690948,4.023066599928854,4.374139999607699,4.591614905951327,4.739280807956357,4.8849109662308035,4.958634102578758,4.954723312122634,4.918955478905841,4.84339417773112,4.799668239711396,4.744085357147748,4.727154748141766,4.731731548527359,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,d biomass,0.030860647886263578,0.0910615569844754,0.1480784517262229,0.14976256313291292,0.17103483460545216,0.19767230814253223,0.2582313821460824,0.39049903616060955,0.5891755677195971,0.7856551996436449,0.9064187542235078,0.9714351953643533,1.0116634261253883,1.007874192975317,0.997385560086903,0.9914238753337159,0.9772672017592592,0.9583234887350311,0.9476664220715233,0.9485672367774238,0.9520683501643288,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,e nuclear,0.20166795308409635,0.5615476766134995,0.56353171086608,0.5983767696873161,0.6286674140544083,0.6352051585401098,0.6495854724496503,0.664882848724155,0.6826472252087984,0.694753398078317,0.7017142494706922,0.7130623409888092,0.7383836694167298,0.7665802586304852,0.7742346791992564,0.761559907299051,0.757703631193563,0.7603315732978845,0.7501727916753098,0.7329940314630504,0.7047785299810546,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,f hydro,0.02425480808006602,0.01405178961832368,0.01470087438908199,0.015991441749491398,0.017820665087225022,0.019864519649573906,0.02184802582913217,0.02384426947110036,0.027137001471711972,0.03044369189914161,0.03376472120359073,0.037097671087803596,0.04045479725702127,0.04381037434293124,0.04716288000799872,0.05052744976117041,0.053890155155055984,0.057248795378259394,0.06065598153171593,0.0640634394700796,0.06402790004127731,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,g wind,0.0,4.9735458561276E-4,0.0030963066615410503,0.004152842267042081,0.0061813439718581605,0.007924177599359022,0.011098007499419039,0.015453212589020611,0.01850531650346539,0.02421175924660602,0.02910565027755516,0.0337625589497542,0.037535180957281145,0.03937317325146079,0.04059585259694199,0.043756264244686344,0.046541056882771055,0.047837767383285185,0.050955492658252825,0.056523291450540705,0.0621842941441153,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,h solar,3.8131766347523206E-6,5.73870675707116E-5,0.0029257628751247996,0.0036814857283692395,0.005925075494422299,0.00795659712465213,0.01183836626266824,0.017838013546180864,0.02380947312427848,0.03376479090453797,0.043867136808730334,0.053366072677194516,0.06242229690754208,0.0683422213861803,0.07405022504411572,0.08287164363963265,0.09040978979816824,0.09474637459283028,0.10239237660488196,0.11471474816438351,0.12710596455047657,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,a oil,3.304107868654997,6.800623100633681,8.690536508611828,10.218093459299634,11.650500541584767,12.793054634294046,13.701720240564915,14.237641803697072,14.396265594342216,14.447893307862861,14.766351545757232,15.762754063463115,17.064684500229742,18.69910511874119,20.3412742558191,22.046943959272816,23.596860078575922,25.04639663030102,26.215998611983053,26.83432107095349,27.186647424498627,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,b natural gas,0.567730067525582,2.9848181287704785,3.4841843475904715,4.682331010349745,6.155793035804886,8.000079961086357,10.110332086257744,12.442823474953295,14.948191982674764,17.395348779434993,19.505208033363136,21.19503299621338,21.94378730297597,22.367786441406768,22.33832100562082,22.2484912547553,22.001219303029067,21.851665088836874,21.596180732056652,21.28222091439552,21.230986403620225,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,c coal,1.5567922826845726,2.143589480494478,2.910963446513182,3.940349545082135,5.133702427883658,6.688094046456544,8.479231868138275,10.627610452208124,13.240021977606622,16.09128677501678,18.845173911620325,21.610371257747182,24.514865580908285,27.26607329304624,29.88143965631341,32.12723675194383,34.18073635093156,36.01317264509616,37.683404146809636,39.34819160863936,41.68616100705604,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,d biomass,0.9761705791427757,1.137329587610696,1.3847466062358427,1.693187749641799,2.300297025846513,2.9477550560981753,3.727865173408689,4.569874334552185,5.377170108552722,6.231881596741823,7.007967773273067,7.6974076235599345,8.372975273885015,8.96043057595455,9.513583559786637,10.059808458344289,10.518664711880612,10.924495985299542,11.290480359957446,11.648340527400293,12.099604746833506,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,e nuclear,0.0,0.0,0.0,0.009626589262560086,0.019630442244814618,0.0379278760900727,0.06832623704319206,0.11130984731543254,0.16579587241350882,0.22941755783654041,0.3002941218082969,0.37564609989177533,0.4739613194272635,0.5742092381369619,0.6670096996529116,0.7643104480699727,0.857703475665643,0.9422126931893519,1.0108043925933499,1.0595517966055663,1.0941332150166458,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,f hydro,0.14091739318800678,0.19970862731187705,0.2543345552348322,0.265158957942357,0.27602443660117965,0.28687048325649794,0.29771376153173035,0.3085545369274815,0.338969388350186,0.36940753228394335,0.39986808856039124,0.43027971843980317,0.460727682477253,0.4911949186078723,0.5216601981152402,0.5521623499210745,0.5826753481364066,0.613205935789233,0.6438072898375402,0.6744296268432166,0.6744443226200822,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,g wind,0.0,8.334018717825595E-5,2.8472675996848003E-4,0.007657366954662889,0.019930192226709,0.03851420380783678,0.06600042371675188,0.10148302065328749,0.14479451385170714,0.18727846025031117,0.22948411751005365,0.2717542122356031,0.3278615690293827,0.3793656897692276,0.4255411766217195,0.4834239531545394,0.5369119088979603,0.586900050986179,0.6140523049889703,0.6334507666805234,0.654732272877158,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,h solar,0.0,2.510213453200264E-4,3.3366573558344E-4,0.004333325981851579,0.012356494738480281,0.02560159584284278,0.047383888838851335,0.07892844813476127,0.12222932227378026,0.17401817753761364,0.23405210406212795,0.3040371771896803,0.40413345537991424,0.5093637442322131,0.6169205091304913,0.7482348739937932,0.8764283970470076,0.9997391453955563,1.0907569129371395,1.1627027551809854,1.237156533352772,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,i geothermal,0.01964829623553365,0.03567154385190781,0.03578009571771217,0.06046820804787676,0.08514667332071998,0.11283794155777677,0.14432529497476293,0.17573491137330802,0.18066118433083292,0.19616102173404945,0.21102812235346433,0.22453676832190672,0.23404419479054644,0.2340758952744173,0.23410307627917706,0.2341424681272549,0.23418310126056027,0.2342260460393951,0.2342949462326845,0.23436263268471952,0.23437031625529342,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,j traditional biomass,1.20571901,1.2835728,1.3275854,1.2793548,1.1809515400000001,1.0838106600000001,0.9828829299999999,0.88420308,0.7901957000000001,0.6965965900000001,0.6077001,0.52260344,0.44526084,0.37268806,0.31069759,0.25301167,0.20326267,0.15995048,0.12496044,0.09716587,0.07656681,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,a oil,1.1717218161911793,2.043844918720578,2.0113998813940364,1.9208823883400443,2.0017912160154983,2.028355518974166,1.995552985523881,1.8830382098177916,1.6929066358074392,1.4982403977262142,1.3663097646012001,1.3097441702414279,1.2781039261305882,1.3023124007849096,1.3280906845446665,1.3640723585636902,1.3870237387705686,1.39400167546054,1.3913261427796095,1.3693166571653776,1.3356158841041066,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,b natural gas,0.06150068496606045,0.4239759677192195,0.6138548961256376,0.7208988475234196,0.9426239725499557,1.101860347430564,1.2523457741721618,1.418484571170744,1.5930979637210976,1.7306147541567447,1.8169184680509514,1.8368852719305893,1.6968633536495759,1.5264912345440809,1.386697469924668,1.2951544730977824,1.219462989405244,1.148040274186745,1.0932148685901988,1.0496178059461898,1.0057261293921669,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,c coal,0.48447641661066637,1.7647548241130668,1.8373184617856804,1.8919743326066136,2.226421465307402,2.459685988447051,2.6563990614565145,2.8813070859927428,3.151756869281656,3.403201299886926,3.58008670309117,3.707423190604438,3.907620388994777,4.102346615303551,4.231355829484539,4.1500123505693205,4.019879813627495,3.9611379386620955,3.909828776564259,3.8773576333027995,3.8991136343939585,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,d biomass,0.0,0.05773583348798079,0.06305263941387082,0.040673321190634944,0.06727492327288578,0.1043269372187416,0.16611786676937013,0.2702494076160422,0.40579923234859216,0.5354177066108173,0.618270882560642,0.6626994429035696,0.7009698909160813,0.7171095160893306,0.7256199572652237,0.7387310537733185,0.7451823845529205,0.744249939275509,0.7439738469732964,0.7443291166091253,0.7501474171106357,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,e nuclear,0.1243953996015746,0.17179636711714139,0.1737611121505269,0.15246636225019172,0.14558614378971654,0.1384841984068213,0.12861881599494776,0.11653040122966868,0.10290468849676762,0.08917915487261205,0.07705873306397176,0.06739494272930972,0.06508995998753074,0.06680727127440912,0.061772141328647785,0.07015047478050425,0.07855978843423268,0.08310938790040298,0.08586919359290753,0.08698804162065252,0.08725027102752186,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,f hydro,0.02415133124424252,0.01712926214638983,0.01750585377301916,0.01676049728793877,0.016875769306322553,0.01725523027514147,0.01759676170770574,0.01796788220754809,0.01911769894279319,0.020292315289268902,0.02149474335029087,0.02270987544169599,0.02392460704891733,0.02511144780113016,0.026317274472327158,0.027489843356256313,0.028658532908448227,0.029818148296263274,0.0309808971548105,0.03214760291471426,0.03217547858061977,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,g wind,0.0,3.9110955762999003E-4,0.00407385834760092,0.006705561563406221,0.011453897914014381,0.015558290444240142,0.020432871283662696,0.025927291653234878,0.028409912073989387,0.03172875720449432,0.03253638138735929,0.033429425609502725,0.03867256336435041,0.044979150775664924,0.04921003938044015,0.05849748517046291,0.06862732804146432,0.07476164004504528,0.07544588756889256,0.07417272197143285,0.0743123274802187,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,h solar,0.0,4.297905390223898E-6,9.600276807984333E-5,7.256061986253999E-4,0.00229777364112285,0.0043311949965560105,0.0075679215925349595,0.012133608306164901,0.01786744796126547,0.02365735730554726,0.02845475491709414,0.03238654953510527,0.041805285437199795,0.05306059542310217,0.06212123437921184,0.07927155362452185,0.09912540632360158,0.11294562072738129,0.11984677922852827,0.12298087667516365,0.1272948220455469,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,i geothermal,1.10790355255E-5,0.0,0.0,0.00187379220504111,0.00363986866949723,0.0036445261320633797,0.00364076172481319,0.0036434017622640003,0.00365119913725271,0.00366203190591001,0.00367482151188417,0.00368661394355868,0.00369639661561933,0.0036994433595184803,0.0037039841998380103,0.00370280180747986,0.00369885807765785,0.0036963718835477796,0.00369231960510837,0.0036857821796991604,0.00368668307865184,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,a oil,34.03595311425207,40.656936249934425,35.778931089238704,36.64631019891357,37.281569312674065,37.36356543348358,36.579870252926774,34.44178051283539,31.252542133741287,28.004530513600795,26.174715793320235,25.7115591590444,25.912844482954537,26.936524326780315,28.25590839497691,29.57457415873216,30.785164275672717,31.774218807285113,32.71711835989263,33.351824610284204,33.69450441384896,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,b natural gas,18.38422210596133,21.597895085212823,23.233626074327336,24.444134321695785,26.048927850134852,28.238336685727408,30.51384043655339,33.36370249486624,36.96460400501905,40.0015772817759,42.19819979038118,42.869590061928356,41.64715018923777,40.3321049847246,38.85085093693436,37.58819880157421,36.381634079114804,35.46336220504614,34.922835610774506,34.566067017923196,34.50792012613648,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,c coal,20.572146356119738,23.428419821456362,21.607699743862515,24.297021681360047,26.003762229514717,27.611392092814523,29.507938066710317,32.32720831609249,37.082984939472276,41.79945515989247,45.87091324484982,49.06843516408545,53.19975445423702,56.42732979858006,59.67429926167413,61.02065335930429,63.364757938459846,65.3713355568609,67.66457008328553,70.34236980697182,73.75191070331297,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,d biomass,2.6417247500193026,3.2470127433486233,3.8841083185635155,3.9982288945927174,4.63279730088569,5.331300967742867,6.2800813374488165,7.700333274794101,9.55961744527592,11.382492703510808,12.778525620947585,13.63387420631884,14.428444581247545,14.797720233659366,15.24114084154773,15.6615018502989,15.903658515774028,16.027085318124104,16.27001964800011,16.602811832827197,16.98222834517517,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,e nuclear,2.3412649022978593,3.021242532968092,3.127522039090407,3.3049816443860895,3.395796135454441,3.4491302434044986,3.490660629403333,3.5223331689582347,3.6123652994967435,3.6606936606734224,3.7329266674415993,3.820282115887393,4.093881258274115,4.329664101258876,4.520620731255992,4.647009727733386,4.852381985659478,5.020588832873628,5.16064643684173,5.245399573134261,5.250030799728079,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,f hydro,1.0456662937081656,1.0162230447503524,0.9789003161846981,0.9812489674527929,0.9911095654571834,1.0026986105011197,1.0129099401978594,1.022843857156698,1.0260037809130471,1.0295253002940143,1.0332492797454627,1.0369369991332742,1.0409410845608198,1.0449171597690887,1.0490853169786611,1.0534218179405475,1.0578505735946517,1.0624426261060842,1.0672471048840586,1.0718875161456562,1.0718014811260357,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,g wind,0.01173763596836127,0.06662792521334111,0.35469710942491656,0.470591297961548,0.5580148798682006,0.6733699158837212,0.8420283725874921,1.06684775647302,1.0591698630327437,1.3016614282708516,1.601382805780679,1.8564441599665675,2.2182338589937407,2.4352208583415047,2.6649753345450544,3.1100258272262336,3.383104316759878,3.67963071706177,3.9181601168416047,4.29048382173441,4.629430643745518,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,h solar,0.00254889138968348,0.004172014268279091,0.014663608145750571,0.027627226934158717,0.04077605882745493,0.06013248918289537,0.09068896303565013,0.13486565322863447,0.19009634297643024,0.25600495190821276,0.3346294630084711,0.4082130684665754,0.5126445237921701,0.5863961954864692,0.6714752813930603,0.8003185814141812,0.8825753540836275,0.9633702809553261,1.0280289670908849,1.1216564962498476,1.2062797347371024,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,i geothermal,0.06128053925884113,0.062498159864326136,0.06551670486134839,0.12015398836088796,0.16562490820796144,0.2235798325593124,0.29960250215407286,0.3874386958562975,0.44319283672108123,0.5018049612526606,0.5651443953681027,0.6049835525814944,0.6579869532326867,0.6756464496009698,0.6924008066788089,0.7483106522331668,0.7710402845923772,0.7996692437137586,0.8138833792783663,0.8140045005540024,0.813933784217537,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,a oil,0.3410637411870681,0.5294176182306937,0.7293948931287185,0.9473611595610814,1.2625789387705522,1.6903364568110557,2.222951827287837,2.8859540425066714,3.7663265084315234,4.858612085959705,6.179420636610077,7.811895941218969,9.644520186797445,11.669200103001632,13.849424324928927,15.883764416151212,16.981365821262347,19.128935333786725,20.412173061072995,21.35926522461452,22.039788060434518,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,b natural gas,0.0,0.017840598713378706,0.02381434814665983,0.0619410767739447,0.10270251481585121,0.1632364760141365,0.2543671446600068,0.38992958783521614,0.5911516557844525,0.8780837765184389,1.2674717372037227,1.7226085532381883,2.2620585654502676,2.880456400997731,3.579810228539478,4.364940190414243,5.346107974282675,6.2856552866437765,7.312235000900552,8.3835225414668,9.456628420271635,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,c coal,0.00864167163889282,0.01092872283619866,0.015763165870683958,0.02967253375921918,0.04870675386990052,0.07502703024276201,0.11410926842356142,0.17419060304082493,0.2746807421120238,0.43207820839292455,0.66482612974423,0.9774207819212781,1.3923052364673851,1.91913088973674,2.5966493281858773,3.435747858137285,4.587886233318245,5.871779018379188,7.3136848426647205,8.984296136891732,10.90953728248936,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,d biomass,0.5984681559442119,0.8337017414795804,0.9626097864540004,1.143846524905653,1.5580802401430944,2.09007202967137,2.771314329463902,3.6033540790150376,4.529576393843134,5.556731749321488,6.69075482679538,7.888063263808192,9.093049463241991,10.265971928667803,11.262030244691255,12.195807327044815,13.334444201372758,13.938388063364604,14.7464220838338,15.542149055809547,16.40028697993544,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,e nuclear,0.0,0.0,0.0,8.876925914444385E-4,0.0020169216319439074,0.011100886321794455,0.03146561049944303,0.06738218104647078,0.1246989640207697,0.2091666890315157,0.3254442985127216,0.46956005047215044,0.6420579365410553,0.8404764913716253,1.0506234591991988,1.2806157720439688,1.5516142194852696,1.7824905796795336,2.0271280506610796,2.2536607552577124,2.4504656553638506,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,f hydro,0.02195965473015728,0.03539191374669842,0.053921691358000956,0.0712427843933219,0.08886006825612229,0.10639461473529718,0.12403079780604578,0.14189126326713575,0.17715037739303616,0.21266704193081934,0.24840685773580762,0.2837066297563562,0.3192939044930786,0.35500800366350194,0.3904601772232603,0.426248711788166,0.4630133843580408,0.4973592667400684,0.5332443308565334,0.5689306153888701,0.5673824485931658,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,g wind,0.0,1.110000431138668E-5,2.3270039425771777E-4,0.00598228741611126,0.019146164477420267,0.044962538044371975,0.08740225187021392,0.14877941093759933,0.2417807558900238,0.3674241060381575,0.5294593618774318,0.7305830350004542,0.9677081805482479,1.225379348280515,1.505322283825421,1.7972731708289107,2.0984022752107485,2.383140025924647,2.6838902355961114,2.9711378212370336,3.254498283024419,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,h solar,0.0,3.5999913982882468E-6,7.200012198771749E-6,0.005897574557106571,0.019520845044386052,0.046615565700836754,0.08610096832050743,0.12032496197715178,0.1659574709902537,0.23015780139644898,0.318310479355624,0.4318935353310012,0.5774988366570423,0.7640836577319242,0.9895191293246142,1.2462017347583656,1.5631062358420384,1.814962111950615,2.0928769278622625,2.3511943192544784,2.6015955492384735,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,i geothermal,0.00117359758062781,0.00361079140248027,0.00529560897220093,0.01450721355442908,0.02710528162309421,0.043219828026429014,0.06116389390391404,0.07432905350275643,0.07454213313410024,0.07477568703487646,0.07501050154939956,0.07507092060289877,0.07518572174315492,0.07530488272886733,0.07535175877392129,0.07545039115597128,0.07569356967966182,0.0755348681351326,0.07561546172928894,0.07565964956673499,0.07582183518373489,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,j traditional biomass,1.377214,2.0188930000000003,2.5967089999999997,2.672556,2.734092,2.761708,2.761715,2.7476529999999997,2.700313,2.626234,2.44965,2.2126710000000003,1.977441,1.7540969999999998,1.552178,1.3890479999999998,1.277784,1.1488450000000001,1.0704179999999999,1.0106549999999999,0.986402,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,a oil,2.2111559986838065,3.037532367474579,3.589360144254038,3.6856363835621577,4.238984897095618,4.926184966511141,5.523169264998914,6.000866387638509,6.4316461219827215,6.79792226287872,7.110810359958975,7.52203489935663,7.92245097367978,8.295312504760648,8.622693738176181,8.780647429256142,8.448083072304163,8.737722644822348,8.646116612091117,8.486508470614535,8.292123387031328,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,b natural gas,1.0127241592979164,2.4701743108585488,3.0313134097438623,3.2289965930519684,3.996318571904602,4.9735196214019854,6.04894119056656,7.156966162863154,8.228455649834752,9.282754138700025,10.320598167154808,11.226532732560415,11.922216477873388,12.42207858555556,12.722945497104712,12.995099963057372,13.75956922317966,13.824511708292956,13.88321378992139,13.899148776574942,13.85892165354473,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,c coal,0.10944103644464187,0.20478643566540936,0.1666295525938357,0.19102285874894462,0.2336373093555734,0.2844577356225088,0.3448814910545967,0.41776651300237866,0.510286645136476,0.621857337804114,0.7479290090516473,0.8981326813322476,1.087528842863427,1.308033246862274,1.5667364240131727,1.8554490253314344,2.195355795398613,2.557774028144434,2.9118734074386654,3.3266752181918307,3.827746993233458,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,d biomass,0.0302875501,0.0503842,0.0942316,0.11098624612765952,0.15848474123124584,0.22651609688819832,0.3183054144377838,0.4422710926987197,0.5972489603770359,0.7637207323547488,0.9153936868205711,1.0625579366779891,1.2129710735617,1.3492308479969244,1.4726744237200566,1.5911243367614907,1.7229624651841184,1.8779801783658048,2.023589867075722,2.1904013334072023,2.3849543522734606,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,e nuclear,0.0,0.0,0.0,4.055471545371742E-4,0.0012284189723666909,0.008172169027455541,0.022620147756678,0.044660473545266095,0.07016910555908308,0.09799359841532841,0.12692429760647778,0.15424005642299124,0.18352645766214687,0.21655677082165511,0.25053257766471015,0.2861132959057071,0.32914436683992937,0.3534907826078773,0.3762697584971873,0.39146091809574124,0.40201956711735726,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,f hydro,0.0407969355450152,0.0515904106172327,0.06027726138445204,0.06325131946134406,0.06621380771389639,0.06917707071103196,0.07215015504012655,0.07512730353967728,0.08103923349062761,0.08695755879056805,0.09288058929722151,0.09880294708799803,0.10472824873947979,0.11065828319873508,0.11658784661948952,0.12252419216898656,0.12847565892450916,0.13440177720832344,0.14034728280390965,0.1462954979686472,0.1463042495163288,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,g wind,0.0,0.0028800829316464726,0.008219737457801558,0.012766801911707969,0.02739045887234952,0.05376624191711631,0.09253966842818895,0.1424936437936354,0.19365739840442892,0.255236049590512,0.3105301085245711,0.35645201134763244,0.4028381689733869,0.45621323990088186,0.5151515823376244,0.5824257332585419,0.6834998406407661,0.7391964878597554,0.8127131421350483,0.873745479232267,0.9229070554726716,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,h solar,0.0,0.0,0.0,0.0030472601348492294,0.013128163165439495,0.032845589650130416,0.06350370524123065,0.10533361960198828,0.1580542326359301,0.2188408345873076,0.28181220280289726,0.34395673900670753,0.41532558502463274,0.49816728363639756,0.5906224164651183,0.6930523981323731,0.8335568167459726,0.9138282135194479,0.9799484820038189,1.005586292731782,1.0152223983655564,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,i geothermal,0.0,0.0,0.0,0.0036947858560061404,0.01422465635661984,0.02866871040883806,0.04427250490079601,0.05888018577965287,0.07063520198051147,0.07259865285701683,0.07260804878072628,0.07261580818187802,0.07262487141924996,0.07263567887198961,0.07264573907200507,0.07265825878545963,0.07267809096342359,0.07268313321562937,0.07269714935326643,0.07271201944329948,0.07272280351627808,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,j traditional biomass,0.062738,0.0925072,0.1004378,0.1019697,0.10360559999999999,0.1073162,0.1134895,0.1217856,0.1318958,0.14343904999999998,0.15586668,0.16870107,0.18207475,0.19569315,0.208791222,0.221039922,0.232454794,0.24345092799999998,0.253651601,0.263063534,0.27328516199999997,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,a oil,0.2487467343048265,0.3505672376792083,0.5241692762538934,0.8005255775268305,1.059673427664178,1.3853157189095198,1.7329196316079982,2.0960625970480256,2.5488784239737865,3.1022755114161917,3.7525028850766367,4.547353591252244,5.394474798013174,6.304665991711783,7.2553007898455055,8.075240334838384,8.280169341982175,9.196463963423573,9.606288793910378,9.85960398751138,10.127232461862802,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,b natural gas,0.01846021,0.04078552901972707,0.062222318875076156,0.1782617952464291,0.28573029608105116,0.431196713461139,0.6229803253669038,0.8672346918960969,1.1851963791404294,1.6053004807702607,2.1385035284497804,2.748544896852063,3.3866346646538963,4.079492099205928,4.785847752016979,5.523094602112284,6.445302354686733,7.105612649407734,7.778018572450203,8.398882473773508,8.920332789405743,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,c coal,0.17708672863824543,0.12864235948318312,0.10955303438544402,0.2608250789864382,0.3986572262260995,0.5613501307784838,0.7650672018750139,1.0147870857188839,1.3429049915533642,1.7844491554682371,2.3572883754815903,3.072460188452145,3.958329971234515,4.974353269409952,6.1240489341367725,7.323062633294447,8.8526364872519,10.176214776612538,11.657897483541676,13.190955867626611,14.697303503742507,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,d biomass,0.37663409499999995,0.616619908,0.7085608969999999,0.8192755063067954,1.02658487649354,1.2674269252577017,1.5205225274193643,1.7817710816980956,2.0544644062437465,2.3695494454573334,2.716572646908446,3.0682710546882848,3.4046266782761156,3.7152831236218993,3.949444296937785,4.1474409087344695,4.32810262153363,4.510652744572472,4.680373696797193,4.861506112021888,5.154129686981371,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,e nuclear,0.0,0.0,0.0,1.8156875216700016E-4,4.5297949854092767E-4,0.002055965622117036,0.0057815405237066205,0.01244002469150282,0.0224605628678499,0.03753515196880503,0.05910898020675636,0.08696187213143805,0.12257040454125902,0.16524386563767637,0.21016112899637948,0.2623781355014359,0.3274454908556624,0.37781977710733383,0.4367504367223982,0.4947661416619659,0.5432511065702872,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,f hydro,0.054906318605825566,0.12279986282803355,0.14380348113770627,0.15222495383254123,0.16078804073928035,0.16928834649075153,0.17778512158626752,0.18628065073843428,0.20310863863036538,0.2199607975672283,0.23682634034315458,0.2536103785235428,0.2704208483164447,0.287229784666186,0.3040196926743833,0.32082612236649216,0.3376299251948159,0.35441642044321675,0.3712247321065555,0.38802242137279475,0.38798904068015466,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,g wind,0.0,2.399997319114938E-6,3.550001877597253E-5,7.744731474258473E-4,0.002220996716536191,0.00500164036393549,0.009955651730275449,0.01783150328539686,0.03031703872145076,0.049244900376166655,0.07675923630615546,0.11411017845985538,0.16446238788783643,0.2255003980318884,0.29612068336644437,0.37972878588673625,0.48720502002419647,0.5603055191657311,0.6483991905118057,0.7331451840800984,0.7966738853977168,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,h solar,0.0,0.0,0.0,0.0013208076263698041,0.00400626632183618,0.00921837463051102,0.01804750263175096,0.03193369475046284,0.05402422330723635,0.08816233906455459,0.13905181793282223,0.21046654921354452,0.3101333331517622,0.43460799751924406,0.5830499893066345,0.7615745692471023,0.993730890974172,1.1626765172314955,1.362933635375154,1.5583554010291554,1.7399222288959848,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,i geothermal,0.0,0.0,0.0,0.00173427335815574,0.00460572987596576,0.00944387386831036,0.016443556687634812,0.02526672783109078,0.03606803984516442,0.04742432818277424,0.05927262940937117,0.07008675271972889,0.07067764654253679,0.07070129263650991,0.07071404186262145,0.07072742803150738,0.07074613362407443,0.07073417621143271,0.07072617363464243,0.07070427350312705,0.07068101915746028,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,j traditional biomass,0.9525201,1.331009,1.516337,1.52976,1.5516969999999999,1.563311,1.5613110000000001,1.551003,1.527093,1.449788,1.3308149999999999,1.192298,1.0511,0.9142699999999999,0.7894760000000001,0.6838040000000001,0.599917,0.5282450000000001,0.473905,0.43339799999999995,0.413695,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,a oil,0.7422939484758558,1.2308992653258708,1.2428750477516777,1.602975962788742,2.055977872077798,2.884105358166853,3.9217493933570906,5.156551024814562,6.696786989578311,8.572682178326396,10.80635606297889,13.563018636667092,16.703000315770858,20.166191810977594,23.85485348942578,27.172554144536115,28.59454502570433,32.268953095840686,34.16664359662276,35.43247011207492,36.53021111531877,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,b natural gas,0.1406916230204752,0.41267371618272025,0.4003274016690722,0.6025349407710676,0.8867411132311056,1.446998359822772,2.2791539197923476,3.4381382876010798,4.97594520482772,6.980155656203193,9.497095490141705,12.457988395781644,15.713583679644886,19.265955776261322,22.97162591067759,26.82328687078098,31.564762657939532,35.01315358593802,38.66014470471912,41.95646480673269,44.72699325792054,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,c coal,0.01605138494340721,0.02370581761624764,0.03241407142944298,0.04915209593344684,0.07261518598899325,0.11647219042212144,0.18558571689963088,0.2921322963771022,0.4574259656935612,0.708499469682109,1.0706970858563143,1.5562635180647764,2.204699128343222,3.0423991686727807,4.115637534436168,5.453479755762374,7.23480540676243,9.288189719530207,11.522514901281564,14.137945848852354,17.273237898410237,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,d biomass,0.8578774206140888,1.3382216881497804,1.4926864957339667,1.922138695640917,2.5047824096649145,3.4650801443717647,4.65330730890475,6.015669952108786,7.488352982624121,9.110529438692618,10.879119201180561,12.732255729975353,14.596451716577691,16.408784805103533,17.928520458770624,19.274418703489907,20.628483649106187,21.720719667405955,22.794141971766333,23.884902933927354,25.28096937036888,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,e nuclear,0.0,0.0,0.0,1.8028782085014356E-4,6.994908690841208E-4,0.004617331936589199,0.01494452246555367,0.03536758551431837,0.06655510284679046,0.11299529423844143,0.1791335274518127,0.2670188870933106,0.3786250994971377,0.522561814145933,0.675500481073756,0.8557073646627134,1.0896168521086562,1.2797638180921431,1.5126627928300602,1.7505097355204138,1.963782749806327,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,f hydro,0.08142541990859395,0.10931042317188125,0.11379168471091616,0.13978708574011553,0.16612636918411103,0.19232130041089193,0.21853010174916518,0.2447517310314511,0.29678313296712017,0.34893828812251504,0.40120084756745233,0.4532402440286157,0.505439827936257,0.55767261960361,0.6098942183749827,0.6622281304168819,0.7146562662406413,0.7670672294175688,0.8196628836503426,0.8723474744796887,0.8724187309082491,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,g wind,0.0,1.1700045294223799E-5,1.7689950985448085E-4,0.0015366867194934427,0.005742001237556079,0.01772265301733773,0.04156380374949252,0.08263670825760674,0.14709355769581978,0.24383491702185514,0.3799132896171442,0.5612627753447352,0.7912495389041136,1.0743163114830394,1.4078080291026902,1.799488872690185,2.3213841186271726,2.6877494223179057,3.162444217380535,3.626339649106096,4.02271532042768,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,h solar,0.0,1.4400055746726214E-5,1.07999700759009E-5,0.0020335610128329076,0.006940855574035414,0.019166443903706573,0.04271692865741008,0.08354442124938906,0.15024895686560066,0.2555712191990715,0.41388481941388183,0.6407847559279568,0.9569988517983455,1.3722564264984627,1.8930364433327336,2.526734724645603,3.3020646972492274,3.8331555644127286,4.385293354437341,4.854422751655911,5.256460358488349,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,i geothermal,0.0,0.0,0.0,0.001765507332918255,0.00652975115590847,0.0183398471617889,0.0368643602489511,0.06112201703773973,0.08945292397578244,0.11907267737477631,0.1452810203980651,0.14531210557521565,0.14538466074957312,0.14545406438791672,0.1455092701849372,0.14558291531443163,0.14567275486701062,0.14573558897780095,0.14582811154822686,0.14592441422944616,0.14554947720149777,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,j traditional biomass,3.31438953,5.054457299999999,5.700202,6.0471768,6.3180368,6.5011948,6.5794907,6.5788513,6.5035933,6.368346,6.184027700000001,5.9469567,5.6475811,4.9335638,4.2310893,3.5850658,3.0707405999999997,2.4618317,2.0053591,1.6232924,1.3498095,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,a oil,0.8781008011495126,1.1268098650533915,1.3443834440121365,1.4686276074898152,1.432203027451263,1.5638057079495153,1.652834222045902,1.7093618025615567,1.748372627798192,1.7612492167025926,1.7579458041535674,1.7807066874015918,1.8028553351120609,1.8201696629602646,1.8317332978440455,1.8100859754244107,1.7007653471531166,1.7168600875637203,1.6683716944097697,1.611200783549705,1.5529661303953952,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,b natural gas,0.788218538878429,1.43436027639146,1.5605144539344895,1.749500934404213,1.767824891498062,2.020177177643203,2.275453618095304,2.514853644894729,2.71278212804896,2.890480745684927,3.0656945110382776,3.202265934561599,3.2483625975577826,3.328756093011186,3.3254621717657775,3.3502639372198075,3.7630963932007275,3.824703634448972,3.729441079151387,3.524378057792837,3.3808091535349116,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,c coal,0.03951589153682511,0.036794871423530516,0.04123145651605128,0.05108665670941451,0.05481384111033194,0.06653699463994504,0.08034875051327563,0.09710708117611358,0.11869028062892777,0.14468045713943062,0.17078814290824787,0.19846902847258993,0.23663287521336918,0.27730273326297655,0.3303397684018968,0.385598690242205,0.45732377985176775,0.5239158613799754,0.5848182789548949,0.6542730259712651,0.7456993744147744,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,d biomass,0.06693409435120509,0.09223786697540974,0.10364087571752567,0.09400750003486488,0.09399089032922502,0.11444498477639466,0.13898762953908603,0.16928879539235475,0.20377701370309806,0.2377493381085165,0.26231342870797714,0.27972000036341765,0.29983203585419355,0.3112612695521244,0.32399412602624406,0.33441212357704947,0.3492586580002508,0.3618769517575609,0.37349440135203227,0.38613458301843645,0.4047351627995293,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,e nuclear,0.02621156724893717,0.02474273514481149,0.025815066732270728,0.026554174442628604,0.026611311706717024,0.02855050945343101,0.03091037582724127,0.033387448884935764,0.03586660718875706,0.038569368355836915,0.04153689759334973,0.044946670247238724,0.05081594280459784,0.05632246995271465,0.06190008837149772,0.06725556408500757,0.07523977432874028,0.07855606713399937,0.08212522205470855,0.08444472551988684,0.08628497205416097,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,f hydro,0.06435351959099034,0.12241367913158392,0.1209120271130451,0.12385669110962662,0.12683666137608082,0.12979122289852033,0.13274797828126517,0.1357025282834162,0.14091808061259908,0.14614190851223122,0.15137232441918588,0.1565958419944691,0.16182419841948803,0.16705764656140348,0.17228855651790403,0.17752638939178703,0.18277073612160424,0.18800130862725922,0.19324210690617796,0.19848333863631185,0.19848232804249538,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,g wind,0.0,2.6999929228296003E-4,8.999814088784439E-5,0.00200840684846708,0.003810406797752088,0.01122859528333342,0.02287786900992316,0.038307887191383,0.05601137981300166,0.07387096055572577,0.09257417341408157,0.10716466678174018,0.12822824876340388,0.14278591110909103,0.16629056724079122,0.19433243660596985,0.23222621298824087,0.2564845468396205,0.28228910973017923,0.30903595605541495,0.3279047025205085,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,h solar,0.0,0.0,0.0,7.288641827176251E-4,0.0014765789987959538,0.0040915941387555605,0.008036531661320179,0.01316693098466589,0.01912054861515631,0.02517833668230657,0.031653730833698455,0.037013518091570004,0.044731892340658226,0.05057368940829494,0.059538413342271584,0.06998160375883036,0.08361110713165018,0.0917133804905164,0.0961233220950359,0.09547628117379088,0.09173161612384274,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,i geothermal,0.0,0.0,0.0,0.0021061130224148397,0.0038382869783817803,0.01009923943217755,0.01841339603268067,0.02776114297492517,0.03698375258088318,0.043936580392669775,0.050623946483831464,0.05296028104833084,0.05665484926224327,0.05794678038410545,0.06250190808661894,0.06827422955107205,0.07626628373700184,0.08012106938364418,0.08338417077180973,0.08692144014437994,0.08814906290290689,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,j traditional biomass,0.005148801,0.0028465,0.0020511,0.0018508230000000001,0.001919111,0.0016127889999999999,0.001364919,0.001163652,0.00100622,8.7767E-4,7.657289999999999E-4,6.65935E-4,5.80079E-4,5.0393E-4,4.3622130000000003E-4,3.790394E-4,3.346483E-4,2.818388E-4,2.4020699999999999E-4,2.048432E-4,1.7850450000000002E-4,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,a oil,1.5911311224189502,2.1282399914196177,2.2508264913476497,2.357828435444704,2.494332066913772,2.599844890489793,2.6925873946284944,2.770763577576807,2.8786962426119183,2.9598397707951474,3.0269833305035436,3.10744928171494,3.1977907728832378,3.288864076615133,3.3687182260584434,3.4031151032012126,3.3146785996537713,3.3653149726425515,3.319742426785876,3.2464373112546174,3.1409341372981623,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,b natural gas,0.7817508417203938,1.1509170281924732,1.3776114382618707,1.487056877141517,1.6327492424121448,1.8049885618757284,1.9651946035951635,2.121084114623741,2.282143057047403,2.441095647194376,2.6056213312518515,2.7326436157548315,2.8103775472184562,2.8902910312385965,2.9827155577589473,3.143173790545455,3.9742079654230036,4.41797090886218,4.5152653232915085,4.575042637971094,4.623135986490745,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,c coal,1.5244137565854745,2.2453228927464206,2.204481508196056,2.4421199735821135,2.674258410311939,2.841668008942588,2.982118540371424,3.0836756666211365,3.2121315005648206,3.302886387309623,3.39342165752795,3.5000172271828616,3.6613507302216837,3.8391372704950975,3.9878652882642807,3.9985732510853915,4.086265670917385,4.125627258303159,4.133954152883553,4.133317357804295,4.129069939512753,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,d biomass,0.19790358175993128,0.2712859430435136,0.28427651710354596,0.3132026446842136,0.3431469889504187,0.3744530513220221,0.40507734597380385,0.4335534623439911,0.4591211982092735,0.48500657362118393,0.513984454665627,0.5392500050492202,0.5671437241237874,0.5919149033602238,0.6053390840765182,0.621127158286875,0.6342629754835724,0.6265019027517367,0.6189257462450221,0.6171977581425925,0.6438619940410328,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,e nuclear,0.0,0.0,0.0,0.0,1.2424435076139E-4,8.860179924117278E-4,0.00242602931382565,0.0046952533898648105,0.00969025329282232,0.01609157993715041,0.02371342834286852,0.03146836119754206,0.04002026844423029,0.04915926856285866,0.05737317809298364,0.06746753081477953,0.07733192590978252,0.08465480594096768,0.09141781709564753,0.09692948694644163,0.09968624604158854,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,f hydro,0.1354377682638639,0.14144103172598024,0.13662980208532943,0.1426849067875453,0.1483877442158443,0.15427635614423368,0.15993314923685056,0.16557597300219928,0.17262820415036073,0.1797122620091298,0.18684219291129975,0.1939420449592268,0.20106806217442907,0.20820001062301152,0.21530664732490126,0.22245060144738962,0.22962045728224736,0.23678909355292524,0.24401862484616377,0.25124256253866734,0.2511980270940949,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,g wind,0.0,0.00549536010113646,0.02363449893728639,0.03238890637651131,0.04406710613802855,0.059801168288034535,0.08270583469598744,0.11153341684972627,0.1285684191816739,0.1612050415679386,0.19243824885505012,0.2208678029627996,0.2481258289109821,0.2692902307657159,0.2885795864238444,0.32741693243635606,0.366365381005316,0.3904164557420324,0.4142164711998079,0.4348814091065908,0.454132283453747,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,h solar,0.0,2.896152960737495E-4,0.00101784247057944,0.0035045005893497997,0.00803693148748079,0.014984736165210972,0.025610486197039612,0.03965430231585036,0.0588639355672226,0.07822999746813357,0.09756984406950471,0.11634239155112304,0.1358502188414898,0.15283224653530983,0.16983551239357314,0.19727417654257734,0.22502240920888214,0.2440049830674475,0.2621474593881531,0.2768777370753418,0.2868954209654465,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,i geothermal,0.007524519775884569,0.011353673602523278,0.02141876466191579,0.029142249309096507,0.03796119503688683,0.04833912805901928,0.06138163203544938,0.07569037650490129,0.07392761341415405,0.08426783686152961,0.0927154987434975,0.09908956612974809,0.10411882008189174,0.10717647279787001,0.10812693245129755,0.11614278752168825,0.12395940434188624,0.12767804296115212,0.13132147450332726,0.13427612235222053,0.13642214503948888,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,a oil,2.5264320799985502,3.9359152375214115,4.661721874539467,5.796951810001884,6.095887331178751,6.7794086336614745,7.25811362743779,7.578281701033807,7.8615618748091,8.017198831574335,8.021547473634694,8.10850595075774,8.160044499714159,8.169491669133704,8.136368313448758,7.982646985699182,7.460216345844185,7.42732552261663,7.138820611005606,6.818339575667101,6.505000120385194,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,b natural gas,0.13147906124034342,0.7002551128468676,0.9634286345620647,1.2993787670347166,1.6330624718305071,2.2432543354863843,2.8849916571640097,3.549855612506764,4.231094434953107,4.9249665764878205,5.664658418802357,6.201231520982634,6.528220237412671,6.802723271733542,6.923959471657465,7.0939394688123905,7.750380955070425,7.9654378716697805,8.00502219617071,8.03063692145538,7.930086523006967,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,c coal,0.4068360582893719,0.5429225111603139,0.6068854648070645,0.706200923887639,0.8105684443675298,1.0009439214083289,1.1837038933897606,1.366355235875534,1.5668784285763457,1.7855273566399839,2.000859131428968,2.210526493916274,2.4661890134238105,2.720034612124945,3.0348253352998538,3.325564944906723,3.7004071621400154,3.955944745066469,4.209988072195565,4.473351242372552,4.790444525339805,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,d biomass,1.666775775634842,2.300487593006537,3.103358730456782,2.4778629795392297,2.6562232108695634,2.940951895854376,3.174914064048297,3.3496759654452255,3.4370272869722993,3.491069609369421,3.5118999727355256,3.4923855390892307,3.496132217678454,3.4779389619261023,3.426151788027211,3.3391849902392488,3.2812092559532124,3.1124411667170286,2.9741362320822176,2.848472686929257,2.790350990875913,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,e nuclear,0.008051898779519819,0.035468222012807075,0.05227062995081045,0.0486860306189487,0.04925256606706533,0.05220944520670514,0.055727845137290496,0.059618967218683545,0.06420252509424987,0.07023200264202589,0.07805587149726692,0.08782369420539454,0.10289829102648979,0.12070020383484499,0.13745668489968044,0.16051277093816024,0.18548796822974778,0.1998730653321608,0.21623359579940468,0.22988179328154562,0.23942307038067376,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,f hydro,0.7441473109156186,1.2148412325055211,1.4518341920221296,1.4757873786503197,1.5002816109401855,1.5244710388494687,1.5486882111808842,1.5729001289955118,1.6154662724099833,1.658099741241835,1.7007461564644855,1.7431180114132734,1.7855661492959345,1.8280224770927624,1.8704370854216519,1.9128931405667844,1.9553826854257053,1.9977393225058895,2.040171661456577,2.0825672489883127,2.0824118637280336,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,g wind,0.0,3.347965837771014E-4,0.00783714864794467,0.015324058644330691,0.02500238977340614,0.045918439439189045,0.07192561643185698,0.10218554522280567,0.12892419871839797,0.16056444513036217,0.19347209952630864,0.21808297788512426,0.2537539845835946,0.28975049577275075,0.3406843819623021,0.40351989894644924,0.486763524648837,0.5379672556061768,0.5959783471923167,0.6466000714119935,0.6720114391583308,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,h solar,0.0,0.0,0.0,0.0018716694694544801,0.00542714901381533,0.013337587975350491,0.02456527204370644,0.03936506532666725,0.05802990772979831,0.0799717150586469,0.10472960923987401,0.12902732210060827,0.16108518732490348,0.19329522186596854,0.23346381552177004,0.28004366146195137,0.33929440053106175,0.3757616546652712,0.41652916623170416,0.4522089073426822,0.47907495888090124,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,i geothermal,0.0,0.0,0.0,0.00260259842111848,0.00754433191520224,0.02006342230272604,0.03621029520057972,0.054854925063796765,0.07528549101113204,0.09469434273171859,0.11259832761030776,0.12401593788471241,0.13910847215585537,0.15287317735545264,0.17225391343149007,0.1949962213689249,0.2231530208584662,0.2372749794743791,0.2518241825910379,0.2630546905336273,0.2653018072481788,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,j traditional biomass,0.33324729999999997,0.344634,0.3045312,0.281618,0.2729229,0.2520347,0.23301460000000002,0.2151783,0.1968897,0.1792105,0.1619322,0.14433449999999998,0.1276311,0.1115254,0.0965299,0.08274909,0.07143795,0.05869398,0.048514749999999995,0.039674560000000005,0.03304091,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,a oil,3.3510310297735555,4.361318277015908,4.097694417313258,4.226558889488574,4.3625305968941115,4.438810416715677,4.481833284731531,4.495024018892454,4.532800801036009,4.524433942279287,4.479015226675929,4.508947763258068,4.555958077830172,4.61486635781349,4.659207542643671,4.652890366528554,4.523814982855653,4.520016158402949,4.430879417971089,4.311596073396689,4.153742824962312,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,b natural gas,2.2879123396087624,3.1680640612231956,3.3535052005360684,3.305909563250475,3.450299886533062,3.644230488177756,3.8152467699291432,3.9672320204570917,4.10692762389335,4.240230818850345,4.376608170431692,4.483087055199617,4.513046541325137,4.532655365951896,4.565032156764011,4.65460067586058,5.292276220105892,5.559709511804403,5.54348134438725,5.490912521274022,5.437092830876273,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,c coal,1.0657887849228556,1.2415852901285234,1.0299194412381079,1.1508610816683016,1.2870624234770447,1.3739352061449595,1.462140653630814,1.5390014079299974,1.6511483638550546,1.7537258011711563,1.8536995474020508,1.9510221219377322,2.0816923145311983,2.2226925191311295,2.370972399193689,2.4607163786923953,2.5898051947868668,2.7020607834483155,2.787208661166597,2.877947178244653,2.9899898643369616,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,d biomass,0.34151495067937343,0.5104642016317195,0.5070438775125025,0.5422072481163063,0.5774468143249653,0.6086161970711644,0.6445120982001441,0.6810933615613004,0.718445307649236,0.7530687846790141,0.7836958877725809,0.8077943825818996,0.8397729094106119,0.8681684706019807,0.8901705716038251,0.9207031097849426,0.9555826336012457,0.9778240439371678,1.0022249107530206,1.0337734335426656,1.0860259284625846,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,e nuclear,0.26266598512837763,0.3313463935039761,0.32640550963565335,0.3570667976458036,0.3964585437472311,0.42947970980049266,0.4742272143306243,0.5217984490500687,0.5821725606865195,0.6297669196425051,0.673807263410083,0.7140831456553132,0.7638524072656749,0.8140587463761432,0.8544260724164672,0.8745927878996214,0.8962809327687828,0.8982421030119812,0.8832143936645498,0.8515978483418533,0.8069353677919079,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,f hydro,1.068596412975358,1.309399367122185,1.2656730010847916,1.3071891027478846,1.3489682506725025,1.39071083189156,1.4324340068967465,1.47416159015264,1.5004704179893822,1.5268235953251,1.5531994469131853,1.579468475325375,1.6057791727666764,1.6321067083254455,1.6584134568236342,1.6847418750549092,1.7110993951421147,1.737464286440668,1.763868357383534,1.7902802396848363,1.7902284805527797,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,g wind,0.0,0.005294545706715869,0.03440416951069854,0.047781885802334854,0.06818677140560904,0.09223951665762739,0.12916913466394866,0.17501076998070236,0.20767473637961686,0.26311140336712135,0.314635264417609,0.3602269537928806,0.4027816331456781,0.4358011919555849,0.45932799144604086,0.5046518369628296,0.5550388229593598,0.581674371894274,0.6096685593567198,0.6319817381548368,0.6594950747218012,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,h solar,0.0,6.118783134577916E-5,5.687836167753031E-4,0.00116263300877733,0.002586189129837083,0.006657463493722291,0.015139489825612258,0.027833436406294373,0.04749896796836387,0.06931716669112473,0.09296025794134742,0.11402626033575204,0.13498626837627103,0.15205441161829944,0.16682135299614448,0.18907061250781473,0.21284400704282938,0.22704500458670995,0.24228813758431267,0.25505651954001496,0.27012547462237985,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,i geothermal,0.0,0.0,0.0,0.00402430258487656,0.0086332353275572,0.012380205166919008,0.01313445656464412,0.01311604338797798,0.01312364143683157,0.013130980481430791,0.01313779323568354,0.01314129039642316,0.013143926898404948,0.013145826525215351,0.01314663517199117,0.01314774719916705,0.01315045426406543,0.01314961379073127,0.013150234484869568,0.01315048154842868,0.013148515553958271,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,a oil,1.2966514647662515,1.8259941616158022,1.9759996834162197,2.1867666565157307,2.4037079677798627,2.6428119426231933,2.8492112693059264,3.0123622929298963,3.1729713264768504,3.311037560582324,3.423918849186049,3.576957993081999,3.6615793807081674,3.7590827917687677,3.8268276668460977,3.857385518993505,3.6815450813498782,3.7728221449497017,3.705962283188492,3.6079649898766117,3.496213944398643,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,b natural gas,0.19753442012425168,0.7016923981357172,0.904634110307639,1.0936540292293755,1.2762956541249306,1.510531943466217,1.7679163955316068,2.04567460485319,2.336511101627964,2.6409652565953037,2.953545999574748,3.2129150042945627,3.3988184781199213,3.5707882625694336,3.7153525733125483,3.8771777168215884,4.204947768601722,4.275112356224011,4.329506090676771,4.398918075000868,4.46863280927858,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,c coal,0.008982330037421066,0.04111373647341391,0.04762649659137108,0.07162292651933724,0.09261250470579956,0.11733089009666142,0.1473473835361512,0.18433614843055335,0.23379392396934168,0.2983598466105385,0.37072517378635333,0.4512046580474692,0.5493560158064129,0.6591680792595239,0.7920794419193287,0.939704729009567,1.1340688307769755,1.3285723132968994,1.5279309885239616,1.7436316595765569,1.998826051867021,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,d biomass,0.43100058517620216,0.2828853473126058,0.2832375233520444,0.2812241089186993,0.34369043579128006,0.4233241400712734,0.5159912575630525,0.6199721041952674,0.7294214160215062,0.8429251695801744,0.9448094954791779,1.036638715063129,1.1362464412287439,1.228452958424693,1.312346659409589,1.3717901127394578,1.4584718582406822,1.5016542679688176,1.5507544634287584,1.5981025610934725,1.6540085108832328,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,e nuclear,0.0,0.0,0.0,0.0,1.2797407998022E-4,2.4470917462359E-4,3.9248809423045E-4,5.7626253241354E-4,0.01137633753049702,0.0333893951077498,0.06411461029100667,0.09503501247103449,0.13161889083839276,0.16721753672939246,0.2015368476420847,0.237690684082415,0.27932194987554126,0.3087171707036849,0.34399444973670457,0.37696833933044477,0.3980396555360205,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,f hydro,0.048609904693893806,0.07679968617815347,0.0855113586049241,0.08912242957946931,0.09312315857571708,0.09647951999579032,0.10013284880681235,0.10379153114846967,0.11023274139668957,0.1166808226360033,0.12313919340295716,0.12954819916185908,0.13597960408725682,0.14241616796719317,0.14884458844638077,0.15529993526799224,0.16179754141144403,0.16822168477336677,0.17470434171166443,0.18118474827741848,0.18112334780589398,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,g wind,0.0,9.1439745418033E-4,0.0020700062601486,0.01592163902471724,0.03696081335921622,0.0717750347475525,0.11936548644525849,0.1757073765000913,0.23742150390941438,0.2988476246865695,0.35695869283898085,0.40623667420677034,0.4654318619492538,0.5172133223046277,0.5687488297377631,0.6204731198444611,0.6920710022580229,0.7185097995127538,0.7494292424323976,0.7732203624001938,0.7924955940438988,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,h solar,0.0,0.0,4.320013064657707E-5,0.007784156183141419,0.02056694976524859,0.04283799219460567,0.0747974483477849,0.10914643339914275,0.13289144418198653,0.1565375424426378,0.1815636009801706,0.2065058037078005,0.23358618161142566,0.2625045871691732,0.2983264389408121,0.3362247721945863,0.3817536846655596,0.4077603266225158,0.4371693162391147,0.46150664779742817,0.4835720245280355,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,i geothermal,0.0028980002798381496,0.009417573780061929,0.01178643564474176,0.02104102746067401,0.029742224284297892,0.03374457583473775,0.0337373376467106,0.03372938447968417,0.03372085155609864,0.03372153678431113,0.033735276881579734,0.03374209716240213,0.03376033355009193,0.03377919138257735,0.03379494474528953,0.0338144521989538,0.03384790636347885,0.033851748762801614,0.03387189718984697,0.03388953668907506,0.0338989945673816,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,j traditional biomass,0.3272638,0.4026073,0.4420999,0.42237159999999996,0.3918756,0.3567657,0.3209692,0.2878864,0.25552949999999996,0.2228041,0.192224,0.16392531999999999,0.13819078,0.11494417,0.09456012000000001,0.07727489000000001,0.06379429,0.04981631,0.039348259999999996,0.03087425,0.02437672,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,a oil,2.7712778372262434,1.169640445079549,1.498042311088761,1.785595430647687,2.015912207754716,2.326219858311305,2.5614527244843326,2.732128865268222,2.8644236848950784,2.9425000367992222,2.980864205821219,3.0296583526555705,3.0822183427307586,3.1446877739343537,3.1965744208497253,3.1938720342731375,3.034409063510307,3.0874546824561317,3.014597797554124,2.9309107428274506,2.843097042510023,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,b natural gas,3.38086604804558,3.2719013301794164,3.7581518467539103,4.132452565329296,4.666849757808063,5.303833730079832,5.806800893182247,6.191108304068943,6.451768441981886,6.643800326188326,6.74768063100715,6.78979167403303,6.554614728749265,6.429073089799709,6.311473255676113,6.314853345718643,6.8298713598846685,6.8958914793045345,6.758096450831355,6.613194880767821,6.492038121682269,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,c coal,2.114264723746773,1.3439272165244318,1.6823412222710687,1.9431793982270333,2.104047160096326,2.222165200214536,2.289478023920649,2.3154145746755743,2.3252622223163315,2.3248912482743047,2.3174207137222087,2.316912891847763,2.379209592711016,2.4424627004320105,2.484961303335847,2.3825610202852094,2.41702497862451,2.4460635572052323,2.487762562815413,2.5529984737376394,2.6632994864222885,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,d biomass,0.0278787,0.022311402,0.023483594,0.02751033295066246,0.04112268694085987,0.06352715385679651,0.09254857854244773,0.13322503893482748,0.18887467690040363,0.2508304672507973,0.30386693089621464,0.34599658686648577,0.3910812775876801,0.4237927089514415,0.45310395201665493,0.48745853950184276,0.5180564651289696,0.5624309611035269,0.5969623167917832,0.6369814649290304,0.6880652186265831,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,e nuclear,0.0,0.00978388566296725,0.008981382144798891,0.07615822820416973,0.11113169959853464,0.1508419817559444,0.19843882105194607,0.24883334694355014,0.2987755990882733,0.34118726525988785,0.37222103376888904,0.3955743493889782,0.439681765367609,0.4720702216833892,0.5012878836734068,0.4908424853893328,0.5019933450005393,0.4938315166849398,0.48527170468337466,0.4669147639742881,0.44811421244547966,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,f hydro,0.1837149974660883,0.21157579198615314,0.2178949166152985,0.23706444100397622,0.2564152130105178,0.2757695886327232,0.2951120517230886,0.3144595019910735,0.33593739597363786,0.35744447071261887,0.3789776072712904,0.4004735790607533,0.42200387299503783,0.44354415279975334,0.46508223128348714,0.48664365027343115,0.5082107730431247,0.5297871692376684,0.5513948752909825,0.5730054006481567,0.5729679077906173,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,g wind,0.0,0.0,2.88558068143838E-5,0.00663815106411742,0.014220562458524308,0.024112789443188083,0.037267426061454556,0.052311117759841735,0.07099402097717403,0.08383940710577424,0.09332721196783246,0.09815483713118398,0.11601903202571247,0.1259380857241274,0.13351281837405213,0.16944258615770863,0.2010255451878237,0.2222768979369095,0.23944091915243024,0.25710175427926585,0.2758889626244476,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,h solar,0.0,0.0,0.0,0.0018900484970122801,0.00421410181053727,0.00724533077287676,0.01133430735520868,0.0162040701805247,0.022373734733979817,0.027157298660656838,0.031159132063961658,0.033892448704035294,0.041154025044301545,0.04595428624123513,0.05024470270361915,0.06391823021834551,0.0764104941724439,0.08497998777972017,0.09242749453001503,0.09995275318088788,0.1080200442094204,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,i geothermal,0.0,0.0,0.0,0.00711324480380674,0.01340271255872887,0.01997647514522635,0.02694250191364043,0.03345322578629055,0.04005787104113311,0.03975769325339431,0.039276485054980194,0.03779875407619803,0.04060715075645431,0.041577660515142376,0.04247215452850426,0.04939407548692117,0.05410128281492576,0.05640706222083003,0.05700035336574666,0.05810727059792606,0.059426801099648666,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,a oil,5.468865890804054,15.431049776944635,20.661298475061262,24.57485973330376,28.544842165702633,33.02050204387542,36.099270009032686,37.98433931281813,39.252265971983185,39.77527819671148,39.572776322624875,39.12694004599231,38.47911017612484,37.67626481854005,36.694239950789374,35.18498882711261,32.36265116524381,31.48171455398613,29.557673552460113,27.613939814705308,25.600146735666303,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,b natural gas,0.47597163101170586,1.5543813648136986,3.852329979477888,4.997659451624382,5.953104633471083,7.12117422165685,7.9912134667576415,8.558138515357436,8.906084243198295,9.194449094655264,9.374567488501416,9.30468552096772,9.097937420563184,8.880533362490858,8.81318215093715,8.965794976931496,10.05047701543101,11.103367512071395,12.197385213586484,13.763798339435695,16.606479837871163,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,c coal,21.394823753264212,49.70810171459155,66.27195720528259,77.71216891301114,86.11344466494302,93.9139700974919,99.16517593912938,101.4185660987472,101.92585058163733,101.14467779323661,99.35099880978358,97.2331562137185,95.1724130397528,92.96311724374911,89.82227548134523,83.27966233503957,78.10478818704938,71.86106466720418,66.01892380627392,60.74460039633625,55.779439362757145,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,d biomass,7.064931099276758E-4,0.25379649110441704,0.6822946703767151,1.1353501819425385,1.5567389190776804,2.1139977053116517,2.690635821866446,3.2537318086625704,3.823466222678115,4.348092931316428,4.7720829151216035,5.02275082126035,5.191593350743707,5.2550371987776865,5.221143741173672,5.358763384166304,5.417084674098239,5.358443803274341,5.162917449860146,4.77847400788994,3.9940283885735233,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,e nuclear,0.0,0.1911690968183192,0.26622947271275543,0.45294320480512107,0.7008614137532535,1.0472667934237296,1.4620842935048188,1.8572723209966304,2.269299719128779,2.656212334253103,2.9700343614108777,3.206672687288129,3.372717627718949,3.465356861229848,3.576351162344396,3.8423358626659603,3.980886170119353,3.9347131345656012,3.8137774411720264,3.6146747584759007,3.379370669884647,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,f hydro,0.4566751318627638,1.430949226637917,2.60324511641489,2.6451153238081675,2.6872498536799623,2.7293356015123074,2.771548566847959,2.813810467563407,2.9109298779557293,3.008129582497609,3.105420368846165,3.2024989236497006,3.2996713359563388,3.396883269905561,3.4940683690115995,3.5913462051673934,3.6886102388890123,3.785947083275117,3.8833738073171054,3.980828803225514,3.9807139886624,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,g wind,7.189669884350637E-6,0.0073026128306279605,0.16077943873491624,0.28180642329721595,0.45616584207553745,0.715148595347204,1.0398497013879933,1.3627693941460446,1.5384143118192974,1.7344822271101021,1.821587810684979,1.7894965130847305,1.6470456960656696,1.4385850869241577,1.2750816848358015,1.6155569883053364,1.9369034291793317,2.1975936582542603,2.5246078843828794,2.7887750381468,2.988912403195649,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,h solar,7.189669884350637E-6,2.740421360012691E-4,0.0033913468312472303,0.0382016551520198,0.10317435069992956,0.21118078421113745,0.3570019335061856,0.5140748058137218,0.6850308229662132,0.82731740155723,0.9228367747309978,0.96223072352468,0.9479697508230416,0.8915245213513537,0.8470097956681498,1.051290567953674,1.256078205551723,1.4260907075213434,1.6354438818936365,1.8024938691192183,1.9295919466888618,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,i geothermal,0.0,4.1366516814586005E-4,5.8304562124031E-4,0.051457632331716685,0.09799896596472617,0.11578510714919671,0.11579046378180918,0.11579506302466404,0.11580128424462924,0.11580830231972002,0.11581582958338212,0.11581697891491252,0.11582085281244678,0.11582510801256202,0.11582717604142138,0.11583237216271011,0.11583742284201971,0.11584258063883512,0.11585052841294033,0.11585876253707274,0.11585603678578284,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,j traditional biomass,8.39255,8.28969,8.064680000000001,6.6995000000000005,5.54923,4.53005,3.78432,3.23549,2.79847,2.42201,2.1056429999999997,1.837922,1.598102,1.37995,1.184729,1.017509,0.876611,0.728245,0.603452,0.49078200000000005,0.38666199999999995,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,a oil,0.4470155749243008,0.5482243773114139,0.6108497112858271,0.7315450572521677,0.8159522477112578,0.8917420063995948,0.9698786146545632,1.0392108330746783,1.1069382438718558,1.1685404608629912,1.2265644389555905,1.3037992224049744,1.3867678595754145,1.4711345019711892,1.5517279223111835,1.609823377413449,1.5934336496436048,1.6571551938166822,1.6616761288403321,1.6489052865171279,1.6237138203924946,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,b natural gas,0.13466117906821096,0.2561373856507967,0.325497628412084,0.4563501143333217,0.5768333868300453,0.7067894378170435,0.8671536573846532,1.0491728250934864,1.2330017387427996,1.4273814807544338,1.634186459700796,1.820539141350178,1.961618137615583,2.0915989569470907,2.2033827103427903,2.328563585349787,2.7610994944428553,2.8834491143634273,2.7404254729564896,2.6656559930633215,2.617059537035976,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,c coal,0.13843132400799585,0.11641258332332487,0.11155663286972174,0.15687755505247844,0.2011262915580621,0.24364097698589113,0.29310152497158504,0.3480006953150615,0.40634541960727183,0.4698400025458483,0.5368356762697479,0.6077053327117932,0.6940424170744808,0.7859648517409364,0.8840800126158234,0.9690978160386471,1.0789868274822434,1.1698214768717885,1.259596360005983,1.3507311507890298,1.4611665345395555,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,d biomass,0.08995712974795218,0.09041771899432692,0.07854593481670356,0.09639267906825275,0.11432732696811516,0.1324875698432864,0.15579000598928733,0.1818325528397388,0.20833146537637656,0.2367867918882427,0.2635445891285301,0.28658850350280163,0.3114800179862821,0.3343500634374753,0.3529667106984161,0.3722557469311231,0.3965505831032611,0.4129003856822406,0.42990768355397674,0.4485185114318819,0.4708472494589719,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,e nuclear,0.0,0.0,0.0,0.0,2.33549232634E-5,5.311284265307E-5,9.394440051904E-5,1.45675151609E-4,0.00153287901526151,0.004301206516694571,0.00842052122504571,0.01283810797229418,0.01846390637177279,0.024655171947663777,0.03049419241609505,0.037209425080283576,0.04486609225563443,0.05115417262015658,0.05808075344543429,0.0647560150142742,0.07002882732843801,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,f hydro,0.09898886789754233,0.14329056417225372,0.14544321613326208,0.15206256136917745,0.15869708014691244,0.16532675081153364,0.17195606124826238,0.17858457752511733,0.19028908250619397,0.20199919612870093,0.21371673765386956,0.22542464357576444,0.23713630649350678,0.24885664937044938,0.2605759993213767,0.2723028118906172,0.2840484506629366,0.2957736334915358,0.3075155564809874,0.3192615978363181,0.31926291404684687,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,g wind,0.0,1.7639946346933744E-4,1.403992433177749E-4,6.256317552040807E-4,0.0014989813816246702,0.0027732784874876,0.00473221550283402,0.00734457874298173,0.010194355324061622,0.01319690529829709,0.016239969460500242,0.01935450619564133,0.023299714181324732,0.027261296581377978,0.03128465914363929,0.03622625274209384,0.0422822340007016,0.04631228560359565,0.05007299637739744,0.05306034578852258,0.05612096032823479,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,h solar,0.0,0.0,0.0,2.3413267299691098E-4,7.685420418448836E-4,0.0017053176657095298,0.0034006492569022204,0.006053062510635159,0.00950077765116511,0.01374511478806568,0.018764818252874682,0.02451622277616503,0.03236267319506675,0.04093359766951545,0.050276837566584624,0.06172864820501515,0.075859867973823,0.08656733068453885,0.09727257298872902,0.10664664863991523,0.11637533849442061,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,i geothermal,0.0,0.0,0.0,9.544063121358281E-4,0.0027848111293723,0.005404613969465431,0.00916556227010065,0.01374832253596886,0.01847439637579613,0.02255696266972743,0.025996441390787488,0.02896189618078902,0.032288389582408,0.03520471327026731,0.03809051457256846,0.041639067333427995,0.045741455045123315,0.04784094457930555,0.04953385971718274,0.050650185184349356,0.051977403409469915,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,j traditional biomass,0.14111,0.0457949,0.059566900000000006,0.0558368,0.0528362,0.0500902,0.046536499999999995,0.0427757,0.039088,0.0354911,0.0319368,0.0284148,0.0251855,0.02204607,0.01914766,0.01655745,0.0144295,0.01199865,0.010064360000000001,0.0084151,0.00711996,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,a oil,3.707195681816194,3.0210250173564037,3.0518208594317793,3.2536738708955473,3.434788496066274,3.53736560211784,3.584076980856724,3.5612901777471757,3.5117872109544543,3.4084108576129593,3.2809611036702524,3.2299001773374374,3.181131718907909,3.1454414137603135,3.0928297324919134,3.003691276131705,2.801037062101633,2.761730973792801,2.6544326486254834,2.546313081835439,2.432591577868449,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,b natural gas,3.181941273556301,2.833127481307675,2.514820315091211,2.6834005797703653,2.9434765326832615,3.1906901456476353,3.392159262487743,3.548303541407849,3.6362719723354315,3.6848546458116918,3.717640963442708,3.690805948919004,3.597111540504362,3.4933179365073057,3.4033299145675238,3.3775853034285257,3.691714290128936,3.769572349595821,3.6110632823088973,3.5558811832031005,3.5844545486140476,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,c coal,6.908454150998919,4.672829747670016,4.600483246887859,4.929951028883329,5.396073553837975,5.743292178238052,6.010960977956169,6.1926033660453275,6.338384924463762,6.421609758399002,6.483500988093096,6.5405895929884466,6.643735567245185,6.738115748033823,6.748464920638472,6.588638126007975,6.4385381155991475,6.22023139261448,5.9583480387917085,5.698931691054743,5.465578224984877,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,d biomass,0.25939140647282205,0.689243688158008,0.9899632262224923,0.9806592543435123,1.0324689919555512,1.0649177830373526,1.1006438951173105,1.1341392761178795,1.1608596055727531,1.186133529600775,1.197970489000711,1.1921749488832534,1.1833796324104628,1.1610431530394958,1.1167217542582586,1.0855013813311063,1.0589908321160255,1.0220611212563582,0.9849373695869529,0.9489724631650538,0.9140751778093087,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,e nuclear,0.2847000357566481,0.3675931493889717,0.3427233539600799,0.37902125296177924,0.42998686941507874,0.4697315835979482,0.5095001486534853,0.5423958134101979,0.5695171313769587,0.5871322822712853,0.6003382084929332,0.6115764946944199,0.6275635933829804,0.6436777372831323,0.6503904361469792,0.6380800574142139,0.6246876330542989,0.6038424754094992,0.5771442394949028,0.5471445957659063,0.5171501377779442,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,f hydro,0.09804224775334859,0.15655555799133616,0.16732697917893416,0.16588961510294756,0.1646107708067448,0.16406605674440994,0.1630403456222923,0.16213096692374546,0.16732149408467584,0.1726137441539131,0.17799895242423658,0.1834258867537287,0.1889049012610905,0.19438609832985154,0.19988078532372935,0.20538962260726415,0.2108596926567869,0.21644807426537488,0.2220039284971429,0.2275510535892634,0.22747957229701685,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,g wind,0.0,0.00106334568806972,0.01548112763046269,0.0229733549619854,0.036526467413813726,0.054045192562014226,0.0799716458903373,0.11172307299411675,0.13432086004779129,0.16499220573965817,0.1885654523739328,0.20539054628269304,0.21498876384491192,0.215741832084046,0.21609389143040966,0.2423614522650569,0.2785030221850778,0.3021979147329941,0.3336100631354359,0.36696895920531664,0.3962147279854924,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,h solar,0.0,3.797661664702347E-6,0.00252175759126781,0.0035808904624864703,0.005540262747848009,0.00838607491383572,0.0130853325755076,0.01951982006754573,0.025164611016783873,0.03281736930410736,0.03981622732405594,0.04554352664621616,0.049914965095610844,0.05190430307646457,0.0537292193934764,0.06160981707540696,0.07182790732879137,0.07881181418531073,0.08785509256824534,0.09747930757143966,0.10622944248817405,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,i geothermal,0.0,0.0,0.0,0.0055055102875379005,0.014489893332190532,0.02384125078557365,0.03442857240282849,0.044317435084458755,0.05290795758729776,0.05586851815974526,0.055930601966800136,0.05523790475640316,0.05389810522851492,0.05220234157691305,0.05189559349679762,0.05627792862140049,0.05798400948199979,0.05797191334183869,0.05795201119899714,0.05793080440803709,0.05791255584124767,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,a oil,24.303346095479128,27.730707342401477,24.697923428151146,25.48559201250444,25.827651809311238,25.72258470238233,25.451106474762696,24.995321007897626,24.70910665293578,24.170898291314526,23.672352740585964,23.570268865855194,23.53035916253112,23.54466966308721,23.42679245347455,22.942073122715897,21.55531840698063,21.44804662527622,20.712467195768806,19.916008173186768,19.033246012559825,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,b natural gas,9.240677413163,16.216346874856495,16.55980165739039,16.579060547267453,17.206175319499323,17.816124765412148,18.307736466234196,18.731743638815097,19.259121069528245,19.551190613320024,19.730553570881643,19.648764289272094,19.1217206712685,18.6098442549046,18.305498218329326,18.31764352046154,19.15493823945383,19.398741722843504,19.88498357756306,20.477698726214296,21.41636882730082,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,c coal,12.692131768227284,9.452940862752072,7.958362077363911,8.323175081363852,8.820552402473309,9.171226120401622,9.490794608493237,9.795768535811344,10.426155955269683,10.863770301295581,11.284827441126877,11.699030286644668,12.334679192745336,13.032980761339932,13.822438252550622,14.48710757329672,15.378345292809604,16.024004339559816,16.45975231202731,16.862133780159382,17.28522426346071,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,d biomass,1.7015632829991636,3.0128238548765296,4.750853662950627,4.166553203721642,4.472287323397205,4.755508184505183,5.147071356768138,5.662793142983492,6.36589531891484,6.988144665700915,7.500382445063943,7.857169520162951,8.18381268160711,8.384595676243825,8.426514527476284,8.391846889922299,8.354685513245173,8.031375126898826,7.595155897881049,7.073102520473116,6.427587488151378,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,e nuclear,2.6656342315341335,3.4350570403425325,3.162661793630794,3.2445657057012003,3.4106926826640933,3.51906113198103,3.607713985508886,3.6611655698626686,3.8615021317885536,3.950240598235309,4.054104210190323,4.197174685109237,4.445867492955213,4.741188588729214,4.963938519310219,5.1009147683912115,5.250582135619393,5.308669727125981,5.313160258208205,5.254057213210888,5.032526316994058,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,f hydro,0.9660456594882341,1.0151795396308656,1.2464371047525702,1.2238897450389907,1.2057653003866753,1.1900429278230786,1.1721604366891138,1.1544970674014339,1.1541362838516827,1.1554644696536727,1.157847480367395,1.1596056184357502,1.1623395187146932,1.1654228079802587,1.1688014267405469,1.1727611397037434,1.1767031219853492,1.1822252426637432,1.1881528686495404,1.1939541152054969,1.1932961495048806,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,g wind,0.0028795968421996,0.2675020062802818,0.5551886127124432,0.6568143665252885,0.7984563739009104,0.9830812053872853,1.2544256627291608,1.6058080726520167,1.6304582617440178,2.0190067218981222,2.3583316186869325,2.6568349808084517,2.942667297397821,3.1465973387192037,3.2850868946913154,3.527844433857376,3.846292371932958,4.035647118014676,4.202246614955045,4.348383256219209,4.485404787332294,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,h solar,4.439784108221106E-5,0.00555349554957211,0.08581565577001503,0.10122602781070023,0.12826316937505391,0.16224041824149807,0.21504160727292232,0.28915891472072336,0.3268488144192371,0.42402950431294006,0.5179431045294274,0.5990021506311742,0.6760538721707992,0.7356259890346364,0.7922899485750506,0.8676978726511994,0.9648354821765803,1.0319922569009663,1.0972645170944975,1.155140124975106,1.208766899283315,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,i geothermal,0.01193073278984707,0.02056461763925736,0.02144856764267355,0.05162665798339318,0.0955927030792435,0.1449974688235274,0.20142357377804407,0.2550498781919989,0.266355653821527,0.2655559141123934,0.26500099565225266,0.26431357502096436,0.2638551722735009,0.26348049699537596,0.263173133025309,0.2630006087646639,0.2628345639445573,0.26300866127222694,0.2632758390685774,0.2635122330965139,0.2633672211326539,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,a oil,4.2298530551121125,1.000482399221016,0.9089470626477021,0.905052454523892,0.8986994502649024,0.8804152593015033,0.9118801814924563,0.9291930341422644,0.9450975292218545,0.947242377409896,0.9462559576621468,0.9633090444245263,0.9860145212345148,1.0094904851123778,1.0242545895993536,1.0174814862885488,0.9597317641413498,0.975857932457297,0.9501602043024309,0.9192872748547317,0.8836270771135301,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,b natural gas,4.7813220032368715,3.8892813535367825,3.02887272981936,2.8213762072293314,2.908347974628259,3.0634612638239904,3.146641381240421,3.196715029292939,3.2111769149848595,3.212285664238969,3.2049426307969906,3.200201492032189,3.1825317266039903,3.1502742599474534,3.1059560867076907,3.1171521382655754,3.6243134928230107,3.774313729650601,3.671644296369491,3.5646431530866787,3.4633016702386175,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,c coal,3.5816493206617963,1.6254964425793874,1.6252860295568583,1.5418371958149848,1.5845558155118609,1.635451345022918,1.6498844559769734,1.6476686992615797,1.6427231003018703,1.6338523348663532,1.6266169441399112,1.6306622653586744,1.6590721882514863,1.699945646289445,1.7264587854738005,1.7615891718495578,1.7844306577643836,1.7888217152225447,1.78637822836442,1.792638102240859,1.8147826817622883,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,d biomass,0.0250322,0.07342322126672533,0.14971906091186338,0.15286930638982654,0.15496917876863306,0.16071004516035178,0.17415672553861677,0.19140224140021983,0.21363990522600987,0.23577313542930375,0.252156368707176,0.263775197625504,0.2764512535774425,0.28702664497549585,0.29672355414459856,0.3038793248044296,0.313852248472138,0.32444710257944603,0.33400790855497947,0.34529700222411863,0.35827461662441357,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,e nuclear,0.280705008048329,0.3279525388364905,0.3292568929907558,0.3188749486336121,0.33028810628105526,0.34448106155032704,0.3643782592344401,0.38911455372054904,0.41398903476577437,0.43254226541142815,0.4473074092701142,0.4620424064245174,0.4827406760338188,0.5081277078746974,0.5287119725314825,0.5508486308764408,0.5694744956853831,0.5742790111932807,0.5692742774242665,0.5521458420402154,0.5307380366980639,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,f hydro,0.039579522288475784,0.0460090462516687,0.049160830156293175,0.04915053263849743,0.04938414228505639,0.04977289190447248,0.05002597093923161,0.05024406679968421,0.0504458317502428,0.05068737862097751,0.050955225777822355,0.051234765967891845,0.051528182276991435,0.05182187987152343,0.05212070556592251,0.05242380520825878,0.0527289329427008,0.05304203922105098,0.05336086868683944,0.053677570101297,0.05365152877925851,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,g wind,0.0,1.4398183940399814E-4,1.9188624418125998E-4,0.0013305423766421201,0.005371971093791199,0.01136799562606338,0.02052876800714043,0.03264165386039751,0.04858228851999883,0.06488409244670416,0.07837113656426738,0.08970838957872694,0.09946470498521787,0.10762731080046146,0.11728776007273221,0.1232964074866858,0.1361179724940971,0.14725210820366333,0.16218956179603675,0.17811529183770825,0.19163553287997748,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,h solar,0.0,0.0,0.0,1.7566578501495997E-4,8.640003530369201E-4,0.0027539152747371597,0.006563154791225821,0.012565118710882029,0.02127504386364994,0.031163440541303242,0.04117244027806576,0.050155722191088575,0.05846183874836156,0.06561575685210547,0.07387444398269458,0.0793576265839072,0.08882663379841356,0.09703921497386477,0.10776654006533515,0.11913611659245045,0.12897386430431595,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,i geothermal,0.0,0.0,0.0,0.00144891688884009,0.00445061351584156,0.00727608763111451,0.00987408222550936,0.00987706952992393,0.00988454216778586,0.009895711813953708,0.009900655259195229,0.00989784500219601,0.009894569467405901,0.00988667947636684,0.009879870301204898,0.00987449091066738,0.00987147839182178,0.009866112679452931,0.009863828080205032,0.00986115295757137,0.00985725090242476,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,a oil,1.6127047434326671,1.8586802423635775,1.8442722357737416,2.0134720035035563,2.2046497673795997,2.3963394124254607,2.5479437913005714,2.6611024120050875,2.767173786839988,2.8401065484530332,2.8890454648325408,2.958927340784339,3.023948464484925,3.0813118180776637,3.119726092250237,3.1104720778726787,2.973093615743634,2.9918182841560887,2.9172279168708988,2.8282584849477312,2.7287867917744406,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,b natural gas,0.34759321392032033,1.1812693503445304,1.5546195891710073,1.8338626113729348,2.118185046961276,2.4567316557811307,2.7778703551995423,3.068862053371663,3.31361745709201,3.526247764418802,3.712693267842296,3.8648329228767055,3.87434206116568,3.8486136271422313,3.7757200675493405,3.7328420741988353,3.807774393330962,3.7496712226516107,3.6987545059351135,3.656558861260468,3.622963242340128,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,c coal,1.3964305278323172,1.586213146486317,1.9611214593356145,2.2340012951200823,2.495295193889452,2.7681048129859827,3.012636196687441,3.2271948589572803,3.4132797002828736,3.5794598065776864,3.7383590677834655,3.9017609043511525,4.135086394112427,4.371070817154745,4.588153165164793,4.716505234347977,4.873587850290034,4.92866811869189,4.978721482603128,5.0255223217776885,5.119377545179297,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,d biomass,0.4053531,0.3311761954433339,0.31928701757653283,0.3654921752308063,0.3944434490441614,0.4261347071026355,0.46448641912216143,0.5085568021472995,0.5521083198418145,0.5955636323945355,0.6285626843071901,0.6488676988134155,0.6678142357804006,0.677137868007308,0.677890982251251,0.6834190839312487,0.6981466553837404,0.7057203675705898,0.7124209253686475,0.7226970188028922,0.7370779323013782,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,e nuclear,0.0,0.0,0.0,0.0239208757578579,0.04942526441841982,0.0785440778982884,0.10970771954693546,0.14118074846582485,0.17267867606357337,0.20373086009962646,0.2342128235259048,0.2630386698255575,0.298543134425491,0.33291792382660784,0.3685975378445203,0.3866635972575869,0.4043399180741476,0.4123278175179134,0.4193029737332298,0.42335837967000395,0.4259689289196004,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,f hydro,0.1584017329845137,0.2695360550155994,0.34062484223836675,0.32930750685695664,0.31703790837627255,0.30506101042000616,0.2928634303968733,0.28069337810565825,0.2968503681678108,0.31299216501168076,0.32912172125394673,0.34516837969370734,0.3612572822541311,0.3772741268424373,0.3933198020807275,0.4093615107083952,0.4253747848157848,0.4414818387600365,0.45761492722883734,0.4737041724646594,0.4735514072934047,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,g wind,0.0,2.543167348055819E-4,0.01118041280242374,0.01550653539837892,0.02246102862952772,0.03319384822163592,0.047786928487196775,0.06561487095106198,0.0744439104057502,0.09166679979284005,0.10735832411102388,0.12050848438851838,0.13818871251636988,0.15410821263022878,0.17275628815082186,0.19953465279992819,0.22951100634251603,0.2530409443797871,0.27237321286715865,0.2892025185690863,0.30203400559703825,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,h solar,0.0,0.0,0.0,7.1143662746401E-4,0.0023945374294165904,0.00544039652719936,0.01007157601300991,0.016370797268073452,0.02406125987215722,0.03239339328331462,0.04105468068605594,0.049646106439209484,0.06123053230507633,0.07266326512252856,0.08606779042532178,0.10375710810884695,0.1236821187354113,0.14049420873675683,0.15571893848097415,0.16965481456835932,0.181790797128217,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,i geothermal,2.9592998194085003E-4,3.46460939284605E-4,0.00244387965955502,0.005496094078896221,0.010796350669134461,0.01831762130743951,0.02716350383212966,0.03639317065836842,0.04302483016721489,0.04874000614296745,0.052206130288256276,0.053815895514782865,0.056731676337085604,0.05923236703390017,0.06276218882896968,0.06817123497054221,0.07339135111748665,0.07648405114294193,0.07837510512623451,0.07975191107388606,0.08058546800828638,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,a oil,0.9535377055429431,1.0044230920133705,1.0056866697631974,1.009210449719212,1.0282948790108546,1.0320425205652657,1.0253501141067018,1.0143008322934326,1.013543900679408,1.005944769393801,0.9997387258374949,1.007799248109117,1.0175304287492937,1.028318639234496,1.0333915721440303,1.0231677450825734,0.9746842884331249,0.980648969700588,0.9574971234463276,0.9294907042163316,0.8960209570147823,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,b natural gas,0.15091622056374254,0.30307764124757786,0.3432794649553455,0.44261231223444697,0.5178573263489423,0.5927663018551053,0.6680366211288735,0.7437914686380107,0.8081714545300253,0.8780469643574845,0.9465911371876371,1.0047028335064174,1.0050927285682594,1.0283632270385659,1.0530779144778513,1.1192644250208015,1.7139491086225231,1.982050072572872,1.954747687446799,1.9149698281740886,1.8682482138308805,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,c coal,0.05362970116449675,0.04296494769077648,0.040712256081980355,0.0571175375546046,0.07351246439233676,0.0891319419260135,0.10659310219081058,0.12539540686236236,0.14503325911799203,0.1696524254317836,0.19478756091463997,0.21654287628542188,0.24466681838508494,0.27141668815301145,0.3037074599973257,0.3291625029091708,0.3678372122591065,0.3980285577642329,0.4270789347640056,0.4581842037581966,0.4999376790420141,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,d biomass,0.1037777363408357,0.14422021329620882,0.16961201383773059,0.19826516830419627,0.22509331382867162,0.2535377445863646,0.28581822150721925,0.319631678971743,0.3454651519711399,0.3743023507115093,0.3951452341285753,0.4101120203519679,0.427743034667321,0.43671469558670384,0.4343454312253787,0.4192037614798477,0.40964801998616024,0.39264290966109333,0.37636963046136424,0.35853267953566165,0.3488230612930466,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,e nuclear,0.08556159007638638,0.08521313213094159,0.0963063862693399,0.08876960385484105,0.08537655613779514,0.07965453986136592,0.07161944123337893,0.06156868601587619,0.059573948729338716,0.06907641942317322,0.0857787335298719,0.11046510455345825,0.1481942459545844,0.1798010799439995,0.19675983393661137,0.22106269225560865,0.2430144659184442,0.25756593902689295,0.2764878280802226,0.2905201256398322,0.2924279755380157,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,f hydro,0.5618447816605011,0.6351600441958237,0.6077523881354429,0.5915302601008742,0.5780452101544395,0.563589889468159,0.548626733583751,0.5342650642506511,0.5407246765090297,0.5471418441684801,0.5535128806949545,0.5587571262079688,0.564255443408375,0.5698908460142222,0.5754681268150718,0.5812074585942442,0.5869350150748853,0.5928466232525131,0.5988760938761475,0.6048377620440751,0.6041854021086054,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,g wind,0.0,0.0018509457643033302,0.0034077847503118,0.025768979175744573,0.0519015437680997,0.09048364066658827,0.14243586263199498,0.19217651634199898,0.21622265420553183,0.2308757262923472,0.24255834812297844,0.2543649214332378,0.2772443250716632,0.2919682576132075,0.31706497875741596,0.3371586693445822,0.35559594869763583,0.344571849658014,0.3260746867455308,0.3062696102588779,0.2967877551890063,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,h solar,3.6101637132446826E-6,6.915613273520999E-5,3.0265856266525003E-4,0.0014180332843321,0.00313740054376276,0.004884271055487801,0.00580969648259135,0.0067062322539598,0.00712572138071151,0.00683555914956988,0.00654754215771716,0.00568508393677279,0.0058297584089305405,0.005863087395465411,0.00642538136580864,0.006964947309326259,0.00753401930369887,0.00774155298963878,0.00786221980813737,0.00798830629449554,0.00782323231823593,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,i geothermal,0.0010852884359952401,0.0060487337431169,0.01631552952899443,0.03541884954642203,0.03597755543040772,0.035983179368913765,0.03596695694714792,0.03596217577460422,0.03600952538635799,0.036053317731787174,0.036095432254829085,0.03606747006406578,0.03605691872039073,0.03605655834805371,0.03605232689246785,0.03605854160334274,0.03606563415683267,0.0360799692446945,0.03610294019970826,0.03612118884767,0.0360815163572494,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,a oil,2.5727581436448537,5.265202933440152,6.875596275171798,8.843166610057487,12.118466737693913,15.202915127978683,18.015956276931828,20.445902403735477,22.857099537679776,24.9263825940695,26.647235403770598,28.454645206122233,29.92929426766926,31.146411906361358,32.189680349944176,32.587541955663376,30.976973204504645,32.00887022140662,31.354126939011195,30.496951797500063,29.59801872270542,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,b natural gas,0.4422936196233034,1.3281032888301034,2.2058124186968526,3.1408555865439967,4.594989658221519,6.269316026917165,8.26959231986742,10.53674550318664,12.915458003939047,15.357333895033268,17.831020443301274,19.987642061492373,21.552963070824976,22.67822146320103,23.492650393494024,24.35096058332863,26.02896950967105,26.81409400672832,27.446305702772474,27.996784370021672,28.48104789894248,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,c coal,4.3901083440218205,8.692809229278682,11.901930126073175,16.275673487931314,22.56541911434199,28.781167289479278,35.42312809470378,42.15629106175856,48.906146638296754,55.364748522135734,61.4042498937853,67.07666345647304,72.54156921645166,77.57855451142548,81.99954137819088,84.81340074088824,87.31438016551738,87.79273155940174,88.00297812689277,87.55840832801552,87.03036606152473,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,d biomass,1.13930329,1.448953460709084,1.5561134649871082,2.0205872542683667,2.9271717329595432,3.845439207910733,4.806346479548889,5.782638563065704,6.700700355645145,7.593674386712521,8.427845969745652,9.179239024024605,9.828540073487583,10.353670900266284,10.6833224703464,11.051406132251696,11.422909158647085,11.916038489210614,12.341272464136566,12.779793694529994,13.308980301096705,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,e nuclear,0.02210767929225579,0.06236629388948987,0.09455744922547628,0.15126553033652826,0.24011487264329923,0.33752796890872366,0.4518459354036726,0.57430727459634,0.7167721122713238,0.8712512727350405,1.0314240741960168,1.1871640812780966,1.339261676078667,1.4833091240346319,1.615294463231094,1.729588460886341,1.8518664422340478,1.9042664732238834,1.9651465305998161,2.00706001449982,2.022186621063755,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,f hydro,0.25796292521978365,0.36622796411780234,0.4119257788081701,0.44785101733107036,0.48380310334137794,0.5197453768570909,0.5556958406075106,0.5916455091145816,0.6549529438820573,0.718272786213478,0.7815992064923251,0.844897387260529,0.9082082916029465,0.9715224736840812,1.0348266183937045,1.0981507905111803,1.1614686653421116,1.2247904588260514,1.2881247945403802,1.3514561731154324,1.3514396010906908,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,g wind,1.1520041318226001E-4,0.02377079767099035,0.07167946151027182,0.11874595530304502,0.2106725051064118,0.3369493171240919,0.5127232234112531,0.7283191960812331,0.9109373214827474,1.1389114762505521,1.3307503122058686,1.4919009946932735,1.6148752844859584,1.6987994485446383,1.7500545216461154,1.88497056283323,2.1103085372272594,2.2037808628383164,2.363576889354838,2.507740314879577,2.6391181948170246,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,h solar,0.0,6.839989329833001E-5,8.279985553896E-5,0.01612526468170365,0.0669546086316246,0.15829790376654682,0.3084415653768327,0.5224996299190361,0.8068725592683621,1.1372931903581842,1.4824484154212854,1.8310624348396238,2.173520645687829,2.478970336236288,2.742285262251132,3.1189583945498485,3.6473574360510326,3.945968416794437,4.343174299889418,4.712384656184992,5.079340962540908,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,i geothermal,0.0,0.0,0.0,0.022025749072276998,0.05208033440169,0.056543933959408196,0.05653996979219526,0.05653972877298863,0.05653961692340842,0.05654269084365145,0.05654750746546723,0.05655104159989601,0.05655659648621506,0.056562618206481244,0.05656725800299622,0.056572135678545084,0.056579541567655524,0.05658283072642274,0.05658517732846242,0.05658829164838129,0.05658875616025048,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,j traditional biomass,4.4472504,5.21060866,5.57558156,5.03503208,4.25483143,3.6910263100000003,3.17749248,2.73046897,2.3220527900000003,1.9636726899999999,1.64790891,1.3705554,1.1268991199999998,0.91550697,0.7407416499999999,0.599068766,0.49335638,0.386477906,0.308414305,0.245227448,0.198538666,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,a oil,1.488205559090361,2.832053577563879,3.1046851516361436,3.6474373333658945,4.497323632142743,5.5422447135408595,6.448071309521222,7.164001037249338,7.811456472008005,8.283034806500046,8.589003574895026,8.955654078214748,9.212781691666839,9.38801815215172,9.480575499395664,9.3934990889917,8.806196545481104,8.882436333365154,8.570047579470597,8.204863387364222,7.849979992477705,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,b natural gas,0.6173077308161717,1.2218861804990602,1.5887469136608239,2.0913744007047526,2.6830248960264784,3.4984277858804123,4.364462754506611,5.256512590655865,6.15003814107857,6.997049658124499,7.797530110431639,8.430545077142867,8.846895059528212,9.147737281842797,9.3137024496738,9.512660750685086,10.39693537890097,10.664340206353895,10.719381584654867,10.727411508323877,10.679291214715898,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,c coal,0.18694605783563595,0.911629267583157,1.3225666346615967,1.8099355081576052,2.3379212339702415,2.9885909235643964,3.6695116441466484,4.348813424727341,5.051026784884925,5.710395210157025,6.313282618903052,6.87755373748984,7.4700698009986075,8.033895939950776,8.582410500201343,8.969592447507045,9.507785304684905,9.727068435086593,9.97475781808301,10.183040322265532,10.364440485161731,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,d biomass,0.409056388,0.3197684102461965,0.318430981634685,0.4469407981783862,0.5747700113910776,0.766325269990512,0.9673153144302348,1.2075619748364148,1.4569399581935407,1.6952643377861858,1.898694217008471,2.0307600729610833,2.1391464298133593,2.2191334451233713,2.2637969235323334,2.3225089462956534,2.385424463468651,2.4479009281419684,2.4953470395006563,2.558881974658478,2.6487595771987182,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,e nuclear,0.0,0.0,0.0,0.002248682768747127,0.0048555591998805095,0.011681166741528538,0.023516716134732354,0.04036135663767912,0.06134928398766763,0.08414173857884735,0.10750437089479022,0.12936944079185228,0.15206162007156734,0.17424006088592559,0.19520448030631393,0.21962537610486751,0.250604880099977,0.26688722476022536,0.28414529888952283,0.2948693643807962,0.29768835695846513,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,f hydro,0.02054870660254676,0.03861002523400326,0.06363357035177247,0.06428187947370127,0.06494242199813115,0.0656049650285691,0.06627736301404093,0.06695552237358116,0.06900107393785572,0.07105437323795491,0.07311245374776956,0.07516482578663784,0.07722389756524274,0.07928545005180584,0.08134522300238752,0.0834079759745799,0.08547895087994181,0.08753452131305588,0.08959835455064637,0.09166082180065181,0.09166231573889311,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,g wind,0.0,0.0,0.0,0.0016896799099850436,0.00517828937434271,0.011741379350315648,0.021323507187226677,0.033448192088440465,0.048237916607580957,0.06241765206350809,0.07507395685166932,0.08458134487576259,0.09291049198850243,0.09905301677224534,0.10422705901364815,0.11516511924984996,0.1336680802288218,0.1424037837655759,0.15658899772700852,0.1693299685467091,0.17745617286193688,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,h solar,0.0,0.0,0.0,0.0013936397712621977,0.004815811350747931,0.012327686440311118,0.025056145295315902,0.043860770237278995,0.06992971579687479,0.10005888339234499,0.13235199290349967,0.16340928098416818,0.19626566730078787,0.22581905962465879,0.25402843747946446,0.29530739790413024,0.3570312104408224,0.3913865461234116,0.44151171187753613,0.4883273225836681,0.5267497804762261,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,i geothermal,0.00404998159212773,0.02377441553802868,0.033685184305359536,0.05029093430518105,0.067286900662951,0.08798475308892123,0.10918218626603512,0.12876617440438165,0.12172111193163988,0.12890017822551833,0.13398107455291328,0.13481200111506017,0.13614371555362145,0.13727405077816587,0.1361167351119601,0.14144774047081282,0.15230735951052116,0.1543208189792415,0.15515057601756563,0.15517000898248887,0.15516988277930532,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,j traditional biomass,1.41181,1.78826,1.93778,1.93128,1.80115,1.62697,1.45126,1.2818,1.11019,0.951243,0.806275,0.67613,0.562568,0.464084,0.382373,0.316699,0.271065,0.213537,0.174579,0.142032,0.117611,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,a oil,10.78951443268896,10.648479855318094,8.754045952767017,8.440741851354513,8.079637542040851,7.856573606239031,7.604771628481052,7.254611512994808,6.903450697226549,6.509645159780511,6.1634465312485345,5.910792703776182,5.698977557599611,5.487821681885245,5.2555688118782395,4.985263513561006,4.514663025133591,4.368246704545843,4.140336516292916,3.9221041225303033,3.69404985528019,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,b natural gas,2.0253907338120234,3.105111208510316,3.807588851662207,4.253644401052555,4.494154798389899,4.674301739447054,4.831219624660355,4.962139437363205,5.091437635363242,5.206816454912301,5.286576536745749,5.260389424266744,4.635927430091596,4.348329890990096,4.142420059746497,4.11184675271025,4.323370667548192,4.112818854114375,3.7456071010913115,3.4818323407278813,3.3195991750404774,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,c coal,3.2667906287860147,4.6823321395561015,4.6013257387790985,5.20236932467132,5.397701232801508,5.435598372809469,5.441824183982007,5.406144991477711,5.39800400640189,5.387529120786981,5.349129246153996,5.286351476457684,5.521277079560621,5.582939929717939,5.6093947035300005,5.092377160670075,5.081035360960291,5.02896833913982,4.975259360582015,4.881879166121578,4.786786335749726,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,d biomass,0.20970127875745215,0.2972938005672031,0.3007538693747169,0.3265731962745414,0.3089770826110114,0.3070777679631044,0.310948419970177,0.3846154866022091,0.5387580506096846,0.7004601038064239,0.7997400967387105,0.8346027703883799,0.8773149596595682,0.8635755144072217,0.8571320615278205,0.8662179861151714,0.8889546231976991,0.902918929119399,0.899870402787774,0.8946278817398741,0.9075948303221527,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,e nuclear,0.7281330787737438,1.0970711096120396,1.0375959518221747,0.9588840369420006,0.9140420148482229,0.8627494959671586,0.809417697685759,0.754578869267055,0.7005382893689239,0.6423187783728439,0.5863899941853755,0.5388988193605663,0.5745250010869067,0.5782841074685549,0.5488482913685493,0.6187395077336345,0.6663218755693887,0.6765420659521234,0.6834058019076729,0.6610089127161549,0.6223330758553445,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,f hydro,0.32147816682130054,0.2752797323057802,0.29595328844496227,0.2949723979897929,0.2939997948011745,0.2930225566560517,0.2920460741595247,0.2910750287363721,0.2942468373723475,0.29742117212032837,0.3005971273619205,0.30376650716828585,0.3069385102117436,0.3101116737712849,0.3132841921683859,0.31645943204498683,0.31963292005582206,0.3228082645543342,0.3259848853231449,0.32916472923369283,0.3291633252045142,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,g wind,0.0,0.0063059987619353405,0.01424790453860406,0.025742421397607122,0.03303885735513762,0.03949672225314063,0.05031930763223275,0.06442292503271295,0.07172618334457932,0.08398438969778914,0.0989537972228195,0.11105452445619525,0.1476781466655195,0.15837536320683854,0.16478887120839303,0.18339622339783707,0.19223307258799352,0.19082551663167152,0.17688413493563573,0.18124902887767083,0.18359954795713226,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,h solar,3.5930041058825534E-6,0.005367647403100299,0.013661733806702879,0.01902580928508294,0.021891803562143857,0.02482877732237075,0.030161575485084607,0.03773514285088098,0.03570439559657117,0.04360052341941862,0.053774683969620256,0.06200577291386587,0.08569791267828526,0.09375625499456756,0.09974175641654882,0.1131008386508595,0.11998160509774035,0.12002625015512892,0.11148170800641395,0.11370709098429016,0.11459583908996704,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,i geothermal,0.00625541016780952,0.011598166603838618,0.00946502906817093,0.017487158896004697,0.02188461235627237,0.02531369554656077,0.03023394896887705,0.03567849857640682,0.03490593335390261,0.035983597105221296,0.03924072931104025,0.041702148329111344,0.04940046805597357,0.05022385056229564,0.04987668790231893,0.052075423477184184,0.052417585391905976,0.051212717545708955,0.04839405072219445,0.04938005013154919,0.04992252739287474,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,a oil,3.272688199694502,4.411343395289168,4.230038760886256,4.537071862728875,4.8980933382019565,5.206942040657013,5.449827403542843,5.5851158605275115,5.675363635101129,5.697557001561252,5.696281519918132,5.811919231582201,5.952842261514678,6.091605548318813,6.227005481459676,6.281068277224474,6.017820262548905,6.152943204388665,6.056002733123364,5.918462550659308,5.775513283950179,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,b natural gas,0.9678456472462059,1.5795707643716352,2.2293390247511775,2.632558385583803,3.0909954201240293,3.6372175433368263,4.2456998538253075,4.892998591218179,5.548728167064627,6.210897349349505,6.942436207079484,7.520849328112911,7.833374778417671,8.17443673613441,8.444158335294743,8.802124210321333,9.856550307768561,10.358617630183812,10.618258502301684,10.833930458083676,10.990023314973337,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,c coal,0.147263572077845,0.39936511635097843,0.4047762669549464,0.4943081981749989,0.5699508507604394,0.648254975320142,0.7332163339520774,0.8268614661121637,0.9397625230422099,1.0676712570376063,1.2058354415978696,1.3552530425449736,1.5754867184613004,1.8079378221499205,2.0773080090892684,2.3266645069317913,2.6746337123375628,2.9852123078990638,3.2964090923301903,3.631450623832158,4.013389906632045,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,d biomass,0.08162710000000001,0.10568808267917663,0.09091648370179159,0.11055321373724986,0.14751571781812997,0.19588730279935046,0.2625154858085337,0.3556334017376377,0.47898445765323155,0.608141006437973,0.7138875651596859,0.7958837011068942,0.8820579925279175,0.943942810748096,0.9989071401336105,1.0499047337077299,1.1114496495294763,1.1645055413766403,1.2141885596404232,1.2660760458662639,1.3292021663626776,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,e nuclear,0.01057319611634999,0.03878711778698321,0.021132501147480786,0.02469786634088181,0.027931199334152047,0.03228943670971173,0.03797018515772876,0.044883564539974954,0.05363324475782793,0.06381192827294455,0.07576438189001794,0.0888514894718145,0.10974468789851062,0.13211518355714535,0.15354289611270525,0.17438700085443604,0.2012817742401786,0.21939429788885428,0.23999398537366282,0.25834727196791707,0.27121243490756464,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,f hydro,0.08452076895460169,0.09956628957133704,0.1336322104399392,0.1336323202444265,0.13365169110585304,0.1336610477448769,0.133672586974573,0.13368410546411622,0.13369665473050726,0.13371198122111505,0.13372856100791422,0.1337328891765848,0.1337410831281609,0.133749461539339,0.13375578543879796,0.13376426566359798,0.1337740434440497,0.13377953861354283,0.13378875278315805,0.13379683693888367,0.13379472242078075,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,g wind,3.5999986776807888E-6,6.839570252449772E-5,0.00446026351525188,0.00908889212445745,0.015518485649613539,0.02611150157920812,0.041785482703741474,0.062420621217963025,0.08396802870270652,0.1090631312309208,0.13608096785205534,0.1617846119554175,0.20380460143434054,0.24352846312144977,0.28688292587728464,0.33903228010131625,0.4068628502106225,0.44977357280128466,0.4903004527348432,0.5285262765570258,0.5507369471591099,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,h solar,3.5999986776807888E-6,3.234259196762176E-5,1.1149660417813206E-4,0.0023011643644806398,0.0062054799226231964,0.013187564175454471,0.024144557565471726,0.03960568315782458,0.06028838981736648,0.0840796174163952,0.11185113118891964,0.14187824091214052,0.18956703639835598,0.23903934900165272,0.29554008207701044,0.36299736141320055,0.45092719059094616,0.5120506336100302,0.5746742459218801,0.6347652833600705,0.6832454314132358,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,i geothermal,0.018446393224439018,0.026201496781785318,0.023788891409087912,0.03290007535571296,0.04046359517768182,0.04930723730029494,0.05908974474998465,0.06901716695559476,0.06006882381427515,0.065100246849718,0.0713725519074982,0.07612501550045228,0.08480908215721387,0.09142306577055566,0.09623381704256896,0.09698557741664213,0.09701060372186887,0.09701705369744966,0.09703195673005827,0.0970458489505934,0.09704911608727336,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,j traditional biomass,0.27636,0.266313,0.259741,0.24419000000000002,0.230569,0.218388,0.2054726,0.1918464,0.1767831,0.16128130000000002,0.1451131,0.1287263,0.1132022,0.09848960000000001,0.0851503,0.0737853,0.0659154,0.0539512,0.0455297,0.038140499999999994,0.0324363,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,a oil,7.31167779624798,12.4560678234409,15.520703434096793,17.228901450033536,18.85785279509156,20.66730082730532,22.147343625295207,23.171643527147392,23.97056986972108,24.42407580063769,24.643783868096754,25.20537392341164,25.527778574492828,25.84275909149538,26.058151997081914,25.80705764504584,24.177096910472432,24.410739203253428,23.619721967643734,22.719933042762612,21.930898209471522,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,b natural gas,3.057040411139371,9.226306711182911,13.131913715487705,14.364774520492114,15.942752808071075,17.683093333006344,19.52376664561161,21.33954501030813,22.98055546447952,24.56496125666253,26.163940126632617,27.531550826441254,28.355972981744102,29.20082848755175,29.759096943058623,30.526217338856586,32.48700334707055,33.044032509003785,33.78659643020234,34.434585213538874,34.91070282923944,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,c coal,0.12511742897225162,0.382828531088933,0.3946494465221019,0.4466983579906101,0.5159233088307649,0.5963803991078851,0.6994804503021447,0.8442815896767614,1.0615814833870576,1.3491241895877077,1.6676144398330766,2.0252922396535182,2.4712299096167514,2.9731685296840866,3.603257483630457,4.331437459529137,5.249917664722109,6.248773301126498,7.163435726441066,8.190921260750656,9.444391243219552,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,d biomass,0.0198416,0.02973293788377644,0.026285200456482735,0.03540459423971192,0.12901122250558184,0.2760206887007623,0.495882177158524,0.8453162426307216,1.352137345754699,1.914485281767627,2.385075774877147,2.7755729863656766,3.127322530729643,3.396351740457015,3.655092337418152,3.9040343166507774,4.182845662685389,4.550949476855237,4.839235754671175,5.159754693463297,5.580043265118347,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,e nuclear,0.0,0.0,0.0,0.00761242277673438,0.02201761786433153,0.049412476321803726,0.09247578172649154,0.1515407966193768,0.21632911450431394,0.2839917521332725,0.35135259087108267,0.4163722960253594,0.5024158928886974,0.59667337030553,0.6929282911957813,0.7944258515243775,0.9255352898566893,1.0015037684277222,1.0883482456531905,1.1574311206301053,1.1946427729385836,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,f hydro,0.042893528714851914,0.09915586860879075,0.0642237853985536,0.08552542178294076,0.10698967287957177,0.12843853262704436,0.14989214742589857,0.1713489833557039,0.20304232387683768,0.2347540257491081,0.26648291129775653,0.29818031812099743,0.32990084927948804,0.3616343759105914,0.39336431839637115,0.42512145348002195,0.45690765527174104,0.48864048413692796,0.520415616220191,0.5521883247670087,0.552216866658712,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,g wind,3.5969316197996028E-6,3.0585793614640316E-4,6.262213964364395E-4,0.00972508736898434,0.02681945662562169,0.056662949763177164,0.1019252950866857,0.16248653705233831,0.23386564843309166,0.3052190044892894,0.3727848298969918,0.4306506305409717,0.5113959840778254,0.5937175352360566,0.6909837069575971,0.8140330510481799,1.014818516922763,1.1361265843173098,1.2873707786633997,1.4267833268076646,1.4940348869008562,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,h solar,0.0,0.0,2.519285501764536E-4,0.01678333383255698,0.043349884861228614,0.08451224209752395,0.1431829348758176,0.22091945360093673,0.3157361341847721,0.420177055502091,0.5304105896741471,0.6396935436053841,0.7917638235469283,0.953069034426413,1.1377335302213387,1.3603515915963993,1.7028457274132096,1.9167414028554695,2.1780769947576677,2.4226559795905214,2.5908882191404903,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,i geothermal,0.0,0.0,0.0,0.01080646464192928,0.024262105329386965,0.03998909366383283,0.05571043569759893,0.05651653897153798,0.05652736505836954,0.05653929086985552,0.05655050796830313,0.056553293760442665,0.05656074292643803,0.05656810730255415,0.05657166947304148,0.056577988675127235,0.05658970615510584,0.05658744268537547,0.056591454905075035,0.05659414905779225,0.05649110681676795,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,a oil,0.45759557857354205,0.7183564674897136,0.9563633315620045,1.1287114665645863,1.332006717801821,1.5373570493030937,1.7473611240302505,1.9563690196147019,2.1964512813765267,2.4527553204163413,2.7163448924972196,3.0428021765267292,3.3368626911298547,3.661972522704726,4.001365754293305,4.286401179382763,4.290687369936312,4.634678875990465,4.734502791227696,4.781056372232009,4.792922626432064,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,b natural gas,0.40399135822816395,1.0777737197751878,1.130629742393182,1.3775151741452305,1.7092476663366105,2.0935843607058464,2.572141024555395,3.1541589661324743,3.8465025111369533,4.642157687174916,5.518854090008776,6.417493728049898,7.258060411489776,8.084691226149591,8.891394202039281,9.668202340742582,10.508400061039758,11.090582183069436,11.675552924752997,12.192615294571373,12.637035494144596,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,c coal,0.08380380033251461,0.15057040716455647,0.17120749708144317,0.23613743732432219,0.30343379948660765,0.37774032460735324,0.4679188432727262,0.5765966611234544,0.7109565109216652,0.8726257835149938,1.060555440764347,1.275250018706217,1.5277522865805482,1.8146329773885725,2.14752547885483,2.522857492209951,2.9782068736701515,3.436779257935711,3.9178856696294844,4.46344426410981,5.108453575091971,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,d biomass,0.101175602,0.14935700000000002,0.1634214,0.18767011513154142,0.26051715209309934,0.34968290653166395,0.47165664697122317,0.6290817742533024,0.8209204133171317,1.046758763819024,1.295021486152766,1.5581228068192259,1.8474065315346753,2.1500934845357818,2.443124870281271,2.7401998606874036,3.054824353305772,3.3415527412364128,3.624383000696808,3.9112772766207993,4.208291164420762,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,e nuclear,0.00105480046547632,0.00894241987724311,0.012311984103135939,0.019265560865813384,0.02617932593439973,0.0344697777811485,0.045361269079141425,0.05946528494549648,0.077363856389637,0.09977753570063935,0.12668490288436046,0.15747908531566196,0.19472358073277513,0.2353202746543173,0.2768419335826662,0.31445072959768733,0.3587145590940767,0.3948695735838106,0.4342430041772513,0.47158510851651625,0.5047662408507677,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,f hydro,0.06093002688800963,0.1111032469606975,0.11451985213540682,0.11770588309676784,0.1209292672869631,0.12413811932186765,0.12735039394659575,0.13056563301588572,0.1402487119688479,0.149950365589386,0.1596644115794358,0.16934911765148855,0.17905704679213214,0.18877098942452084,0.19847875917322874,0.20820216853811954,0.21794186133682997,0.22764329854330365,0.2373696355746439,0.2470850566810246,0.24701891621030017,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,g wind,0.0,0.0,0.0,0.009322662340910037,0.026658084073344676,0.053420841258461825,0.09381467166317098,0.1500123466927901,0.22369980843344747,0.3078625894623043,0.40239266962453185,0.5027973537663308,0.6214782014555744,0.7420921308103013,0.8618223071735066,0.9803006124023623,1.1122738354876407,1.201346726915135,1.289618148846783,1.3665974979668307,1.429547353860755,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,h solar,0.0,0.0,0.0,0.007087281921058211,0.021476632889813163,0.045156259598895104,0.08296343765365595,0.13874540922670786,0.19958191540786857,0.25426211566953844,0.3147240507916943,0.38269917110264123,0.4597119942454381,0.5429339947684907,0.6388244897906089,0.7475470187245498,0.8683774948680673,0.9726176680969865,1.0811248898552002,1.1845694060202479,1.283410756404393,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,i geothermal,0.0,0.0,0.0,0.012043761997757165,0.0282886217907208,0.04646105684916301,0.0662415524828104,0.08056157667451622,0.08056053246298955,0.08057609121860347,0.08060756766298084,0.08063029371266535,0.08066971447156947,0.0807083484028332,0.08074012817675487,0.08077733115973358,0.08083023019814607,0.08084457037502385,0.08087631717085111,0.08090209588610021,0.0808910967220123,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,j traditional biomass,0.6844110000000001,0.9536132,1.0434866,1.0159999,0.9725272,0.9174632,0.8413296,0.7560036,0.6725036000000001,0.5911868,0.5128147000000001,0.43879645,0.37073479000000004,0.30764088,0.25217677,0.20526952,0.16684026999999998,0.13315486999999998,0.10561013000000001,0.08366639000000001,0.06725068999999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,a oil,12.50879260061553,6.9435108333787845,7.3525398635544885,7.538243203046701,7.324948196239742,7.51669690647294,7.598614013937214,7.55093480771653,7.445156176535215,7.240206401514309,7.047820774308369,6.997775220752468,7.00892907490391,7.048069469727287,7.044305450833564,6.9149724022196954,6.4698092222934855,6.506600518419908,6.29572767759215,6.064821204002717,5.807313183391175,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,b natural gas,19.631882984879084,17.033737847878403,18.58638383630864,18.11523313848576,18.095615623971593,18.603631310234594,18.86869569722001,18.83656738156431,18.5381342463253,18.108914187617604,17.618256285897004,17.144016486218852,16.460247907092096,15.849716077474863,15.064168565326073,14.612150517690296,14.952067670100352,14.792714229905808,14.490389987390515,14.18011046944608,13.910517861394062,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,c coal,10.252523918161994,5.202680549072172,4.699684347994367,4.668216214446104,4.633666903956517,4.695943843200694,4.698384440213329,4.664857897566642,4.642662789732564,4.630132752248178,4.628776239016319,4.661477877845076,4.801464548677689,4.969645395618247,5.1360784440773095,5.317273816343813,5.585235999219242,5.717205216583083,5.822273410998367,5.976139064991026,6.218083609683404,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,d biomass,0.6937325995513319,0.3616886010427503,0.369641223512841,0.3641538199763956,0.3712317401108349,0.4067286690301947,0.47360155362955,0.5881490563791199,0.7578901660321397,0.9334593691673955,1.0581936569759318,1.1402343196402496,1.2330204997896317,1.29656342806859,1.3608993101426499,1.4199408531598035,1.483592976019665,1.5670713264435805,1.6201347999876956,1.6854097173977838,1.7777495024750152,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,e nuclear,0.4461818447562886,0.5635871479552887,0.6476205170573097,0.6937377666598953,0.7388492548443948,0.8255886443291126,0.9373888518030999,1.0526526650521133,1.1561492710302417,1.228612146720671,1.2767656939857224,1.3192198136229505,1.4006374858802826,1.4792810276094,1.5567041643789359,1.5844414254181625,1.6227443405718482,1.6054857898013135,1.5562095148354054,1.4747127583745718,1.3989920449396471,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,f hydro,0.6257245877214083,0.6512091657034871,0.6327121578594416,0.6706046736906496,0.7040912803247467,0.7396587704282126,0.7741197601350532,0.8089929212432178,0.8478397452802623,0.8878938704334466,0.9287747723805093,0.9699268635809322,1.0115426560687424,1.0530566489274473,1.0947793005633777,1.136561129287286,1.1783056999995354,1.2202801909102294,1.2623313425092473,1.3042919610191066,1.3036692247896193,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,g wind,0.0,2.6377680692987458E-5,1.5196616027886081E-5,0.01023549105353194,0.028125687557953336,0.061035685988321216,0.10755288428446333,0.16138543726558002,0.2265267170083357,0.28124070565730647,0.3229760814435566,0.34680059638396143,0.3798402202624514,0.4025795956764926,0.4399506616029377,0.48369136110449473,0.5358792359145061,0.59414480625261,0.6475323731726454,0.694582558757084,0.7300402540003278,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,h solar,0.0,0.0,0.0,9.3881332650759E-4,0.003455990826473436,0.011168479215775668,0.02528448436628931,0.04451652360297834,0.06982071624278603,0.09561025914670757,0.119279787276394,0.13668124012274024,0.15838597581821395,0.17405342112293515,0.1964757533876763,0.22072345785139566,0.24782475763589507,0.2777840502669465,0.30627645901380307,0.3317516410314212,0.3522777948136995,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,i geothermal,1.0503278870308836E-4,0.00154141355865048,0.00191526138386625,0.012843126789020949,0.02810361823060621,0.05070238405743114,0.0757303263766535,0.0990591059552336,0.12030142881346968,0.13030483340403987,0.13347856113047588,0.12923496717336255,0.12908871092763713,0.12900472897064763,0.13493426012852336,0.14291005679819827,0.15208011487059778,0.16099392637719784,0.1666895165133341,0.17072270526532107,0.17221072574530227,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,a oil,0.7715063845368526,1.0300200922231282,0.9760254188266086,1.0711316942151874,1.1773178385957312,1.340010043184841,1.4904507825526299,1.6255517135402053,1.7346667273054683,1.8030198341591275,1.8429789709690563,1.9161070887104341,1.982870600966316,2.049081428010171,2.110530361684871,2.1446516363866794,2.0920340209076995,2.137285102982093,2.1235521269936477,2.090723500062597,2.0354254027409047,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,b natural gas,0.06340162767253642,0.11697330087360758,0.12472046725179509,0.49628630145705993,0.5320114777668484,0.6091495683978081,0.6736143006604645,0.735321784637995,0.7991344056462575,0.8763095207715488,0.973526596993951,1.0405389295839471,1.10285303897924,1.1568092572404947,1.2077302286381213,1.2518501622286198,1.3034165388147307,1.3556586233977752,1.4101130198404137,1.4614131089996842,1.5049470780344951,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,c coal,2.8927040061502223,3.6416418800505155,3.8819016967662097,3.630150134230626,3.8327240511139604,4.196590247440052,4.476916915609146,4.665841521028361,4.79191649596411,4.883579703996261,4.965652603614059,5.060050411623454,5.183872536270612,5.312834227607573,5.3733777667614655,5.465124164437354,5.473216440483867,5.3274102884759555,5.159799163238962,4.98809450355976,4.864463850403776,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,d biomass,0.20193241,0.26179245454836836,0.2772379581649171,0.24799046764413235,0.2672080447536049,0.3064275453424433,0.3496106319924382,0.396891445928371,0.44393397702029336,0.49655074997712356,0.5421725535878346,0.5753344013799859,0.6032563235926414,0.6261907507386814,0.6437262287176896,0.6584284739258752,0.6844002212277885,0.7143374865646459,0.7398526226970534,0.7671276874165966,0.8003255198555288,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,e nuclear,0.030416406437838432,0.040654541817377134,0.04355274763513808,0.04040868649246898,0.03890837420647079,0.040480993675079104,0.045453703230171866,0.05345139404750569,0.06239646540935736,0.07172082114342677,0.08118398814799399,0.09020584149736909,0.0985787146185447,0.10611179150248645,0.1127063926806058,0.12052300271445673,0.13043089461743115,0.13761225795024276,0.14066578301027985,0.1389483960671071,0.13581419080438556,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,f hydro,0.0036360007695841897,0.00476635797113454,0.007640899128154399,0.00784772725499858,0.00803129305503562,0.008225578033102149,0.00842140063515293,0.0086177042889098,0.009002142800564569,0.009385938461857962,0.009767352739820028,0.01014675617650539,0.01052537233697469,0.010902885593209698,0.011280212096311809,0.01165786554911581,0.0120359968587355,0.012412928773757161,0.012790750869021789,0.01316841416703778,0.01316819420242825,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,g wind,0.0,1.1519883513354492E-4,1.1519086898231887E-4,0.0013156798091600401,0.006860214469484681,0.0205106961109693,0.04052861721154744,0.06562327456280459,0.09471775700207316,0.12451243987395771,0.14982074054788283,0.1671972445126222,0.17745005332646335,0.18061270459381568,0.18479603043495904,0.18306795081948898,0.19293708578403673,0.21007823773861956,0.2315198604831307,0.253405280855062,0.27300785503329916,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,h solar,0.0,7.559959180587706E-5,7.559370779342983E-5,9.6714554043385E-4,0.0050760690863324905,0.015912527548941978,0.032661047107345006,0.05492126243483671,0.08220327061062153,0.11204571769393573,0.14024557769368923,0.16351516420981033,0.1818011539953523,0.19372467807081487,0.20606011650146788,0.2116257015354566,0.22788797882627015,0.2506644244480289,0.27772541172998666,0.304167157192109,0.32253902915470856,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,i geothermal,0.0,0.0,0.0,0.00134046186460207,0.00529750938762049,0.010942155918023852,0.01547550857377576,0.015484929795671,0.01549827627342581,0.01550965021840453,0.01551635688952073,0.015519345521394091,0.015521116084863548,0.01552104248388857,0.015520844295116461,0.0155209705938495,0.0155218440231292,0.01552115522526495,0.01552145611518922,0.015521689719534838,0.01552143044591428,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,j traditional biomass,0.233914,0.305578,0.323662,0.325136,0.329136,0.33942799999999995,0.349586,0.3604318,0.3717975,0.3834164,0.394759,0.4050013,0.4152232,0.4241735,0.4312014,0.4360006,0.4380672,0.4380675,0.43528313,0.42910441,0.42649052000000004,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,a oil,0.9761922536347349,1.4733989817076403,1.9484800771576403,1.9772035931299126,1.7549382328068877,1.897077946314592,1.9976861645410733,2.0465577731603615,2.0677802675166577,2.0729067923271884,2.070150597895523,2.1310794446098758,2.180990057273625,2.2495639357160226,2.280499549226513,2.2788538581196773,2.181791022640357,2.20901197391975,2.168518297115852,2.1103167630543362,2.037602806106277,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,b natural gas,0.8302300087934155,1.1554285909599147,1.3100134741490888,1.1135310826379998,1.0110146368129498,1.1403460434656523,1.2588448302944695,1.3628083714406465,1.439915647627493,1.5340263483804792,1.6692020857836503,1.7921510408903498,1.8941073210238908,2.0356933012742204,2.1370296638193027,2.279033365046788,3.0491005252151613,3.447518522878502,3.5035027910773016,3.529284664946313,3.5292633856237496,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,c coal,0.01939828,0.0015823199,0.00838015,0.01201873963943597,0.013035797552700576,0.019962189855727487,0.03202324097900171,0.05054699006071711,0.07684639363351912,0.11137195345561118,0.14551334710231079,0.17855363061070545,0.21875709692145118,0.26604484886719354,0.3286665611204483,0.4038996314480186,0.5030282882613786,0.5921423758415699,0.6763883171019894,0.7659278156653768,0.8797458216237622,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,d biomass,0.025143261295548346,0.03209621490809222,0.029288844469198015,0.03574150383048015,0.02887886373060105,0.03907841095808849,0.06742562848357689,0.11158739492264386,0.16458463916607796,0.22095739155755068,0.2632384159928147,0.29771416407087575,0.3324647672476254,0.3596785809207039,0.38559709624439115,0.411398367783459,0.4474555677855726,0.46841500133531794,0.48759451678420807,0.5039036388700846,0.5280157336458825,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,e nuclear,0.0,0.0,0.0,0.0,1.7918972144281E-4,3.256869026026E-4,4.995838804037E-4,6.9603047276462E-4,0.00733955014410346,0.01988391254700479,0.03488262766311212,0.05132055255512241,0.07082236853689343,0.08740562233642996,0.10358975357142752,0.12057835122746145,0.1398787717393819,0.15332340113384388,0.1695288033082448,0.18294410208864573,0.18963262073730944,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,f hydro,0.13536035173228195,0.28053777217130244,0.27939733465435307,0.28288063395501767,0.2681846613929123,0.29055169110985973,0.29430817485376465,0.298049511767448,0.30445278598074177,0.3109084368753338,0.31740441441145756,0.3236420761753642,0.32996939631001126,0.3362973685822693,0.34260298184484617,0.34904091381654934,0.3557002335367598,0.36193787973154223,0.3684088943240294,0.3748437728317644,0.37458823634532257,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,g wind,0.0,0.0,0.0,0.0034711107143868,0.00334603042951174,0.012428812490789929,0.02900330902098559,0.04949608585188847,0.07081398813321044,0.0909256531537585,0.11219271343008151,0.1281521811229293,0.14339315330408356,0.15054235987260356,0.161317989103935,0.17339675714379918,0.19415784078288073,0.20079300583761997,0.20847986390983533,0.2145137677706251,0.21946671742381588,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,h solar,0.0,0.0,0.0,0.00247026653256374,0.0028422185846088284,0.00936163342031803,0.021931091544922232,0.03885912842881593,0.058179691037573596,0.07933002449029537,0.10261164049572549,0.12521293838962932,0.15019585991643422,0.1682903255589913,0.18789257056815933,0.2056272298598192,0.22265716278812667,0.22964759366449355,0.2370155596372294,0.24222449838179064,0.2462091186202376,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,i geothermal,0.0,0.0,0.0,0.005134407598889839,0.0048094048405952,0.01501100785015481,0.02901846999978292,0.04247395546638571,0.053742829017498626,0.05976400782695173,0.06796837818054294,0.06854537859746918,0.06830604791017596,0.06700082266938563,0.06881164259168758,0.06886790846178392,0.06897092743387068,0.06897942069513166,0.069034918154587,0.06908157236316313,0.06900052373354046,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,j traditional biomass,0.017020091199999997,0.0220903096,0.0231320917,0.0220926234,0.0234012857,0.023080084400000003,0.0222157763,0.0210955965,0.019806100400000002,0.0184159718,0.0169917595,0.0154861249,0.0139945288,0.0124848298,0.011051196,0.0097322808,0.0086235652,0.0072519478,0.0061054691,0.0050852149,0.0042442205,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,a oil,0.8934540777521963,1.4945147351540005,1.937165572339533,2.2580635921852474,2.50418778264331,2.859352547856969,3.1280895917517437,3.310414305113035,3.450629472818314,3.545587260706594,3.5957298057626175,3.6848444957919835,3.745730403002441,3.798640109666187,3.8359256364637573,3.8145373103868687,3.601227369389241,3.6466090659026205,3.55092189513272,3.4401092372430324,3.3433032006967265,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,b natural gas,0.10200850797023177,0.4439043630591537,0.5534298525785837,0.7874576303070544,1.023773101331408,1.3658085163551856,1.7547012019652213,2.173296143117289,2.583868213208309,3.0016328510274684,3.4288527787579293,3.7613138986523094,3.970491227782415,4.14684676634799,4.250918167263603,4.374356945092553,4.8709082917994335,4.995438714652983,4.913966519417094,4.8129481162728425,4.7695126209910645,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,c coal,0.11513443424820587,0.15273406948861334,0.23103571064403614,0.32970806877634334,0.43137723130948463,0.56051367858928,0.698961843466169,0.8400074338373795,0.9778439173290796,1.1215670852614095,1.2653965511834357,1.405253348262067,1.5697891654797484,1.7375040865006997,1.9234878117347294,2.0594887209642803,2.2448759347500196,2.3646616181200852,2.477674064352017,2.5938416335013423,2.7590264205697754,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,d biomass,0.15283587169832183,0.1959518642335034,0.26464851966635755,0.3178822400801726,0.35821887150483883,0.42237132981473324,0.4858718580809958,0.5502444068632318,0.6124116027852677,0.6758289677888546,0.7264071446060593,0.7646127350449152,0.797795948621615,0.8198840728667205,0.831878283524816,0.8425121650639134,0.8615771761067267,0.8699123791673129,0.8803491667035671,0.8919398624250455,0.9211400479772937,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,e nuclear,0.0,0.0,0.0,0.0,8.8695970783192E-4,0.00242887933126785,0.00512935038636049,0.008932160807858481,0.01490074548690211,0.02290163502198085,0.032445262856438103,0.04385039849993697,0.05846271735006759,0.0767628244272384,0.0894281651189928,0.10394772965555328,0.12118441601144991,0.13202735361030704,0.14357369052768676,0.15318947546208575,0.15899962299845333,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,f hydro,0.21793360967303488,0.40518639838277964,0.4241362807044356,0.45524970190549485,0.4869409366401552,0.5181041290838199,0.5492038027533537,0.5805081985665423,0.6364603985908429,0.6927902363636548,0.749382237624527,0.8054062755056597,0.8618114828376007,0.9182797711434578,0.9746369148567889,1.0312134451140273,1.087848081029496,1.1443978467978788,1.201194732284756,1.2579872789578983,1.2577762644714805,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,g wind,0.0,2.912931036240044E-5,0.0014844943964818535,0.00417646984238145,0.009563716499746128,0.019706871476975876,0.034615262100920904,0.05366389100110075,0.07349096757857339,0.09489819026459945,0.11591814542414887,0.13376486955361266,0.15413036771987157,0.17325631058282126,0.19631939493792563,0.22706698913421386,0.2705389113382584,0.29273941699583994,0.31889256334368277,0.33932396331382686,0.3573874054700827,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,h solar,0.0,0.0,1.1021752871315593E-5,0.0010053240076504267,0.0038057323028541697,0.00852070674980705,0.01534429562168255,0.024151317871680865,0.03441620152987063,0.04572017498404136,0.05756000953905339,0.06836277511033514,0.08124997727960737,0.09390512288288612,0.10938261063882741,0.12871513533980383,0.15502047608269248,0.1698209743538945,0.18657630434884084,0.20039805463145535,0.21439866278496544,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,i geothermal,0.0,0.0,0.0,0.00223139389788331,0.00643955968724033,0.01467824431991376,0.025754278750821584,0.03846616151492522,0.05110694804927318,0.061844550500840964,0.07050146586596724,0.07563401152011548,0.08075497358096992,0.08499235370252263,0.0910642706493169,0.0999818560108183,0.11255976541668038,0.11709974960640226,0.122335018610268,0.12548879279367364,0.1280422900390984,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,j traditional biomass,0.2725087,0.2679878,0.3247083,0.3087841,0.2876843,0.2574176,0.2301436,0.20484059999999998,0.1797212,0.1564008,0.1348607,0.1149885,0.09737889999999999,0.0816456,0.06792480000000001,0.0566585,0.0486508,0.03852719,0.03145389,0.02556258,0.02127858,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,a oil,0.23250753670449403,0.5676676167430411,0.6391337996654843,0.8427738426544046,1.095695637707105,1.3732301655914196,1.622804529331115,1.8372770975290424,2.066595264656535,2.292744438778607,2.51628280569433,2.80055319071899,3.092398640140935,3.3923513851329274,3.702243829947273,3.9433728889879123,3.9089229366923584,4.262325795255775,4.3504890356864525,4.392683288904489,4.4292311029677425,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,b natural gas,0.16151927000089172,0.4580893523326938,0.6993258990470141,1.063219352276232,1.5417770043883299,2.128502940137281,2.800286043789469,3.5287615665184706,4.308097104950552,5.147632284988951,6.0297202007719415,6.9227177110208675,7.699266830929758,8.462018249297019,9.185086143687561,9.9012847248537,10.741108323036947,11.304076094563918,11.996907256490976,12.641633868482037,13.209012168146275,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,c coal,0.018663211,0.040050303459532303,0.05994034135299568,0.09582063749802432,0.14264239469354786,0.20058243644075183,0.26984305495846655,0.352044887242053,0.456223013907081,0.5861467328886051,0.7399344060643455,0.9066452852130236,1.0995156877304144,1.3148732700768353,1.569471978679048,1.8565736330588147,2.204476907762777,2.5792494834649387,2.9635022064460426,3.4010453339994244,3.914931519791818,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,d biomass,0.03912939137598493,0.08988889924738337,0.10029485819111529,0.1307653202125773,0.19428577557858637,0.27368083611058597,0.3672090919254463,0.4716488498508368,0.5890030183172074,0.7223717290195357,0.8665996848078046,1.0257585300174354,1.1987747495556131,1.374362840323729,1.5340099578011437,1.6900933493119306,1.846881445340455,1.9974666046429985,2.1239071355994716,2.2464591483566827,2.383698163674366,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,e nuclear,0.0,0.0,0.0,0.002428486296854066,0.005677905624958372,0.012764633129573754,0.02455972783172382,0.04129293592569998,0.061946541320355,0.08667526380422286,0.11522948160227826,0.1494278519475545,0.1934401556057469,0.24901022333771242,0.2990696685769183,0.35291014765816175,0.41631438443506064,0.46670837126289166,0.5212274352457826,0.5722134061748785,0.6136322878619903,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,f hydro,0.026807899133668517,0.04630894726013607,0.07103793602356338,0.07486324590332007,0.07891091234922734,0.08286800418250427,0.08683964122836209,0.09081573054807648,0.10269181071771472,0.11463172642889734,0.12662944305239474,0.13853569554136078,0.15053188377716006,0.1625670046085641,0.1746044354706328,0.18671536167360042,0.19891359124753843,0.2110602572114677,0.22329756846257556,0.23553143369563503,0.23548667889558778,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,g wind,0.0,4.920005021062543E-5,1.3119932777518002E-4,0.004132472329987299,0.014316466377771368,0.033295441157927416,0.06313098280955412,0.10433298473605038,0.15763955343019662,0.22017303079687237,0.28908654507902143,0.365272375878967,0.4606523453492827,0.5689284943673739,0.6902626078978626,0.8298114006382467,1.0026165861791259,1.13509649375211,1.2842518790322541,1.4218972345760366,1.5446076745838366,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,h solar,0.0,5.012005114952E-4,5.4759719428116E-4,0.002823161606433627,0.008435028279901254,0.018245224177019886,0.03320083773898477,0.05374939529011452,0.08045336695685909,0.11318211421819484,0.150850531153705,0.19457326760941585,0.25245040970805055,0.3215446684951064,0.40482679749298667,0.5030512584180906,0.6122701607080985,0.681179073523797,0.7386370515763857,0.7826759334596246,0.8156956508555264,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,i geothermal,0.0,0.0,0.0,0.004475887389975651,0.01316443167227771,0.0257871928929396,0.04071483785515628,0.056428487216025114,0.07190225485743415,0.08300592859176856,0.09061505780344828,0.09645284460747716,0.10072596857196767,0.10084615323521866,0.10095123433959222,0.10108301929610812,0.10124370606893338,0.10136108855606717,0.10150713074852563,0.10163686852438704,0.10161755586765647,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,j traditional biomass,0.7144003,0.8983964,0.9657846,0.9093043,0.8294062,0.7434503,0.6637835999999999,0.5925276,0.5259488,0.4640525,0.4064101,0.35264840000000003,0.3032573,0.2572156,0.2161157,0.180017,0.1508486,0.1208109,0.0969376,0.07730770000000001,0.0625226,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,a oil,2.1343345036311185,4.389448509696788,4.482800573425345,4.6208233861663555,4.792246221581337,4.905059713468956,4.9234314220252156,4.848182268671231,4.704884156216654,4.494680535259972,4.25979755956762,4.074520794883001,3.8813919744849663,3.696340019633345,3.505479279861831,3.289632402134291,2.988049252458318,2.843612148812059,2.657611405453318,2.4823285842638887,2.3080541665031205,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,b natural gas,0.11908457698371783,1.1700425644437953,1.6448477714684255,1.7674814355785358,1.969684219786424,2.139376483447242,2.2702918046020804,2.3644514540792776,2.4232987090744524,2.4567222493342102,2.45634321528954,2.3990152920955157,2.2253983791415344,2.0224036234860128,1.8564055739328664,1.7610430768349685,1.699239476432405,1.6027043610472806,1.541268523853623,1.4946105934123193,1.469773947116412,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,c coal,1.113322818593687,2.3021928625107093,3.155535912684488,3.37564954944731,3.5572623002555512,3.6965503342510604,3.7667177121622033,3.7760647302168917,3.7478239347850124,3.691930162359285,3.613181997114497,3.5239104485563955,3.489538181435024,3.464239596294481,3.4110163678868495,3.3155074464499967,3.226562012904072,3.1307967214392454,3.027427431933409,2.933639099826336,2.861713257029173,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,d biomass,0.030860647909687667,0.09106146722329536,0.14818332733250017,0.15530128115468175,0.1741680695468625,0.1940730999128973,0.22300807671189307,0.2682631003573869,0.33174041638072516,0.39656117629670207,0.43871629531258505,0.4574879643064625,0.4685034111629144,0.4630657606331956,0.45709051584530497,0.4585934734474634,0.46810682138886595,0.4632804860313562,0.455434733334332,0.44905680707465256,0.4477864109836128,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,e nuclear,0.20166795901864112,0.5615476766134995,0.56353171086608,0.6215752753467088,0.6868394599475525,0.7265881470915697,0.7624728355731606,0.7864893365077988,0.8005592998046931,0.800726919831295,0.7911171694377698,0.778131949515308,0.7818972266937847,0.7915393929184499,0.7850929473791877,0.7466583010634961,0.7207713616248378,0.6874510994748981,0.6494433534266587,0.6064531342169467,0.5615509377737607,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,f hydro,0.024254808793819707,0.01405178961832368,0.01470087438908199,0.0159858031613104,0.017790275636294928,0.01980119684558178,0.02176855764958439,0.02375185534953091,0.02704185372294715,0.030345742799468414,0.03366730718950629,0.036997021097541154,0.040365846861456944,0.0437380157699238,0.04711216944142018,0.050497855425889936,0.053871963970925106,0.05727840141386529,0.06068504177218191,0.06409622587572628,0.06406742078887301,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,g wind,0.0,4.9735458561276E-4,0.0030963066615410503,0.0044743427622700995,0.00751210098974974,0.010520495782750869,0.0146394101634156,0.01937739533855642,0.02207276443568343,0.02644258507908813,0.02877702423113359,0.029637903909382993,0.030066350609274473,0.029309633087229538,0.02920801364645294,0.03359579752546234,0.040820377521345354,0.044520380111812904,0.04918569050902915,0.05384202947376585,0.05706388211159541,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,h solar,3.813176746962321E-6,5.73870675707116E-5,0.0029257628751247996,0.00403607538355694,0.0073740092394831,0.010860161854249699,0.01614220644201327,0.02299337382623154,0.028839002524146153,0.037135771270587585,0.0437142567080512,0.04737230848595952,0.05056512677200223,0.05129299776169872,0.05337877085765965,0.06275448768741529,0.07727640810151185,0.08514829758058759,0.09514439867333409,0.10523324500011708,0.11273802177566952,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,a oil,3.3041078498331986,6.800623071602182,8.690537541771908,9.823351096392756,11.327517601170227,12.81092473095187,14.11050014011033,15.170835551540552,16.138294365839005,16.935883705773648,17.57403257258105,18.404915432076713,19.182713947493813,19.901779742518613,20.518856007339366,20.810396201274955,20.192472272756124,20.665815607288277,20.43639107415538,20.037064718064798,19.522607555382393,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,b natural gas,0.5677300567290967,2.9848103562218826,3.484184355221728,4.357989162052293,5.471753222757559,6.72106484699587,8.05001505499308,9.415256692486793,10.821265802780768,12.221232905774606,13.60125950611938,14.780398557162178,15.405687623055076,15.92199359267544,16.27157286933408,16.75367656389012,17.875548245481042,18.279184045774045,18.530498327666812,18.727265377299275,18.88168679116962,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,c coal,1.5567922712748745,2.143589410713746,2.910963446513182,3.6957953206229313,4.4484726031027595,5.201766011550427,5.943858746060932,6.662392488696907,7.40927469736122,8.15543327220039,8.880320689916756,9.606514154729304,10.520398109153652,11.455526691207586,12.434549617619991,13.177838275070659,14.198693545615543,14.968738217630555,15.759629226203357,16.56473578464186,17.49902744007069,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,d biomass,0.9761603908639388,1.1373159281052565,1.3847439033989564,1.480810063784448,1.783083713546249,2.101058045962417,2.446588780519806,2.8194211844932426,3.1790577546921432,3.5375391300807313,3.8584422188628054,4.085564665391922,4.339608432827987,4.567884413268417,4.764756279655414,4.989087678642466,5.292596815870208,5.517404828265115,5.740499490954571,6.014851329893533,6.356390035568993,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,e nuclear,0.0,0.0,0.0,0.007879103637251741,0.01733024888951483,0.03492482255083677,0.062193776679770114,0.0987013291744801,0.14328661440743376,0.19290295790784862,0.24521289077572514,0.29581280249683817,0.36066911769490195,0.4271586529302147,0.49257966032773787,0.5601604386387016,0.6357997217064864,0.6855188343677763,0.7335346258271808,0.7667315774350603,0.7862191553322191,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,f hydro,0.14091738864638614,0.19970861132141593,0.2543345552348322,0.26516528253449245,0.2760286957585556,0.28687408982985024,0.2977174230505106,0.30856233040245507,0.3389811030201596,0.36942674346983795,0.3998954548020845,0.4303134457542267,0.4607705722346967,0.4912452455460537,0.521724422497303,0.5522343804332819,0.5827809913910512,0.6133141516941129,0.6439073745071077,0.6745276014846641,0.6745466783415452,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,g wind,0.0,8.334018050648595E-5,2.8472675996848003E-4,0.0063391587853128695,0.017784531240685523,0.03560489436965126,0.06042708001082488,0.09107554665823972,0.12731837153243686,0.16136063297482584,0.1918328167742824,0.21718485954656708,0.2515178432483415,0.2836064388398832,0.3167504192790403,0.3605861549221741,0.4158271667928839,0.45247214759132226,0.48578471749331437,0.5112052964825624,0.528005015077556,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,h solar,0.0,2.510213252246064E-4,3.3366573558344E-4,0.004215201472965529,0.01293459569382313,0.02768215432871885,0.050114743029933156,0.08061229425025176,0.12051192346249362,0.1651083959645625,0.2117045342818937,0.2582892477453275,0.32429291979710256,0.39311137897377607,0.469973279457335,0.5674327360443464,0.6901234193507205,0.7826294640197657,0.8751774297406878,0.9548562878808302,1.0228068437999969,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,i geothermal,0.01964829560280077,0.03567154099623554,0.03578009571771217,0.05601984499090673,0.07930016805567346,0.10635069312799719,0.1356482926661463,0.1642032448022844,0.16474321448913604,0.17890371734382357,0.1892529520506398,0.19596983107964527,0.2088059614935187,0.22007937760753887,0.22951838618567086,0.23418148442502368,0.23424011009432155,0.23428132086405612,0.23434344014507816,0.23440941472376933,0.23442528681828506,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,j traditional biomass,1.20571901,1.2835728,1.3275854,1.3035938999999999,1.2220283900000002,1.14016651,1.05563846,0.9730019,0.8897316200000001,0.80799766,0.7289524500000001,0.65331164,0.58322342,0.51549491,0.45389314999999997,0.39795684000000003,0.35234751999999997,0.29821019000000004,0.25479321,0.2164592,0.18536428,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,a oil,1.171020554270017,2.04377547617661,2.01137494764372,2.0251613733105636,2.0460751389897815,2.0636605450099523,2.0483667486832413,2.015874065521492,1.9740434589296472,1.9112925622129173,1.832987108252331,1.7812208904254585,1.735145034665023,1.7000540814388998,1.6640237211598272,1.626182616971197,1.509794306563255,1.4868221629874014,1.430272302238844,1.3674698688328504,1.2964024066582804,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,b natural gas,0.06150068496606045,0.4239759677192195,0.6138548961256376,0.8257700440753019,0.9590662068943318,1.0519750541922523,1.1268426030083805,1.1979681650009708,1.2651549533496624,1.321484359618715,1.3703319631685102,1.3810446391993234,1.1860754358961456,1.1042465104787738,1.0518478686470367,1.0897212096833317,1.0923174985112811,1.0685895177243727,1.0648667431507102,1.0678212682078707,1.0785879757303833,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,c coal,0.48447641661066637,1.7647548241130668,1.8373184617856804,2.0613357418772313,2.260568740513071,2.38280883810367,2.4524254139781685,2.499200413755018,2.5352654818837066,2.5579023938189165,2.5641963388463185,2.5634581014374214,2.7131873270605893,2.8289873318516245,2.916246975470795,2.7055258899925954,2.698654789868345,2.69132521565021,2.6991531939219526,2.7009576676906653,2.7230387942930125,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,d biomass,0.0,0.05773583348798079,0.06305263941387082,0.05198416889645756,0.04976580105354658,0.05584760700483985,0.07025605670065263,0.098931036742446,0.14302125119679884,0.1888323068472799,0.21805920076299287,0.2333753725477371,0.2587527146682517,0.26892391587265824,0.2798205336029296,0.29856897750437067,0.31157746496250593,0.32412670937930493,0.3340703935242182,0.34341770810725397,0.3572859625699106,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,e nuclear,0.1243953996015746,0.17179636711714139,0.1737611121505269,0.15238798982190369,0.14579886767949454,0.13800199155691845,0.12708630985658778,0.11364061688302918,0.0985742493255979,0.08339256043487561,0.0696962953485933,0.058458305068583134,0.056731514579499154,0.055574915927753765,0.048816976278464215,0.05758766009568287,0.06425262298597723,0.06722775544759484,0.06997061736882744,0.07093277856787894,0.07101461715213614,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,f hydro,0.02415133124424252,0.01712926214638983,0.01750585377301916,0.016635692038876517,0.016871970674574494,0.017266750910260156,0.017625584191775512,0.018004251680119078,0.01916234710643431,0.02034611181371812,0.02155563192069848,0.022778060830334183,0.024006362351346098,0.025232229744160287,0.026463064612297322,0.027656448042946032,0.0289224276908603,0.030164046584651518,0.031361636555711565,0.03258874486789194,0.032678035149774916,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,g wind,0.0,3.9110955762999003E-4,0.00407385834760092,0.00797167565648546,0.01116954738805511,0.01423338298117459,0.017916362305982036,0.022203532356681124,0.023469900160630122,0.024356035751508767,0.025403920165866508,0.025777451155838762,0.033768085134465844,0.03801048626099432,0.041727706385023496,0.05513965801555043,0.06352498647359753,0.0682012735617728,0.06633064404764942,0.06650758342231047,0.06620928327386603,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,h solar,0.0,4.297905390223898E-6,9.600276807984333E-5,0.0011821654190223802,0.0023848139261948,0.00396700278572131,0.00640053487101255,0.00985168938645928,0.01422520344375261,0.017997150863460692,0.021285241710817582,0.023471164463295575,0.034661799028629744,0.041868925964741295,0.04890046593852228,0.07092587930726159,0.08645839077212626,0.09618853488722498,0.09877828177446236,0.10263077276128493,0.10527936259001529,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,i geothermal,1.10790355255E-5,0.0,0.0,0.00232099174487744,0.00350899465688964,0.00364578342853661,0.00364543321941629,0.0036466093253729303,0.0036537948317532,0.0036646073502683103,0.0036778899875383898,0.00369088987238589,0.00370319564920684,0.0037131536338741,0.00372246388757095,0.0037257578781577597,0.0037376146945279102,0.00374490773529012,0.00374581170131077,0.0037494296187311,0.00375794059905384,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,a oil,34.035953114252074,40.65693624993443,35.778931089238704,36.88290326094689,38.00414174633407,38.540758868031205,38.68705743763079,38.35284647918583,38.05843388545544,37.361848617258765,36.46987302016656,36.26640891556041,36.192123589575125,36.275031653127094,36.17230267358817,35.68307374178293,34.213451613931156,33.859776742298095,32.927903728750074,31.85455548155685,30.61749375549839,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,b natural gas,18.38422210596133,21.597895085212823,23.233626074327336,23.992726847408207,25.694205549345977,27.58590467177201,29.175984553492505,30.58447031376222,31.870297647036743,32.92113608816634,33.926461676180345,34.398130499031126,33.34703631319445,32.77031812813915,32.32759647161958,32.537922179157,33.557618778410536,33.92557564500478,34.4409837606641,35.02820226440072,35.899599100981504,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,c coal,20.572142343932,23.428412766969558,21.607696496874407,24.066869271237653,25.7820870124706,26.891924549611787,27.719173170744668,28.243525494139618,29.128688142182146,29.75056220269241,30.336537762726795,31.04383635196322,32.85222823650559,34.5353720722221,36.03906174376869,35.965617879820556,37.14347008095937,37.936979736391116,38.4777434408256,38.893618639672724,39.261679375386244,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,d biomass,2.641724650019303,3.247013143348623,3.884108218563515,3.758359930835702,4.057095456785822,4.394987081015209,4.826566361110923,5.395517520858484,6.1352697977404045,6.8554496170192625,7.416953529555503,7.815911234254651,8.238319867654038,8.508066052356261,8.684045591886639,8.90791539581338,9.121957640013997,9.11689443083259,9.053884932962779,8.970442851979238,8.8947310854609,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,e nuclear,2.3412649022978593,3.021242532968092,3.127522039090407,3.284680388607078,3.401058854594178,3.468844085258749,3.513207951225816,3.5250132237838083,3.5683731585421765,3.5613025282687905,3.5550377382518183,3.5797809697569,3.7698539696322313,3.9505410123863784,4.060260744882941,4.111717254729396,4.235532056301395,4.293703492469899,4.313675104998315,4.272048870287426,4.168417489136408,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,f hydro,1.0456662937081656,1.0162230447503524,0.9789003161846981,0.9816690126604843,0.9908532218895687,1.0019535840540992,1.0119591782233612,1.0219703959857849,1.0255055616979059,1.0291417889172683,1.0329184307985844,1.0366453114353602,1.0406132713849343,1.0444816184844994,1.048373038218112,1.0524099163379426,1.0564204979426588,1.0608566324195696,1.065539527875424,1.0701118025936645,1.0700415086147415,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,g wind,0.01173763596836127,0.06662792521334111,0.35469710942491656,0.4657939299452333,0.5642495665372269,0.6875035496845903,0.8588891823667198,1.0730966938111626,1.03450806990353,1.2399457889877874,1.4606339677859506,1.6499687381760266,1.9270366783967412,2.101364012268057,2.2688982444259924,2.6399629949737373,2.917168591026686,3.1351857565208117,3.275694329120035,3.45832952498736,3.618608830797255,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,h solar,0.00254889138968348,0.004172014268279091,0.014663608145750571,0.0291637848439048,0.04621746212776949,0.06995064582318095,0.10520166144291708,0.15250476253505452,0.2087982263405835,0.2712704681711467,0.3369910184976183,0.39853908808973865,0.4879469073217467,0.5535785964072749,0.6260998974686055,0.7555141982743135,0.8594493251683822,0.945124614337955,1.0109826299970681,1.0861726241808667,1.1554043877303508,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,i geothermal,0.06128053925884113,0.062498159864326136,0.06551670486134839,0.11772277132098877,0.16841683100113633,0.2293611038304739,0.30530008993326635,0.38818961978944094,0.43388018303977843,0.4838516992690352,0.5281369435498594,0.5563493244054072,0.5996805442173813,0.6171742171344097,0.6307131686380144,0.686269029086943,0.7182908445340328,0.7397199705780987,0.7479177800557333,0.7639790984796481,0.7754496728185922,EJ, Electricity generation by aggregate technology scenario,region,technology,1990,2005,2010,2015,2020,2025,2030,2035,2040,2045,2050,2055,2060,2065,2070,2075,2080,2085,2090,2095,2100,Units, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,a Coal,0.00125085,0.00237117,0.00341518,0.0114956,0.015594360000000002,0.019644171000000002,0.024416475,0.030305217000000002,0.03750229000000001,0.048145679999999996,0.061541693999999994,0.08032926299999998,0.10799511,0.14184761699999998,0.18416248799999999,0.228579975,0.28530537899999997,0.35199501999999994,0.4320721610000001,0.524826312,0.6422759599999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,c Gas,0.0,1.85098E-4,2.1858430000000001E-4,0.0050514037,0.007725621899999999,0.010884664499999998,0.015030751,0.0206273872,0.0278913404,0.038898482,0.05285534620000001,0.0720194194,0.09478956579999999,0.12497036931,0.16191598999999998,0.20666345,0.25749088000000003,0.31669444,0.38603183999999996,0.46527255,0.561573,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,e Oil,0.00813916,0.0265001,0.0368684,0.0910189,0.11249570000000002,0.1387984,0.1690007,0.20578580000000002,0.24889825,0.31147247,0.3826465,0.47489418,0.5546281000000001,0.6646661700000001,0.78631585,0.91742371,1.0395191000000001,1.15829745,1.2658713,1.3497827,1.43040677,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,g Biomass,7.23596E-4,0.00113761,0.00113761,0.00433182,0.006846801999999999,0.010263072000000002,0.015232234999999998,0.022048386,0.03028912,0.042647161999999995,0.058038963999999985,0.07911327100000001,0.10940272599999998,0.14469093269999997,0.18688391999999995,0.233912036,0.284711618,0.338450556,0.39708104,0.45797242000000005,0.5260781499999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,i Nuclear,0.0,0.0,0.0,0.00156495,0.0022828370000000002,0.007363347,0.017489647,0.033917737,0.054698236000000004,0.085271336,0.123018636,0.169786836,0.229824136,0.29370653500000005,0.36361342500000005,0.437872174,0.51362978,0.5860175999999999,0.6568153999999999,0.7219917999999999,0.7905230999999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,j Geothermal,0.00117361,0.0036108,0.0052956,0.01980392,0.02889406,0.03888861,0.04995509,0.0618758,0.06976238000000001,0.07361672,0.07361699000000001,0.07361503,0.07361698,0.07361703,0.07361695,0.07362113,0.07361691000000001,0.07361519999999999,0.07361704,0.07361421,0.07361706000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,k Hydro,0.0219597,0.0353919,0.0539216,0.0712437,0.0885658,0.105888,0.12321,0.140532,0.174952,0.209372,0.243792,0.278212,0.312632,0.347051,0.381471,0.415891,0.450311,0.484731,0.519151,0.553571,0.553571,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,l Wind,0.0,1.11E-5,2.327E-4,0.0101431704,0.0198331879,0.03460838069999999,0.05669997169999999,0.0882780907,0.13018552169999997,0.1849119043,0.25696917179999995,0.3542543769999999,0.49058613599999995,0.642860357,0.8158648460000001,0.9989929730000001,1.182015848,1.3507642500000003,1.4995602100000003,1.6386020300000004,1.7880214100000005,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,m Solar,0.0,3.6E-6,7.19999E-6,0.00825758119,0.01566745909,0.023821554689999996,0.03545419459,0.052639590890000004,0.0767976409,0.1060469447,0.1516959778,0.21630541120000002,0.3041155263,0.40771952,0.525643796,0.654300257,0.788199466,0.9224520469999999,1.054770272,1.184971212,1.320734866,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,n CHP,0.0,0.0,0.0,0.0,0.00112122,0.00208487,0.00349595,0.00555191,0.00862137,0.0132691,0.0199601,0.0261772,0.03513,0.0467376,0.0593679,0.07488,0.0915302,0.109357,0.12959,0.14967,0.152644,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,a Coal,0.00796861,0.0473972,0.0399414,0.055137900000000004,0.067637,0.077479063,0.086619794,0.09489078000000001,0.10169760500000001,0.10799188400000001,0.11385597900000001,0.120943324,0.137806266,0.15656494999999998,0.17546820499999996,0.18041683499999997,0.19044857999999998,0.20322460999999994,0.21877310000000005,0.23529266,0.25425333,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,c Gas,0.1358135,0.482448,0.6361717,0.8045462,0.9579895,1.0922326999999998,1.2220581,1.3416469,1.4346411000000001,1.5167133000000002,1.5842471000000002,1.6565602,1.6540547899999998,1.68340306,1.6958385000000002,1.7131895000000001,1.7094333999999998,1.70500005,1.71337559,1.7303339800000002,1.74331401,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,e Oil,0.11773,0.126766,0.200053,0.2520789,0.2770872,0.30994,0.33166549999999995,0.3467759,0.35458789999999996,0.36550866,0.37659369,0.39925948999999994,0.42575240000000003,0.43939993,0.4482037300000001,0.45604213000000005,0.45408743000000007,0.44798155,0.44260029000000006,0.4275639,0.41970733,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,g Biomass,0.0,0.0,0.0,0.00118944,0.002855139,0.004984677,0.008005981,0.011514276,0.014545445,0.017803916,0.021122962000000002,0.025098005999999996,0.03447459199999999,0.04393860299999999,0.054499167,0.06517478400000001,0.075615427,0.085396116,0.09591060500000001,0.10559657599999998,0.115042931,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,i Nuclear,0.0,0.0,0.0,8.72257E-4,0.001524858,0.0057930970000000005,0.013609776,0.024652356,0.036120734,0.048090534000000004,0.059764121999999996,0.0713786,0.09155989900000001,0.11152826699999999,0.131507544,0.150327785,0.16876787,0.18269766,0.1935307,0.20000869999999998,0.20518990000000004,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,j Geothermal,0.0,0.0,0.0,0.00727223,0.01613014,0.02570807,0.03582854,0.04571215000000001,0.05427879,0.05621046,0.056642790000000005,0.0572591,0.06385967000000001,0.06963575,0.07266696,0.07266463,0.07266625,0.0726657,0.0726676,0.072667,0.07266700000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,k Hydro,0.0408238,0.0516204,0.0603183,0.0632959,0.0662735,0.0692511,0.0722286,0.0752062,0.0811228,0.0870394,0.092956,0.0988726,0.104789,0.110706,0.116622,0.122539,0.128456,0.134372,0.140289,0.146205,0.146205,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,l Wind,0.0,0.0028801,0.0082198,0.0177257898,0.0303303009,0.046742125899999994,0.0682519289,0.0942380519,0.11417798289999999,0.1351740771,0.153186871,0.17084989500000003,0.214642135,0.259351988,0.30718937799999996,0.356566302,0.40821301199999993,0.456388421,0.479988568,0.4969855620000001,0.507819841,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,m Solar,0.0,0.0,0.0,0.00481831366,0.01264078636,0.023668777959999998,0.03846740476,0.056910161859999996,0.07763768985999998,0.0973832702,0.11598553350000002,0.1351444279,0.1594182721,0.17960546000000002,0.19948051900000002,0.21833797100000002,0.236772003,0.251822724,0.263154294,0.275876791,0.29291322399999997,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,n CHP,0.0,0.0,0.0,0.0,2.50784E-4,4.30498E-4,6.46354E-4,8.94076E-4,0.00117204,0.00154908,0.00201079,0.00233392,0.00280958,0.00335351,0.00385856,0.00444238,0.00498427,0.00549645,0.00612568,0.0067545,0.00682261,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,a Coal,0.0215065,0.0200021,0.0180461,0.0540384,0.0825832,0.10450534,0.12838481,0.1558639,0.1897084,0.23535707,0.29595234,0.3781918000000001,0.49345474,0.6342471399999999,0.8000106900000001,0.9665571499999999,1.1651476200000002,1.3914683799999998,1.6376914200000003,1.90642968,2.1510751100000003,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,c Gas,0.0,0.004201269,0.00619505,0.02338897,0.03799680999999999,0.05121701,0.06726206000000001,0.08743930999999999,0.11353108,0.14918062,0.195672156,0.255788476,0.321111892,0.40237041900000003,0.49678503000000007,0.6080207,0.72787119,0.85533504,0.98693763,1.1228375099999999,1.23155736,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,e Oil,0.00267763,0.00666428,0.00933526,0.04938063,0.07488327,0.09842715999999999,0.12366679,0.15234999999999999,0.187852351,0.23619342499999996,0.29679808700000004,0.374680228,0.452831333,0.540944246,0.63614645,0.7386031399999999,0.82116389,0.8804813800000001,0.9084004999999999,0.8865843299999999,0.87746754,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,g Biomass,0.0,0.0,0.0,1.62852E-4,4.17714E-4,7.218859E-4,0.0012030543,0.0018967963,0.0028375196000000004,0.0042995459,0.0064980217,0.009818526900000001,0.0150369861,0.021961908199999998,0.030916168900000002,0.0428070294,0.05678248980000001,0.07272394600000001,0.091036747,0.11198201099999999,0.132128098,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,i Nuclear,0.0,0.0,0.0,1.19425E-4,2.1113000000000002E-4,7.669799E-4,0.0019002499,0.0038105199,0.0065256998,0.0106248878,0.0166262777,0.0247796866,0.0361185465,0.0498801954,0.06616495419999999,0.0860385991,0.10840353400000001,0.13250051999999998,0.15831939,0.18597136000000003,0.21101235999999995,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,j Geothermal,0.0,0.0,0.0,0.00116079,0.00287793,0.0049091199999999995,0.00768434,0.01134978,0.01613743,0.02150478,0.02817174,0.0366274,0.04685973,0.057052950000000005,0.06646986,0.07071998,0.07071914,0.07071834,0.07072035,0.07072006,0.07071999000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,k Hydro,0.0549063,0.1228,0.143803,0.152226,0.160649,0.169072,0.177496,0.185919,0.202656,0.219393,0.236131,0.252868,0.269606,0.286343,0.30308,0.319818,0.336555,0.353293,0.37003,0.386767,0.386767,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,l Wind,0.0,2.4E-6,3.54999E-5,5.209088900000001E-4,0.00129587668,0.0023115839600000004,0.0038820283100000005,0.00624628941,0.009804125810000001,0.01504985752,0.02297531733,0.03519310995,0.054141389600000006,0.0791783325,0.11051250720000001,0.1504818565,0.19627013090000003,0.24560407100000003,0.29653529100000003,0.3505259550000001,0.39454850700000005,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,m Solar,0.0,0.0,0.0,8.5881245E-4,0.0023283770499999998,0.00437162631,0.00718368616,0.01117490726,0.01706562476,0.025756885710000003,0.03894050301,0.05918473975000001,0.0901304869,0.1301872698,0.17687933630000002,0.22694128689999998,0.27495354099999997,0.31836800499999995,0.35668530600000004,0.391065249,0.42669709699999997,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,n CHP,0.0,0.0,0.0,0.0,3.18341E-4,5.59735E-4,8.38814E-4,0.00118069,0.00165606,0.00238552,0.00342737,0.00438764,0.00576526,0.00753996,0.00951319,0.0119634,0.0145676,0.0172093,0.0201845,0.0229154,0.0241953,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,a Coal,0.00130874,0.00250043,0.003599,0.005529259999999999,0.00779121,0.010806016,0.014686295,0.019655809000000003,0.025542832,0.033192842,0.043245481,0.057287081999999996,0.077856749,0.106248324,0.144366676,0.19313813500000002,0.255218766,0.3314582500000001,0.4240293639999999,0.537749583,0.66552303,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,c Gas,0.026658050000000003,0.0645019,0.079883972,0.11073977899999998,0.14991347300000002,0.20904542699999998,0.28943585499999996,0.39589525200000003,0.520085234,0.674531585,0.8622827419999999,1.0967388340000002,1.3697428008,1.7020183619,2.0774438,2.5037795000000003,2.9626716999999996,3.4587084,3.9739557,4.511959900000001,4.9860935,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,e Oil,0.0179558,0.0344399,0.0455212,0.0707453,0.09654592,0.13895554,0.18833491,0.24688739000000004,0.3078054,0.38453361,0.47785743,0.6018527,0.74928489,0.91971794,1.10496469,1.29716043,1.4693855999999998,1.61694604,1.72674985,1.7714344299999996,1.82936084,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,g Biomass,1.692E-4,6.11997E-4,8.28003E-4,0.001312679,0.002630346,0.0046202629999999995,0.007495649,0.011317631,0.0154389633,0.020916201299999996,0.0282898127,0.0387425073,0.05427957316999999,0.07533087845,0.103108052,0.13805912599999998,0.17954754900000006,0.22649161299999995,0.27973616700000004,0.34036625,0.40218866999999997,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,i Nuclear,0.0,0.0,0.0,1.603E-4,3.2699499999999995E-4,0.001987955,0.005794815,0.012560255,0.021351555,0.033402735,0.049722304999999994,0.070888805,0.099276774,0.13499814300000001,0.17896562300000002,0.232137004,0.29321278,0.35962148,0.43029553000000004,0.5053094499999999,0.5783513,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,j Geothermal,0.0,0.0,0.0,0.00157438,0.00474222,0.01075555,0.01962879,0.03137598,0.044854530000000004,0.05938513,0.07503294,0.09173794,0.1106684,0.1300984,0.144519,0.1445189,0.1445186,0.144516,0.14451979999999998,0.1445207,0.1445189,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,k Hydro,0.0814254,0.10931,0.113792,0.139788,0.165784,0.191781,0.217777,0.243773,0.295429,0.347085,0.398742,0.450398,0.502054,0.55371,0.605366,0.657022,0.708678,0.760334,0.81199,0.863646,0.863646,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,l Wind,0.0,1.17E-5,1.769E-4,0.00138079481,0.003986706610000001,0.009523010609999999,0.01898572301,0.03374415791000001,0.053761256910000006,0.08136944210000001,0.1186847233,0.17039933129999998,0.2454408129,0.3459966620000001,0.47629882300000004,0.6390600029999999,0.8290841699999999,1.035512748,1.2486754439999999,1.4691262600000001,1.66245291,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,m Solar,0.0,1.44E-5,1.08E-5,0.0017619995,0.00486767999,0.010246381090000001,0.018647150890000002,0.031382032690000006,0.04935465569,0.07491712918999999,0.10967564169999999,0.15433087660000003,0.2110001788,0.281489601,0.371055554,0.478516877,0.600413447,0.730715631,0.874736149,1.030535505,1.210662229,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,n CHP,0.0,0.0,0.0,0.0,9.24471E-4,0.00170992,0.00282984,0.00442609,0.00681554,0.0105622,0.0160989,0.0218689,0.0304999,0.0418792,0.0552285,0.0718418,0.0900506,0.109276,0.132126,0.155423,0.166509,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,a Coal,0.0016128,0.00567,0.00806399,0.01591662,0.02050784,0.024452751999999998,0.028793588,0.033112937,0.037580454000000006,0.04195183500000001,0.046671443999999986,0.05135895399999999,0.061358435,0.071154551,0.08237291899999999,0.08758749199999999,0.09788289300000001,0.10982685099999998,0.12369074100000002,0.13759480899999998,0.15332575499999998,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,c Gas,0.0715427,0.1991953,0.2245892,0.3390009,0.404402,0.46499179999999996,0.5321391,0.5964455000000001,0.6596659,0.7166385000000001,0.7743395999999999,0.82350466,0.82710088,0.86032732,0.89590707,0.9347952000000002,0.9690258399999999,0.99620548,1.03198744,1.05565384,1.08758432,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,e Oil,0.0178164,0.0206892,0.0597456,0.0874514,0.0959267,0.10915363,0.12202766000000001,0.13214747999999998,0.14290329,0.1521642,0.16379475999999998,0.17440495,0.19460282999999998,0.20307769,0.21616657000000003,0.22833953,0.23579955,0.2388449,0.24191758000000002,0.23412266,0.234182443,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,g Biomass,3.85201E-4,0.0046368,0.007902,0.01019953,0.01209868,0.01418711,0.016921379,0.019246402000000003,0.020788784999999997,0.022511947,0.024851813,0.027148425999999996,0.033988807,0.039571101,0.04633177399999999,0.051887964,0.058165925999999986,0.064063544,0.07038531999999999,0.07559010599999999,0.08098673500000003,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,i Nuclear,0.0262116,0.0247428,0.0258156,0.029423,0.03140915,0.033216260000000004,0.03534926,0.03749232,0.04012485,0.04315308,0.04723276,0.051350849999999996,0.06138145,0.07075708,0.08018262,0.08684659,0.09629528,0.10522751999999999,0.11386077,0.12078857999999999,0.12684108,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,j Geothermal,0.0,0.0,0.0,0.00421802,0.00868814,0.01446107,0.02210125,0.03066132,0.03992457,0.045249620000000004,0.05094543,0.055124559999999996,0.06557462,0.07346505,0.08193208,0.09098178000000001,0.09941491,0.10722530000000002,0.1091714,0.1113671,0.1129684,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,k Hydro,0.0643536,0.122414,0.120913,0.123868,0.126823,0.129777,0.132732,0.135687,0.140903,0.14612,0.151337,0.156554,0.16177,0.166987,0.172204,0.177421,0.182637,0.187854,0.193071,0.198288,0.198288,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,l Wind,0.0,2.7E-4,9.0E-5,0.0039907434,0.0087537881,0.015856912199999997,0.026902637999999993,0.0413474853,0.0595218933,0.0765026149,0.09617695019999999,0.11480277309999999,0.1572516833,0.196758362,0.242643876,0.296512644,0.354871328,0.415705438,0.458700171,0.49768299199999994,0.5303567419999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,m Solar,0.0,0.0,0.0,0.0011693912899999998,0.00265694419,0.00479950919,0.00798471409,0.012058835490000001,0.01723909609,0.022184157800000007,0.027993079500000007,0.033652713500000014,0.042406947600000015,0.048753295200000005,0.055487074600000005,0.0629402926,0.070519469,0.07814229499999999,0.083274538,0.08923993799999999,0.09536634299999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,n CHP,0.0,0.0,0.0,0.0,1.27587E-4,2.10081E-4,3.10152E-4,4.21953E-4,5.54959E-4,7.25071E-4,9.33749E-4,0.00105093,0.00122733,0.00142367,0.00161718,0.0018473,0.00207745,0.00231021,0.0025957,0.00287722,0.002942,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,a Coal,0.439003,0.672518,0.655517,0.722737,0.7760834,0.80619191,0.84080831,0.8656053800000001,0.9030751699999999,0.9160806000000001,0.9240856500000001,0.9371154799999999,0.96391165,0.9900905199999999,1.0053110299999999,0.9708685800000001,0.9524561199999997,0.9374969,0.9066576700000001,0.8708532,0.8240169199999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,c Gas,0.0721299,0.1183401,0.1620722,0.15122375000000002,0.16046457,0.17080554,0.18388929000000004,0.19663324999999998,0.21644868999999997,0.22818082,0.23731221000000002,0.24449099,0.23524339,0.22902309000000004,0.22418494000000003,0.22472186299999997,0.215818548,0.19720108099999997,0.18660675300000001,0.180602486,0.182366125,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,e Oil,0.012816,0.0102421,0.0113868,0.006578379,0.007250039999999999,0.008637182,0.010527389,0.012364238000000001,0.015431265999999999,0.016604380000000002,0.017836262,0.018982937999999998,0.019428174000000003,0.019344266000000006,0.0203489162,0.0219312945,0.021279990000000002,0.0202440606,0.0200455624,0.019472797199999996,0.0198065883,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,g Biomass,0.0,0.00150481,0.0014688,0.0011457928,0.0017709177000000001,0.0027215868,0.004594028000000001,0.006755482699999999,0.009576011799999999,0.0116022145,0.013668405799999998,0.01562125074,0.01791730103,0.019772664449999994,0.022715962000000003,0.026686188999999996,0.029040796,0.031215043,0.03371883399999999,0.035971323000000006,0.03850706599999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,i Nuclear,0.0,0.0,0.0,0.0,0.0,3.91815E-4,0.0013840710000000002,0.0029410670000000003,0.006740696,0.011234084,0.016297823000000003,0.020881091,0.025384097999999997,0.028991944,0.03330941,0.038876086,0.043183052,0.046674560000000004,0.04988207,0.052538589999999996,0.05374239,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,j Geothermal,0.00746642,0.0111493,0.0209844,0.02741602,0.033514970000000005,0.04051423,0.05073893,0.06252182,0.05877984,0.06703557,0.07428794,0.079881,0.0829915,0.0828956,0.0810009,0.08665529999999999,0.08969639999999998,0.092426,0.0960664,0.1014654,0.10645650000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,k Hydro,0.134392,0.138895,0.133859,0.139576,0.145294,0.151011,0.156728,0.162446,0.169607,0.176768,0.18393,0.191091,0.198253,0.205414,0.212575,0.219737,0.226898,0.23406,0.241221,0.248382,0.248382,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,l Wind,0.0,0.00539644,0.0231552,0.0303495899,0.0381327574,0.0481872002,0.06493901619999999,0.08679412619999999,0.0961763582,0.1193570763,0.14125139779999998,0.16087091299999998,0.17681872499999998,0.18412825200000002,0.189677604,0.212042391,0.22610370699999996,0.23801055200000001,0.25248325800000015,0.2725003200000001,0.2943898200000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,m Solar,0.0,2.8440203000000005E-4,9.972009999999999E-4,0.0027660666799999996,0.005349571400000001,0.009164078300000001,0.0156528361,0.02435802880000001,0.036256696100000006,0.046415234519999994,0.05417350380000001,0.05951384990000001,0.06249903370000001,0.06290003360000002,0.06083011610000001,0.06131679499999999,0.062019998,0.0635137398,0.0656918861,0.0685217678,0.07102577099999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,n CHP,0.005325666,0.01770448,0.02102566,0.02409593,0.026154092,0.02898799,0.029959716,0.030099225,0.029050495000000003,0.028570539,0.02839328,0.02783998,0.027357509999999998,0.02686737,0.026301500000000002,0.02572289,0.02508452,0.02447446,0.024070070000000002,0.023743880000000002,0.02292124,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,a Coal,0.0171142,0.0386711,0.0408167,0.0951128,0.1459495,0.1906811,0.23647966999999998,0.2791903,0.328735,0.37757653999999996,0.43375342,0.48821535,0.5856293800000001,0.69378812,0.8226617299999999,0.92250872,1.04286663,1.1789218499999998,1.3215818899999998,1.4634583700000001,1.6085763499999997,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,c Gas,0.00117362,0.067723,0.1313097,0.32307909,0.50111778,0.66624364,0.83272512,0.9825367199999999,1.1467733800000002,1.29666826,1.45619697,1.59534491,1.63240932,1.69534651,1.79634898,1.93767691,2.1111815700000003,2.28187651,2.4711944,2.63221393,2.81659357,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,e Oil,0.017773,0.0420406,0.0578339,0.139985,0.208937,0.2793072,0.3495418,0.4103761,0.48878289999999996,0.5567196,0.6362786,0.7000737400000001,0.79265278,0.85911911,0.93902308,1.02011399,1.08167843,1.1089633300000001,1.1090123200000002,1.05062904,1.03585666,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,g Biomass,0.0138923,0.0489274,0.113382,0.168815,0.2129261,0.24993553,0.28830016,0.31626977999999994,0.33821663,0.35547326,0.37810201000000004,0.39579313,0.44483013000000005,0.49229949999999995,0.5414804400000001,0.5694368599999999,0.59049076,0.6024314500000001,0.60352232,0.5938320100000001,0.57587434,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,i Nuclear,0.00805313,0.0354779,0.0522827,0.048937503,0.050376282999999994,0.051730063,0.053213143,0.054370863,0.057113712,0.060935182000000004,0.068084852,0.075936601,0.093846631,0.11466942,0.138232319,0.17026477,0.20221236,0.23494406999999998,0.26760271,0.29812485,0.32754560000000005,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,j Geothermal,0.0,0.0,0.0,0.00407581,0.01120444,0.02093264,0.03367691,0.04799255000000001,0.06634429,0.08203927,0.09867435000000001,0.1130565,0.1415303,0.17141409999999999,0.20398929999999998,0.24116310000000002,0.27611840000000004,0.3097431,0.3282008,0.34174150000000003,0.3517575,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,k Hydro,0.744149,1.21485,1.45184,1.4758,1.49977,1.52373,1.5477,1.57166,1.61397,1.65628,1.69859,1.7409,1.78321,1.82552,1.86783,1.91014,1.95245,1.99476,2.03707,2.07938,2.07938,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,l Wind,0.0,3.34799E-4,0.00783718,0.0194658831,0.03305100429999999,0.04901195349999999,0.06899085649999999,0.0913006505,0.11312058350000001,0.13471717140000003,0.16264741820000003,0.190328861,0.251353609,0.32368888300000004,0.412849518,0.5265863370000001,0.6520705190000001,0.7882335070000002,0.899075076,0.9953399780000002,1.07826032,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,m Solar,0.0,0.0,0.0,0.0020796347999999997,0.005838905700000001,0.011438389900000002,0.019418934,0.029691311300000002,0.0442986388,0.061060999,0.0827355371,0.10626278690000002,0.14780116880000002,0.1964011885,0.256451422,0.328336084,0.403030264,0.47673991000000004,0.536749314,0.5858040070000001,0.634574136,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,n CHP,0.0,0.0,0.0,0.0,8.96416E-4,0.00151257,0.00226807,0.00313426,0.00419059,0.00549675,0.00700556,0.00770031,0.00875551,0.00987974,0.0109036,0.0121305,0.013308,0.0143604,0.01552,0.0164094,0.0161553,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,a Coal,0.295991,0.395942,0.316566,0.3523066,0.3792586,0.38643382,0.39481171,0.39979477,0.4127242,0.41624589000000006,0.4176559000000001,0.42084264999999993,0.43203617999999994,0.4446156499999999,0.4511840100000001,0.43061158999999993,0.42155956,0.42271153000000006,0.4182198,0.41022651,0.40113865000000004,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,c Gas,0.03483713,0.1262951,0.189925,0.1977874,0.21284755,0.22051956000000003,0.23198333,0.24402481999999998,0.26538852999999996,0.27854564000000004,0.2880821,0.2951960900000001,0.27811714,0.26800225,0.262672267,0.26497139300000006,0.256366048,0.23386059899999997,0.22023149800000003,0.21204378200000001,0.21718670899999998,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,e Oil,0.0592847,0.0551952,0.0266292,0.02254248,0.02458735,0.02653368,0.0293433,0.032456507,0.038012394000000005,0.040730591000000003,0.043037047,0.045118374,0.044950096,0.044410199000000004,0.045584584,0.048370926999999994,0.04747447600000001,0.04483950700000001,0.043785424,0.042277138000000006,0.043746162000000005,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,g Biomass,0.0137844,0.0300024,0.0279072,0.02758696,0.02904962,0.029649581,0.031194026,0.032568904999999995,0.034624749,0.035518389,0.036488099999999996,0.037552735999999996,0.039830707,0.042025679,0.044718706999999996,0.049348618999999996,0.052240881,0.05495364700000001,0.057809709000000015,0.06000093,0.06315525000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,i Nuclear,0.262681,0.331344,0.326372,0.3504635,0.36872599999999994,0.37502169999999996,0.3872826,0.4019837,0.42712079999999997,0.4397656,0.4482732,0.4569703,0.47347520000000004,0.4899794,0.5001571,0.49523419999999996,0.49737549999999997,0.5004512,0.4918874999999999,0.47232530000000006,0.44656720000000005,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,j Geothermal,0.0,0.0,0.0,0.00373612,0.00710286,0.00972705,0.012812430000000001,0.01323099,0.013231010000000001,0.01323095,0.013231,0.01323098,0.01323101,0.013231,0.013231,0.013231,0.01323096,0.01323089,0.01323099,0.013231109999999999,0.013230990000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,k Hydro,1.06835,1.30916,1.26543,1.30693,1.34854,1.39015,1.43175,1.47336,1.49957,1.52578,1.55199,1.5782,1.60441,1.63062,1.65683,1.68304,1.70925,1.73547,1.76168,1.78789,1.78789,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,l Wind,0.0,0.00529559,0.0344051,0.046134412300000004,0.0584589744,0.07059236039999998,0.0913343074,0.1194965584,0.1297286504,0.1606335621,0.189415351,0.216674806,0.240589475,0.25374244999999995,0.261021132,0.28931792199999995,0.308854928,0.3259404979999999,0.34563843099999997,0.3699821569999999,0.40712937499999996,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,m Solar,0.0,6.11999E-5,5.68799E-4,0.0011041680200000001,0.0018898282199999999,0.00393178664,0.008669411169999999,0.01631979702,0.02896021244,0.041957586649999996,0.05500940342999999,0.06669546035,0.07789665248000001,0.08515988249999999,0.09099361982,0.10381843719,0.11269973436000003,0.12042006684000002,0.12920699432,0.13980055311,0.15652755984,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,n CHP,4.21048E-4,4.20829E-4,4.24375E-4,4.54847E-4,8.09734E-4,0.001079857,0.0013315900000000001,0.001576057,0.0017687929999999998,0.002055756,0.00238471,0.0025028010000000002,0.00268644,0.002901128,0.003058623,0.003275244,0.003492771,0.0037328969999999998,0.004050213,0.004364197,0.004282379,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,a Coal,1.548E-4,0.007992,0.0111816,0.0163244,0.021598700000000002,0.026799458999999998,0.033379261,0.040669121,0.049230484000000005,0.058801499,0.07043495500000001,0.08332128,0.10258778600000001,0.12595652,0.156463013,0.18846087400000003,0.22875774300000004,0.27535688599999997,0.32824044,0.38471229000000007,0.45550331,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,c Gas,0.0129143,0.042021,0.0577774,0.0720123,0.08774199,0.10438589999999999,0.12603043999999997,0.14978966,0.17674055999999996,0.20475131,0.23611864999999999,0.2668679,0.29094834,0.31990165000000004,0.35434749000000004,0.39182217999999996,0.43366306,0.47693642,0.52587597,0.57349323,0.63657326,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,e Oil,0.119832,0.219264,0.220659,0.2424285,0.2725672,0.30446239999999997,0.34309220000000007,0.3801383,0.4211098,0.46260020999999996,0.51296983,0.56465699,0.6142078799999999,0.66937498,0.7320591999999999,0.8031194700000001,0.87434012,0.93598132,0.99284953,1.02338175,1.06514033,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,g Biomass,0.00762288,0.008862,0.0143049,0.01489271,0.02521883,0.036064309999999995,0.050651459999999995,0.06624806000000001,0.08232934000000001,0.09906518600000001,0.11800138700000001,0.13681691099999999,0.163278082,0.192545817,0.22847172999999996,0.26086824999999997,0.29636756999999997,0.33165866000000005,0.36553937000000003,0.39583241,0.4288565,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,i Nuclear,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00839601,0.024604,0.049516000000000004,0.0736301,0.10400288999999999,0.13552049,0.17163308000000002,0.20989408,0.25040457,0.29070877,0.33126595999999997,0.36931874000000003,0.4022228,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,j Geothermal,0.002898,0.0094176,0.0117864,0.01908155,0.02686259,0.03379204,0.033792,0.03379195,0.033791999999999996,0.0337918,0.03379203,0.03380061,0.03379201,0.03379203,0.033791970000000005,0.033790810000000004,0.03379172,0.03379086,0.03379199,0.03379809,0.03379203,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,k Hydro,0.0486099,0.0767999,0.0855111,0.0891228,0.0927345,0.0963461,0.0999578,0.103569,0.109946,0.116323,0.1227,0.129076,0.135453,0.14183,0.148206,0.154583,0.16096,0.167337,0.173713,0.18009,0.18009,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,l Wind,0.0,9.144E-4,0.00207,0.012250642799999998,0.0294065198,0.05413746479999999,0.0909329008,0.13578929779999996,0.18782007279999996,0.23776899999999995,0.28977087900000004,0.337049929,0.398233233,0.462076176,0.5379381910000001,0.6200051910000001,0.7055708749999999,0.78983959,0.8526781099999999,0.89834983,0.9384796999999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,m Solar,0.0,0.0,4.32E-5,0.0050435453000000005,0.013686459299999999,0.024252398300000005,0.035867165300000003,0.0518618123,0.07365146830000001,0.097030214,0.125216037,0.15707970999999998,0.205687757,0.260590494,0.327308728,0.40130236700000005,0.48117843000000005,0.5612137280000001,0.630070914,0.68557549,0.73865233,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,n CHP,0.0,0.0,0.0,0.0,5.76136E-4,9.81789E-4,0.00152893,0.00215277,0.0029557,0.00403484,0.00543362,0.00634416,0.00766059,0.00922557,0.0108106,0.0127899,0.0149761,0.0173327,0.0201248,0.0229446,0.0232421,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,a Coal,0.257637,0.202024,0.264001,0.365612,0.4151528,0.43704335,0.45357013,0.46060846999999994,0.46834734000000006,0.47248779999999996,0.47469013,0.4758733700000001,0.50150223,0.5205732900000002,0.5298815099999997,0.46550895999999997,0.44777643000000006,0.45068307999999996,0.45999433999999995,0.47352733,0.48291256,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,c Gas,0.270924,0.259231,0.289064,0.3733701,0.44930459999999994,0.5125635,0.5818293999999999,0.6436616999999999,0.7151966000000002,0.7805818,0.8328147,0.86530967,0.8006689199999999,0.77198573,0.75865647,0.79616732,0.79553587,0.77336032,0.76916075,0.77697662,0.8008214100000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,e Oil,0.162338,0.0429694,0.00578517,0.00822561,0.008194176000000001,0.009247609,0.01053297,0.011557141,0.013101872,0.014327074999999998,0.015387547999999997,0.016288969,0.016881102600000003,0.016582948599999998,0.0171375378,0.0207012213,0.021258554800000003,0.021930318,0.023408503,0.024302111999999997,0.0254589073,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,g Biomass,0.0,0.0,0.0,0.00133328,0.0022235939999999997,0.003179921,0.004827570999999999,0.006556829,0.008572948,0.010571624000000002,0.012511087000000002,0.014142267,0.018590482,0.021426681000000003,0.024743653000000004,0.032339263,0.036940128,0.04176971299999999,0.047999178999999996,0.054139928000000004,0.059733671999999995,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,i Nuclear,0.0,0.00977756,0.00896395,0.08455984999999999,0.12163491000000001,0.15571128,0.19978246,0.24804668000000002,0.30181295999999996,0.35027114,0.39090836,0.42201314,0.47696501999999996,0.5159202820000001,0.5524484,0.5479211999999999,0.5634984000000001,0.5784083999999999,0.5899757,0.5955739999999999,0.5932268999999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,j Geothermal,0.0,0.0,0.0,0.00790414,0.01447155,0.02016197,0.02672306,0.03308746,0.040248479999999996,0.04011933,0.04088237,0.0414926,0.04596317,0.04787013,0.049061009999999995,0.05623846,0.05972851,0.06330722,0.06480186,0.06731794999999999,0.06731805,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,k Hydro,0.183715,0.211439,0.217472,0.23678,0.256088,0.275396,0.294704,0.314012,0.33546,0.356908,0.378356,0.399804,0.421252,0.4427,0.464148,0.485596,0.507045,0.528493,0.549941,0.571389,0.571389,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,l Wind,0.0,0.0,2.87998E-5,0.0074609053,0.015388797899999999,0.023854523399999997,0.0360110526,0.05038823690000001,0.0703855781,0.08497834060000001,0.09888300600000001,0.1099432395,0.1365237753,0.153209699,0.16581200300000004,0.21229986000000003,0.245735782,0.2817107730000001,0.310959193,0.350568404,0.389849278,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,m Solar,0.0,0.0,0.0,0.0017448933,0.0036662058000000003,0.0058457352,0.009117980800000001,0.013245243500000002,0.0191565954,0.024249616499999998,0.029550057099999995,0.0343223859,0.044168640300000006,0.05120998040000001,0.057213589200000005,0.07333845180000001,0.08494471569999999,0.0965916185,0.1058930585,0.1183159587,0.131064533,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,n CHP,0.0,6.27014E-4,0.001578479,0.0013431277,0.0016938084000000001,0.0020479754,0.0023726638000000004,0.0027137828,0.0030434974999999998,0.0035205671000000005,0.0041252716,0.0044190141,0.0048729414,0.005365386400000001,0.0058149557,0.0063732888,0.0069221709,0.0075011012,0.0082778448,0.009108271699999998,0.009087790699999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,a Coal,1.69735,7.20575,11.8677,13.98244,16.25462,17.939779,19.805165000000002,21.377017999999996,22.684989000000005,23.688295000000004,24.502594000000002,25.402525000000004,26.342546999999996,27.290492999999998,27.991868,27.650852,27.25580499999999,26.897437000000004,26.045021,24.823331,23.910451000000002,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,c Gas,0.00994681,0.0835439,0.3003612,0.2783672,0.3334416,0.3990106,0.4819811,0.5660618000000001,0.6517001,0.7269481,0.7900087,0.8448394100000002,0.84698213,0.8492483000000002,0.86436468,0.95050271,1.02489816,1.0965360800000001,1.2034201800000002,1.31342587,1.5103843000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,e Oil,0.177202,0.221325,0.0483861,0.03647921,0.04527278,0.05693383,0.07095192,0.08384392999999998,0.09721690999999999,0.10886339,0.11896227999999999,0.12850335,0.129277774,0.128594545,0.129826023,0.143845282,0.147606853,0.14815924700000002,0.149909449,0.144609291,0.144029427,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,g Biomass,1.49641E-6,0.00866158,0.0410615,0.0363795,0.06317880000000001,0.09672721999999999,0.1550424,0.22047812,0.28352778,0.34728969,0.4100045000000001,0.47168705,0.53170196,0.59091763,0.66726421,0.8171811400000001,0.9386823099999999,1.0398644700000002,1.1362972999999998,1.1921472999999996,1.2610797,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,i Nuclear,0.0,0.191116,0.265967,0.42946,0.6652589999999999,0.952997,1.379922,1.8838310000000003,2.475908,3.096502,3.7096813,4.272336,4.767924900000001,5.196653599999999,5.6569,6.275969999999999,6.742773000000001,7.053977999999999,7.203634000000001,7.145344,7.045403000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,j Geothermal,0.0,4.13999E-4,5.83199E-4,0.048443425000000005,0.095567186,0.11579897500000001,0.115799073,0.115799042,0.11579890000000001,0.1157989,0.11579909999999999,0.11579889999999998,0.1157991,0.115799,0.11579910000000002,0.11579933,0.11580863,0.11579882000000001,0.11579897000000001,0.11578658,0.11579893,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,k Hydro,0.45643,1.4296,2.60038,2.6427,2.68502,2.72734,2.76966,2.81198,2.90904,3.00611,3.10317,3.20023,3.29729,3.39435,3.49142,3.58848,3.68554,3.7826,3.87966,3.97673,3.97673,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,l Wind,7.19999E-6,0.00730149,0.160644,0.269650639,0.43875246900000003,0.6603661089999999,0.9988035089999999,1.4053010689999998,1.711768259,2.0833760599999995,2.3818777799999995,2.64120332,2.776067079999999,2.8253070699999996,2.9042200699999996,3.3894599299999992,3.8332577799999994,4.181012799999999,4.5569545399999996,4.810684499999999,5.086626009999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,m Solar,7.19999E-6,2.74E-4,0.00338849,0.02933248,0.08093244899999999,0.156995829,0.282318769,0.445490799,0.6442024890000001,0.8438485460000003,1.0297875500000002,1.2093652500000003,1.3538495200000003,1.4678999099999999,1.5944848600000001,1.8664891399999994,2.07630939,2.21408804,2.32781491,2.3719240600000004,2.4015602100000004,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,n CHP,0.0,0.0,0.0,0.0,0.00183676,0.0035076,0.00562381,0.0081511,0.0110494,0.0146092,0.0184972,0.0199481,0.021996,0.0244598,0.0266058,0.029633,0.0330905,0.0368234,0.0411859,0.0447811,0.0436765,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,a Coal,0.0133489,0.00888839,0.0135144,0.0335918,0.0463744,0.055331416,0.06719850299999999,0.07998922799999998,0.09403129099999999,0.10853511899999999,0.12576881099999998,0.143636836,0.174626066,0.207284169,0.24510721400000005,0.272181044,0.3111037890000001,0.35516792999999997,0.39619547,0.43290878000000005,0.47414856,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,c Gas,0.016196409999999998,0.0266363,0.041749400000000006,0.0920338,0.1221876,0.1461263,0.18044705,0.21791523999999998,0.25974177,0.30244937,0.35232578999999997,0.4001831,0.43547656999999995,0.48583639,0.55033173,0.6242674899999999,0.69835503,0.76820166,0.83381927,0.8822542100000001,0.93895898,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,e Oil,0.00136439,4.10394E-4,0.00180719,0.006556835,0.007491033000000001,0.00900059,0.012229852999999999,0.015441268999999999,0.019458925,0.023692347,0.029690088,0.035563156299999996,0.047170682199999994,0.0568821637,0.070401551,0.087321696,0.103508651,0.118644002,0.13277803900000001,0.141339993,0.15338832,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,g Biomass,9.86411E-4,0.00181081,0.00179639,0.00314446,0.0035994409999999997,0.004122962,0.005339175,0.006517045000000001,0.007592351,0.008871676000000002,0.010773204000000002,0.012776404,0.017166277,0.0215882885,0.027179523000000004,0.033743405000000004,0.04095772,0.04831593800000001,0.05554745,0.062073345,0.069414843,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,i Nuclear,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00118939,0.0036149700000000003,0.00778426,0.01206097,0.01916893,0.02650961,0.03502135,0.04552002,0.05681796,0.06831807000000001,0.07969858,0.09021156,0.10047837,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,j Geothermal,0.0,0.0,0.0,0.00153437,0.00334097,0.0053133,0.008468400000000001,0.01230759,0.01674817,0.020054629999999997,0.0239785,0.027883410000000004,0.0339913,0.03930944,0.04485587,0.05114537,0.05639919,0.058848559999999994,0.05884848,0.05884901,0.058849030000000004,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,k Hydro,0.0989892,0.143291,0.145444,0.15207,0.158696,0.165322,0.171948,0.178574,0.190273,0.201972,0.213671,0.22537,0.237068,0.248767,0.260466,0.272165,0.283864,0.295563,0.307262,0.318961,0.318961,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,l Wind,0.0,1.764E-4,1.404E-4,8.974301199999999E-4,0.0017414548,0.00268524225,0.0042913640500000004,0.00640309265,0.00895499425,0.01135874203,0.014550927650000002,0.0180734191,0.0243254163,0.0307961577,0.03843909909999999,0.048334625199999995,0.05870542589999999,0.069163507,0.07652604700000001,0.08243580300000002,0.088259276,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,m Solar,0.0,0.0,0.0,3.0673097E-4,7.359135799999999E-4,0.0013543127000000001,0.0026232268,0.0046192412,0.0075335746000000006,0.01106712133,0.01610269892,0.022105360700000003,0.033209988100000004,0.0458655266,0.0619828545,0.0835383584,0.1077600598,0.1333934018,0.1552440483,0.17413578840000002,0.1938415171,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,n CHP,0.0,0.0,0.0,0.0,3.3319E-5,6.03417E-5,9.87684E-5,1.48734E-4,2.20078E-4,3.20638E-4,4.59248E-4,5.65369E-4,7.22773E-4,9.15697E-4,0.00113396,0.00140143,0.00168944,0.00198047,0.00232738,0.00267633,0.0027895,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,a Coal,0.859385,0.892792,0.885689,1.04794,1.202298,1.2955191000000001,1.4082887,1.4992387,1.6172204000000003,1.7057225000000003,1.7963783999999998,1.8430756,1.9053172000000003,1.9402222000000002,1.9669156000000003,1.8980166000000003,1.8428255000000002,1.8031514,1.7550103,1.7218588999999995,1.6490944,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,c Gas,0.140306,0.12755,0.123565,0.15096346,0.17694152999999999,0.19846705,0.23040166,0.2619898,0.3047269,0.33899806,0.37135173,0.38573665000000007,0.37423008,0.35600950000000003,0.34260270000000004,0.343369481,0.334501676,0.30657438000000004,0.293740531,0.287690043,0.300062826,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,e Oil,0.0841881,0.0370123,0.0384476,0.04327934,0.05125138,0.05862523000000001,0.06945715999999999,0.07789932000000001,0.09129933000000001,0.09891602999999999,0.1074127,0.10891237699999999,0.105990601,0.09856329200000001,0.09583472099999998,0.09829388900000001,0.09381166499999999,0.08420591899999999,0.079692563,0.07361219299999999,0.071948766,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,g Biomass,1.65607E-4,0.009839,0.0341529,0.03613682,0.04013644,0.0430725,0.04842940400000001,0.052578557000000005,0.057138799,0.060273149000000005,0.064445783,0.065670411,0.068695019,0.06984635700000001,0.07247527500000002,0.07951285100000001,0.08373571299999998,0.0861909,0.09075419,0.09571515,0.09845564,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,i Nuclear,0.268826,0.348192,0.3271,0.3744935,0.4196396,0.4479721,0.4823133,0.509328,0.5447002,0.5700694000000001,0.5964624,0.6088261,0.627016,0.6367672,0.6424827,0.6224462000000001,0.6076271000000001,0.5937946,0.576107,0.5618094999999999,0.5335501,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,j Geothermal,0.0,0.0,0.0,0.00605472,0.01394482,0.02169691,0.031669,0.04111946,0.05106199,0.05453056,0.05674246999999999,0.056837570000000004,0.056055339999999995,0.05343131,0.05193432,0.0560544,0.05723651,0.05723673,0.057236949999999995,0.057237329999999996,0.05723695,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,k Hydro,0.092826,0.14841,0.159804,0.159292,0.158992,0.158692,0.158392,0.158092,0.163653,0.169214,0.174776,0.180337,0.185898,0.191459,0.19702,0.202581,0.208143,0.213704,0.219265,0.224826,0.224826,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,l Wind,0.0,0.00100802,0.0147851,0.023213571000000002,0.0350508093,0.0489835712,0.0721937732,0.10062810720000001,0.1272199642,0.1608871182,0.1946453979,0.214848352,0.22850700699999996,0.22570095699999998,0.22060510999999997,0.24557120200000002,0.26197921100000005,0.28018693400000005,0.3141268730000001,0.36800549000000005,0.41296208800000006,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,m Solar,0.0,3.60007E-6,0.00240838,0.0034646862000000003,0.004925078699999999,0.0069854635,0.010954322,0.016491640100000003,0.0227063514,0.0310382881,0.040380076699999996,0.0467628343,0.05210680079999999,0.053218759899999996,0.053867399,0.0613524939,0.0663229722,0.0714220689,0.08055460290000001,0.0949399576,0.10798174219999998,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,n CHP,0.084278781,0.08694983,0.07559249,0.07370941,0.07393963760000001,0.07893738900000001,0.07647293499999999,0.072621542,0.069045002,0.06589555,0.064149988,0.061685773,0.060011033,0.057673395,0.055991061999999994,0.05431198499999999,0.052670681999999996,0.051192658,0.05069069,0.050667675999999995,0.049828665,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,a Coal,2.83949,2.63263,2.14461,2.255947,2.3505420000000004,2.4055324999999996,2.4562557999999997,2.4849011999999995,2.5965757000000003,2.5971637,2.5831013999999994,2.6034278999999994,2.6914849999999997,2.784197900000001,2.8682576,2.8324822000000003,2.8453531000000005,2.8745741,2.871228999999999,2.8526950999999996,2.7669867000000004,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,c Gas,0.463445,1.9254419999999999,2.2807700000000004,2.302063,2.39353,2.4707983999999996,2.5511137999999995,2.6129241000000003,2.7802003,2.8002743,2.7911674,2.7964073000000003,2.5977127,2.4811395000000007,2.35491941,2.2992741899999998,2.18243675,1.9639940999999999,1.8879064200000002,1.8815078,1.94700679,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,e Oil,0.625719,0.358867,0.20094,0.1621176,0.17266848999999998,0.19279378,0.21620594000000004,0.24320087999999998,0.30076281,0.31967132,0.34057039999999994,0.36504812000000003,0.37819101999999993,0.38393174999999996,0.40412230000000005,0.41412733,0.40515881,0.38567635000000006,0.38020730999999997,0.37396729,0.37749274,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,g Biomass,0.028465,0.159297,0.259185,0.1683142,0.19470169999999998,0.22084552,0.25397386,0.28437810999999996,0.32900651,0.35055721,0.37316199999999994,0.39819275000000015,0.43452144000000004,0.46466748,0.51180616,0.54210331,0.5633310699999999,0.5874548600000001,0.60619593,0.6200209999999999,0.6227851000000002,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,i Nuclear,2.59272,3.24344,2.97257,3.0495859999999997,3.1221629999999996,3.1480919999999997,3.1520529999999995,3.114678,3.186767,3.147858,3.1097069999999998,3.1151149999999994,3.2067680000000003,3.303901,3.3708820000000004,3.343562000000001,3.3659339999999998,3.387844,3.3654129999999998,3.31541,3.1414,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,j Geothermal,0.0116137,0.0194286,0.0201663,0.0490891,0.0796217,0.1176828,0.16448410000000002,0.2119358,0.25373219999999996,0.25492570000000003,0.2549175,0.25491250000000004,0.25492590000000004,0.2549265,0.254926,0.25492590000000004,0.2549217,0.2549249,0.2549276,0.2549279,0.254926,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,k Hydro,0.939621,0.95855,1.17152,1.14714,1.13525,1.12336,1.11147,1.09957,1.10415,1.10873,1.11331,1.11789,1.12247,1.12705,1.13163,1.13621,1.14078,1.14536,1.14994,1.15452,1.15452,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,l Wind,0.00280083,0.25258,0.521819,0.6176291230000001,0.7082084890000001,0.8345420350000001,1.0279477150000003,1.2815024350000004,1.1922264650000005,1.4412287820000005,1.6689971760000002,1.8712820700000001,2.06590575,2.15996911,2.21864695,2.3717719799999997,2.4897997399999996,2.64859782,2.7843349799999997,2.9809772400000005,3.12603663,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,m Solar,4.32005E-5,0.00524505,0.08066889000000001,0.09395806100000001,0.10634046800000001,0.12568002,0.15820104499999998,0.205439672,0.20866419699999997,0.267077692,0.32697186899999997,0.385703957,0.44785314600000004,0.486834476,0.524671763,0.577807793,0.616015638,0.66260956,0.7029024139999999,0.75786916,0.801474018,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,n CHP,0.2110975,0.5644442,0.617119,0.6466759000000001,0.6412074999999999,0.648413,0.6290899999999999,0.6002971,0.5599510000000001,0.5336736,0.5140399999999999,0.48881630000000004,0.4732737,0.4605688,0.44939419999999997,0.4444481,0.4426482,0.4475431,0.4594494,0.47310739999999996,0.46024389999999993,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,a Coal,0.428483,0.180041,0.245558,0.2979123,0.3192898,0.32227886,0.32956603,0.33354063000000006,0.34112378,0.34788740999999995,0.35638812,0.36536586000000004,0.38490048000000004,0.40099967,0.41208266,0.38584152,0.38548634000000015,0.3964008099999999,0.40576323000000003,0.41721164000000005,0.42319663,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,c Gas,0.24918880000000002,0.224147,0.177037,0.2164799,0.23215950999999999,0.23974199000000002,0.25714623,0.27518129,0.30065372,0.3250813,0.34849593,0.36642019,0.34670070999999997,0.3430660299999999,0.34425279,0.35932849,0.35431662,0.33634319,0.32599401999999994,0.32097318,0.32350836,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,e Oil,0.255453,0.00542502,0.0047411,0.006121827,0.006288042,0.006597353,0.007384431,0.008113543,0.009197501000000002,0.010171580999999999,0.011173733000000002,0.012029198999999997,0.012155236099999998,0.012315574599999999,0.0129620145,0.014480305200000002,0.0145522304,0.014368088900000001,0.014646896199999999,0.0147310675,0.014936623800000002,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,g Biomass,0.0,0.0,2.62796E-4,0.001741327,0.002537524,0.003396753,0.005567946,0.008279208,0.011875975999999998,0.0157473456,0.019934814500000002,0.0237863024,0.0291160866,0.0332394321,0.038528436000000006,0.046709758000000004,0.05177548199999998,0.056830517000000004,0.063552645,0.07065741499999999,0.07681857,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,i Nuclear,0.274249,0.319511,0.32094,0.3651025,0.3812929,0.38639580000000007,0.40817480000000006,0.4375526,0.47615550000000006,0.5119989,0.5478088999999999,0.5795144,0.6269673,0.6634658999999999,0.6937831000000001,0.7056694,0.7307234,0.7546766000000001,0.7659974,0.7658265000000001,0.7503074000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,j Geothermal,0.0,0.0,0.0,0.00419121,0.00671689,0.0084353,0.00983599,0.009835990000000001,0.009835983,0.009835999,0.009835999,0.00983497,0.009836000000000001,0.00983601,0.009836010000000001,0.009836013,0.009836137,0.009835967000000001,0.009835993000000001,0.009836617,0.009836000000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,k Hydro,0.0388476,0.0448632,0.0479592,0.0480941,0.0483945,0.048695,0.0489954,0.0492959,0.0496296,0.0499634,0.0502971,0.0506309,0.0509646,0.0512984,0.0516321,0.0519659,0.0522996,0.0526334,0.0529671,0.0533009,0.0533009,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,l Wind,0.0,1.40396E-4,1.87196E-4,0.0049735846,0.009472515400000001,0.013801207900000001,0.022991233600000004,0.035595514,0.05423538,0.0712877724,0.0907500306,0.1096577061,0.1304516824,0.14298811799999997,0.15431408399999996,0.18075765999999996,0.19300619399999996,0.204695793,0.22100855999999997,0.24782543299999998,0.27136404999999997,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,m Solar,0.0,0.0,0.0,6.4436076E-4,0.0013120728,0.0026957659900000005,0.0065986475499999996,0.012991039360000001,0.023418633860000003,0.03570151199,0.05008347186,0.06382696467,0.07992226341000001,0.09062727599999999,0.10099536,0.1219515045,0.13270167930000001,0.14290699669999998,0.1571058678,0.1797040475,0.2011149836,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,n CHP,0.029517662,0.0204605978,0.020627372999999997,0.020244483,0.020094821699999998,0.022413446,0.022629520999999996,0.022014696,0.020291453,0.019075332999999996,0.018291073,0.017524061,0.017030354,0.016473496,0.015996285,0.015465822,0.015088912,0.01480461,0.014658066999999999,0.01453517,0.014075119,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,a Coal,0.231522,0.307824,0.36616,0.669815,0.785457,0.87396808,0.9551185899999999,1.020011,1.06579286,1.10522581,1.1364693499999998,1.1676320999999998,1.31204182,1.3831131700000001,1.4388709899999996,1.3169678099999997,1.2957549600000002,1.27262617,1.2665793799999998,1.25669484,1.2377619800000004,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,c Gas,0.04737570000000001,0.258627,0.352203,0.6482076,0.7547601000000002,0.8474103300000001,0.9313136999999999,0.99566075,1.03668876,1.06697857,1.0853852499999999,1.09890536,0.8817963,0.7971329300000001,0.71314526,0.73524855,0.6999964000000001,0.6711824,0.6647390699999999,0.6648772199999999,0.6594556,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,e Oil,0.0262079,0.0251024,0.00900702,0.01522869,0.012868748000000001,0.015009858000000001,0.017052476,0.018860346,0.020520215,0.022627862,0.024322721,0.026144548999999996,0.032141972000000005,0.030459724,0.031500185,0.04270581,0.041450091999999994,0.042174851,0.044972916,0.045576087,0.045018824,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,g Biomass,0.0,3.23995E-4,5.00385E-4,0.002005778,0.002335084,0.003476666,0.005272950000000001,0.007213684,0.008777885,0.010675616500000002,0.0125300334,0.014398656699999998,0.022248744300000005,0.024949261799999994,0.028904721999999994,0.041428188000000005,0.045663502,0.04965249700000001,0.055586558999999994,0.060304972000000005,0.06296391100000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,i Nuclear,0.0,0.0,0.0,0.0877664,0.1218393,0.1522206,0.1826664,0.2107731,0.23665689999999998,0.2621632,0.2848636,0.30485860000000004,0.358024,0.3854242,0.411648,0.3896497,0.39007349999999996,0.3871561,0.3895441,0.3901251,0.3855033,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,j Geothermal,2.87998E-4,3.38395E-4,0.00240475,0.01206867,0.01812257,0.024949310000000002,0.03264856,0.040212569999999996,0.04491719,0.04338415,0.04482914,0.04540867,0.05560437,0.05770387,0.06031802,0.07278053000000001,0.07573276999999999,0.07750251999999999,0.07436938,0.07595908999999999,0.07562616999999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,k Hydro,0.154156,0.263261,0.335171,0.322883,0.311124,0.299366,0.287607,0.275848,0.291875,0.307902,0.323929,0.339956,0.355983,0.37201,0.388037,0.404064,0.420091,0.436118,0.452145,0.468172,0.468172,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,l Wind,0.0,2.48396E-4,0.0110014,0.026016442,0.0348917402,0.0456581919,0.0594669999,0.0750039209,0.0801369819,0.08281151190000001,0.0909477967,0.097167798,0.132151603,0.144390389,0.15710364000000002,0.214312894,0.23921599100000002,0.257574287,0.25422473300000004,0.26843378500000004,0.272515078,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,m Solar,0.0,0.0,0.0,0.0020583925,0.0039026071000000002,0.0066256682,0.010629432300000003,0.015769283900000004,0.021720402500000003,0.0268055342,0.0326917868,0.03839212589999999,0.0562181898,0.06545715659999998,0.0750066511,0.1045254397,0.11958258370000002,0.1311020055,0.1343767365,0.14375152810000003,0.14792443100000002,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,n CHP,0.013083621,0.020719841000000003,0.01769673,0.030325169,0.0324421829,0.035612151999999994,0.037026555,0.037963422,0.038701661,0.039101643,0.039221232,0.038660398,0.038430331000000005,0.03754238,0.036775528,0.036205004,0.035546697,0.03506853,0.034931092999999996,0.034883026,0.034098473,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,a Coal,3.38404E-4,4.7522E-4,3.81602E-4,8.41123E-4,0.002591447,0.004866085,0.007748281,0.010764071,0.011867678,0.012919857,0.014352008999999999,0.016676890200000002,0.019384568300000002,0.022490334600000002,0.024796217000000002,0.026290381999999998,0.026865498,0.027248358999999993,0.027601675,0.028742135999999995,0.030926878999999994,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,c Gas,2.69998E-4,0.0018504629999999999,0.0181046859,0.02013290309,0.03040265004,0.0427645022,0.05633729172,0.0681917973,0.07035009865000001,0.0716770542,0.07374474034999999,0.07758858119999999,0.07832427881399999,0.07206655667600001,0.061005462,0.04897929299999999,0.038657461000000004,0.037759140999999996,0.038284971,0.039289828,0.037515406700000004,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,e Oil,0.0010152,2.62807E-4,1.83584E-4,1.7813477999999999E-4,2.2966864E-4,2.9027782E-4,3.5623761E-4,4.0701916E-4,3.890513E-4,3.8492877E-4,3.9050375999999994E-4,4.0891230000000004E-4,4.158029499999999E-4,3.9823136E-4,3.436337E-4,2.87744409E-4,2.3741044299999998E-4,2.28482794E-4,2.2313403100000003E-4,2.1302355E-4,1.8494961800000003E-4,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,g Biomass,0.00161282,0.00203766,0.00243364,0.0016447340000000001,0.005050605,0.009215672000000001,0.014780600999999999,0.020196595,0.021032679,0.022084146999999995,0.023758313,0.026356581,0.029037653499999996,0.0319593813,0.033440679,0.033966194000000005,0.033337731999999995,0.031918251,0.02991584000000001,0.028156444,0.027834609999999996,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,i Nuclear,0.0850906,0.0840297,0.094822,0.0876289,0.0835189,0.077524,0.0693204,0.0590228,0.05195274,0.04773958,0.05011756,0.05921066,0.07029044000000001,0.08273640999999998,0.08608651,0.09373647,0.10144006,0.10894812,0.11673941999999998,0.12522391,0.12638916000000003,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,j Geothermal,0.00108001,0.00596895,0.0160743,0.01908162,0.027012920000000003,0.03466233,0.03547401,0.03547404,0.03426615,0.03440013,0.03134825,0.03007217,0.03063636,0.03188108,0.03268699,0.032911380000000004,0.03242364,0.03029091,0.02849144,0.027550349999999998,0.027186309999999998,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,k Hydro,0.558752,0.626339,0.598385,0.583929,0.569578,0.555226,0.540875,0.526524,0.53205,0.537576,0.543103,0.548629,0.554155,0.559681,0.565207,0.570734,0.57626,0.581786,0.587312,0.592839,0.592839,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,l Wind,0.0,0.00182525,0.00335526,0.0053613483,0.0167720943,0.037012380299999995,0.06691173229999998,0.10115667729999998,0.11152002829999998,0.12305154319999999,0.12987682620000002,0.13836897420000002,0.1409447322,0.1423663582,0.15371261120000002,0.16013247899999997,0.163895792,0.15838871100000002,0.151987238,0.146867153,0.14370473399999997,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,m Solar,3.60004E-6,6.84017E-5,2.98805E-4,3.8677219400000005E-4,8.1575986E-4,0.0015351538599999999,0.00256806221,0.00347375271,0.0034932879999999998,0.00369229131,0.0036360896999999993,0.0034854676999999997,0.0030904866,0.0028813063000000002,0.0030416413999999996,0.0031317272,0.0031705318,0.0030347667999999998,0.0028860178999999997,0.0027702169999999993,0.002715334,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,n CHP,0.0035947909999999995,0.010181541,0.011491956,0.008615129999999999,0.011560406,0.012962106,0.013766186000000001,0.014106655,0.015115580000000002,0.016169426999999997,0.0173245783,0.0169955131,0.0169975804,0.017200641699999998,0.0172315961,0.0174329044,0.0176137163,0.017919923199999997,0.0185289334,0.019197546,0.0181820314,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,a Coal,0.68977,1.69899,2.35082,3.5071000000000003,4.90403,6.446725000000001,8.370874,10.551563,12.896553,15.257209999999999,17.569159999999997,19.824282,22.045264000000003,24.132933,26.114165999999994,27.445654,28.557908,29.425513,30.040552999999996,30.509638000000002,30.666795000000008,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,c Gas,0.0358488,0.2716811,0.4240401,0.5554259,0.7572038999999999,1.0265349,1.395799,1.8531100000000003,2.3726164000000005,2.906886,3.4252114999999996,3.9045464700000005,4.2016752,4.42855058,4.5788438,4.7613114,4.8498522,4.875540900000001,4.940909,5.0793643,5.2397501,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,e Oil,0.0361728,0.0836639,0.0951875,0.25536619000000005,0.46040409,0.74934891,1.10531753,1.48697596,1.8706116700000002,2.21665808,2.5207029800000003,2.789635006,2.9253104190000006,2.984640069,2.9903165,2.9874771,2.8551335,2.6540052000000003,2.42655767,2.13833248,1.9175117,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,g Biomass,0.0,0.00692279,0.00740519,0.014516683,0.033317743999999996,0.062756281,0.111997022,0.17710203600000002,0.248206018,0.326578617,0.41126774759999996,0.49900885010000007,0.5937406248999999,0.6907528534000001,0.79698758,0.9419259600000002,1.0824007499999997,1.2194176299999997,1.3723622000000002,1.5327501000000001,1.6732829,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,i Nuclear,0.0221076,0.0623663,0.0945575,0.15144459999999998,0.2176517,0.2950428,0.390876,0.4991518999999999,0.6291963,0.7735777,0.9275107,1.0809327,1.2313402,1.3719332899999999,1.508381,1.6237193,1.7308853000000002,1.823177,1.9096190000000002,1.994541,2.049904,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,j Geothermal,0.0,0.0,0.0,0.022071,0.0474938,0.0565819,0.05658201,0.05658191,0.05658197,0.05658168,0.05658203,0.05658197,0.056581980000000004,0.05658198,0.05658199,0.056582099999999996,0.05658982,0.05657965,0.05658196,0.056604089,0.056581983,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,k Hydro,0.257962,0.366228,0.411926,0.447853,0.48378,0.519707,0.555634,0.591561,0.654843,0.718125,0.781406,0.844688,0.90797,0.971252,1.03453,1.09782,1.1611,1.22438,1.28766,1.35094,1.35094,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,l Wind,1.152E-4,0.0237708,0.0716795,0.118466983,0.188689543,0.292293413,0.44452715299999995,0.640716513,0.8071432629999999,1.0228809900000002,1.2286612500000003,1.4107938700000002,1.5567552000000002,1.6581572900000003,1.7347911500000004,1.8828423100000002,2.02951916,2.17378351,2.3511554400000003,2.5661279900000005,2.7499040800000003,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,m Solar,0.0,6.83999E-5,8.27999E-5,0.013445386899999998,0.0458861629,0.10817658490000001,0.21656206490000002,0.3800581149,0.605399925,0.8757169380000001,1.1797755220000001,1.5041855599999998,1.8353526700000002,2.13905865,2.42089879,2.7799479500000004,3.12476401,3.43448974,3.7578963299999995,4.089303429999999,4.364239769999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,n CHP,0.0,0.0,0.0,0.0,4.28409E-4,9.26154E-4,0.00164606,0.00262371,0.0038625,0.00548587,0.00739201,0.00847287,0.0097784,0.0111895,0.0123635,0.0136894,0.0150458,0.0163672,0.018058,0.0197251,0.0194992,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,a Coal,0.0351648,0.186455,0.24521,0.46773200000000004,0.6755570000000001,0.892501,1.1432043,1.4065810000000003,1.6875048000000001,1.9671692,2.2336696000000007,2.4980021000000003,2.795493,3.0732714999999997,3.3156653,3.4147901000000003,3.5055739999999984,3.577311200000001,3.6041890999999993,3.6061653000000002,3.5638723999999997,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,c Gas,0.0026423999999999996,0.0687097,0.1441369,0.2509643,0.35644420000000004,0.4863428000000001,0.6477029000000001,0.8271586,1.0234789,1.21686139,1.3927736499999996,1.55228225,1.63025071,1.6897158300000004,1.70381972,1.73507648,1.71993843,1.67929976,1.6295786500000002,1.5853290999999998,1.53829813,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,e Oil,0.0551952,0.140904,0.124218,0.2101313,0.290439,0.3991428,0.5148095,0.6244970000000001,0.7360242,0.8334434,0.913501,0.9910977000000001,1.0220502400000002,1.02347744,0.99312227,0.9755597100000001,0.90670246,0.81876657,0.7185847,0.6042768700000001,0.519949087,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,g Biomass,0.0,7.91916E-5,3.42008E-4,0.0016047729999999999,0.0037320879999999997,0.0071225179999999996,0.0125561626,0.0194773289,0.0272977448,0.0359609612,0.045153927999999996,0.0551278017,0.06794182005,0.08060536167000003,0.09303635599999999,0.11162461400000001,0.12765069599999998,0.143454414,0.15897288999999998,0.17360413,0.18619014999999997,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,i Nuclear,0.0,0.0,0.0,0.00385367,0.00726916,0.01490819,0.02820198,0.04701988,0.07043768,0.09696505999999999,0.12509005,0.15287534,0.18336661,0.21140499999999998,0.23683946,0.26634811999999997,0.29340244000000004,0.31583209999999995,0.3321805,0.3423082,0.3454523,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,j Geothermal,0.00405,0.0237744,0.0336852,0.059615,0.0803817,0.10118,0.1222342,0.1411212,0.1346936,0.13593840000000001,0.1406365,0.1449685,0.1507037,0.15489399999999998,0.154894,0.1549111,0.1548892,0.15489129999999998,0.154894,0.1548941,0.154894,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,k Hydro,0.0205488,0.03861,0.0636336,0.0643101,0.0649865,0.065663,0.0663395,0.0670159,0.0690624,0.071109,0.0731555,0.075202,0.0772485,0.079295,0.0813415,0.083388,0.0854345,0.0874811,0.0895276,0.0915741,0.0915741,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,l Wind,0.0,0.0,0.0,0.0027076923,0.0072148694,0.014344739899999999,0.0247923539,0.037935629900000004,0.053947466900000005,0.06915705559999998,0.08341228549999997,0.096332252,0.109761706,0.12041919100000001,0.1276202,0.14162907600000002,0.153480309,0.164802442,0.173147064,0.181892221,0.18939583699999998,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,m Solar,0.0,0.0,0.0,0.0019068107,0.0057041939000000005,0.013179984999999998,0.0262888114,0.046022190399999996,0.07369158139999998,0.10705019369999999,0.14497118050000002,0.1865165114,0.23532551200000001,0.280862241,0.319429426,0.37393466300000006,0.421483124,0.465933405,0.5022819420000001,0.53723548,0.571415179,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,n CHP,0.0,0.0,0.0,0.0,5.13516E-4,0.00103018,0.00170478,0.00250703,0.00343865,0.00462174,0.00597133,0.00667846,0.00759352,0.00856901,0.00934515,0.0102633,0.0110864,0.0118211,0.0127659,0.0136115,0.0133574,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,a Coal,0.420141,1.09279,1.09618,1.366932,1.462502,1.45266158,1.45350322,1.4452710400000002,1.46481292,1.4758811999999994,1.4827010700000003,1.48286805,1.62927545,1.69521053,1.71757489,1.5123708,1.46054714,1.4814805199999996,1.4976278000000005,1.50135,1.4564212,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,c Gas,0.6015012,0.8605389999999999,1.096252,1.4313468999999999,1.56806119,1.5947925200000002,1.6451254499999999,1.6867483600000002,1.7578442800000003,1.80674199,1.8360320000000003,1.8422531999999998,1.5196568799999999,1.38660062,1.3228979400000003,1.31548809,1.2393464,1.1086516299999998,1.0262796699999999,0.9768154,0.9627111500000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,e Oil,0.892385,0.495089,0.350827,0.3521906,0.30764864999999997,0.29879521,0.29608426,0.28819477,0.28525974,0.27345539999999996,0.26077563,0.24788896,0.25239523,0.22776402,0.21571891999999998,0.232582307,0.22091539300000002,0.20486963600000002,0.197530297,0.18582975899999998,0.18025574100000002,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,g Biomass,0.037872,0.0795455,0.0844343,0.08792699999999999,0.08345345000000001,0.08033061300000001,0.079248224,0.07598318300000001,0.07154595,0.066670156,0.06250408,0.05866639599999999,0.065735531,0.06609485999999999,0.065078472,0.067537628,0.068016927,0.06989070999999998,0.07335329800000001,0.07605075,0.07644845,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,i Nuclear,0.728178,1.09712,1.03763,0.958912,0.913936,0.8591766999999999,0.8040204999999999,0.7512241999999999,0.706893,0.657676,0.6121795000000001,0.5727157,0.6210017,0.6355207999999999,0.6119354,0.6895682999999999,0.7370515,0.7676782,0.7901974,0.7878837000000001,0.7587221,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,j Geothermal,0.00626759,0.0116136,0.00947519,0.01764907,0.02233794,0.024987709999999996,0.02975493,0.035465390000000006,0.03563534,0.03738525,0.04128859,0.04499952,0.053058419999999995,0.054354730000000004,0.05356064000000001,0.055417049999999995,0.05469847,0.05514290000000001,0.05346017,0.05612455,0.056581969999999995,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,k Hydro,0.321498,0.275292,0.295963,0.294981,0.293999,0.293016,0.292034,0.291052,0.294216,0.29738,0.300544,0.303708,0.306872,0.310036,0.3132,0.316365,0.319529,0.322693,0.325857,0.329021,0.329021,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,l Wind,0.0,0.00631439,0.0142632,0.0259274054,0.0336625202,0.0385361811,0.04876078179999999,0.06324662379999998,0.07306818579999999,0.0877555664,0.1056752066,0.1223245977,0.163918916,0.179219129,0.18535918299999996,0.20448418299999996,0.209042006,0.21573512400000003,0.206327753,0.221538364,0.23524322899999997,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,m Solar,3.6E-6,0.00537479,0.0136764,0.019068778899999996,0.0219933233,0.0242842164,0.0295607894,0.0377397866,0.0378084754,0.0479692819,0.060843480600000006,0.0722228813,0.10059871379999999,0.11228042029999999,0.11861760609999998,0.13308585609999998,0.13733116169999998,0.1424048277,0.1358949155,0.14495609040000001,0.15333510649999998,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,n CHP,0.0,0.0,0.0,0.0,1.28107E-4,2.24795E-4,3.46928E-4,4.93157E-4,6.41784E-4,8.2605E-4,0.0010304,0.0011157,0.00124044,0.00137088,0.00146972,0.00159359,0.00171053,0.00182831,0.00198864,0.00216937,0.00213252,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,a Coal,0.0279864,0.118998,0.117129,0.1189286,0.1401114,0.15517815,0.1725913,0.18958029999999998,0.21189313999999998,0.23323702999999998,0.26194183,0.29342921,0.34081874,0.408763,0.49079067,0.5845403800000001,0.6804901700000001,0.79441796,0.9084833299999998,1.0269245299999998,1.14160941,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,c Gas,0.052056,0.3425255,0.507894,0.50538377,0.62129484,0.71344766,0.8198173599999999,0.9214853000000001,1.04326626,1.14877005,1.2748127500000002,1.39616855,1.5080853399999998,1.5985301600000001,1.7291996100000002,1.89040584,2.08403704,2.28173234,2.4956852,2.69678325,2.8975224199999996,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,e Oil,0.223423,0.240426,0.157964,0.13573303,0.15059706,0.17000589000000002,0.19739002999999997,0.22376858,0.26511001,0.29682692,0.34413496,0.38655394,0.44821711000000003,0.51735574,0.5941229299999999,0.66621636,0.7346725700000001,0.7836232599999999,0.8138189100000001,0.8097646600000001,0.82573968,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,g Biomass,0.0,0.0109656,0.00929879,0.0032140299999999997,0.006657814999999999,0.008908431000000001,0.012652292,0.016560776,0.021048356,0.025478509000000003,0.031565079,0.037732837,0.047242505,0.060828771,0.07823099200000001,0.09779755799999999,0.11972210100000001,0.143790676,0.167910423,0.19265794999999997,0.21675313,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,i Nuclear,0.0105732,0.038898,0.0211644,0.02093048,0.02329286,0.025481060000000003,0.028628260000000003,0.032404630000000004,0.0384569,0.045366290000000004,0.0553143,0.06583672,0.08059082000000001,0.10078348000000001,0.12511265,0.15319275000000002,0.18383162999999997,0.21741038,0.25008978,0.28224205,0.3112977,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,j Geothermal,0.0184464,0.0262764,0.0238248,0.02651748,0.0334804,0.04005644999999999,0.04808428000000001,0.056514669999999996,0.04656307999999999,0.056225569999999996,0.06324272,0.07014151,0.07865164,0.0894262,0.0969659,0.0969661,0.09696570000000002,0.0969642,0.0969665,0.0969671,0.09696600000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,k Hydro,0.0845208,0.0995724,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,l Wind,3.6E-6,6.83999E-5,0.00446039,0.005720968470000001,0.01103342577,0.01794172157,0.02893688047,0.04340446147,0.059955214470000004,0.08202569800000001,0.10681738570000002,0.13304075589999997,0.16890903899999998,0.21990405999999998,0.2827610870000001,0.357812375,0.44427382,0.5406519639999999,0.6280855119999998,0.7021760699999998,0.7590466699999998,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,m Solar,3.6E-6,3.24E-5,1.116E-4,7.8570343E-4,0.0033684649300000005,0.00713507373,0.013389567329999998,0.022166177029999998,0.03543490102999999,0.0514198466,0.07194915909999999,0.09581196129999998,0.12876212169999998,0.168061297,0.20817286299999996,0.24971535799999997,0.294049118,0.340144188,0.38063935099999996,0.41639694099999996,0.459730428,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,n CHP,0.0,0.0,0.0,0.0,1.88182E-4,3.37174E-4,5.42781E-4,8.05581E-4,0.00114909,0.00161841,0.00222718,0.00264179,0.00322954,0.00393435,0.00467667,0.00554138,0.00642356,0.00730813,0.00838837,0.009453,0.00988384,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,a Coal,0.0379187,0.132671,0.124711,0.1422198,0.1613144,0.17736005,0.19406595,0.21023062000000003,0.22679763999999997,0.24329432,0.26176473000000006,0.28141666000000004,0.32101897,0.36625618,0.4174649,0.46118692,0.5251633999999998,0.6064651499999998,0.7032918500000002,0.8169111799999997,0.9193553799999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,c Gas,0.38072,1.3344,1.95927,2.1807185000000002,2.4660853,2.7447332,3.0678101000000004,3.4067744999999996,3.7586768,4.0897758,4.4149736,4.6969734,4.8899321,5.099493900000001,5.2801927,5.491302799999999,5.717679100000001,5.9492460000000005,6.2429983,6.584849999999999,6.8403877,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,e Oil,0.402346,0.720668,1.02737,1.267913,1.531581,1.8450140000000002,2.1598739999999994,2.4547906,2.7456757,2.9963512,3.2342122,3.4399344,3.5961571,3.6810595,3.7718618,3.7895567000000003,3.7565834000000002,3.6417082,3.4861024999999994,3.2373088,3.1004585999999996,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,g Biomass,0.0,0.0,4.32068E-5,0.0021639385,0.0060893901,0.0117293318,0.02046966238,0.03158749712,0.043807354300000004,0.056709305050000006,0.07078303461999999,0.084647421167,0.11031946551,0.13747750166700004,0.17160595500000003,0.20995439899999996,0.25616281899999993,0.30690671,0.36310227999999994,0.4229039900000001,0.47213257000000003,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,i Nuclear,0.0,0.0,0.0,0.00781418,0.02135838,0.04386658,0.07859658,0.12482736999999999,0.17727727,0.23184477,0.28839976,0.33938535000000003,0.41375085,0.4871801400000001,0.5684581299999999,0.6479275000000001,0.7343186000000002,0.819754,0.9002776000000001,0.9730814,1.0199721,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,j Geothermal,0.0,0.0,0.0,0.0110436,0.024266,0.0381282,0.052268699999999994,0.05658185,0.05658205000000001,0.05658159,0.056581980000000004,0.056581980000000004,0.056582,0.056582030000000005,0.05658196,0.056582560000000004,0.056581969999999995,0.05657815,0.05657696,0.05657844,0.056582009999999995,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,k Hydro,0.04293,0.0992016,0.064242,0.0855464,0.106966,0.128386,0.149805,0.171225,0.202866,0.234507,0.266148,0.297789,0.329429,0.36107,0.392711,0.424352,0.455993,0.487634,0.519275,0.550916,0.550916,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,l Wind,3.59999E-6,3.05999E-4,6.26399E-4,0.0098857528,0.0262410358,0.0510932318,0.0881610998,0.13642179979999997,0.1952617078,0.25238214600000003,0.30861382200000004,0.35724985,0.43888649199999996,0.519429252,0.613463665,0.7227957630000001,0.8629272440000001,1.0286470100000003,1.1766308100000002,1.3339044700000002,1.4285937100000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,m Solar,0.0,0.0,2.52E-4,0.0157188094,0.0391847353,0.07014670519999999,0.1124713542,0.1666533372,0.23517437519999998,0.31091259979999997,0.3965378879,0.48463243200000006,0.6123485310000001,0.731049608,0.83790224,0.9241412560000001,0.998916632,1.0594660280000001,1.08634663,1.11831826,1.16987597,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,n CHP,0.0,0.0,0.0,0.0,0.00198166,0.0031427,0.0044973,0.0059926,0.00777124,0.0101634,0.0131017,0.0148546,0.0173974,0.020307,0.023119,0.0263775,0.0294186,0.0321413,0.0355979,0.0391337,0.040461,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,a Coal,1.36804E-4,4.64397E-4,3.16794E-4,0.0114731,0.018292928,0.026767248999999996,0.039061304,0.056614958999999986,0.07930278799999999,0.108984739,0.1443083162,0.18704599270000002,0.24893961940000003,0.31616987539999997,0.3963429,0.487462185,0.597833019,0.7265175200000002,0.8784677300000002,1.0423432000000001,1.2270410900000002,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,c Gas,0.045608369999999995,0.1486296,0.0931644,0.19416299999999997,0.24984839999999997,0.32060790000000006,0.4194017,0.5527291000000001,0.7098399999999999,0.8929634,1.0814959,1.273998,1.41281021,1.57477629,1.7221604,1.8690708999999999,1.9826381,2.0849767999999997,2.1837851,2.2775055,2.3760981,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,e Oil,0.0278928,0.0686556,0.119718,0.2500215,0.29967170000000004,0.3752559,0.4709453,0.5893937,0.7194119999999999,0.8675991999999999,1.0136745,1.1643274,1.2409904600000001,1.3377943499999998,1.41081005,1.46573605,1.4677519799999998,1.43691277,1.37343001,1.27779431,1.1873630800000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,g Biomass,0.0,0.0,0.0,0.00562305,0.01150363,0.021639590000000004,0.03930800999999999,0.06636217,0.09995853,0.14319256000000002,0.19308014,0.25088453,0.3319541999999999,0.41370485,0.5055146099999999,0.61035132,0.7191120400000001,0.8311731,0.9482750900000001,1.05599775,1.1575542,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,i Nuclear,0.0010548,0.0089424,0.012312,0.0319959,0.0419931,0.054901200000000004,0.07299769,0.09771642,0.1278416,0.16480748,0.20569529999999997,0.25096812,0.30786882,0.361154164,0.4157888,0.45700779999999996,0.5084671,0.5584833,0.6067033999999999,0.6465260999999999,0.6818703,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,j Geothermal,0.0,0.0,0.0,0.0244259,0.0422917,0.06310260000000001,0.08072599999999999,0.0807259,0.0807259,0.08072558,0.08072593,0.08071771,0.08072589999999999,0.08072617,0.08072598,0.08072602000000001,0.08072943999999999,0.08072423,0.08072604,0.08074813,0.08072599,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,k Hydro,0.06093,0.111103,0.11452,0.117706,0.120892,0.124078,0.127264,0.13045,0.140089,0.149728,0.159367,0.169006,0.178645,0.188284,0.197923,0.207562,0.217201,0.22684,0.23648,0.246118,0.246118,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,l Wind,0.0,0.0,0.0,0.022277436,0.045214907,0.082949057,0.142967828,0.229919458,0.33936960800000004,0.45407278199999995,0.5832254910000001,0.715268871,0.8784417099999999,1.0118889199999999,1.13939727,1.27376321,1.40037126,1.5199127,1.6062995499999997,1.6891957000000002,1.75830535,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,m Solar,0.0,0.0,0.0,0.014572189999999999,0.031442070999999995,0.05298696300000001,0.07979041700000002,0.12251900700000001,0.18461283400000003,0.260226954,0.361193673,0.49029160099999997,0.675499747,0.868322977,1.0723325099999998,1.29436147,1.5094503199999998,1.71162085,1.88191072,2.03447759,2.17111288,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,n CHP,0.0,0.0,0.0,0.0,3.04749E-4,6.23921E-4,0.00114475,0.00189536,0.00300556,0.00471907,0.00709533,0.0091577,0.01184,0.0148752,0.0177846,0.0212221,0.0245843,0.0278336,0.0315975,0.035254,0.0346757,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,a Coal,0.54613,0.551288,0.556386,0.5870021,0.6363392,0.64935675,0.6560521299999998,0.64830938,0.6404153499999999,0.62678216,0.61621116,0.60832924,0.6235653099999999,0.6460851699999999,0.6543403200000002,0.6359739100000001,0.6190407499999998,0.62993778,0.6443101200000001,0.6680739499999999,0.68634279,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,c Gas,1.69041,1.4949,1.7391,1.7849744000000003,1.9856501,2.0840732,2.2082717,2.2984150000000003,2.4105396,2.4889411000000004,2.5577007000000003,2.5903195999999995,2.5119601000000005,2.4083338000000003,2.32149216,2.2763351999999997,2.20964263,2.08487254,2.0058181,1.96276294,1.9685894199999998,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,e Oil,0.463118,0.0644098,0.025717,0.02821476,0.03259066,0.03585929,0.04065803,0.04449422,0.050176700000000005,0.05428532,0.05870498600000001,0.062263271,0.06551091,0.066373258,0.069229971,0.072206419,0.074339836,0.07506845399999999,0.07758572,0.079253826,0.08153244000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,g Biomass,0.0,0.0,0.0,0.00191305,0.00543047,0.008467503999999999,0.014161714999999998,0.020569729,0.028321022,0.03578028799999999,0.04370368699999999,0.050491415000000005,0.061605619,0.072192666,0.084979232,0.09857406299999998,0.111689602,0.125316043,0.14127792,0.15826039999999997,0.17271690000000003,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,i Nuclear,0.425914,0.537994,0.613461,0.679158,0.762491,0.8285970000000001,0.9258670000000002,1.032701,1.152148,1.249382,1.336783,1.404389,1.5124419,1.6168147,1.7068009999999998,1.7362389999999999,1.766665,1.800713,1.8033640000000002,1.786994,1.740936,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,j Geothermal,1.00804E-4,0.00147597,0.0018179,0.0143042,0.03456645,0.05236234,0.07443063,0.09629884999999999,0.1190002,0.1299237,0.13343470000000002,0.1363467,0.1414738,0.14555869999999999,0.1496483,0.1566419,0.1639663,0.1735462,0.1809149,0.1896331,0.19384,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,k Hydro,0.597301,0.621637,0.599339,0.636624,0.673909,0.711195,0.74848,0.785765,0.827183,0.868601,0.910019,0.951437,0.992855,1.03427,1.07569,1.11711,1.15853,1.19994,1.24136,1.28278,1.28278,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,l Wind,0.0,2.51994E-5,1.43992E-5,0.011739063199999998,0.035974593199999995,0.0621411592,0.10285246819999999,0.15248755520000004,0.22093980600000004,0.28204303599999997,0.33394145599999997,0.376749691,0.43119293599999997,0.476950297,0.518228125,0.5698170109999999,0.6277509509999999,0.70077441,0.772871906,0.860104708,0.933258,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,m Solar,0.0,0.0,0.0,0.001084384,0.0038539016200000004,0.009913003319999999,0.02222256337,0.039911820060000006,0.06654243588999999,0.09567785272999998,0.12619180949,0.15116160534,0.18263751513,0.2095435836,0.23506866357,0.26462893257000003,0.29636711715,0.3357049496,0.37677880186,0.4278313783,0.47439163970000003,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,n CHP,0.172756752,0.15242304,0.19416211000000003,0.19423366,0.17785971999999997,0.17386775,0.16356423999999997,0.15250849,0.1386253,0.12974472,0.12495822,0.12086585,0.11942457,0.11688636,0.11512689999999999,0.11323088,0.1113699,0.11017434999999999,0.11043942999999999,0.11095733999999999,0.10834935,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,a Coal,0.561333,0.824519,0.870765,0.716001,0.7768921,0.78740773,0.7884598000000003,0.78071776,0.76277306,0.74335436,0.72520139,0.7275768699999999,0.73960363,0.7604975799999998,0.7709923,0.8028346,0.8218984200000001,0.8148671,0.79971866,0.7776633199999999,0.7593817300000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,c Gas,0.0,0.0,0.0,0.0,6.92753E-5,6.969997E-4,0.0016290772,0.0030454298,0.0048589422,0.0070178841,0.0092287025,0.0117863479,0.014249969500000001,0.016659077,0.019959358,0.0208294601,0.0215148468,0.024561106399999998,0.0282394499,0.0331350324,0.0393260336,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,e Oil,0.0,0.0,7.09205E-4,2.75053E-4,2.8211014E-4,4.1363443E-4,4.8769833000000004E-4,5.7721771E-4,6.6125955E-4,7.469297E-4,8.1549743E-4,9.1028487E-4,9.8566557E-4,0.0010545517,0.00113707623,0.00105382757,0.0010053695999999999,0.00104794416,0.00104953441,0.00104570985,0.0010478485,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,g Biomass,0.0,9.54006E-4,0.00101159,2.29823E-4,4.14864E-4,0.0014634072,0.0027919314000000002,0.0046729434,0.0066479874,0.0088799353,0.0110718971,0.0136415914,0.0160099256,0.018395065600000003,0.022260526300000003,0.023213468199999997,0.024625644000000002,0.027984238999999998,0.031123746999999993,0.034310029000000006,0.037624183,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,i Nuclear,0.0304164,0.0406546,0.0435562,0.0358406,0.0383968418,0.0372204617,0.036852601699999994,0.0377528417,0.039094521699999996,0.0412269116,0.043823191600000005,0.047612491599999994,0.051390521499999994,0.055200751500000006,0.0593503514,0.06247426129999999,0.06535254000000001,0.06954866,0.07221778000000001,0.07300207,0.07328272,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,j Geothermal,0.0,0.0,0.0,0.0,6.14406E-4,0.0045288870000000005,0.008563827,0.012392723,0.015377954,0.015538997,0.01553897,0.015539049999999999,0.015539,0.015539,0.015539,0.01553846,0.015539,0.015539010000000002,0.015539089999999998,0.015539,0.015539,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,k Hydro,0.003636,0.0047952,0.0076968,0.00702261,0.0080772,0.0082674,0.0084576,0.0086478,0.0090258,0.0094037,0.0097816,0.0101596,0.0105375,0.0109155,0.0112934,0.0116714,0.0120493,0.0124272,0.0128052,0.0131831,0.0131831,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,l Wind,0.0,1.15199E-4,1.152E-4,1.02574E-4,6.7478466E-4,0.0060698498600000005,0.01451157726,0.02654666666,0.041258318659999994,0.05838216665999999,0.075038094,0.0894922028,0.10035494739999998,0.107146344,0.119133485,0.114366731,0.10974426600000001,0.11640416599999999,0.12646339099999998,0.140007958,0.14961737499999997,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,m Solar,0.0,7.55997E-5,7.55997E-5,1.494007E-4,6.240971750000001E-4,0.004046590274999999,0.009574407975000001,0.017703473375,0.027952538975,0.03890921517500001,0.04596740360000001,0.04980011410000001,0.05184671160000002,0.051813099099999996,0.051649944100000005,0.0482179878,0.0490275205,0.053177682,0.0577386382,0.0624202101,0.066083839,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,n CHP,0.0,0.0,0.0,0.0,5.52161E-5,1.02949E-4,1.59887E-4,2.26831E-4,2.97614E-4,3.84805E-4,4.80371E-4,5.22001E-4,5.80649E-4,6.51226E-4,7.0417E-4,7.74031E-4,8.39737E-4,9.06803E-4,9.8873E-4,0.00105831,0.00101883,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,a Coal,0.0,0.0,0.0,0.00423969,0.00673523,0.009387073,0.012639162,0.016200601999999998,0.020165462,0.025000898,0.030287814,0.03594294800000001,0.046489277,0.057099540000000004,0.07057186300000001,0.08226140000000004,0.098176316,0.11585399699999997,0.13719771299999997,0.15773630800000002,0.18394277100000003,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,c Gas,0.0559019,0.0568119,0.0896734,0.12688651,0.14683181999999997,0.16681990000000002,0.18904442,0.20998183999999998,0.22994204999999998,0.25220548,0.27369214000000003,0.29357944,0.28965136,0.30028502999999995,0.31076673,0.32315393,0.33566113000000003,0.34764736,0.36155864,0.37211847000000003,0.39153092999999994,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,e Oil,0.0549622,0.0959904,0.110144,0.15556009999999998,0.1750701,0.198922,0.2235861,0.24523244999999996,0.26618843,0.29112784,0.31569853000000003,0.34069937,0.3540007399999999,0.37334668000000004,0.3945926800000001,0.41819436,0.43941652999999997,0.45628872000000004,0.47164782999999993,0.47275643000000006,0.48155335,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,g Biomass,1.28437E-4,1.46781E-4,1.53303E-4,0.0024993178,0.0048481388,0.008213784,0.0131114855,0.0187395385,0.0246054252,0.0316152733,0.03900110448,0.046463321919999995,0.06055332822,0.07333754452999998,0.088772666,0.10382971700000003,0.11962129199999999,0.13440934499999999,0.14988273000000005,0.16200225000000001,0.17567825999999997,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,i Nuclear,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00687728,0.02097707,0.04043497,0.058287069999999996,0.08650176,0.11050486,0.13642536,0.16262805,0.18852824999999998,0.21299633999999998,0.23838673999999996,0.25968962999999995,0.27567319999999995,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,j Geothermal,0.0,0.0,0.0,0.0123549,0.02191847,0.0325547,0.043966349999999994,0.0544764,0.06398072999999999,0.06376223,0.06618319,0.06753575,0.06837506,0.06837506,0.068375,0.06837554,0.06837505,0.0683739,0.06837562999999999,0.06837499999999999,0.0683751,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,k Hydro,0.135365,0.280561,0.279418,0.282905,0.286392,0.289879,0.293366,0.296853,0.303009,0.309166,0.315323,0.321479,0.327636,0.333792,0.339949,0.346105,0.352262,0.358418,0.364575,0.370731,0.370731,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,l Wind,0.0,0.0,0.0,0.0090792768,0.0179732475,0.0304838675,0.047471846500000005,0.06677024349999999,0.08819067049999998,0.10482490369999997,0.12284919999999999,0.13764648000000002,0.1674329,0.19130799399999998,0.21937954199999998,0.24646750199999998,0.27440463600000004,0.30095054,0.31288921099999994,0.321288594,0.329237819,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,m Solar,0.0,0.0,0.0,0.0052038466,0.010990883300000002,0.0194720533,0.0313724103,0.044552911300000005,0.058609117300000006,0.07170992970000001,0.08779320900000001,0.103833215,0.132668544,0.160747583,0.195140724,0.230285695,0.266236708,0.29983047100000004,0.322535348,0.338873941,0.35454943899999997,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,n CHP,0.0,0.0,0.0,0.0,0.00105364,0.00174528,0.00263024,0.00366255,0.00489558,0.0064357,0.00834152,0.00943929,0.0111671,0.0130428,0.0148022,0.0169352,0.0191336,0.0213297,0.0239252,0.0264299,0.025995,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,a Coal,0.0234905,0.0288587,0.0638058,0.1190174,0.1606954,0.19945442000000002,0.24281846,0.28450033,0.32621654,0.36620820000000004,0.4099784600000001,0.45415854,0.52444133,0.5991066700000001,0.6848731899999999,0.7337199100000001,0.8050563800000001,0.88010539,0.9492805999999998,1.01223232,1.0840783999999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,c Gas,0.004762870000000001,0.0806357,0.1065002,0.1963274,0.266177,0.34155687,0.43316671,0.52679606,0.62342744,0.71515742,0.8120830699999999,0.90093399,0.9601959999999999,1.0369519090000001,1.1233277499999998,1.2228095300000001,1.3211616099999999,1.41246874,1.50095572,1.5667626000000001,1.64974973,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,e Oil,0.0240485,0.0371498,0.0619949,0.1293624,0.1723722,0.2239001,0.2778754,0.32177669999999997,0.36419180000000007,0.40055679000000005,0.44330414999999995,0.48113686000000006,0.5209791699999999,0.5488157699999999,0.58369037,0.61810638,0.63477253,0.63515926,0.62167941,0.57876114,0.56813707,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,g Biomass,7.38012E-4,0.00187927,0.00589348,0.01030537,0.014095260000000002,0.018057196999999997,0.022951457,0.027271183000000004,0.030515452999999998,0.033709376,0.037793358,0.04184886,0.049981526,0.058249696,0.06859333000000001,0.07903521000000001,0.09013714199999999,0.10060288299999999,0.110304129,0.11855576999999999,0.12884821000000002,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,i Nuclear,0.0,0.0,0.0,0.0,0.0,6.95663E-4,0.002269192,0.004600901,0.009069481,0.015371680999999998,0.02413195,0.032807339000000005,0.045734658,0.059104306999999995,0.074689146,0.09339928400000001,0.11322570300000001,0.13258346,0.15095362,0.16722331,0.18265815000000002,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,j Geothermal,0.0,0.0,0.0,0.00340536,0.00815314,0.01494944,0.0244051,0.03508482,0.04684323,0.05569932,0.06473444,0.07222233,0.0842913,0.0960075,0.1098045,0.126579,0.14196350000000002,0.15564419999999998,0.16253379999999998,0.16712040000000003,0.17135430000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,k Hydro,0.215035,0.400529,0.415487,0.446642,0.478199,0.509757,0.541315,0.572873,0.628591,0.684309,0.740027,0.795745,0.851463,0.907181,0.962899,1.01862,1.07434,1.13005,1.18577,1.24149,1.24149,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,l Wind,0.0,2.88011E-5,0.00145447,0.005547615200000001,0.0108650671,0.0188222176,0.030962179,0.0461205825,0.06333180949999999,0.08049746229999999,0.1009928714,0.12156514489999999,0.1564793255,0.19462571599999998,0.24243328,0.30539609400000006,0.373460246,0.443474444,0.4985817759999999,0.544373229,0.587275678,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,m Solar,0.0,0.0,1.08005E-5,0.00122384647,0.00314348037,0.0061185473700000005,0.010570583870000004,0.016206071370000002,0.023442983070000003,0.031170627200000002,0.040754538300000004,0.0511927493,0.0683214388,0.08771450130000001,0.11193259409999998,0.14145791299999996,0.16980847999999998,0.19324107399999998,0.20759996299999997,0.215819705,0.223053586,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,n CHP,0.0036131,0.00638438,0.013636203999999999,0.017101759,0.021493341,0.024158056,0.026097196,0.027640486,0.029513974000000002,0.032977139,0.037909500000000006,0.04078838,0.045350733,0.050300356000000004,0.055204935,0.06086438,0.066441781,0.071616738,0.07751385000000001,0.08242904999999999,0.083957213,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,a Coal,0.0,0.00107293,0.00306897,0.01061151,0.01785394,0.026051193,0.036224301,0.048157806000000004,0.062169593,0.078787997,0.09821211299999999,0.122117989,0.154680122,0.19246444299999996,0.235334525,0.280504267,0.335608989,0.4022704910000001,0.4797650899999999,0.5692215300000001,0.6715022700000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,c Gas,0.023454009999999997,0.08627879999999999,0.139214,0.3413285,0.5338514,0.7729778,1.076302,1.428597,1.8231861999999999,2.257476,2.7112941999999998,3.1939656000000003,3.61350476,4.02488762,4.3706633,4.6816163,4.9448685,5.188255,5.397643199999999,5.5833022,5.7276142000000005,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,e Oil,0.00879917,0.0428959,0.0412827,0.12070449999999999,0.1729768,0.24327170000000004,0.31684650000000003,0.3874341,0.45968277999999996,0.5386494,0.62123398,0.72003979,0.80371744,0.8724426599999999,0.9225229200000001,0.9576426,0.9621103000000001,0.94397158,0.8990750200000002,0.81937173,0.7586479199999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,g Biomass,5.77679E-5,7.19828E-6,0.0,0.00132102,0.0036196369999999998,0.0073694,0.013462417999999999,0.021493231999999998,0.030655139999999997,0.04215832200000001,0.056357704,0.074614875,0.10085195499999997,0.130462095,0.163664772,0.20290044200000007,0.24540763799999993,0.29173843600000005,0.34133565000000005,0.3931149399999999,0.44633550000000005,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,i Nuclear,0.0,0.0,0.0,0.00484375,0.00909776,0.018663779999999998,0.03519756,0.05911716,0.08911104,0.12597392000000002,0.16959681,0.21846889,0.27798568,0.33936204000000003,0.40150002,0.4646112,0.53141532,0.5971590999999999,0.6583525,0.7132183000000001,0.7622287999999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,j Geothermal,0.0,0.0,0.0,0.00832162,0.020246010000000002,0.03584885,0.05400247,0.07247524999999999,0.08960979,0.0996178,0.0997189,0.0997255,0.099719,0.099719,0.0997189,0.0997191,0.0997191,0.0997171,0.09971959999999999,0.09971899999999999,0.09971920000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,k Hydro,0.0268079,0.0463089,0.0710383,0.0749133,0.0787882,0.0826631,0.0865381,0.090413,0.102136,0.113859,0.125581,0.137304,0.149027,0.16075,0.172473,0.184196,0.195918,0.207641,0.219364,0.231087,0.231087,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,l Wind,0.0,4.92E-5,1.312E-4,0.0079846868,0.022799575099999997,0.049176216099999996,0.0915960941,0.1507313261,0.22834686710000002,0.3195446633,0.4242220139999999,0.545485033,0.7001803749999999,0.8615065629999998,1.0214121720000002,1.1960669890000002,1.3765418200000001,1.5572111100000001,1.7108954699999999,1.85677271,1.99462331,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,m Solar,0.0,5.012E-4,5.476E-4,0.0043238122,0.010984512200000001,0.0222675772,0.039959330200000004,0.06416087620000001,0.0942647402,0.12715270799999998,0.16280330199999998,0.20363815899999999,0.255741656,0.31325178,0.375640436,0.449563776,0.53138887,0.6184596600000001,0.7018663700000001,0.7839865300000001,0.8696312900000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,n CHP,0.0,0.0,0.0,0.0,0.00238753,0.00489234,0.00859729,0.013535,0.0202534,0.0301808,0.0434874,0.0551391,0.0705284,0.0879531,0.104616,0.123264,0.141288,0.158839,0.179687,0.200572,0.206509,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,a Coal,0.0423734,0.482673,0.721766,0.748941,0.7978244999999999,0.79943198,0.80759515,0.8096531599999999,0.8170823700000001,0.82101291,0.8225687300000001,0.8288202800000001,0.8507786199999999,0.8738790599999999,0.87768946,0.8696956,0.8548351799999998,0.8572573900000001,0.84903495,0.8397313500000001,0.8219135700000002,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,c Gas,0.0345756,0.2130648,0.365475,0.37453028,0.40511473,0.41304752000000006,0.42673322,0.43722456,0.44925497000000003,0.45645468,0.45913337000000004,0.46112468,0.42030804000000005,0.3808358599999999,0.350660991,0.33674390200000004,0.3147516020000001,0.28024114299999997,0.256532168,0.245979737,0.246442624,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,e Oil,0.0678875,0.0757497,0.0538667,0.04230316,0.043648316,0.044010823000000004,0.046362846,0.04884354,0.052920337,0.056131244,0.058447772999999995,0.061138003,0.062764778,0.062483121,0.063883363,0.068795215,0.069783719,0.066745362,0.066741358,0.06696049800000001,0.068586359,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,g Biomass,0.0,1.62005E-4,0.0012456,0.001380582,0.002023323,0.00246674,0.0037726928000000005,0.005525069300000001,0.0077812903,0.010177288000000001,0.012486459699999999,0.0147058385,0.017331796400000002,0.0195941129,0.022465754300000005,0.026498411399999998,0.029789014800000006,0.032128873,0.035552319000000006,0.039401655,0.043209650999999995,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,i Nuclear,0.1904,0.528419,0.534944,0.5665015,0.5997387,0.6034279,0.6165882,0.630247,0.6471904,0.6582722999999999,0.6640786,0.6721783000000001,0.6916525,0.7109945,0.7159612000000001,0.7012807000000001,0.6952227,0.6956093999999999,0.6831873000000002,0.6639995000000001,0.6377511,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,k Hydro,0.0228996,0.0132228,0.0139644,0.0151472,0.0170392,0.0189311,0.0208231,0.0227151,0.0258792,0.0290433,0.0322074,0.0353714,0.0385355,0.0416996,0.0448637,0.0480278,0.0511919,0.054356,0.0575201,0.0606842,0.0606842,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,l Wind,0.0,4.68013E-4,0.00294119,0.0039335998200000005,0.005578722920000001,0.007059974220000001,0.009940475519999999,0.013944594420000001,0.01670473172,0.0220064257,0.026509487499999998,0.030917159599999997,0.0344668886,0.036182841300000004,0.03721019960000001,0.040086379799999995,0.042615124899999995,0.0437335735,0.0465578992,0.051712221600000004,0.057145002,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,m Solar,3.60012E-6,5.40015E-5,0.00277919,0.0034897063500000003,0.004666001250000001,0.006047440150000001,0.009186688850000001,0.014291277049999999,0.019343035850000002,0.0281423991,0.0370411778,0.045930824,0.054442943300000005,0.060067993199999996,0.0648759592,0.0725614786,0.07903343469999999,0.08249209839999999,0.0889487446,0.0997217915,0.11146359139999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,n CHP,0.0211961,0.082367423,0.09065316600000001,0.09879469,0.08700462599999999,0.09442122,0.0965737,0.09955947,0.09991775899999998,0.101250073,0.103036619,0.105808103,0.10893583400000001,0.11148393000000001,0.11243647799999999,0.113481507,0.11354376500000002,0.113339555,0.11451583000000001,0.116095204,0.11374175100000002,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,a Coal,0.104596,0.279376,0.448595,0.66678,0.8721070000000001,1.0728157999999999,1.3040555999999999,1.5513968,1.8172325999999999,2.0898407999999997,2.3656572,2.6617522000000005,3.0659826999999993,3.4716007000000006,3.8541075,4.0828052,4.321882799999998,4.558097000000001,4.7367031000000015,4.860027900000001,4.971718099999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,c Gas,0.0896219,0.8081020000000001,1.060623,1.443689,1.851751,2.303084,2.8396160000000004,3.423165,4.04913,4.679492999999999,5.2920677000000005,5.905238600000001,6.263406400000001,6.6129926999999995,6.8381403,7.104671499999999,7.2369903,7.2936517,7.2875035,7.229185800000001,7.174751500000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,e Oil,0.193341,0.11442,0.101648,0.11025829999999999,0.13520959,0.17343043,0.21560746,0.25764188,0.30284875000000006,0.34621923,0.38852764,0.43915328000000003,0.49657925,0.53152564,0.5568479000000001,0.5854223199999999,0.58530812,0.5713841700000001,0.54449728,0.49913681,0.46747418999999996,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,g Biomass,0.00220873,0.00903599,0.0205776,0.026811777000000002,0.040155235,0.058178268,0.08445835600000001,0.11203334499999999,0.136068011,0.162007636,0.190255123,0.22208436399999998,0.271296872,0.3187372763,0.36770348000000014,0.41809458000000005,0.46156963000000006,0.50101231,0.53505902,0.5614137899999999,0.58665957,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,i Nuclear,0.0,0.0,0.0,0.00961864,0.01915876,0.03705974,0.06693563,0.10925201000000001,0.1628957,0.22550287999999996,0.29516296,0.36743002999999996,0.46033810999999997,0.55081707,0.63897764,0.7308613100000001,0.8186091,0.8973853,0.9597187,1.0021163000000002,1.033969,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,j Geothermal,0.0196812,0.0356543,0.0357516,0.0604215,0.08506820000000001,0.11272570000000001,0.1441726,0.1755394,0.18044900000000003,0.195907,0.2107204,0.22420349999999997,0.2336729,0.233673,0.23367300000000005,0.233673,0.2336727,0.2336714,0.23367400000000002,0.23367310000000002,0.23367310000000002,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,k Hydro,0.141032,0.19957,0.254132,0.26494,0.275747,0.286555,0.297363,0.30817,0.338521,0.368871,0.399221,0.429571,0.459921,0.490271,0.520621,0.550971,0.581321,0.611671,0.642021,0.672371,0.672371,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,l Wind,0.0,8.32999E-5,2.845E-4,0.0076514521,0.0197697391,0.0382502331,0.06561366810000001,0.10095052510000001,0.14408581909999998,0.186355322,0.228302945,0.270421191,0.326347626,0.377667569,0.423569145,0.48112156,0.53426629,0.5838974,0.61065027,0.6296451100000001,0.65075502,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,m Solar,0.0,2.509E-4,3.334E-4,0.004330148,0.011914164000000001,0.024785245999999997,0.046075190999999995,0.07698950999999998,0.119488492,0.170307768,0.22917136499999996,0.29842944299999996,0.3977574579999999,0.5023013389999998,0.608286197,0.737704351,0.863845482,0.9849785600000001,1.0735701400000002,1.1429674900000002,1.21621424,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,n CHP,0.0,0.00126484,0.00152089,0.00225978,0.003569596,0.00489803,0.00647583,0.008316810000000001,0.01051037,0.013370650000000001,0.01686121,0.01928931,0.02257841,0.026260659999999998,0.0298107,0.03407392,0.03838707,0.04274274,0.048128170000000005,0.053393209999999997,0.05438386,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,a Coal,0.07806,0.333201,0.340766,0.441574,0.569848,0.6325798300000001,0.6837014499999999,0.72283322,0.7534594800000001,0.77355016,0.7854890300000001,0.7939826,0.8448804000000002,0.91049246,0.9515404000000003,0.9227194099999996,0.8795665399999999,0.8644858400000001,0.8478912700000001,0.8305700199999999,0.8146554500000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,c Gas,0.0037260699999999997,0.13024360000000001,0.2046279,0.27063432,0.3693512,0.42414646,0.47080306000000005,0.50789321,0.5365799200000001,0.55505943,0.56503246,0.56965587,0.5042504059999999,0.43378776099999994,0.389006169,0.375867926,0.36806797300000005,0.35016355,0.340029715,0.337841018,0.34266814000000007,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,e Oil,0.0780744,0.0395547,0.0298225,0.028442079999999998,0.03318513,0.035430949999999996,0.039174549999999995,0.04302987,0.04729399,0.050763420000000004,0.053414039999999996,0.055819964,0.062515131,0.06676685000000002,0.06867699599999999,0.080426443,0.089441612,0.090722932,0.094094423,0.09582744799999998,0.098298099,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,g Biomass,0.0,0.0118311,0.0131472,0.00923329,0.013755199999999999,0.015428735,0.018757298000000002,0.021499227999999995,0.02287491,0.024324047,0.025653560000000002,0.026642801,0.030723229999999997,0.035293052,0.038797413999999995,0.04329595300000001,0.04665993100000001,0.048263427,0.04986248300000001,0.051038568000000006,0.051859547000000006,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,i Nuclear,0.118319,0.143918,0.149865,0.14052233,0.13626318,0.12955818,0.12053280999999999,0.10919801,0.09629391,0.0832358,0.07165575,0.06238418999999999,0.059965769999999995,0.061283710000000005,0.056433559999999994,0.06401108,0.07161599,0.07568602,0.07809448000000001,0.07898386,0.0791146,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,j Geothermal,1.08002E-5,0.0,0.0,0.0017586,0.0034609999999999997,0.0034610100000000005,0.0034609989999999993,0.0034609989999999998,0.003461003,0.003460985,0.0034609999999999997,0.003460999,0.003461002,0.003460995,0.0034609980000000003,0.00346099,0.0034594428,0.003460897,0.003461006,0.003458878,0.0034609969999999995,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,k Hydro,0.0229716,0.0143496,0.0150984,0.0154475,0.0157965,0.0161456,0.0164946,0.0168437,0.0178996,0.0189556,0.0200116,0.0210676,0.0221236,0.0231796,0.0242355,0.0252915,0.0263475,0.0274035,0.0284595,0.0295155,0.0295155,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,l Wind,0.0,3.27642E-4,0.00351361,0.0061802559,0.0107213778,0.0145577851,0.019153071700000003,0.024305119400000002,0.026599752600000002,0.0296386894,0.0302913619,0.0310119608,0.035761353200000005,0.04151886150000001,0.04531737930000001,0.05381948260000001,0.0630931992,0.06870750599999999,0.06930568299999999,0.068099789,0.06816885399999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,m Solar,0.0,3.60046E-6,8.28002E-5,6.6945463E-4,0.00214143643,0.00403859833,0.007075471629999999,0.01135240783,0.01670561633,0.0220764991,0.026473203900000002,0.0300441567,0.0386829598,0.0490323666,0.05727894470000001,0.0730126396,0.0912161273,0.103879166,0.11015957589999999,0.1129583062,0.11681921330000002,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,n CHP,0.017070333,0.13125279,0.12124186,0.07823369000000001,0.0794752103,0.08825469640000001,0.0927720894,0.09808824,0.10408426,0.110584846,0.117668823,0.124698125,0.130857259,0.135812545,0.14080040700000002,0.143135171,0.14425454299999999,0.14433422399999998,0.14412793000000002,0.143922752,0.145106436,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,a Coal,6.02909,7.68047,7.10527,8.2163,8.785131,9.1680108,9.5401927,9.872032899999999,10.427285799999998,10.8587296,11.333359200000002,11.7901976,12.743364000000001,13.503645299999999,14.2513083,14.296866,14.718734100000002,15.134434599999997,15.516162999999999,15.814375000000002,15.924413000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,c Gas,1.0262950000000002,2.569423,3.38456,3.8804227000000004,4.2739834000000005,4.647928,5.0305816,5.3972954,5.8819894999999995,6.241111000000001,6.5666841,6.811254599999999,6.233575399999999,6.010611800000001,5.8047796,5.8679172999999984,5.7077519,5.3944418999999995,5.2628298000000004,5.2247199,5.3808918,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,e Oil,0.450767,0.454965,0.144545,0.1111792,0.1080439,0.12157842999999999,0.13524297000000002,0.15205765,0.18221241,0.20151719,0.22401680000000002,0.24204438999999997,0.27038366999999996,0.27970554,0.30697268,0.35446768,0.36411856000000004,0.37266909,0.38926090999999996,0.39638979,0.41366279000000006,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,g Biomass,0.0791349,0.110634,0.115436,0.0636048,0.0712617,0.09224373999999999,0.1230015,0.15694108,0.19803751,0.23536062000000002,0.27803703999999996,0.31530082,0.3817120400000001,0.42769585000000004,0.4973206699999999,0.58606033,0.64457244,0.7043113,0.7743761899999997,0.8424119999999999,0.9087351999999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,i Nuclear,2.20139,2.91859,3.0201,3.213486,3.302014,3.348033,3.3869320000000003,3.416899,3.5070240000000004,3.5551980000000003,3.6257230000000003,3.705447,3.9595130000000003,4.165249,4.340083,4.450057999999999,4.6365490000000005,4.7866670000000004,4.9073009999999995,4.973687000000001,4.969251000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,j Geothermal,0.0576456,0.0604004,0.0632762,0.1168401,0.161117,0.2172017,0.29106679999999996,0.37651730000000005,0.4312638,0.4887595,0.5508637000000001,0.5901532,0.6421562000000001,0.6597114,0.6762694,0.7309833,0.7532251,0.7811117,0.7947565999999999,0.7947580000000001,0.794759,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,k Hydro,0.983347,0.981803,0.945313,0.954109,0.96406,0.974012,0.983963,0.993915,0.998283,1.00265,1.00702,1.01139,1.01576,1.02013,1.02449,1.02886,1.03323,1.0376,1.04197,1.04634,1.04634,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,l Wind,0.0110381,0.0643712,0.342527,0.457575404,0.542166825,0.652710161,0.8156797410000001,1.033369951,1.026083431,1.262010087,1.553722176,1.80266717,2.1556264499999997,2.36778762,2.59090444,3.0240351299999992,3.2888749299999995,3.57622211,3.8059674099999996,4.166782460000001,4.496723140000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,m Solar,0.0023977004,0.00403198,0.01416215,0.02687545,0.038714202999999996,0.056235675999999984,0.084466541,0.125695389,0.177791041,0.2400768,0.3145121899999999,0.3847304489999999,0.485156925,0.556218959,0.635723887,0.7575025630000001,0.8334744650000001,0.9079055729999999,0.9659107419999999,1.051773,1.13119237,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,n CHP,0.6885946,0.5219592,0.5383006,0.48521410000000004,0.5123244899999999,0.56812869,0.60021831,0.6267989300000001,0.63433577,0.64575681,0.6629998,0.6731237999999999,0.691024,0.7038461,0.7226507999999999,0.7415246,0.7610761000000001,0.781753,0.8104475999999999,0.8364293,0.8519121,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,a Coal,0.00125084,0.00237117,0.00341519,0.0078375,0.013275219999999999,0.020420122000000002,0.03001186,0.042918177999999994,0.062917345,0.09229508099999999,0.133436258,0.190320885,0.26646014999999995,0.362712908,0.48643545,0.6368790660000001,0.8368263780000001,1.052877528,1.31514016,1.6123538800000001,1.9686034000000006,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,c Gas,0.0,1.850979E-4,2.185844E-4,0.0029570338000000002,0.0065523472,0.0121274797,0.0204463035,0.0328209505,0.0533571981,0.0849069903,0.13028869189999998,0.1932956764,0.2732588862,0.37206363331000003,0.49398158000000003,0.6402405,0.8259379600000001,1.0155021199999998,1.23954208,1.4799928000000002,1.74969331,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,e Oil,0.00813914,0.0265001,0.0368684,0.0656872,0.09903238,0.14479937,0.20275389,0.27848844,0.39138086,0.54009946,0.72406184,0.9493196199999999,1.1899766,1.45018459,1.730342,1.9830276,2.0807015,2.3515031000000004,2.4566613,2.495923,2.5156197000000002,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,g Biomass,7.23594E-4,0.00113761,0.00113761,0.00288726,0.0061729160000000005,0.011666378,0.020584311,0.034292306,0.05626493400000001,0.08874153000000001,0.13371482,0.19397916200000004,0.2716213329999999,0.3647280783000001,0.4743804600000001,0.5998165179999999,0.7545048620000001,0.8967082199999998,1.06090409,1.22745371,1.40454742,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,i Nuclear,0.0,0.0,0.0,8.87704E-4,0.0018407649999999998,0.010673944999999999,0.030526735,0.065395534,0.120806933,0.20206433299999998,0.313353333,0.449031333,0.6066210329999999,0.778468021,0.969755921,1.176239108,1.41296505,1.6276918,1.8440689,2.0429341,2.2343138999999996,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,j Geothermal,0.0011736,0.00361079,0.0052956,0.0145074,0.02701552,0.04301403,0.060759129999999995,0.07361701,0.07361709,0.07361712,0.07361697,0.073617,0.07361701000000001,0.07361703,0.07361701000000001,0.07361697,0.07361698,0.07361699000000001,0.07361699,0.07361704,0.07397614999999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,k Hydro,0.0219597,0.0353919,0.0539216,0.0712437,0.0885658,0.105888,0.12321,0.140532,0.174952,0.209372,0.243792,0.278212,0.312632,0.347051,0.381471,0.415891,0.450311,0.484731,0.519151,0.553571,0.553571,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,l Wind,0.0,1.11E-5,2.327E-4,0.0059823643,0.0189573167,0.0444874822,0.08634060219999999,0.14650856720000005,0.23737145120000006,0.35950935489999997,0.5162822425,0.7122062170000001,0.9423041670000001,1.1917540519999998,1.462866258,1.74388509,2.0285113500000005,2.3089674000000002,2.59726284,2.87320062,3.1570063699999995,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,m Solar,0.0,3.59999E-6,7.2E-6,0.0058976346,0.019307202199999998,0.04607637869999999,0.08493013230000002,0.11805804430000003,0.16193117930000003,0.22339934969999997,0.3075282161,0.4173648436,0.55802623,0.7386059979999999,0.955707843,1.201739018,1.5024031839999998,1.74713841,2.01143716,2.25646255,2.5044115000000002,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,n CHP,0.0,0.0,0.0,0.0,9.30988E-4,0.00208406,0.00433352,0.00890939,0.0165522,0.0290871,0.0479551,0.066975,0.0936208,0.126905,0.161059,0.204662,0.271465,0.291178,0.344058,0.391932,0.389979,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,a Coal,0.00796861,0.0473972,0.0399414,0.04538135,0.059852119999999995,0.07725809,0.09699730000000001,0.11784272999999999,0.13911682999999997,0.16053822,0.18197268000000003,0.20368466999999998,0.22958702999999997,0.26166941,0.29739193999999997,0.3331929799999999,0.3755162899999999,0.40111265000000007,0.43708531,0.47670192,0.520954,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,c Gas,0.1358135,0.482448,0.6361717,0.6712855999999999,0.8613440000000001,1.117383,1.4235203,1.7622995999999997,2.1094961,2.4512535,2.7738995,3.0701364,3.2970183099999995,3.4667756700000005,3.5587971999999994,3.6183648000000006,3.6881678,3.5782708,3.5334475,3.4951651999999997,3.4682212000000003,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,e Oil,0.11773,0.126766,0.200053,0.1973947,0.25435657,0.3193886,0.37263081,0.40668885,0.43469397,0.45342745000000007,0.46822127,0.4860843899999999,0.5107168,0.5271863099999999,0.53180746,0.50924883,0.41408891999999997,0.42860168,0.39718496999999997,0.36474181,0.34970852999999996,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,g Biomass,0.0,0.0,0.0,5.56396E-4,0.002556284,0.0058213150000000005,0.01076276,0.01704561,0.023786896000000002,0.030924067000000003,0.03840854099999999,0.04609305100000001,0.056300574000000006,0.069327791,0.08330604999999999,0.09911828200000003,0.12004254999999998,0.13217238299999998,0.15210853999999996,0.17197047999999998,0.19247762999999998,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,i Nuclear,0.0,0.0,0.0,4.0566E-4,0.00114874,0.00802147,0.022375259,0.044295549000000004,0.069653047,0.097288336,0.125988724,0.15272501300000002,0.18098870099999997,0.212158288,0.24524006599999998,0.2797466,0.32138242,0.34466,0.3660608,0.379698,0.3893904,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,j Geothermal,0.0,0.0,0.0,0.00369739,0.01423748,0.028699389999999998,0.04432064,0.058942020000000005,0.07070804,0.07266697999999999,0.072667,0.072667,0.07266700000000001,0.072667,0.07266702,0.07266704,0.07266697,0.07266703000000001,0.07266696,0.07266704,0.07267346999999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,k Hydro,0.0408238,0.0516204,0.0603183,0.0632959,0.0662735,0.0692511,0.0722286,0.0752062,0.0811228,0.0870394,0.092956,0.0988726,0.104789,0.110706,0.116622,0.122539,0.128456,0.134372,0.140289,0.146205,0.146205,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,l Wind,0.0,0.0028801,0.0082198,0.012766904199999998,0.027342624200000002,0.053676184200000004,0.0923914992,0.1422701592,0.1933404832,0.25479479,0.309940457,0.355771194,0.402049136,0.4553106819999999,0.514066354,0.5811148329999999,0.6818709659999999,0.7373345189999999,0.810502012,0.8711445259999999,0.9200902299999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,m Solar,0.0,0.0,0.0,0.00304727742,0.013050196219999997,0.03269318372,0.06324813672,0.10494341172000002,0.15749188572,0.21806042930000002,0.28076940050000004,0.34275733099999994,0.41395319100000005,0.496626272,0.5887253960000001,0.6907140119999999,0.8306074590000001,0.910398343,0.975870671,1.0008040020000002,1.0100910940000003,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,n CHP,0.0,0.0,0.0,0.0,2.25146E-4,4.33591E-4,7.23625E-4,0.00108814,0.00154151,0.00215931,0.00293071,0.00345007,0.00416075,0.00495007,0.00569143,0.00660883,0.00776846,0.00852476,0.0098442,0.0112832,0.0118252,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,a Coal,0.0215065,0.0200021,0.0180461,0.0734835,0.1241876,0.18509272,0.26392842,0.36188319999999996,0.48995421,0.6615200199999999,0.8836487,1.16265482,1.51378469,1.91898333,2.37605456,2.8567266499999997,3.4807407400000003,3.95395079,4.5229553000000005,5.0930646,5.5798382,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,c Gas,0.0,0.004201269,0.00619505,0.03313005,0.05941501,0.09685334,0.15071491,0.22442862000000002,0.32674691,0.46754709999999994,0.649923867,0.873237496,1.117513742,1.389297193,1.6716724,1.9756473,2.3308606,2.5528087,2.8089496000000005,3.0222297,3.1508367,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,e Oil,0.00267763,0.00666428,0.00933526,0.07362239000000001,0.1235763,0.19032746,0.26867663999999997,0.352702346,0.458595042,0.588228126,0.735445449,0.8976070560000001,1.0505999774,1.1875520804,1.3048787000000002,1.35563373,1.17286162,1.2370945500000001,1.12350277,0.96191235,0.8795636000000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,g Biomass,0.0,0.0,0.0,2.49038E-4,6.73229E-4,0.001446406,0.0028237229999999998,0.0049768979999999996,0.00822272,0.013181002,0.020367444000000002,0.030233742000000004,0.04392040199999999,0.060784484999999985,0.0801430426,0.1042075087,0.1362289658,0.158191366,0.191311439,0.22480483899999998,0.25879185,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,i Nuclear,0.0,0.0,0.0,1.8157E-4,3.42525E-4,0.001836065,0.005406275,0.011847745,0.021543744,0.036147703999999996,0.057063994,0.083379773,0.11614564299999999,0.153464303,0.195317461,0.244032143,0.30510503,0.35201953,0.40719821,0.46135053,0.5075714,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,j Geothermal,0.0,0.0,0.0,0.00173777,0.0046165500000000005,0.00946926,0.01648861,0.025331680000000002,0.036151670000000004,0.04751287999999999,0.05935084,0.07015759,0.07072007,0.07071997,0.07072002,0.07072006,0.07072003,0.07072005,0.07072003,0.07072001,0.07071996,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,k Hydro,0.0549063,0.1228,0.143803,0.152226,0.160649,0.169072,0.177496,0.185919,0.202656,0.219393,0.236131,0.252868,0.269606,0.286343,0.30308,0.319818,0.336555,0.353293,0.37003,0.386767,0.386767,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,l Wind,0.0,2.4E-6,3.54999E-5,7.7447847E-4,0.00213021709,0.00482621455,0.00966520395,0.017386219950000004,0.029646013550000003,0.048252512479999995,0.07532640186000002,0.11234356640000001,0.16230987599999996,0.222959718,0.29296628950000003,0.37588072,0.48256214399999997,0.5550431259999998,0.642435024,0.7264935819999999,0.789634264,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,m Solar,0.0,0.0,0.0,0.0013208151299999998,0.0038988730599999995,0.00900209166,0.01767460036,0.03133937736,0.05309255926,0.08672984212999998,0.1369024202,0.2077183446,0.3066672669,0.4303925518999999,0.5775773179999999,0.7545958460000002,0.9849120339999999,1.152325171,1.3507680700000002,1.5443098280000005,1.7247665500000005,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,n CHP,0.0,0.0,0.0,0.0,4.23934E-4,8.73377E-4,0.0015168,0.00240551,0.00369727,0.00569548,0.00850961,0.0109513,0.0141628,0.0178321,0.0214044,0.0254816,0.0297552,0.033065,0.0371722,0.0406681,0.0423236,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,a Coal,0.00130875,0.00250043,0.003599,0.00580396,0.00936267,0.01613196,0.026577059999999996,0.041709292,0.062857736,0.092591905,0.133464253,0.189475901,0.263434901,0.36049906900000006,0.484964044,0.6448423860000001,0.8775408580000001,1.085685399,1.3797495999999996,1.72528044,2.10446058,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,c Gas,0.02665806,0.0645019,0.079883972,0.115793684,0.17922160099999998,0.316975886,0.542476993,0.8843202320000001,1.3628905519999999,2.0129280850000004,2.849246839,3.888457874,5.0596366319,6.3870925307,7.7941149,9.3041561,11.1347243,12.339878499999998,13.825869099999998,15.1581929,16.1606473,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,e Oil,0.0179558,0.0344399,0.0455212,0.0756361,0.12286301000000001,0.2196505,0.34822816,0.5027748400000001,0.6898913400000001,0.91449822,1.17403529,1.48173873,1.81145866,2.15842349,2.5012435,2.7321337000000003,2.5663846,2.8677466,2.8438977,2.6944515,2.6591253999999998,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,g Biomass,1.692E-4,6.11997E-4,8.28003E-4,0.001459749,0.003388949,0.007439231,0.0141740235,0.0244057601,0.038355286399999994,0.0579023804,0.0847003557,0.12087337096,0.1682009138,0.22889265992000002,0.30046467200000004,0.388706723,0.513471367,0.6063106500000001,0.7469267800000001,0.8964940399999999,1.05488749,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,i Nuclear,0.0,0.0,0.0,1.80289E-4,4.3632200000000006E-4,0.004016352,0.013755612,0.033222002,0.062864501,0.106963691,0.169697271,0.24976796099999998,0.34646233899999995,0.461504319,0.595354999,0.7527778900000001,0.95904854,1.12403484,1.3282458,1.5349558,1.7294434,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,j Geothermal,0.0,0.0,0.0,0.00176604,0.00652002,0.01830399,0.036773639999999996,0.06093948,0.08913383,0.11855299,0.144519,0.1445189,0.1445189,0.14451889999999998,0.1445191,0.144519,0.14451899,0.144519,0.14451893,0.14451903,0.14413189999999998,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,k Hydro,0.0814254,0.10931,0.113792,0.139788,0.165784,0.191781,0.217777,0.243773,0.295429,0.347085,0.398742,0.450398,0.502054,0.55371,0.605366,0.657022,0.708678,0.760334,0.81199,0.863646,0.863646,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,l Wind,0.0,1.17E-5,1.769E-4,0.0015366967700000001,0.00552619097,0.017244231670000002,0.040642076869999995,0.08101481987,0.14436151686999998,0.23941152309999997,0.3730295449,0.5521353242000001,0.779230359,1.058975896,1.387765919,1.773716546,2.2881411199999997,2.648298599999999,3.1149662299999994,3.57015684,3.9609988400000002,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,m Solar,0.0,1.44E-5,1.08E-5,0.00203356582,0.00668321165,0.01856847225,0.04152046585000001,0.08136568485,0.14645194585000004,0.24925276803000002,0.4038016431999999,0.6271477326,0.9388699390000002,1.34902085,1.8613530990000002,2.4843851510000006,3.2458614800000003,3.76475881,4.302167420000001,4.755572570000002,5.148678880000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,n CHP,0.0,0.0,0.0,0.0,0.00103388,0.00228621,0.00443124,0.00780298,0.013154,0.0218243,0.0347667,0.0476511,0.0658654,0.0883081,0.113405,0.144173,0.181936,0.215751,0.259474,0.304717,0.331109,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,a Coal,0.0016128,0.00567,0.00806399,0.01155799,0.01300255,0.017062539,0.021612997000000002,0.026247252,0.030566648,0.034686393999999995,0.03855944199999999,0.042563853,0.048640357999999995,0.054086173999999994,0.061338854999999984,0.06631557800000003,0.075741525,0.08033107400000002,0.087094696,0.093792722,0.102208916,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,c Gas,0.0715427,0.1991953,0.2245892,0.26642499999999997,0.28243240000000003,0.3494726,0.4238961,0.4996651999999999,0.5670113,0.6280049999999999,0.6810031000000001,0.7313094000000001,0.75009897,0.78257649,0.7810566999999999,0.7783337199999999,0.7740742400000001,0.7450015499999999,0.73455564,0.72409443,0.71766708,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,e Oil,0.0178164,0.0206892,0.0597456,0.06609016000000001,0.06373424999999999,0.08163866,0.0925742,0.09902595,0.10266976,0.10413047,0.10386282,0.10568833,0.11053589999999999,0.10902436499999998,0.11020326700000001,0.10403214200000001,0.082856698,0.08406599199999998,0.076458907,0.06769177800000001,0.06387156699999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,g Biomass,3.85201E-4,0.0046368,0.007902,0.00745499,0.00737158,0.009660776999999999,0.011973918,0.014235668999999998,0.015829910000000003,0.017312913,0.018719071,0.020228247999999994,0.023408395,0.025599863999999996,0.028788124999999994,0.031556488,0.035371454000000004,0.036782387,0.03949298499999999,0.041414139,0.043869637,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,i Nuclear,0.0262116,0.0247428,0.0258156,0.026559810000000003,0.026568790000000002,0.028460330000000002,0.03076102,0.03317009,0.03557887,0.0382049,0.04108417,0.04419631,0.049542659999999995,0.05409177,0.05922301,0.06405706000000001,0.07143477,0.07423268999999999,0.07723125,0.07894195999999999,0.0804039,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,j Geothermal,0.0,0.0,0.0,0.00210656,0.0038387300000000003,0.01010246,0.018422639999999997,0.02778074,0.03701732,0.043981320000000004,0.050676299999999994,0.05301542000000001,0.05671184,0.05800025,0.06255778000000001,0.06833004,0.07631626999999999,0.0801757,0.08343629999999999,0.0869709,0.0882053,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,k Hydro,0.0643536,0.122414,0.120913,0.123868,0.126823,0.129777,0.132732,0.135687,0.140903,0.14612,0.151337,0.156554,0.16177,0.166987,0.172204,0.177421,0.182637,0.187854,0.193071,0.198288,0.198288,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,l Wind,0.0,2.7E-4,9.0E-5,0.00200883309,0.0037691103400000004,0.01114146304,0.02273758804,0.038110071540000005,0.055758268439999994,0.07355635415,0.09218296840000002,0.1067254497,0.12773997270000004,0.14224676420000004,0.16562502230000004,0.19350913650000004,0.23119503000000002,0.255297343,0.28090723300000003,0.30744113300000003,0.326189421,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,m Solar,0.0,0.0,0.0,7.289945800000001E-4,0.0014331887999999998,0.0039975356,0.0078813248,0.012942114899999997,0.018824563599999997,0.02480628052,0.0311948598,0.0365008692,0.04416895199999999,0.04996855119999999,0.05879961519999999,0.06908399369999998,0.0825199492,0.09045499700000002,0.09466967300000002,0.09380559570000001,0.08992770299999998,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,n CHP,0.0,0.0,0.0,0.0,1.06111E-4,1.81037E-4,2.72899E-4,3.75837E-4,4.91992E-4,6.38955E-4,8.09582E-4,8.94332E-4,0.00101758,0.00114943,0.00126638,0.00141711,0.00161223,0.00171233,0.00189233,0.00206692,0.00207129,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,a Coal,0.439003,0.672518,0.655517,0.743751,0.8346399999999999,0.90221518,0.9683604800000001,1.02257698,1.0895016999999998,1.13751814,1.18297691,1.2332236599999997,1.30116223,1.37199878,1.4319748300000008,1.4307113000000005,1.4420797499999998,1.4361228999999995,1.4190303000000004,1.3899521000000001,1.3465139000000002,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,c Gas,0.0721299,0.1183401,0.1620722,0.15442356999999998,0.17194269000000004,0.19169809,0.21310338,0.23491063000000004,0.26407371,0.28759735000000003,0.30947868,0.32944076,0.32942718,0.3293402,0.32907289,0.33678202,0.33711805,0.3214499,0.313270867,0.30580639900000006,0.305507535,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,e Oil,0.012816,0.0102421,0.0113868,0.00741026,0.008518457,0.009952944,0.011652701000000001,0.0131066,0.015771113,0.016640542,0.017410131,0.018080078,0.018484239,0.018316323000000002,0.019076986,0.019762347,0.015561772599999999,0.016498455500000002,0.0151668508,0.013732227,0.013220945599999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,g Biomass,0.0,0.00150481,0.0014688,0.0013501326999999998,0.0022765266,0.0034671963,0.0054771564,0.0078627344,0.0110664101,0.0136768888,0.01640245304,0.01901682508,0.02222257248,0.025197074460000003,0.028616649,0.033502678,0.037337028999999994,0.040085467,0.04372863700000001,0.046621301000000004,0.049997301,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,i Nuclear,0.0,0.0,0.0,0.0,0.0,5.96369E-4,0.001927167,0.003948417,0.008642986,0.014706674999999999,0.021963734,0.028740132999999998,0.035631842,0.041833590000000004,0.048667508,0.057213106,0.065384604,0.07125944,0.07662592000000001,0.08075829,0.08277568,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,j Geothermal,0.00746642,0.0111493,0.0209844,0.02850728,0.03716974,0.047316,0.060151510000000005,0.07425956,0.07263379,0.08288726,0.0912704,0.09763290000000001,0.10266109999999999,0.10574230000000001,0.1067551,0.114726,0.1224897,0.1262065,0.12981589999999998,0.1327473,0.1348928,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,k Hydro,0.134392,0.138895,0.133859,0.139576,0.145294,0.151011,0.156728,0.162446,0.169607,0.176768,0.18393,0.191091,0.198253,0.205414,0.212575,0.219737,0.226898,0.23406,0.241221,0.248382,0.248382,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,l Wind,0.0,0.00539644,0.0231552,0.031683196899999995,0.043057410899999995,0.0583355104,0.0807209319,0.1089532179,0.12569038989999998,0.15776857199999997,0.188464636,0.21651557749999997,0.24342054800000001,0.264356934,0.283323075,0.32154836,0.35983781299999995,0.38345456199999994,0.4067399249999999,0.426930013,0.445881519,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,m Solar,0.0,2.8440203000000005E-4,9.972009999999999E-4,0.00343229837,0.007764391870000001,0.014432716370000001,0.024704695069999998,0.03832956307,0.05706497097000001,0.07596466660000002,0.09483925810000002,0.11326227760000003,0.13243229090000003,0.14916739389999997,0.16568597599999996,0.19244844199999991,0.2194510759999999,0.23784117099999993,0.25534624399999994,0.26945420749999993,0.27912402839999995,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,n CHP,0.005325666,0.01770448,0.02102566,0.02479675,0.026727053,0.02990834,0.031261474000000004,0.032231256,0.032477933,0.032904079999999995,0.033556209999999996,0.03372647,0.034041629999999996,0.03425492,0.03395884,0.033892660000000005,0.03412387,0.03365804,0.033890540000000004,0.03383086,0.03324998,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,a Coal,0.0171142,0.0386711,0.0408167,0.0741503,0.10828090000000001,0.16644890999999998,0.22630199,0.28548018999999997,0.34422353,0.40351017,0.46233091000000004,0.5211286499999999,0.5969883899999999,0.6743212900000002,0.7686120200000001,0.8439811299999999,0.9418144500000001,0.9815200499999998,1.0398667999999998,1.09328033,1.1391358699999998,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,c Gas,0.00117362,0.067723,0.1313097,0.24908451000000004,0.36966179,0.58752275,0.80903547,1.02358802,1.22735377,1.42136326,1.6017945,1.7690176999999998,1.84205667,1.90617415,1.8990243999999998,1.9092494299999998,1.95134511,1.92015554,1.9347164600000002,1.940152,1.9342966999999998,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,e Oil,0.017773,0.0420406,0.0578339,0.1174483,0.1694398,0.27955620000000003,0.3683216,0.441082,0.50898411,0.56614594,0.60823619,0.64400755,0.67467343,0.6787879899999999,0.67413304,0.6376237899999999,0.51622718,0.5029792599999999,0.43216787,0.35609055000000006,0.31377574,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,g Biomass,0.0138923,0.0489274,0.113382,0.1451885,0.17144130000000002,0.22081979999999998,0.26439292000000003,0.30198878000000007,0.32907850000000005,0.3510939199999999,0.36928283,0.3836904,0.40866252000000003,0.42915418999999994,0.44429744,0.45018228,0.45595762999999995,0.42956359999999993,0.40706126000000004,0.37786651999999993,0.35122883,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,i Nuclear,0.00805313,0.0354779,0.0522827,0.048710753,0.048972363,0.051642112999999996,0.054813063,0.05829932300000001,0.062459302,0.068034382,0.07538067200000001,0.08367861200000001,0.096264341,0.10970982000000001,0.12477743999999999,0.14592504,0.16875860999999998,0.18152347,0.19618329,0.20811600000000002,0.2169534,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,j Geothermal,0.0,0.0,0.0,0.00260392,0.00754656,0.02007116,0.036223149999999996,0.054870619999999995,0.07530313,0.09470521000000001,0.1125919,0.12400530000000001,0.1390827,0.1528246,0.17217920000000003,0.1948808,0.2229639,0.23706639999999998,0.2515714,0.2627648,0.265016,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,k Hydro,0.744149,1.21485,1.45184,1.4758,1.49977,1.52373,1.5477,1.57166,1.61397,1.65628,1.69859,1.7409,1.78321,1.82552,1.86783,1.91014,1.95245,1.99476,2.03707,2.07938,2.07938,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,l Wind,0.0,3.34799E-4,0.00783718,0.0153241897,0.0247611067,0.045448970699999994,0.07118929160000001,0.10114186560000002,0.1275567436,0.1588444659,0.1913789739,0.21583149690000003,0.25135622099999994,0.287257128,0.337826507,0.400255894,0.48303664600000007,0.533912878,0.591567978,0.6418423420000001,0.6671347369999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,m Solar,0.0,0.0,0.0,0.0018721081400000002,0.005146598739999999,0.01277745884,0.02367069274,0.03807840584,0.05632748904000001,0.07781823850000001,0.1020942985,0.1261809514,0.1580554235,0.19015584940000002,0.22976851520000002,0.2757053266,0.334183841,0.37005561499999995,0.4101530739999999,0.4451348599999999,0.471698802,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,n CHP,0.0,0.0,0.0,0.0,8.59156E-4,0.00149832,0.00228331,0.00318848,0.00422329,0.00550447,0.00688243,0.00740502,0.0081339,0.008811,0.00927834,0.00989478,0.0106258,0.0107236,0.0111139,0.0113181,0.010815,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,a Coal,0.295991,0.395942,0.316566,0.36033230000000005,0.4135388,0.44750642,0.48451099000000003,0.51544658,0.5570270699999998,0.5896810700000001,0.6214932700000001,0.6519554299999999,0.69214564,0.7336021,0.76894418,0.7721395100000004,0.7778831,0.7792637199999998,0.77496807,0.7651175600000001,0.74912524,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,c Gas,0.03483713,0.1262951,0.189925,0.202673,0.2347975,0.2619394,0.2963889,0.33174479999999995,0.38062883999999997,0.42241797999999997,0.46189244,0.49557732,0.49940292,0.49846298,0.4981043,0.5036133,0.50208208,0.47092115000000007,0.44957385000000016,0.42795552,0.41989697,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,e Oil,0.0592847,0.0551952,0.0266292,0.02402504,0.02819324,0.03145633,0.03609498,0.040228051,0.047278023,0.050669366,0.053489803,0.055359546999999995,0.056210371999999995,0.055428978000000004,0.056273908000000004,0.056496191,0.048558726,0.04736095000000001,0.043144128,0.038657257,0.036846677999999994,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,g Biomass,0.0137844,0.0300024,0.0279072,0.02822217,0.03097726,0.032915264,0.036296415,0.039590624,0.044136023999999996,0.04749631900000001,0.051236645,0.05465756199999999,0.059782211,0.06490771799999999,0.069433516,0.07621629,0.082203007,0.085896573,0.09053211999999998,0.09367801000000002,0.09708547,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,i Nuclear,0.262681,0.331344,0.326372,0.3570214,0.39618689999999995,0.42896039999999996,0.47341469999999997,0.5206457,0.5806804,0.6278971,0.671538,0.7106665,0.758441,0.8050942,0.8438654999999999,0.8622613000000001,0.8819922000000001,0.8822074999999999,0.8654746,0.8321293999999999,0.7865965000000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,j Geothermal,0.0,0.0,0.0,0.0040695,0.008724909999999999,0.01250509,0.01325824,0.013231,0.013231,0.013231,0.01323099,0.013231,0.013230990000000001,0.013231,0.013230990000000001,0.01323099,0.013230989999999998,0.013231,0.013231,0.013231,0.01323101,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,k Hydro,1.06835,1.30916,1.26543,1.30693,1.34854,1.39015,1.43175,1.47336,1.49957,1.52578,1.55199,1.5782,1.60441,1.63062,1.65683,1.68304,1.70925,1.73547,1.76168,1.78789,1.78789,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,l Wind,0.0,0.00529559,0.0344051,0.0477808209,0.0680463174,0.0919404096,0.1286817636,0.1743033876,0.2067518096,0.2619453167,0.3132083272,0.35862845900000007,0.401008956,0.433884217,0.457074802,0.5020196669999999,0.551973358,0.578221769,0.6058161910000001,0.627712877,0.655020496,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,m Solar,0.0,6.11999E-5,5.68799E-4,0.00116260719,0.0024176131599999997,0.006291091780000001,0.0145316391,0.026937142270000002,0.04631264729,0.06781190614,0.09111672455,0.11195230433,0.13269194959,0.1495914293,0.16386404693,0.18554942204,0.2086808507,0.22228615334000001,0.23691877158,0.2490391878,0.26374465280000003,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,n CHP,4.21048E-4,4.20829E-4,4.24375E-4,4.67594E-4,8.09092E-4,0.00109606,0.001394356,0.001728326,0.0020555549999999997,0.002494639,0.003016579,0.00327224,0.003629259,0.004023781000000001,0.004339312,0.004744085,0.005187128,0.00555475,0.006045223,0.0064886119999999995,0.006302037999999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,a Coal,1.548E-4,0.007992,0.0111816,0.01858878,0.025203970000000003,0.033077212,0.04222010300000001,0.052139610999999995,0.06303746499999999,0.076166207,0.09057031900000001,0.10698434200000001,0.129700537,0.15469618599999999,0.183491615,0.211056362,0.251266321,0.28114789,0.32388369,0.36890364,0.42067346999999994,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,c Gas,0.0129143,0.042021,0.0577774,0.07941088,0.09953338999999999,0.12575754,0.15689244,0.19119130999999995,0.22804432,0.27009664,0.31269811000000003,0.35674168999999994,0.3863893299999999,0.41873189,0.44464338000000003,0.47271312,0.5083357,0.52067119,0.5444745599999999,0.56722274,0.5926843199999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,e Oil,0.119832,0.219264,0.220659,0.2632993,0.30228540000000004,0.3499067,0.3954098,0.43451509999999993,0.47428480000000006,0.5159099400000001,0.55364397,0.5960000200000001,0.61674946,0.6368143300000001,0.6446547399999999,0.6489749,0.60082663,0.6161292899999999,0.59158347,0.55860281,0.52995505,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,g Biomass,0.00762288,0.008862,0.0143049,0.01886169,0.030123650000000002,0.04439347,0.06152984,0.08030544,0.09944721999999999,0.12048953499999998,0.141436591,0.16282547299999997,0.190542753,0.2176561613,0.24478481999999996,0.26544017999999997,0.29353446000000005,0.30557418000000003,0.32444683,0.33934582999999996,0.35366728999999997,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,i Nuclear,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.010547,0.0322275,0.0625329,0.0924938,0.1274191,0.1601003,0.19292189999999998,0.2272491,0.2664909,0.29415850000000004,0.3272644,0.3579482,0.3780872,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,j Geothermal,0.002898,0.0094176,0.0117864,0.02106448,0.02967866,0.03379197,0.03379202,0.033792,0.033792,0.03379201,0.03379204,0.03379196,0.033792,0.033791970000000005,0.03379195,0.03379196,0.033792050000000004,0.033791970000000005,0.03379205,0.03379202,0.03380836,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,k Hydro,0.0486099,0.0767999,0.0855111,0.0891228,0.0927345,0.0963461,0.0999578,0.103569,0.109946,0.116323,0.1227,0.129076,0.135453,0.14183,0.148206,0.154583,0.16096,0.167337,0.173713,0.18009,0.18009,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,l Wind,0.0,9.144E-4,0.00207,0.0159217052,0.0367411203,0.0715644353,0.1189954793,0.1751127583,0.23652042230000003,0.2975735401,0.35524530299999996,0.40427231099999994,0.4631067399999999,0.5145307109999999,0.5656651269999999,0.6168630739999998,0.6876229059999999,0.7137675729999999,0.7441028699999999,0.76735515,0.78671506,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,m Solar,0.0,0.0,4.32E-5,0.007784183900000001,0.0203712658,0.042551787800000004,0.07430423580000002,0.10838027680000001,0.13179234480000002,0.1550513959,0.17962956800000002,0.204317738,0.23109634099999998,0.259731121,0.294960923,0.332109968,0.37658275399999996,0.40192813199999994,0.43041314099999994,0.4537928499999999,0.4755460599999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,n CHP,0.0,0.0,0.0,0.0,6.32593E-4,0.00112513,0.00175561,0.00259335,0.00371143,0.0051178,0.00680364,0.00781333,0.00918513,0.010677,0.0120533,0.0139381,0.0167474,0.0178433,0.0201472,0.0222688,0.0217519,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,a Coal,0.257637,0.202024,0.264001,0.35102,0.39637069999999996,0.42402648000000004,0.44324820000000004,0.45159393999999997,0.45653474999999993,0.4564420699999999,0.4518433499999999,0.44728271000000003,0.46518138000000003,0.47892231999999996,0.48325651000000003,0.4245319200000001,0.40770334000000014,0.39166558000000007,0.38603884999999993,0.38020695,0.37529058999999987,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,c Gas,0.270924,0.259231,0.289064,0.3469151,0.4194495,0.499214,0.5773349,0.647727,0.7174624000000001,0.7785808,0.8197976299999999,0.8468388099999999,0.7850120599999999,0.75261632,0.71981288,0.73659866,0.7247158800000001,0.67715933,0.65517589,0.6408143799999999,0.64191552,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,e Oil,0.162338,0.0429694,0.00578517,0.007418650000000001,0.0077133819999999995,0.008734375,0.009455083,0.009683003999999999,0.010172859,0.010295991,0.010117019,0.010108492699999999,0.0102721306,0.009481582100000002,0.0092715424,0.0106439728,0.0083767969,0.008845451099999999,0.008736924200000001,0.008157142800000001,0.0081064234,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,g Biomass,0.0,0.0,0.0,0.00118043,0.0019197099999999998,0.002906226,0.004321139,0.005812297000000001,0.007421859,0.008846207,0.009900695000000001,0.010767276,0.013945526,0.015756415,0.017672136999999997,0.02281755,0.025897928,0.027814286000000008,0.03140607300000001,0.033903044,0.036664837,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,i Nuclear,0.0,0.00977756,0.00896395,0.07606684999999999,0.11083691000000001,0.15036738,0.19776026000000002,0.24792598,0.29763296,0.33978153999999994,0.37053246,0.39325624000000003,0.43624092,0.46671438,0.49513120000000005,0.4838564000000001,0.4940298,0.48502850000000003,0.47557109999999997,0.4562780000000001,0.4371256,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,j Geothermal,0.0,0.0,0.0,0.00710471,0.01338808,0.01995517,0.02691582,0.03342231,0.0400252,0.039726519999999994,0.03924478,0.0377688,0.04057257,0.0415393,0.04243136,0.04934293000000001,0.054041000000000006,0.05634048,0.05692628000000001,0.058025280000000005,0.05935071,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,k Hydro,0.183715,0.211439,0.217472,0.23678,0.256088,0.275396,0.294704,0.314012,0.33546,0.356908,0.378356,0.399804,0.421252,0.4427,0.464148,0.485596,0.507045,0.528493,0.549941,0.571389,0.571389,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,l Wind,0.0,0.0,2.87998E-5,0.0066301863,0.0140786285,0.023865393,0.03689967210000001,0.051808842500000014,0.0703435961,0.08303062690000002,0.0923483574,0.0971068067,0.11487927960000001,0.1247273676,0.13211539819999998,0.16779024489999997,0.19909176619999996,0.22008973339999996,0.23698203339999996,0.25434612300000004,0.27299671799999997,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,m Solar,0.0,0.0,0.0,0.0018878387,0.0040635677,0.006978716500000001,0.0109341376,0.0156540644,0.021657212599999996,0.026261881000000004,0.030073044,0.0327305453,0.03991240019999999,0.044654727600000006,0.0487218387,0.062131756499999996,0.074320107,0.08260917889999998,0.08975121099999998,0.09693515399999998,0.10483999249999998,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,n CHP,0.0,6.27014E-4,0.001578479,0.0013072592,0.0016447512,0.0020147346,0.0023392289000000004,0.0026731818000000004,0.0029562376000000002,0.0033635868,0.0038510389,0.0040502205,0.0043970838,0.0047750551,0.0051056961,0.0055359528,0.0059935136,0.0063560286999999995,0.0068695436,0.007365165400000001,0.0072334724000000005,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,a Coal,1.69735,7.20575,11.8677,14.30142,16.63943,18.73773,20.480185,21.441088999999998,21.939367999999998,22.063399000000004,21.905531,21.741382,21.597941400000003,21.41898000000001,20.973123599999997,19.301195699999997,17.863895899999996,16.158984299999997,14.546442600000002,13.129907700000002,11.975248900000002,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,c Gas,0.00994681,0.0835439,0.3003612,0.23252029999999999,0.2634121,0.3193461,0.36707720000000005,0.3994417,0.4224186999999999,0.43667022999999994,0.43922671,0.43417168,0.38941143100000003,0.344508124,0.305070515,0.32354521900000005,0.331095325,0.34507436,0.39165442000000006,0.448122835,0.559928662,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,e Oil,0.177202,0.221325,0.0483861,0.039863550000000005,0.046173799999999994,0.057170490000000004,0.06393693000000002,0.06630108,0.06995868,0.07121758,0.07012030600000001,0.06862408,0.06002431599999999,0.050949173,0.0436336013,0.0471071512,0.035523347000000004,0.0370003103,0.034030509699999996,0.0296490084,0.0271828934,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,g Biomass,1.49641E-6,0.00866158,0.0410615,0.0394107,0.061188400000000004,0.09533430999999999,0.13928951,0.18049976999999998,0.21880341,0.25184131,0.27590601000000003,0.29228475,0.30196109000000004,0.303322555,0.3091078199999999,0.38310260999999995,0.42335462,0.45193689,0.48413436000000004,0.49193236999999995,0.49631161,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,i Nuclear,0.0,0.191117,0.265967,0.45256,0.699301,1.044783,1.4585710000000003,1.852707,2.263607,2.649364,2.9620143,3.1959669,3.3577148,3.4432659999999995,3.5528623,3.8171440999999997,3.9540759,3.906946599999999,3.7852483,3.5858109,3.3529483,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,j Geothermal,0.0,4.13999E-4,5.83199E-4,0.051467608000000005,0.098014464,0.11579912,0.11579907,0.11579903200000001,0.11579890000000001,0.11579910000000002,0.115799,0.11579900000000001,0.11579900000000001,0.1157991,0.11579879999999998,0.11579908,0.11579901,0.11579903999999999,0.11579891,0.11579893999999999,0.11579900000000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,k Hydro,0.45643,1.4296,2.60038,2.6427,2.68502,2.72734,2.76966,2.81198,2.90904,3.00611,3.10317,3.20023,3.29729,3.39435,3.49142,3.58848,3.68554,3.7826,3.87966,3.97673,3.97673,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,l Wind,7.19999E-6,0.00730149,0.160644,0.281602645,0.455334604,0.7138699840000001,1.0380867440000001,1.360518984,1.535686604,1.731238479,1.81782306,1.7857446399999999,1.6433217199999997,1.4349604079999998,1.2713010879999997,1.6114283179999997,1.932393298,2.1927541379999997,2.519337678,2.78309688,2.98338482,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,m Solar,7.19999E-6,2.74E-4,0.00338849,0.038174664999999997,0.10213370400000002,0.209359031,0.354319951,0.5104890110000001,0.6804947210000001,0.8218407119999998,0.9164539009999999,0.9558717789999998,0.9417164349999998,0.8855241949999999,0.840597468,1.0442452779999998,1.2483607239999999,1.417851919,1.6266476830000005,1.7932280530000004,1.9208193400000004,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,n CHP,0.0,0.0,0.0,0.0,0.00178622,0.00340332,0.00536815,0.007601,0.0100182,0.0128505,0.0157388,0.0163156,0.0171478,0.0180394,0.0186095,0.0195651,0.0206059,0.0214486,0.0228568,0.0240736,0.0228322,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,a Coal,0.0133489,0.00888839,0.0135144,0.025373,0.0381044,0.05033886800000001,0.06509203499999999,0.08149682800000001,0.09760003799999999,0.11432892599999998,0.13155339300000002,0.14970662199999998,0.17322834499999998,0.19836309400000002,0.22361765599999997,0.24135362800000001,0.263489991,0.27970666,0.2967455600000001,0.31095836,0.32677004000000004,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,c Gas,0.016196409999999998,0.0266363,0.041749400000000006,0.0698122,0.10198360000000001,0.13636330000000002,0.1800571,0.23057086,0.28103293,0.33399903,0.38778603999999994,0.44203088000000007,0.48035881,0.51689528,0.54685955,0.57594349,0.60271752,0.60996213,0.62084509,0.62521289,0.6274132299999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,e Oil,0.00136439,4.10394E-4,0.00180719,0.004201339,0.006264277,0.008430757,0.011346646000000002,0.014137532,0.016555832,0.0192371104,0.0219338043,0.0250086253,0.0297510929,0.0334272751,0.037096013,0.040417554999999994,0.037302192,0.042045388,0.042430407999999996,0.04174197,0.042199884,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,g Biomass,9.86411E-4,0.00181081,0.00179639,0.00236758,0.00302504,0.003678108,0.004807080000000001,0.006089126,0.007180671999999999,0.008450909,0.009900606000000001,0.011512232,0.014129603,0.016915348900000002,0.019545561,0.022659310000000005,0.026247244000000003,0.028812360999999995,0.032044698,0.034918525000000006,0.038076091,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,i Nuclear,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00132984,0.00403744,0.00809181,0.01227621,0.01747162,0.02284216,0.02823673,0.03442851,0.0414754,0.04719803,0.05352489,0.05956123000000001,0.06442176999999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,j Geothermal,0.0,0.0,0.0,9.54453E-4,0.0027851209999999998,0.005405706,0.009168338,0.013753942000000002,0.01848338,0.02256889,0.026010310000000002,0.02897793,0.03230624,0.03522305,0.0381104,0.041659999999999996,0.0457606,0.047860969999999996,0.04955202,0.05066578,0.051996480000000005,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,k Hydro,0.0989892,0.143291,0.145444,0.15207,0.158696,0.165322,0.171948,0.178574,0.190273,0.201972,0.213671,0.22537,0.237068,0.248767,0.260466,0.272165,0.283864,0.295563,0.307262,0.318961,0.318961,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,l Wind,0.0,1.764E-4,1.404E-4,6.2566236E-4,0.0014912571499999998,0.00275770157,0.004707710370000001,0.00731051497,0.010149698069999998,0.01314023741,0.01616934132,0.0192741405,0.0232106108,0.0271643929,0.031168908599999996,0.036090616900000004,0.0421233382,0.0461333496,0.049871740500000004,0.05283415980000001,0.055881901000000005,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,m Solar,0.0,0.0,0.0,2.3414326000000002E-4,7.463199899999998E-4,0.00165469695,0.0033110845,0.005914296489999999,0.00930374029,0.013481038229999999,0.0184237155,0.024114614740000002,0.031900355490000004,0.040418296900000004,0.049624859699999996,0.0609141275,0.07484963769999999,0.0853699309,0.09586882039999998,0.10501509479999999,0.11460309789999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,n CHP,0.0,0.0,0.0,0.0,3.00843E-5,5.68357E-5,9.50905E-5,1.45699E-4,2.14619E-4,3.11286E-4,4.35612E-4,5.24475E-4,6.46711E-4,7.88137E-4,9.32641E-4,0.00111248,0.00132926,0.00150035,0.00172681,0.00195742,0.00200626,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,a Coal,0.859385,0.892792,0.885689,1.014084,1.1888619999999999,1.3141398,1.4447472,1.554942,1.6510352,1.7201243000000002,1.7753358000000004,1.8226934000000001,1.8817585,1.9386959000000006,1.9739084999999996,1.9400926999999997,1.9008378000000001,1.8500747999999998,1.7869777,1.7173008000000005,1.6479091999999995,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,c Gas,0.140306,0.12755,0.123565,0.14433165,0.17370407,0.20060909999999996,0.2346803,0.26956875999999996,0.303683,0.33079021999999997,0.35190225,0.36675704,0.3582085100000001,0.34270787,0.3259322760000001,0.322474798,0.31605008300000004,0.29758003299999997,0.290199896,0.28853830999999996,0.29608206000000004,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,e Oil,0.0841881,0.0370123,0.0384476,0.04281439,0.05349049,0.06098905000000001,0.06923546,0.07436826,0.0796182,0.08117416,0.08150153000000002,0.081351755,0.076688478,0.069656411,0.06430123,0.0611275,0.046293005,0.045876989,0.040062135,0.034722262000000004,0.031628698999999996,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,g Biomass,1.65607E-4,0.009839,0.0341529,0.03518969,0.039287539999999996,0.04212154,0.046557339999999996,0.05049824000000001,0.053313980999999996,0.054967862,0.05640803999999999,0.05740518099999999,0.059352434999999995,0.06116050000000001,0.061918559999999984,0.06693623499999998,0.071122318,0.07303325999999999,0.07615556000000001,0.07814602000000001,0.07977016999999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,i Nuclear,0.268826,0.348192,0.3271,0.36372859999999996,0.4150176,0.45398289999999997,0.4945347,0.5283671999999999,0.5564378999999999,0.5749001,0.5887183,0.6002493,0.6160719,0.631633,0.6383482,0.6262081000000002,0.6130590999999999,0.5921648,0.5655881999999999,0.5357109999999999,0.5060051999999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,j Geothermal,0.0,0.0,0.0,0.00528655,0.013995299999999999,0.023060320000000002,0.033447,0.043213409999999994,0.05174796,0.054768149999999995,0.054917890000000004,0.05430770000000001,0.05304018,0.05141626999999999,0.05115284,0.05550835,0.05723695,0.057236959999999996,0.05723704,0.05723705,0.057236999999999996,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,k Hydro,0.092826,0.14841,0.159804,0.159292,0.158992,0.158692,0.158392,0.158092,0.163653,0.169214,0.174776,0.180337,0.185898,0.191459,0.19702,0.202581,0.208143,0.213704,0.219265,0.224826,0.224826,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,l Wind,0.0,0.00100802,0.0147851,0.022059679000000002,0.0352551753,0.052221667099999994,0.07760437410000001,0.1088129741,0.13120919509999998,0.1615314101,0.1848920108,0.201632658,0.211229011,0.21212547899999998,0.212566518,0.238539815,0.274325991,0.29769833599999995,0.32874686300000006,0.361740023,0.3906962850000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,m Solar,0.0,3.60007E-6,0.00240838,0.00343931437,0.00531665907,0.00803453327,0.01258321877,0.018842968569999997,0.02436116197,0.0318516757,0.03870412449999999,0.04432916209999999,0.04862106819999999,0.050586227899999996,0.05230948409999999,0.05998974209999999,0.0699802077,0.07674793820000002,0.085561873,0.0949411466,0.1035323052,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,n CHP,0.084278781,0.08694983,0.07559249,0.07511255,0.0748383033,0.079690131,0.076975777,0.073324312,0.069327651,0.06569481,0.062898064,0.06040166600000001,0.058464199,0.056262155999999994,0.053965264,0.051625641,0.048432130999999996,0.047117501000000006,0.045260258,0.043368344,0.041709102,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,a Coal,2.83949,2.63263,2.14461,2.248265,2.428223,2.5556641,2.6896215,2.8111109000000005,3.0402426,3.1528571,3.2555145,3.3848993000000003,3.5882610999999995,3.8141877999999996,4.0379017,4.1549949999999995,4.291152299999999,4.3678406,4.409796,4.406124799999999,4.3448241,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,c Gas,0.463445,1.9254419999999999,2.2807700000000004,2.265734,2.4401026,2.5853962000000004,2.7431034000000003,2.8930935,3.1620751,3.2814197999999997,3.3771987,3.4768388999999997,3.3792630999999997,3.2845734999999996,3.1901143000000003,3.1530016999999995,3.0931982,2.8496985,2.77673263,2.76009948,2.880231,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,e Oil,0.625719,0.358867,0.20094,0.16898269999999999,0.19161710999999998,0.21332419,0.24101917,0.27134423,0.3367656,0.35657097,0.38014401000000003,0.40497538,0.42287082000000004,0.42951577,0.44915353999999996,0.44008791999999997,0.36272068,0.37412394,0.34050243,0.30796405,0.29275735999999997,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,g Biomass,0.028465,0.159297,0.259185,0.1719638,0.1993594,0.22552148,0.26440087,0.3080946,0.3749907,0.4147109499999999,0.45613933,0.49731713999999994,0.55107447,0.60307136,0.66126543,0.70498368,0.7481225300000001,0.77472092,0.7999999999999999,0.811851,0.8177368999999998,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,i Nuclear,2.59272,3.24344,2.97257,3.0411,3.2052810000000003,3.3121549999999997,3.407044,3.468524,3.6707660000000004,3.761485,3.8633420000000003,3.9933889999999996,4.210044,4.448179,4.651821999999999,4.768571,4.895745999999999,4.9343069999999996,4.92004,4.845720999999999,4.637785,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,j Geothermal,0.0116137,0.0194286,0.0201663,0.0484025,0.0900301,0.1369177,0.19106130000000002,0.2430056,0.254926,0.2549261,0.254926,0.25492600000000004,0.254926,0.2549259,0.254926,0.254926,0.254926,0.254926,0.254926,0.2549261,0.254926,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,k Hydro,0.939621,0.95855,1.17152,1.14714,1.13525,1.12336,1.11147,1.09957,1.10415,1.10873,1.11331,1.11789,1.12247,1.12705,1.13163,1.13621,1.14078,1.14536,1.14994,1.15452,1.15452,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,l Wind,0.00280083,0.25258,0.521819,0.615625742,0.74773071,0.921538026,1.180495086,1.517810916,1.544967436,1.9194446240000003,2.2464622759999995,2.53927943,2.81903443,3.01996533,3.15473719,3.3891666499999995,3.69711714,3.8759265000000003,4.031240749999999,4.1670006299999995,4.30239686,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,m Solar,4.32005E-5,0.00524505,0.08066889000000001,0.09490347100000002,0.11513306600000003,0.14391917100000004,0.190677953,0.257728316,0.29008135599999996,0.378835898,0.46413076300000006,0.541652708,0.615291756,0.672980988,0.723109868,0.7904238760000001,0.878073183,0.937329864,0.994403966,1.044364213,1.0972594930000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,n CHP,0.2110975,0.5644442,0.617119,0.6557119,0.6553983,0.6657775,0.6561878999999999,0.6427902999999999,0.6235320999999999,0.6163478,0.6162025999999999,0.6046528999999999,0.6023086,0.6010040999999999,0.5995132000000001,0.6045698,0.6096535,0.6280312,0.653815,0.6746381,0.6644116,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,a Coal,0.428483,0.180041,0.245558,0.2425703,0.25911300000000004,0.26814671,0.27439020999999997,0.27639532999999994,0.27800864,0.27707984999999996,0.27596871,0.27720588000000007,0.28380692,0.29495269,0.30230709,0.30886268,0.3091099599999999,0.30949881,0.31096944,0.31291388,0.31445079000000004,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,c Gas,0.24918880000000002,0.224147,0.177037,0.16891973000000002,0.18517124,0.19958071,0.21614488,0.2334011,0.25376289999999996,0.27143457000000004,0.2863583,0.29974001,0.30423933999999997,0.30068138,0.29437206,0.28785807,0.28054654999999995,0.263480853,0.252028,0.245522957,0.24447690299999997,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,e Oil,0.255453,0.00542502,0.0047411,0.0047764899999999996,0.005494822000000001,0.005493022100000001,0.005913533900000001,0.006188451500000001,0.006559514800000001,0.006713007599999999,0.0067984455,0.0069418847,0.0069655782,0.006803739999999999,0.0068449323,0.006472855300000001,0.005405150300000001,0.0058024514,0.0054849987,0.0052321827999999996,0.0051218057999999995,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,g Biomass,0.0,0.0,2.62796E-4,5.65917E-4,0.001494918,0.00255301,0.004281302999999999,0.006509645999999999,0.009250201999999999,0.011943982899999999,0.014534471200000001,0.016997421000000002,0.019780418800000005,0.022784998199999993,0.026462957999999998,0.029296917,0.032956265,0.036136816,0.04004341700000001,0.043921119,0.04776358299999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,i Nuclear,0.274249,0.319511,0.32094,0.3117286,0.32336570000000003,0.33672830000000004,0.35655400000000004,0.3814254,0.4069155,0.4259485,0.4410562,0.4559369,0.47646869999999997,0.501397,0.5218405999999999,0.5437666,0.5621729999999999,0.5667922000000001,0.5616164,0.5444007,0.5231367,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,j Geothermal,0.0,0.0,0.0,0.00145061,0.00445535,0.0072596100000000005,0.00984315,0.00983599,0.009835993,0.009836000000000001,0.00983601,0.00983601,0.00983599,0.009836000000000001,0.009836000000000001,0.00983601,0.009835990000000001,0.00983601,0.00983599,0.009836000000000001,0.009835994,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,k Hydro,0.0388476,0.0448632,0.0479592,0.0480941,0.0483945,0.048695,0.0489954,0.0492959,0.0496296,0.0499634,0.0502971,0.0506309,0.0509646,0.0512984,0.0516321,0.0519659,0.0522996,0.0526334,0.0529671,0.0533009,0.0533009,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,l Wind,0.0,1.40396E-4,1.87196E-4,0.00130194394,0.005244772839999999,0.01108605914,0.020052126439999998,0.031951576440000004,0.047701170140000006,0.0638379313,0.0772123028,0.08848430460000001,0.09818865969999999,0.1063334917,0.11593838400000002,0.12192105590000002,0.13465761750000002,0.14571229340000003,0.16053437699999998,0.17635003800000001,0.189829366,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,m Solar,0.0,0.0,0.0,1.7204553E-4,8.175808900000001E-4,0.0026387014799999996,0.00634124641,0.01220464266,0.02076777711,0.03050936686,0.04038122917,0.04926827594,0.057487903820000005,0.06458609754,0.07272883339,0.07811283757,0.08743653723999999,0.09550676057999999,0.10606109837,0.1172503532,0.1269917746,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,n CHP,0.029517662,0.0204605978,0.020627372999999997,0.017827426,0.0177699619,0.020208277,0.020511038000000002,0.020031725999999996,0.018436971000000003,0.017227753999999998,0.016365909999999997,0.015644589,0.015195166,0.014669736999999999,0.014158889000000003,0.013653153,0.013157612,0.012692398000000002,0.01238729,0.011991709000000001,0.011389166000000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,a Coal,0.231522,0.307824,0.36616,0.42639459999999996,0.5067661,0.5881534100000001,0.6697384200000001,0.7453849400000001,0.80988955,0.86770208,0.9243103100000001,0.9843215100000001,1.07460105,1.16850486,1.25868287,1.31024607,1.3594340800000002,1.3806998000000004,1.3984918000000004,1.4068336000000004,1.4191694000000004,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,c Gas,0.04737570000000001,0.258627,0.352203,0.40286391,0.48161196,0.5684153,0.6547374099999999,0.7334649400000001,0.79691573,0.8491882799999999,0.8957195000000001,0.94040648,0.9205012100000001,0.8918413199999999,0.841324,0.81857976,0.7946843399999999,0.7668256,0.75415226,0.7448569100000001,0.7397688299999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,e Oil,0.0262079,0.0251024,0.00900702,0.006918034000000001,0.008261873,0.009999385999999999,0.011501935999999999,0.012795346999999999,0.014120189000000002,0.015312097,0.016456081,0.017731134,0.019993406999999998,0.020989367999999998,0.022355959,0.023616159,0.019990589,0.022838755999999995,0.022369183,0.021557075000000002,0.021178311999999998,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,g Biomass,0.0,3.23995E-4,5.00385E-4,6.82732E-4,0.001349663,0.0023327359999999998,0.0038276150000000004,0.005721679,0.007656208,0.0097642624,0.0120789663,0.014520462,0.0184698243,0.0223613369,0.02669965,0.032441339,0.03820263,0.04313492499999999,0.048986504999999986,0.05437675799999999,0.05985046700000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,i Nuclear,0.0,0.0,0.0,0.0234542,0.048461699999999996,0.07697459999999999,0.1075569,0.138467,0.1694038,0.199921,0.2298955,0.2580183,0.29238119999999995,0.32508729999999997,0.3597781,0.3770247,0.3938285,0.40101729999999997,0.40718249999999995,0.4104456,0.4125906,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,j Geothermal,2.87998E-4,3.38395E-4,0.00240475,0.0053888700000000005,0.010595509999999999,0.01797769,0.0266807,0.0357737,0.042316620000000006,0.04796485,0.05140417,0.053028149999999996,0.055932199999999994,0.05843836,0.06195687,0.06733345,0.07253118,0.0756124,0.077501,0.078888,0.0797427,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,k Hydro,0.154156,0.263261,0.335171,0.322883,0.311124,0.299366,0.287607,0.275848,0.291875,0.307902,0.323929,0.339956,0.355983,0.37201,0.388037,0.404064,0.420091,0.436118,0.452145,0.468172,0.468172,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,l Wind,0.0,2.48396E-4,0.0110014,0.0152040162,0.0220185298,0.0325182403,0.046834651,0.06434347049999999,0.07300663749999999,0.08993365130000001,0.1053647337,0.11834080320000001,0.13578028949999998,0.15153311599999997,0.169929568,0.19636337399999998,0.225982199,0.24920381099999997,0.2682715129999999,0.2848891969999999,0.29760032899999994,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,m Solar,0.0,0.0,0.0,6.9848856E-4,0.00231289076,0.005246479860000002,0.009728295760000002,0.01584212596,0.023322746060000003,0.031433688800000005,0.0398703855,0.04827844140000001,0.0596496967,0.07091452620000002,0.08400221740000001,0.1013047876,0.12080378119999999,0.1372143472,0.152043364,0.16558640329999996,0.177467846,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,n CHP,0.013083621,0.020719841000000003,0.01769673,0.024130878999999997,0.026673632699999998,0.0306855696,0.033499696,0.035939333999999996,0.038351824,0.040413954,0.042119163999999994,0.04301884,0.043943088000000005,0.044107897,0.044247431,0.044172161,0.043750793,0.043662354,0.043750427,0.043360623,0.042622062,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,a Coal,3.38404E-4,4.7522E-4,3.81601E-4,0.00591749,0.009944524,0.014372179999999998,0.019528316,0.024033258,0.026323272999999998,0.029367284000000004,0.032449109000000004,0.0368114712,0.04360932209999999,0.04978705409999999,0.05513430500000001,0.05589235699999999,0.058535529,0.059265031999999995,0.06216791199999999,0.06459580399999999,0.06968426800000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,c Gas,2.69998E-4,0.0018504629999999999,0.0181046859,0.055561091369999996,0.07942525832,0.10382803709,0.12843702959,0.14644980184,0.1529270357,0.16057817994,0.16696499040999999,0.17531177960999997,0.14966020273100003,0.13498425723899998,0.11654858200000001,0.099434088,0.08802404100000001,0.085371669,0.085169143,0.08458729799999999,0.08254383,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,e Oil,0.0010152,2.62806E-4,1.83584E-4,3.649776E-4,4.491653E-4,5.484129000000001E-4,6.296108E-4,6.627465E-4,6.5060287E-4,6.7074076E-4,6.7298668E-4,6.8702353E-4,6.2695891E-4,5.6521079E-4,4.8564739999999994E-4,4.0814675000000006E-4,2.9095444E-4,2.9827067E-4,2.67958354E-4,2.27783748E-4,1.93135199E-4,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,g Biomass,0.00161282,0.00203765,0.00243364,0.010285459,0.015483909,0.022225427,0.03027217,0.036878527,0.039179719999999994,0.042927307000000005,0.046034586,0.04999304500000001,0.056507991300000004,0.06096045670000001,0.06299175299999998,0.061754202,0.060621574000000004,0.05770940200000001,0.056002560000000014,0.05321442500000001,0.05290141000000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,i Nuclear,0.0850906,0.0840297,0.094822,0.0876289,0.0835189,0.077524,0.0693204,0.0590228,0.056528499999999995,0.06533289,0.08117318,0.10405178000000001,0.13876957,0.16571923,0.18127014,0.20389601999999998,0.2241318,0.23740368000000003,0.25499444,0.26785430000000005,0.2703809,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,j Geothermal,0.00108001,0.00596895,0.0160743,0.034984600000000005,0.03547391,0.03547404,0.03548607,0.035473990000000004,0.03547397,0.03547399,0.035474,0.03547399,0.03547399,0.03547399,0.03547399,0.03547401,0.03547401,0.035473979999999995,0.03547401,0.03547401,0.03547398,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,k Hydro,0.558752,0.626339,0.598385,0.583929,0.569578,0.555226,0.540875,0.526524,0.53205,0.537576,0.543103,0.548629,0.554155,0.559681,0.565207,0.570734,0.57626,0.581786,0.587312,0.592839,0.592839,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,l Wind,0.0,0.00182524,0.00335526,0.025437843599999996,0.050663947,0.088422667,0.13948244599999998,0.18821173,0.21126849699999994,0.2250304044,0.23584942399999997,0.24755368399999997,0.2700552160000001,0.28452410200000006,0.30897157300000005,0.328401704,0.34618424600000003,0.334975171,0.316390341,0.29658181000000006,0.28762510100000005,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,m Solar,3.60004E-6,6.84017E-5,2.98805E-4,0.001403860291,0.0025192535300000004,0.00391588987,0.0045032314329999995,0.005029490532000001,0.005003585750000001,0.00425612237,0.0034903378299999998,0.00256312838,0.0026538073699999996,0.00269919396,0.0028818750699999996,0.0030120343799999996,0.0031312552099999995,0.0029938008199999998,0.00278567747,0.0025844299699999997,0.00248541418,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,n CHP,0.0035947909999999995,0.010181541,0.011491956,0.010486509,0.012594531,0.013583465,0.013884584,0.015029764,0.017271947,0.019602607,0.021958701,0.0221745357,0.0228204844,0.0236215454,0.0241303589,0.0249480123,0.0257997696,0.0265220519,0.027580670300000002,0.028292916600000002,0.026688391500000002,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,a Coal,0.68977,1.69899,2.35082,3.5033499999999997,5.37933,7.326668,9.631111,12.114043000000002,14.716335,17.294318000000004,19.76938,22.13329,24.459976999999995,26.670519999999996,28.703855999999995,30.202695000000002,31.635371,31.993223000000008,32.350933,32.313353000000006,32.023281000000004,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,c Gas,0.0358488,0.2716811,0.4240401,0.5558314,0.8354374,1.1777366999999999,1.6270132,2.1638543,2.765558,3.3841892,3.9835646,4.542835210000001,4.90863503,5.13550403,5.258113,5.4280349999999995,5.6210531,5.5262668,5.530183,5.5166892999999995,5.5201373,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,e Oil,0.0361728,0.0836639,0.0951875,0.27241458,0.5824404,0.8894085199999999,1.21925177,1.4992,1.76384641,1.9580537699999998,2.095968069,2.20456007,2.21422979,2.135461448,2.02838502,1.8663446499999998,1.39192959,1.37770233,1.1467682799999999,0.9257625899999999,0.78882058,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,g Biomass,0.0,0.00692279,0.00740519,0.014547393,0.038880812,0.069563023,0.118615056,0.181470832,0.251828293,0.3265117765,0.40359328170000003,0.480021572,0.5616178143,0.6439384344999999,0.7169030000000001,0.82876244,0.96472758,1.04393896,1.1657791,1.2688089999999999,1.3680244999999998,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,i Nuclear,0.0221076,0.0623663,0.0945575,0.15126620000000002,0.2399193,0.337139,0.45119529999999997,0.5733293,0.7153926,0.8693942,1.0290261,1.1835201999999998,1.3335217000000001,1.4739188799999996,1.6045505999999998,1.7173175000000003,1.8378200000000002,1.888724,1.9479459999999997,1.988091,2.002695,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,j Geothermal,0.0,0.0,0.0,0.0220306,0.0521072,0.05658250000000001,0.05658204,0.05658203,0.05658193,0.05658197,0.056582,0.05658203,0.05658204,0.05658203,0.05658198,0.056582,0.056582046999999996,0.05658362,0.056582028,0.05658199,0.05658195,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,k Hydro,0.257962,0.366228,0.411926,0.447853,0.48378,0.519707,0.555634,0.591561,0.654843,0.718125,0.781406,0.844688,0.90797,0.971252,1.03453,1.09782,1.1611,1.22438,1.28766,1.35094,1.35094,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,l Wind,1.152E-4,0.0237708,0.0716795,0.11874648099999999,0.21061032799999999,0.336831088,0.5125255579999999,0.7280211179999999,0.910523428,1.138344177,1.3300067599999998,1.4910878399999998,1.61398179,1.6978389799999998,1.74900458,1.8837994099999997,2.1089813,2.2023325799999998,2.3619679899999997,2.5059752,2.63731865,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,m Solar,0.0,6.83999E-5,8.27999E-5,0.0161253289,0.0667759499,0.15793844389999995,0.3078328639,0.5215666439000001,0.8055283739999999,1.1354477849999998,1.4800216640000003,1.8283793,2.17059045,2.4758596600000002,2.73868795,3.1147630499999996,3.6424121099999995,3.940387659999999,4.33681326,4.70519038,5.0718444400000005,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,n CHP,0.0,0.0,0.0,0.0,4.58834E-4,0.00100454,0.00178928,0.00283749,0.00415665,0.00588426,0.00791021,0.00906864,0.0104637,0.0118962,0.0130282,0.0143421,0.0157304,0.0169063,0.0184225,0.0197725,0.0192816,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,a Coal,0.0351648,0.186455,0.24521,0.367303,0.514124,0.7024167,0.9204549,1.1518074,1.4003608000000003,1.6381109,1.8584002000000004,2.0620218999999995,2.2764860999999996,2.4825782,2.684999199999999,2.827395400000001,3.0263631999999996,3.0683903000000012,3.1388287000000004,3.1730314999999996,3.1520244999999996,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,c Gas,0.0026423999999999996,0.0687097,0.1441369,0.1978072,0.2737429,0.3896349,0.5341369,0.700186,0.8863808999999999,1.0660206700000001,1.2290063699999998,1.3710393200000002,1.4537238700000001,1.51002191,1.5257490599999999,1.5495813799999998,1.58068997,1.51376064,1.4879266899999999,1.4574637900000003,1.4223480200000003,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,e Oil,0.0551952,0.140904,0.124218,0.16089779999999998,0.2189893,0.3032957,0.380596,0.44110560000000004,0.5006523599999999,0.53492071,0.55358629,0.56797087,0.56443097,0.54377854,0.5109939800000001,0.46562983999999996,0.34880747,0.32997776,0.26813596999999995,0.20891657,0.176352167,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,g Biomass,0.0,7.91916E-5,3.42008E-4,9.85849E-4,0.0024417592,0.0051493801,0.009306402800000002,0.014735919799999999,0.021204910100000002,0.0278564674,0.034516926700000006,0.04096478696999999,0.04867489407000001,0.05642061069,0.064258935,0.076017684,0.091551669,0.09937101200000002,0.11351320599999999,0.1253683,0.13604294000000003,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,i Nuclear,0.0,0.0,0.0,0.00224903,0.00471018,0.01139981,0.023061190000000002,0.03969409,0.060427980000000006,0.08293308,0.10598157,0.12707094,0.14846162999999998,0.16838401,0.18856219000000002,0.21206896000000003,0.24191603,0.25745670000000004,0.2738104,0.2836002,0.2862064,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,j Geothermal,0.00405,0.0237744,0.0336852,0.0502987,0.0672837,0.08797200000000001,0.10915369999999999,0.1287148,0.12165840000000001,0.1288125,0.13386550000000003,0.1346911,0.1360092,0.137124,0.1359565,0.1412647,0.1520883,0.15408639999999998,0.154894,0.1548941,0.154894,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,k Hydro,0.0205488,0.03861,0.0636336,0.0643101,0.0649865,0.065663,0.0663395,0.0670159,0.0690624,0.071109,0.0731555,0.075202,0.0772485,0.079295,0.0813415,0.083388,0.0854345,0.0874811,0.0895276,0.0915741,0.0915741,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,l Wind,0.0,0.0,0.0,0.0016904217,0.0051445473,0.0116914701,0.021258569100000003,0.03336728109999999,0.04814122509999999,0.06229425439999999,0.0749123018,0.08440825099999999,0.09271708599999999,0.09883742499999998,0.10397207199999998,0.114868,0.13331036800000004,0.14201597500000002,0.156153489,0.168845443,0.176957775,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,m Solar,0.0,0.0,0.0,0.0013938230999999998,0.004677025699999999,0.0120579578,0.024617503300000003,0.0432149371,0.069031832,0.09887143589999998,0.1308428733,0.1617844932,0.1945293987,0.2240064749,0.251934133,0.292866784,0.35413063,0.38816650900000005,0.4378683190000001,0.4842311060000001,0.5224951490000002,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,n CHP,0.0,0.0,0.0,0.0,4.08205E-4,8.40096E-4,0.00141802,0.00212409,0.00295487,0.00399123,0.00514226,0.00569018,0.00641283,0.00716078,0.00777278,0.00855956,0.00950079,0.00997684,0.0108065,0.0115306,0.0113951,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,a Coal,0.420141,1.09279,1.09618,1.35819,1.442843,1.4509985,1.4563124699999999,1.44417919,1.4464002,1.4422681499999999,1.43175121,1.4184477899999997,1.5474165600000003,1.59494226,1.6109984799999997,1.4082610000000002,1.37379392,1.34678404,1.3378839900000001,1.30657506,1.2452669699999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,c Gas,0.6015012,0.8605389999999999,1.096252,1.4195187,1.5425259199999999,1.5965631799999997,1.65517675,1.6959946399999999,1.75098405,1.78957933,1.8075523300000003,1.80874507,1.4939326200000003,1.3639838199999998,1.27457678,1.2607341500000002,1.19232316,1.0493953,0.9599310600000001,0.8879580100000001,0.85107691,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,e Oil,0.892385,0.495089,0.350827,0.3500396,0.30893651999999994,0.29436288,0.2806941,0.25954031,0.24217048999999996,0.21843036,0.19386726999999998,0.17284993999999998,0.17040250599999998,0.139171236,0.12244402200000001,0.124811522,0.089898302,0.088086821,0.079748615,0.06790112599999999,0.062513637,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,g Biomass,0.037872,0.0795455,0.0844343,0.08770800000000001,0.08093751,0.077692035,0.07541752500000001,0.071338013,0.06601348200000001,0.060044829,0.054384313999999996,0.04933852000000001,0.05425155400000001,0.05252720200000001,0.049510357,0.05084992,0.05098103399999999,0.050109346000000006,0.052189087,0.052406195999999995,0.052067730000000007,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,i Nuclear,0.728178,1.09712,1.03763,0.958912,0.913936,0.8625090999999999,0.8090326999999999,0.7540278999999999,0.6998561999999999,0.6414989,0.5854346,0.5374711,0.5722784000000001,0.5746410000000001,0.5447017,0.6140176,0.6609865,0.6707161,0.6771177000000002,0.6542495999999999,0.6153972999999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,j Geothermal,0.00626759,0.0116136,0.00947519,0.0175043,0.021903149999999996,0.0253347,0.030258600000000004,0.03570573,0.034930749999999997,0.03600678,0.03926369,0.041725319999999996,0.04942656,0.05024745,0.04989905,0.052099620000000006,0.052439269999999996,0.05123482,0.048414809999999996,0.049400400000000004,0.04994568,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,k Hydro,0.321498,0.275292,0.295963,0.294981,0.293999,0.293016,0.292034,0.291052,0.294216,0.29738,0.300544,0.303708,0.306872,0.310036,0.3132,0.316365,0.319529,0.322693,0.325857,0.329021,0.329021,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,l Wind,0.0,0.00631439,0.0142632,0.0257676544,0.0330108951,0.039411873199999996,0.050177729899999995,0.06422308960000002,0.0714693586,0.0836716252,0.09858750549999999,0.11065855340000001,0.14727876469999998,0.15795484799999998,0.16430122899999997,0.182854265,0.191612776,0.190143934,0.17613170399999997,0.18043594799999998,0.18275715399999998,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,m Solar,3.6E-6,0.00537479,0.0136764,0.019044418200000003,0.021811310400000006,0.024636993310000008,0.029846881610000008,0.03728738901,0.035136107410000006,0.04291150961,0.05296533221000001,0.06112996200000001,0.08477542110000003,0.0928073272,0.0986350101,0.11182918620000001,0.11851523590000003,0.11839862240000001,0.1096904521,0.1117437645,0.1125570927,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,n CHP,0.0,0.0,0.0,0.0,1.27873E-4,2.24887E-4,3.46409E-4,4.8992E-4,6.28344E-4,7.97821E-4,9.79996E-4,0.00104628,0.00114846,0.0012498,0.00132293,0.00142435,0.00154412,0.00160813,0.00172153,0.00182808,0.00176634,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,a Coal,0.0279864,0.118998,0.117129,0.1484897,0.1753808,0.20308305999999998,0.23326354,0.2644095699999999,0.29734077000000003,0.33051015,0.36596007999999997,0.40378359,0.46819475,0.53442326,0.6044531099999999,0.6549657799999999,0.7338029899999999,0.7841275099999999,0.8485251199999999,0.90932582,0.95900837,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,c Gas,0.052056,0.3425255,0.507894,0.6652789,0.81135655,0.9754488000000001,1.15411551,1.3360729,1.51862181,1.68936107,1.85623565,2.01727969,2.05859616,2.12941501,2.16776129,2.2316328100000002,2.31975079,2.30900272,2.35610792,2.39449798,2.4104858100000004,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,e Oil,0.223423,0.240426,0.157964,0.166142,0.18732733999999998,0.2154838,0.24157347999999998,0.26355217999999997,0.29081728,0.31149806,0.33166876,0.35151686000000004,0.39114019999999994,0.4021568099999999,0.41481754,0.41260336999999997,0.34831539999999994,0.3585893,0.32890901,0.29190678999999997,0.27182773,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,g Biomass,0.0,0.0109656,0.00929879,0.00698613,0.008955349999999999,0.012074448,0.01643163,0.021446906,0.026560969,0.031762528,0.037395736,0.04306216300000001,0.054002939,0.063936573,0.074472748,0.08544940399999999,0.09959326699999997,0.10743326700000001,0.11983266,0.13080836999999998,0.14090796,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,i Nuclear,0.0105732,0.038898,0.0211644,0.024730540000000002,0.02781633,0.03199581,0.03744824,0.04408638,0.05254183,0.062394479999999995,0.07398723,0.08591294000000001,0.10476434,0.12338951,0.14292738,0.16155715,0.18591257,0.20170351000000003,0.21986386,0.235612,0.24674089999999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,j Geothermal,0.0184464,0.0262764,0.0238248,0.0329436,0.04051001,0.04935898,0.05914376,0.06907133,0.060111069999999996,0.06513732,0.07140110000000001,0.07614891,0.084828,0.09142969999999999,0.09622910000000001,0.0969661,0.096966,0.096966,0.096966,0.0969661,0.0969661,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,k Hydro,0.0845208,0.0995724,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,l Wind,3.6E-6,6.83999E-5,0.00446039,0.0090891424,0.0154349827,0.0259353516,0.0414996803,0.0620093653,0.08342253229999999,0.10836897989999998,0.1352220516,0.16081405370000001,0.20272432800000004,0.242349899,0.285487896,0.33739275599999996,0.40494706899999994,0.44761777699999994,0.48789089099999994,0.525853229,0.5478941420000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,m Solar,3.6E-6,3.24E-5,1.116E-4,0.00230274885,0.00606856345,0.012879449449999998,0.023616468450000008,0.03880885945000001,0.05919780744999999,0.08265821459999999,0.110058505,0.139819726,0.18724565299999996,0.23649120199999996,0.29237608699999995,0.359095656,0.446132367,0.5064322029999999,0.568145464,0.62723871,0.6750697579999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,n CHP,0.0,0.0,0.0,0.0,2.21845E-4,4.0389E-4,6.51556E-4,9.6607E-4,0.00135743,0.00187552,0.00249234,0.00285197,0.00332909,0.00383424,0.00428291,0.00484307,0.00550193,0.00592888,0.00653368,0.00711796,0.00722817,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,a Coal,0.0379187,0.132671,0.124711,0.1415256,0.1611181,0.18173311,0.20452115,0.22857139999999998,0.25246463,0.27665866,0.30157993000000005,0.32866460999999997,0.37370116000000003,0.42775536,0.48957218999999996,0.55142905,0.65629515,0.7279311099999998,0.8355826699999999,0.9520022300000001,1.05090073,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,c Gas,0.38072,1.3344,1.95927,2.1715684,2.4674348,2.8359767000000002,3.2874093999999996,3.808102500000001,4.3391902,4.8608180999999995,5.3501965,5.8101723,6.146496100000001,6.5116122,6.7780813,7.0913356,7.5450123,7.5443808,7.7649354,7.9795318,8.0442356,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,e Oil,0.402345,0.720668,1.02737,1.256038,1.5523799999999999,1.899599,2.2236029,2.4803344999999997,2.6863512000000003,2.8235339999999995,2.9081312999999995,2.9886195999999994,3.0274985,3.0027468,2.9589220000000003,2.7807253999999997,2.2531018,2.2175225,1.93039759,1.63023029,1.4821654900000003,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,g Biomass,0.0,0.0,4.32068E-5,0.0021213281,0.0058918653,0.0120345624,0.02149599777,0.03406248708,0.047797701090000005,0.06225680333999999,0.07689386998,0.09164875464,0.11594599031200001,0.14274794526100001,0.173469051,0.21051036000000004,0.265564786,0.29543749,0.34548097,0.3921716800000001,0.43240416000000004,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,i Nuclear,0.0,0.0,0.0,0.00761429,0.02143238,0.04821058,0.09049938,0.14863318,0.21240317,0.27892227,0.34503816,0.40619475000000005,0.48533574,0.56687003,0.6563455199999999,0.7497024999999999,0.8708445,0.9380444000000001,1.0151511,1.073697,1.1035335,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,j Geothermal,0.0,0.0,0.0,0.010829,0.0243035,0.0400505,0.05578519999999999,0.05658204,0.056582009999999995,0.05658199,0.05658198,0.056581950000000006,0.05658197,0.056581969999999995,0.05658204,0.056581950000000006,0.056582030000000005,0.056582020000000004,0.05658199,0.056582030000000005,0.056481130000000004,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,k Hydro,0.04293,0.0992016,0.064242,0.0855464,0.106966,0.128386,0.149805,0.171225,0.202866,0.234507,0.266148,0.297789,0.329429,0.36107,0.392711,0.424352,0.455993,0.487634,0.519275,0.550916,0.550916,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,l Wind,3.59999E-6,3.05999E-4,6.26399E-4,0.0097274728,0.026535557400000003,0.0561170774,0.1010680244,0.1612656704,0.2322433334,0.30312656860000003,0.37016452,0.427651876,0.5079609219999999,0.5898550859999999,0.6863252940000001,0.808409655,1.0079282090000001,1.1282690130000002,1.2783592300000002,1.4165701800000001,1.4829645,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,m Solar,0.0,0.0,2.52E-4,0.016785135,0.0427907426,0.08335844960000001,0.1412756216,0.2180970426,0.31189374560000005,0.4151721665999999,0.524121913,0.632457881,0.7834753139999999,0.9437922229999998,1.1261251099999998,1.3458442639999997,1.6844988300000003,1.895070815,2.15244641,2.3926706600000003,2.55794006,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,n CHP,0.0,0.0,0.0,0.0,0.00196585,0.00323064,0.00472966,0.00640313,0.00834368,0.0109284,0.0140142,0.0157377,0.0182677,0.0210638,0.0235913,0.0268831,0.0310727,0.0332095,0.0365977,0.0398734,0.0415431,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,a Coal,1.36804E-4,4.64397E-4,3.16794E-4,0.004568493,0.009354694,0.014938337000000001,0.022573790000000003,0.032954378,0.04690292199999999,0.065509746,0.08950740730000001,0.1193413968,0.16068110880000003,0.21199744649999996,0.27521302699999994,0.349046665,0.446164975,0.5426875700000001,0.66657454,0.8084802,0.9684924599999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,c Gas,0.045608369999999995,0.1486296,0.0931644,0.12571119,0.16450549,0.20951978,0.26876457,0.34611301,0.44341396,0.56185372,0.6975988099999999,0.84409515,0.97927114,1.12240407,1.2622548000000002,1.4014328,1.5442854000000001,1.6368314099999999,1.74118797,1.8361943799999998,1.9230049400000002,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,e Oil,0.0278928,0.0686556,0.119718,0.1586327,0.1979074,0.23807999999999999,0.2811847,0.3262235,0.381815,0.44516878,0.5111359799999999,0.5791755199999999,0.6265837000000001,0.66930518,0.70278253,0.7130972400000001,0.64341019,0.6642224,0.6124391,0.55102281,0.49887126,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,g Biomass,0.0,0.0,0.0,0.00216369,0.00621177,0.01218737,0.02188693,0.03618132,0.05536416899999999,0.08057165200000001,0.11187080699999999,0.148581216,0.19737482899999997,0.25340263500000004,0.315113404,0.38315679099999994,0.462594374,0.53021443,0.6101153,0.6897937399999999,0.7674328,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,i Nuclear,0.0010548,0.0089424,0.012312,0.019265579999999997,0.02612739,0.03436791,0.04518398,0.05917789999999999,0.07691107999999999,0.09908597,0.12567088999999998,0.15579789,0.19181147999999998,0.23012852299999997,0.27025153,0.30617238,0.34837249,0.38274250000000004,0.4200665000000001,0.45517890000000005,0.48742830000000004,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,j Geothermal,0.0,0.0,0.0,0.0120567,0.0283335,0.0465492,0.06637459999999999,0.0807259,0.08072599000000001,0.08072589999999999,0.08072589999999999,0.08072604000000001,0.08072598,0.08072596,0.08072589,0.08072599,0.08072597,0.08072605999999999,0.08072603,0.08072605,0.08072602,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,k Hydro,0.06093,0.111103,0.11452,0.117706,0.120892,0.124078,0.127264,0.13045,0.140089,0.149728,0.159367,0.169006,0.178645,0.188284,0.197923,0.207562,0.217201,0.22684,0.23648,0.246118,0.246118,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,l Wind,0.0,0.0,0.0,0.0093226716,0.0266299342,0.053360495200000004,0.09369745019999999,0.1498011562,0.2233328802,0.30724921260000004,0.40143060999999997,0.501532009,0.619766124,0.739864168,0.8590326239999999,0.9768383999999999,1.1079635,1.1965072899999998,1.2841094499999999,1.3604903099999999,1.4235328900000002,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,m Solar,0.0,0.0,0.0,0.0070872866,0.0214288706,0.045055066600000006,0.08277189559999999,0.13840797959999998,0.19902068659999994,0.2533834019999999,0.313419669,0.381060573,0.457635344,0.5403888400000001,0.6355757330000001,0.7433938099999999,0.86306426,0.9663775599999999,1.07374311,1.17600019,1.2744967299999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,n CHP,0.0,0.0,0.0,0.0,1.90887E-4,3.84913E-4,6.96324E-4,0.00116226,0.00189412,0.00305419,0.00466236,0.00608053,0.00806235,0.0104067,0.0128332,0.0158238,0.0193389,0.0218756,0.0250541,0.0280137,0.027761,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,a Coal,0.54613,0.551288,0.556386,0.5736498999999999,0.5993997999999999,0.6217619699999999,0.63406381,0.6293639000000001,0.61769659,0.59745596,0.57536224,0.55996373,0.5667847699999999,0.5803216699999999,0.58607678,0.5753154500000001,0.5739118000000001,0.56589458,0.5625031999999999,0.5603210900000001,0.5648763499999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,c Gas,1.69041,1.4949,1.7391,1.7308613,1.8365176,1.9994348,2.1601123,2.2822773,2.3912436,2.4545665000000003,2.4823226000000003,2.5064163,2.4438827999999995,2.3830563000000002,2.25949921,2.1704566499999998,2.0489961500000002,1.8931176299999999,1.7933886500000003,1.72195747,1.69364143,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,e Oil,0.463118,0.0644098,0.025717,0.026221809999999998,0.02829983,0.03310108,0.03639008,0.03751882,0.039227217,0.039128922999999996,0.03857349399999999,0.038997993999999994,0.039990998,0.039305518,0.040104212,0.038271278,0.030174621999999998,0.033505623,0.031881992,0.029891120999999996,0.029693353,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,g Biomass,0.0,0.0,0.0,0.00157149,0.00365352,0.007379666,0.012614492,0.018354883,0.024647020000000002,0.030023974999999994,0.034607522,0.039018015999999996,0.04691181299999999,0.05379804099999999,0.06343346999999999,0.072439491,0.08075531799999999,0.089365341,0.09924984,0.10712283,0.11629457,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,i Nuclear,0.425914,0.537994,0.613461,0.6585849,0.706606,0.7928898,0.9050296999999999,1.0207076000000002,1.1258285,1.1993124,1.2479012,1.2894335000000001,1.3674412,1.4408274999999997,1.5158473999999997,1.5417642,1.5778787,1.5593183,1.5091116999999998,1.4271751,1.3527244999999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,j Geothermal,1.00804E-4,0.00147597,0.0018179,0.0122161,0.026944080000000002,0.04882209999999999,0.07331017999999999,0.09630814,0.1174608,0.1275521,0.1308525,0.12683329999999998,0.1267623,0.12676050000000003,0.1326405,0.1405242,0.14958249999999998,0.1583721,0.16398079999999998,0.16796619999999998,0.16950910000000002,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,k Hydro,0.597301,0.621637,0.599339,0.636624,0.673909,0.711195,0.74848,0.785765,0.827183,0.868601,0.910019,0.951437,0.992855,1.03427,1.07569,1.11711,1.15853,1.19994,1.24136,1.28278,1.28278,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,l Wind,0.0,2.51994E-5,1.43992E-5,0.009719250799999999,0.0265208764,0.0580744564,0.10316336740000001,0.1556987374,0.2197228112,0.27358979359999996,0.314634518,0.33828560999999996,0.3708393179999999,0.393367189,0.42997867599999995,0.472822561,0.5239699500000001,0.5810639830000001,0.6333237,0.679372445,0.7144795310000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,m Solar,0.0,0.0,0.0,8.9323581E-4,0.00276783958,0.00986394285,0.02321298069,0.04161462078,0.06607761524,0.09104257698,0.11389901022,0.13096160861,0.15220424223,0.16761724508,0.18920141118000003,0.21251330345000002,0.23855072043000003,0.26744348723,0.29483012926999996,0.31920379683,0.33928681657000004,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,n CHP,0.172756752,0.15242304,0.19416211000000003,0.19238892,0.17273458,0.16960156,0.15947344000000002,0.14878216,0.13485654000000002,0.1257816,0.12030639000000001,0.11609957,0.11488086,0.11291904,0.11168644999999999,0.11043536999999999,0.10896243,0.10761715,0.10693517999999999,0.10558718,0.10200901,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,a Coal,0.561333,0.824519,0.870765,0.8535106,0.9300598,1.0539205000000003,1.1748862999999998,1.2773399,1.3621625,1.4295506999999998,1.486651,1.5465218000000003,1.6090983,1.6702518000000002,1.7112387999999996,1.7478489000000001,1.7449244999999995,1.6913090999999998,1.6231550000000001,1.5454579000000004,1.4758348000000003,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,c Gas,0.0,0.0,0.0,3.05002E-4,0.0011833287999999998,0.0031248473,0.005915312099999999,0.0096077797,0.014122948900000001,0.0191035832,0.0242255796,0.029446447,0.034252437000000004,0.038249584,0.042436143999999995,0.04513607100000001,0.049494023,0.055282030999999995,0.062423207,0.069944905,0.079013278,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,e Oil,0.0,0.0,7.09205E-4,4.083486E-4,5.4861948E-4,8.335347500000001E-4,0.00104262328,0.00121092065,0.0013724514199999998,0.00148152691,0.0015565218,0.0016267557600000001,0.0016530639,0.00161369741,0.00157443109,0.00138236011,0.00106834237,0.00121659874,0.0011207713000000001,0.00102246302,9.816994499999999E-4,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,g Biomass,0.0,9.54006E-4,0.00101159,5.40137E-4,0.001558343,0.0036717269999999996,0.006537543999999999,0.010115658000000001,0.013909409,0.017664459,0.021270847500000002,0.024681976799999998,0.027850021699999998,0.030699767500000006,0.033881961,0.035939460000000006,0.039657080000000004,0.044298668000000006,0.048996511000000006,0.05287659200000001,0.0572681,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,i Nuclear,0.0304164,0.0406546,0.0435562,0.040409771000000004,0.038879082,0.040429781,0.045377430999999996,0.053346801000000006,0.06225909,0.07154678,0.08096945900000001,0.089880248,0.09806599700000002,0.105267985,0.111732654,0.11939635400000001,0.1291306,0.13614585,0.1390172,0.13710306000000003,0.13389184,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,j Geothermal,0.0,0.0,0.0,0.00134717,0.00532779,0.01099779,0.01554203,0.015539008,0.015539005000000002,0.015539,0.01553899,0.015538990000000003,0.015538999999999997,0.015539,0.015538989999999999,0.015538989999999999,0.015539,0.015539,0.015538989999999999,0.015539,0.015539,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,k Hydro,0.003636,0.0047952,0.0076968,0.007887,0.0080772,0.0082674,0.0084576,0.0086478,0.0090258,0.0094037,0.0097816,0.0101596,0.0105375,0.0109155,0.0112934,0.0116714,0.0120493,0.0124272,0.0128052,0.0131831,0.0131831,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,l Wind,0.0,1.15199E-4,1.152E-4,0.0013157151199999998,0.00684141812,0.020481806620000004,0.040488545419999994,0.06557032341999999,0.09464879141999999,0.12442365729999998,0.14970918830000002,0.16707487580000002,0.177318111,0.180473777,0.184638404,0.18288806999999999,0.19273277299999997,0.20984997699999997,0.231261589,0.25311594800000004,0.272711235,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,m Solar,0.0,7.55997E-5,7.55997E-5,9.6716835E-4,0.005047245310000001,0.015863032210000003,0.03258765131,0.05482002830999999,0.08206876151000002,0.11187252686,0.1400287969,0.1632801050000001,0.18155013590000005,0.19346329790000003,0.205755719,0.21127101499999995,0.22747422199999998,0.25019028099999996,0.277178727,0.3035406992,0.32188364770000016,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,n CHP,0.0,0.0,0.0,0.0,5.79515E-5,1.11937E-4,1.8143E-4,2.67231E-4,3.67438E-4,4.92859E-4,6.34922E-4,7.0134E-4,7.8614E-4,8.76461E-4,9.45838E-4,0.0010327,0.00111558,0.00119726,0.00131017,0.00141086,0.00138447,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,a Coal,0.0,0.0,0.0,0.00146892,0.00137338,0.003106828,0.005999417,0.009538154,0.013281265,0.017566533,0.021656667999999997,0.026778118,0.033843979,0.04044777,0.04884911499999999,0.057658063999999995,0.07116260999999999,0.08085067100000001,0.093712319,0.10512744800000004,0.11991685099999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,c Gas,0.0559019,0.0568119,0.0896734,0.09612514,0.08507311000000001,0.10168993,0.12157008,0.14376954000000003,0.16367718999999997,0.18439382999999998,0.20113642999999998,0.22166992000000002,0.2337338,0.25540797000000004,0.26153667999999997,0.26357683000000004,0.26502806,0.25819401999999997,0.25702857,0.25633933000000003,0.25625954,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,e Oil,0.0549622,0.0959904,0.110144,0.11811131,0.10122655,0.12093042000000001,0.14031907000000002,0.15671684000000002,0.16817373,0.17936027000000002,0.18532000999999998,0.19780393000000002,0.20507982000000002,0.21745657999999998,0.21927453,0.21581702699999997,0.19491356099999999,0.19511106300000003,0.184017822,0.17079056300000003,0.16063664900000002,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,g Biomass,1.28437E-4,1.46781E-4,1.53303E-4,8.989592E-4,7.100078000000001E-4,0.0028181435,0.006810521,0.011937423300000001,0.01714995,0.02292811092,0.028065647209999992,0.03426672253,0.04247707132999999,0.04922678391,0.057061351999999996,0.065423083,0.07645675799999999,0.082331278,0.08959669499999998,0.09391588000000003,0.09916893000000003,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,i Nuclear,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00641667,0.01867706,0.03332276,0.04890796,0.06695846,0.08108635,0.09623155,0.11191815,0.12939773999999998,0.14186894,0.15669943,0.16875692,0.1752091,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,j Geothermal,0.0,0.0,0.0,0.0051516,0.00481671,0.01502092,0.02900798,0.042415060000000004,0.05361568,0.05955755,0.06765343,0.06821057999999999,0.06793355000000001,0.06660579,0.06837506,0.06837499999999999,0.06837504999999999,0.06837486999999999,0.06837509,0.06837496,0.06833540999999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,k Hydro,0.135365,0.280561,0.279418,0.282905,0.267775,0.289879,0.293366,0.296853,0.303009,0.309166,0.315323,0.321479,0.327636,0.333792,0.339949,0.346105,0.352262,0.358418,0.364575,0.370731,0.370731,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,l Wind,0.0,0.0,0.0,0.0034714097,0.0032457478,0.012257443000000002,0.028721823,0.049059786999999994,0.070188477,0.09006672730000001,0.1110422293,0.126857967,0.141919191,0.14894285300000001,0.159528599,0.17132756799999999,0.19158231099999998,0.198089942,0.20549384599999998,0.211276136,0.21630031800000005,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,m Solar,0.0,0.0,0.0,0.0024733078,0.0026713628,0.009043936000000002,0.021418051799999994,0.0380962948,0.057118986800000014,0.07790525000000001,0.100744877,0.1231214158,0.147836588,0.165742905,0.18491119,0.202085388,0.218273606,0.224913292,0.23171973,0.23637687700000007,0.24033528500000004,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,n CHP,0.0,0.0,0.0,0.0,7.56853E-4,0.00134125,0.00214144,0.00308349,0.00412833,0.00546746,0.00706637,0.00787977,0.00900526,0.0101441,0.0111078,0.0125914,0.0151016,0.0155797,0.0171093,0.0183606,0.0174838,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,a Coal,0.0234905,0.0288587,0.0638058,0.097061,0.132297,0.17914333,0.23081675000000001,0.28292934000000003,0.33010468,0.3754816399999999,0.41837911000000005,0.46148775000000003,0.51307847,0.5657094200000001,0.6205034999999999,0.6521611299999998,0.6984083200000001,0.7060294399999998,0.7178821799999999,0.72261035,0.7339330900000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,c Gas,0.0047628589999999995,0.08063580000000001,0.1065002,0.1594747,0.2196624,0.31322193000000004,0.42510749999999997,0.5473972199999999,0.66279004,0.7753377199999999,0.87929374,0.9777047900000001,1.03582296,1.0850975610000002,1.10452352,1.12153767,1.14205086,1.11074471,1.0975690400000002,1.0768586,1.06109391,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,e Oil,0.0240485,0.0371498,0.0619949,0.1001176,0.1387309,0.1992239,0.25091039000000004,0.2885467,0.31262229,0.33045774,0.34096939000000004,0.35252032,0.35606366,0.34896104,0.33577838,0.30982543,0.23954296000000003,0.23224536999999998,0.19681574999999998,0.161300286,0.145039815,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,g Biomass,7.38011E-4,0.00187928,0.00589348,0.00803125,0.01098588,0.015330489000000001,0.020193207000000005,0.024991064000000004,0.028500907000000002,0.031787403,0.03485507399999999,0.03788255500000001,0.04225237199999999,0.046529377999999996,0.050563177,0.054704351,0.06004412100000001,0.06088039900000001,0.06352395400000001,0.06482668999999999,0.06779552,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,i Nuclear,0.0,0.0,0.0,0.0,0.0,8.64642E-4,0.0027855709999999997,0.0057304899999999995,0.01072139,0.017654019,0.026049988,0.034251747,0.04351226500000001,0.052578083,0.062210141,0.0733548,0.08665624699999999,0.0949183,0.10365492000000001,0.11042816000000001,0.11542198999999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,j Geothermal,0.0,0.0,0.0,0.00219054,0.0063293099999999995,0.01445804,0.02541716,0.03801371,0.050551120000000005,0.06118282,0.06972922,0.0748379,0.07989569999999999,0.084071,0.0900705,0.09886210000000001,0.1112548,0.1157246,0.1208518,0.12392500000000001,0.1264638,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,k Hydro,0.215035,0.400529,0.415487,0.446642,0.478199,0.509757,0.541315,0.572873,0.628591,0.684309,0.740027,0.795745,0.851463,0.907181,0.962899,1.01862,1.07434,1.13005,1.18577,1.24149,1.24149,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,l Wind,0.0,2.88011E-5,0.00145447,0.0040987982700000005,0.008726168869999999,0.018280824470000002,0.03254106167,0.050898080670000005,0.06998608486999999,0.09057440459999999,0.11071081599999999,0.12825711140000004,0.1482799732,0.1671548052,0.18949610500000003,0.219384277,0.261779156,0.28332113699999995,0.3086916799999999,0.328376217,0.346144371,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,m Solar,0.0,0.0,1.08005E-5,9.9193153E-4,0.0029199888300000003,0.0069482934299999995,0.012979215829999998,0.020907697330000002,0.030181324130000003,0.040399666800000004,0.05107001059999999,0.0614864083,0.0740104759,0.0864596514,0.10086111510000001,0.11895070240000002,0.14371996230000003,0.15746045700000003,0.17299756200000002,0.18556803999999996,0.19907757599999998,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,n CHP,0.0036131,0.00638438,0.013636203999999999,0.015768798,0.018226581999999998,0.020569195999999998,0.022459842,0.024411827,0.026582862,0.029816299,0.033725615,0.035452185,0.038136262000000004,0.040792021,0.042721324,0.045133422,0.0477596574,0.049145421200000004,0.0513156075,0.0530526321,0.0526100658,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,a Coal,0.0,0.00107293,0.00306896,0.00669796,0.01125862,0.016757929999999997,0.023405158,0.031100472,0.039983479999999995,0.050272765000000004,0.06205311700000001,0.07639852800000001,0.095679888,0.11966658500000002,0.149187774,0.182946352,0.228196025,0.272197039,0.3313318100000001,0.39994382000000017,0.47970464000000007,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,c Gas,0.02345402,0.08627889999999999,0.139214,0.2277764,0.3486777,0.5082732999999999,0.7053744,0.9346225,1.1891087,1.4655532999999998,1.7525434,2.0609062000000002,2.3426877999999998,2.6231391900000003,2.8815869000000003,3.1280226,3.3860437999999995,3.5329671,3.7298270000000002,3.9090960000000003,4.0615769,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,e Oil,0.00879918,0.0428959,0.0412827,0.0732274,0.1099348,0.15147423000000002,0.18755516,0.21399281,0.23948147999999997,0.26260574999999997,0.28431561,0.31250502999999996,0.3377648,0.355088286,0.36758345000000003,0.35972125,0.29339725,0.31441017000000004,0.28144433,0.24348103,0.222863749,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,g Biomass,5.77679E-5,7.19828E-6,0.0,6.66619E-4,0.002086667,0.00438256,0.007877941000000001,0.012456248,0.017796992,0.024155144000000003,0.031637003000000004,0.04099293200000001,0.054310536000000006,0.070369075,0.088477199,0.11022335600000001,0.13750426899999998,0.160860876,0.19216913300000002,0.22427565,0.25951673,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,i Nuclear,0.0,0.0,0.0,0.00243011,0.00516214,0.01170214,0.02270793,0.03838142,0.0575899,0.0804324,0.10660278999999999,0.13522687,0.16917085,0.20624142999999998,0.24657361,0.28908571,0.33875331000000003,0.3779404,0.4202797999999999,0.4588479,0.4949680000000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,j Geothermal,0.0,0.0,0.0,0.00447888,0.01314396,0.02572343,0.04057346,0.05617825,0.07151309,0.08244639000000001,0.0898648,0.0955953,0.099719,0.099719,0.0997189,0.0997191,0.099719,0.099719,0.099719,0.09971899999999999,0.099719,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,k Hydro,0.0268079,0.0463089,0.0710383,0.0749133,0.0787882,0.0826631,0.0865381,0.090413,0.102136,0.113859,0.125581,0.137304,0.149027,0.16075,0.172473,0.184196,0.195918,0.207641,0.219364,0.231087,0.231087,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,l Wind,0.0,4.92E-5,1.312E-4,0.0041325019,0.013832447699999998,0.0322941959,0.0613817704,0.1015825524,0.15352437140000005,0.21424507850000002,0.28085153269999996,0.35538528449999995,0.448633929,0.5545566850000001,0.6723897139999999,0.8076635950000001,0.9749581649999998,1.102815305,1.2465008259999997,1.378695568,1.49897563,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,m Solar,0.0,5.012E-4,5.476E-4,0.0028239776000000003,0.0079338588,0.017201385600000004,0.031366040600000006,0.05084432559999999,0.07607150459999999,0.10684696,0.14202530180000003,0.18400233399999993,0.23978387099999998,0.30671096999999997,0.3860088420000001,0.4793417200000001,0.5823874490000001,0.6462122220000001,0.6980955830000002,0.736594279,0.767456248,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,n CHP,0.0,0.0,0.0,0.0,0.00157706,0.00323016,0.00563447,0.00879905,0.013096,0.0192965,0.0274803,0.0343467,0.0438949,0.055134,0.0670142,0.0815536,0.0993306,0.114813,0.133648,0.151843,0.158485,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,a Coal,0.0423734,0.482673,0.721766,0.774161,0.872089,0.91467619,0.9478753400000001,0.9599633800000001,0.9641997800000001,0.95570516,0.9388810399999997,0.9172797100000001,0.9150824599999999,0.91799513,0.90764438,0.87744236,0.8386556799999999,0.8027678499999998,0.7689064899999999,0.7344056499999999,0.6979389699999998,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,c Gas,0.0345756,0.2130648,0.365475,0.38953697000000004,0.4497781699999999,0.4837508399999999,0.51326335,0.53058958,0.54151507,0.54280345,0.53689221,0.5263249299999999,0.46031583200000004,0.38366918899999997,0.32273193899999997,0.295538734,0.276894421,0.24328207000000002,0.22434382900000002,0.214757414,0.21728085300000002,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,e Oil,0.0678875,0.0757497,0.0538667,0.045318920000000006,0.048905660000000004,0.049512531,0.050660537,0.050463733000000004,0.05105276299999999,0.049691197,0.047145677000000004,0.04446705200000001,0.041956418999999995,0.037331161999999994,0.035070343999999996,0.03657818,0.031179698,0.030713288000000002,0.028871566,0.026734917999999996,0.0261547339,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,g Biomass,0.0,1.62005E-4,0.0012456,0.001529754,0.002518559,0.003254505,0.004677921,0.0063150459999999995,0.008171822999999998,0.009852962,0.011200108000000002,0.012023830000000003,0.013377828,0.014430411899999999,0.015985081999999998,0.019390806999999996,0.023067853000000003,0.024385768999999995,0.026852605999999998,0.028726298,0.030503464,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,i Nuclear,0.1904,0.528419,0.534944,0.5886668,0.6563883,0.6925459,0.7265441000000001,0.7486388,0.7619000999999999,0.7614213,0.7512002999999998,0.7360812000000001,0.7349558,0.7370528,0.7288238,0.6899928999999999,0.6632322000000002,0.6297875,0.5919718999999999,0.5495109,0.5078248000000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,k Hydro,0.0228996,0.0132228,0.0139644,0.0151472,0.0170392,0.0189311,0.0208231,0.0227151,0.0258792,0.0290433,0.0322074,0.0353714,0.0385355,0.0416996,0.0448637,0.0480278,0.0511919,0.054356,0.0575201,0.0606842,0.0606842,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,l Wind,0.0,4.68013E-4,0.00294119,0.00423962212,0.006855217319999999,0.009548305319999999,0.013331650019999999,0.017703690520000002,0.02011862242,0.024145170200000003,0.026197478600000004,0.0269985777,0.0273719187,0.026634291,0.0264188494,0.030518456299999996,0.03732884070000001,0.04076986770000001,0.04512839010000001,0.049465859000000015,0.05258592750000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,m Solar,3.60012E-6,5.40015E-5,0.00277919,0.0038270713899999998,0.005998320090000001,0.00869533819,0.01309218649,0.01895660169,0.02386197529,0.0311103552,0.0367213352,0.0402437477,0.0433422189,0.044190185400000005,0.045721885399999995,0.054133728799999996,0.06735605929999999,0.0743698553,0.08333885160000001,0.0923396072,0.0995945725,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,n CHP,0.0211961,0.082367423,0.09065316600000001,0.101855233,0.091856128,0.10133982899999998,0.10509882999999999,0.10859507999999998,0.108742625,0.10882413199999999,0.10893519100000001,0.10847022199999999,0.108964167,0.108547906,0.10742117899999998,0.10632791299999998,0.104877042,0.102920658,0.101245893,0.09949315,0.09506497,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,a Coal,0.104596,0.279376,0.448595,0.614718,0.798826,0.9845948999999999,1.1827687,1.3815623999999997,1.5861088,1.7852872,1.9767404000000002,2.1653155999999996,2.4283447999999996,2.7004986,2.975872299999999,3.1369604999999994,3.3433543000000006,3.4591962,3.595532599999999,3.6965501999999995,3.773003,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,c Gas,0.0896219,0.8081020000000001,1.060623,1.331007,1.703006,2.12641,2.5929710000000004,3.078306,3.584141,4.075685,4.5366731,4.9667283,5.1796209,5.3564267999999995,5.4547008,5.6077254000000005,5.755170900000001,5.683906300000001,5.6877553999999995,5.6554473,5.616178400000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,e Oil,0.193341,0.11442,0.101648,0.101752,0.12491988999999999,0.15113296,0.17264711,0.18669543,0.20302445,0.21292812,0.21966554000000002,0.22884059,0.24558493000000003,0.24769622,0.24938101000000001,0.24247329,0.19210793000000004,0.200245586,0.177521723,0.153563597,0.141126494,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,g Biomass,0.00220873,0.00903599,0.0205776,0.021556182,0.032809637,0.046117424,0.063766133,0.082188443,0.09930556,0.11539371200000002,0.131120783,0.14644947390000004,0.17355175899999997,0.19943712619999998,0.22495958,0.25182736,0.28113796,0.29880187,0.32327698,0.34225623999999993,0.36045535,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,i Nuclear,0.0,0.0,0.0,0.00787274,0.01689218,0.03412606,0.06094076,0.09690144,0.14082562,0.1896775,0.24112228,0.28961295000000004,0.35086420999999995,0.41101857,0.47388514,0.53849371,0.610488,0.6574738999999999,0.7022668999999999,0.7320053,0.7503181,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,j Geothermal,0.0196812,0.0356543,0.0357516,0.0559746,0.0792256,0.106244,0.1355041,0.16401770000000002,0.1645459,0.17866459999999998,0.18896510000000002,0.1956633,0.20845370000000002,0.2196744,0.22906300000000002,0.233673,0.2336729,0.23367300000000002,0.23367300000000002,0.2336731,0.23368060000000002,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,k Hydro,0.141032,0.19957,0.254132,0.26494,0.275747,0.286555,0.297363,0.30817,0.338521,0.368871,0.399221,0.429571,0.459921,0.490271,0.520621,0.550971,0.581321,0.611671,0.642021,0.672371,0.672371,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,l Wind,0.0,8.32999E-5,2.845E-4,0.0063340389,0.0176317561,0.0353564641,0.0600686891,0.09059163010000001,0.12668736909999997,0.16055373319999997,0.19082306299999996,0.21608944199999996,0.25031287399999996,0.28229077900000005,0.3152470200000001,0.3588509770000001,0.4137812400000001,0.450196873,0.48322191600000003,0.5083412300000001,0.52503053,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,m Solar,0.0,2.509E-4,3.334E-4,0.0042119608,0.012520327699999998,0.0269235247,0.04892107469999999,0.0788920397,0.1181482057,0.1619974689,0.207745446,0.25398592699999994,0.31961718,0.388125163,0.46406274500000005,0.5603969310000001,0.681630901,0.772964301,0.8640837220000004,0.9421979380000002,1.0095049830000002,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,n CHP,0.0,0.00126484,0.00152089,0.00213067,0.003346958,0.00458481,0.0060069500000000005,0.007628019999999999,0.00952583,0.01198344,0.01489466,0.01666005,0.01909945,0.02176175,0.02438516,0.02761296,0.03147377,0.034357860000000004,0.0384361,0.04250765,0.04324159,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,a Coal,0.07806,0.333201,0.340766,0.502993,0.5832096,0.62271877,0.6516849,0.6713069099999999,0.6847727900000001,0.6901574199999999,0.68826722,0.6833289900000002,0.7439277900000004,0.7855038600000002,0.8143510000000003,0.7463027999999998,0.7319519100000004,0.72076075,0.7200807799999999,0.7115690399999999,0.70041292,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,c Gas,0.0037260699999999997,0.13024360000000001,0.2046279,0.31866699,0.37988817,0.4172095,0.44730079000000006,0.47102386,0.48910292,0.49958214999999995,0.50263808,0.501340702,0.40034784599999995,0.354020906,0.32270882599999995,0.34151521100000004,0.33780616100000005,0.320491888,0.315331484,0.314235023,0.318283636,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,e Oil,0.0780744,0.0395547,0.0298225,0.03444891,0.031452919999999995,0.03145159,0.031669840000000005,0.03172085,0.032711235,0.032782051,0.032027293,0.031296636,0.03686699,0.034296802,0.034834598,0.046387513,0.036413446,0.038711327,0.03845179,0.036630743,0.035949892,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,g Biomass,0.0,0.0118311,0.0131472,0.012087569999999999,0.01135149,0.012041483000000002,0.013693661,0.015321942000000003,0.016370108,0.017163476,0.017630324,0.017751893,0.022235823999999998,0.024185023,0.025977556000000006,0.030374826,0.031814720000000005,0.032477957999999994,0.03431285,0.035293713000000004,0.036033699,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,i Nuclear,0.118319,0.143918,0.149865,0.14150379000000002,0.13649335999999998,0.12902252999999997,0.11890525,0.10628097,0.09203551000000001,0.07764131,0.06464245,0.05397768,0.05214188999999999,0.0508253,0.04444933,0.05236905,0.05819656,0.06070117,0.0630777,0.06377738999999999,0.06365973,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,j Geothermal,1.08002E-5,0.0,0.0,0.0021916,0.00333693,0.003461025,0.0034622470000000003,0.0034610019999999995,0.0034609989999999998,0.003461004,0.0034609999999999997,0.0034610010000000004,0.003461005,0.003461001,0.003460998,0.0034609973,0.0034610049999999996,0.003461004,0.003460998,0.003461003,0.003460996,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,k Hydro,0.0229716,0.0143496,0.0150984,0.0154475,0.0157965,0.0161456,0.0164946,0.0168437,0.0178996,0.0189556,0.0200116,0.0210676,0.0221236,0.0231796,0.0242355,0.0252915,0.0263475,0.0274035,0.0284595,0.0295155,0.0295155,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,l Wind,0.0,3.27642E-4,0.00351361,0.0074023045999999995,0.0104575665,0.0133091923,0.0167667197,0.020772295599999997,0.021923296899999997,0.022691474199999995,0.023584234999999995,0.023841758699999997,0.031119733899999998,0.0349183515,0.0382152197,0.0504245758,0.057869436100000005,0.0619596444,0.0601925528,0.06023566069999999,0.05980164019999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,m Solar,0.0,3.60046E-6,8.28002E-5,0.0010985277600000002,0.00222374984,0.0036966939099999994,0.005974014569999999,0.00919896077,0.013270128660000002,0.01675176908,0.01975003819,0.021713205740000005,0.031966449980000006,0.03850936398,0.044847208789999995,0.06493420901,0.07885179771999999,0.0874877474,0.08974115149999999,0.09305598259999999,0.09521038679999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,n CHP,0.017070333,0.13125279,0.12124186,0.08028076,0.08050490290000001,0.08729780659999999,0.09009369900000001,0.0932573647,0.097255368,0.10163243599999999,0.10629048299999999,0.11062912700000002,0.11477543300000001,0.119768511,0.124648385,0.127621727,0.133411366,0.136569603,0.138200813,0.14052061000000005,0.143987097,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,a Coal,6.02909,7.68047,7.10527,8.13377,8.811249,9.2504952,9.6373748,9.916134,10.3428607,10.6279497,10.892451699999999,11.194357899999998,11.9540744,12.612298400000002,13.1902803,13.140318299999999,13.396187200000004,13.560009000000003,13.669730000000001,13.655346999999999,13.483737,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,c Gas,1.0262950000000002,2.569423,3.38456,3.7986952,4.257176,4.6619161,5.0464459999999995,5.3772445,5.7778387,6.0528722,6.2689859000000006,6.452413499999999,5.848171,5.5214656,5.211499999999999,5.1866331,5.0099997,4.6636571,4.4905591,4.3895229,4.4288872,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,e Oil,0.450767,0.454965,0.144545,0.11249189999999999,0.11023326,0.11620642000000002,0.12302672,0.12977288999999997,0.14800315,0.1536892,0.15829545,0.16277312,0.17491411,0.17165711,0.18037003000000001,0.197298847,0.16070514,0.170906008,0.161879184,0.150819955,0.147753733,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,g Biomass,0.0791349,0.110634,0.115436,0.0625796,0.0680536,0.08309111,0.10715886,0.13455881000000003,0.16988151999999998,0.19830735,0.22671614999999995,0.25280348,0.30174971999999994,0.3353369199999999,0.37716226999999997,0.4357194999999999,0.47025398999999984,0.5027725000000001,0.5422681100000001,0.57407045,0.60707314,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,i Nuclear,2.20139,2.91859,3.0201,3.19238,3.3080179999999997,3.3698040000000002,3.4122520000000005,3.4228110000000003,3.466548,3.460703,3.45504,3.4749250000000003,3.6502499999999998,3.8072310000000003,3.9066560000000004,3.94749,4.0578769999999995,4.103775,4.111625,4.059157,3.9515320000000003,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,j Geothermal,0.0576456,0.0604004,0.0632762,0.1144269,0.1638751,0.22298230000000002,0.296878,0.37756539999999994,0.4224029,0.4714446,0.5149515,0.5428581,0.5854299000000001,0.6028607,0.6164269,0.6710087,0.7026236,0.7236149,0.7314908999999999,0.747132,0.758406,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,k Hydro,0.983347,0.981803,0.945313,0.954109,0.96406,0.974012,0.983963,0.993915,0.998283,1.00265,1.00702,1.01139,1.01576,1.02013,1.02449,1.02886,1.03323,1.0376,1.04197,1.04634,1.04634,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,l Wind,0.0110381,0.0643712,0.342527,0.45271692900000005,0.5483914559999999,0.6670054069999999,0.8329673059999998,1.0405492950000002,1.002932745,1.202897346,1.4178135189999999,1.602806638,1.873368699,2.04417176,2.2074756300000002,2.56961483,2.8400690099999997,3.0517867,3.1869769900000007,3.36360166,3.5195189899999995,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,m Solar,0.0023977004,0.00403198,0.01416215,0.02835777,0.04404688599999999,0.065929985,0.098854981,0.143315252,0.19668843400000002,0.255992173,0.318403607,0.37739556599999996,0.46365781500000003,0.5271428340000001,0.595382088,0.718828048,0.8169268570000002,0.897145779,0.9576979950000001,1.0271200660000002,1.0925370600000002,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,n CHP,0.6885946,0.5219592,0.5383006,0.4872648,0.50833135,0.55732333,0.58465204,0.6081356099999999,0.61453678,0.61916591,0.6239051999999999,0.626019,0.6327193,0.6355933,0.6360729,0.6380059,0.6385235,0.6426145,0.6526967999999999,0.6580657,0.6566118,EJ, Hydrogen production by technology scenario,region,sector,subsector,output,technology,1990,2005,2020,2025,2030,2035,2040,2045,2050,2055,2060,2065,2070,2075,2080,2085,2090,2095,2100,Units, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,1.96581E-4,3.95702E-4,7.00359E-4,0.00114539,0.00174812,0.00264672,0.00396264,0.00511066,0.00650582,0.00813291,0.0102823,0.0126486,0.015087,0.0173736,0.0197913,0.0221048,0.0231053,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,0.00113463,0.00223211,0.00390356,0.00654078,0.0107816,0.0172368,0.0269466,0.0362183,0.0479857,0.0615144,0.0795145,0.100256,0.122395,0.144789,0.169008,0.194385,0.208115,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,2.57817E-6,5.53646E-6,1.05988E-5,1.91666E-5,3.37366E-5,5.76394E-5,9.46678E-5,1.33471E-4,1.84707E-4,2.47373E-4,3.23326E-4,4.11314E-4,5.07847E-4,6.08321E-4,7.13556E-4,8.22764E-4,8.98535E-4,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,0.00165137,0.00308396,0.0050863,0.00786073,0.0117339,0.0169561,0.0237113,0.0283199,0.0335829,0.0387881,0.0464166,0.0546325,0.063737,0.0738045,0.0834269,0.0925212,0.0959724,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,1.92081E-4,3.52868E-4,5.76934E-4,9.02849E-4,0.00139883,0.00210579,0.00309519,0.00568207,0.0107913,0.0211339,0.0279594,0.0362308,0.0452867,0.0546228,0.0647149,0.0751781,0.0793408,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,1.83412E-4,3.38359E-4,5.55673E-4,8.73739E-4,0.00136085,0.00206028,0.00304694,0.00389478,0.00490509,0.00597263,0.00802906,0.0105471,0.0133829,0.0163954,0.0197414,0.023336,0.0248877,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,1.41362E-4,2.50538E-4,3.95563E-4,5.97912E-4,8.96882E-4,0.00131004,0.0018679,0.00230024,0.00278133,0.00327081,0.00418039,0.00522909,0.00634306,0.00746934,0.0086697,0.00990432,0.0103589,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,7.51264E-5,1.51276E-4,2.68181E-4,4.48813E-4,7.29924E-4,0.00115097,0.00174534,0.00233321,0.00308262,0.0040041,0.00507279,0.00630753,0.00760264,0.00893776,0.0103585,0.011736,0.0127069,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,0.00175362,0.00341627,0.00588797,0.00961426,0.0151652,0.0232528,0.0346589,0.0449848,0.0583919,0.0744813,0.089846,0.106822,0.124374,0.142658,0.16105,0.177936,0.185736,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,9.25734E-5,1.77163E-4,2.86705E-4,4.1803E-4,5.4147E-4,6.98963E-4,8.99369E-4,0.00104395,0.00119502,0.00135153,0.00157916,0.00181545,0.00204956,0.00226151,0.00250693,0.00276343,0.0029348,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,5.34319E-4,9.99359E-4,0.001598,0.00238717,0.00333952,0.00455202,0.00611587,0.00739829,0.00881421,0.0102225,0.0122118,0.0143898,0.0166273,0.0188471,0.0214079,0.024301,0.0264345,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,2.34764E-6,4.74805E-6,8.31186E-6,1.34562E-5,2.00825E-5,2.88741E-5,4.01827E-5,4.96309E-5,5.96815E-5,7.05674E-5,8.29669E-5,9.65324E-5,1.11049E-4,1.26259E-4,1.42506E-4,1.60452E-4,1.74006E-4,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,7.77661E-4,0.00138075,0.00208217,0.00286891,0.0036345,0.00447788,0.00538157,0.00578488,0.00616865,0.0064458,0.00712867,0.00784142,0.00865864,0.00960709,0.0105675,0.0115665,0.0121903,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,9.04543E-5,1.57986E-4,2.36179E-4,3.29511E-4,4.33278E-4,5.56111E-4,7.02492E-4,0.00116067,0.00198219,0.00351203,0.00429401,0.00520021,0.00615218,0.00711022,0.00819733,0.00939837,0.0100778,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,8.63718E-5,1.5149E-4,2.27475E-4,3.18886E-4,4.21514E-4,5.44093E-4,6.9154E-4,7.95586E-4,9.00987E-4,9.9253E-4,0.0012331,0.00151382,0.00181806,0.00213418,0.00250061,0.00291734,0.0031612,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,4.86171E-5,8.17781E-5,1.1834E-4,1.60555E-4,2.08695E-4,2.65857E-4,3.35037E-4,3.83311E-4,4.24518E-4,4.59571E-4,5.49735E-4,6.49829E-4,7.52402E-4,8.5455E-4,9.76364E-4,0.00111377,0.00120228,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,5.79479E-5,1.09271E-4,1.7577E-4,2.60885E-4,3.5745E-4,4.73049E-4,6.06895E-4,7.13553E-4,8.2471E-4,9.49077E-4,0.00109221,0.00125165,0.00141401,0.00158391,0.00177404,0.00197133,0.00213656,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,7.34381E-4,0.00136346,0.00215142,0.00313495,0.00420319,0.00551254,0.00708723,0.00831875,0.00976147,0.0113094,0.0126334,0.0140601,0.0155117,0.0170594,0.0187609,0.0204776,0.0217803,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,8.4897E-5,1.58567E-4,2.52251E-4,3.69671E-4,5.1319E-4,7.27571E-4,0.00104487,0.00131678,0.00164179,0.00202499,0.00255152,0.00313898,0.00376101,0.00435232,0.00498789,0.00560053,0.0060297,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,4.90012E-4,8.94459E-4,0.00140596,0.00211102,0.0031651,0.00473832,0.00710529,0.00933174,0.0121096,0.0153163,0.0197313,0.0248804,0.0305116,0.0362716,0.0425941,0.0492499,0.054311,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,1.71498E-6,3.36414E-6,5.83392E-6,9.57056E-6,1.54759E-5,2.48559E-5,3.94343E-5,5.43361E-5,7.36244E-5,9.75073E-5,1.26772E-4,1.60847E-4,1.99555E-4,2.41662E-4,2.86689E-4,3.35163E-4,3.6956E-4,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,7.13175E-4,0.00123582,0.00183195,0.00253703,0.00344467,0.00466116,0.0062522,0.00729669,0.0084749,0.00965774,0.0115181,0.0135581,0.0158889,0.018489,0.0210256,0.0234414,0.0250455,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,8.29536E-5,1.41403E-4,2.07797E-4,2.91392E-4,4.10649E-4,5.78871E-4,8.16142E-4,0.001464,0.00272326,0.00526208,0.00693803,0.00899134,0.0112894,0.0136838,0.0163097,0.0190473,0.0207052,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,7.92096E-5,1.35588E-4,2.00139E-4,2.81997E-4,3.99498E-4,5.66361E-4,8.03418E-4,0.0010035,0.00123784,0.00148711,0.00199238,0.00261745,0.0033362,0.00410727,0.00497531,0.00591246,0.00649485,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,6.84647E-5,1.14398E-4,1.64852E-4,2.26535E-4,3.12501E-4,4.30908E-4,5.92741E-4,7.15882E-4,8.50318E-4,9.85266E-4,0.00125843,0.00157199,0.00190878,0.00224598,0.00260482,0.00296824,0.00318949,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,4.57221E-5,8.40062E-5,1.34002E-4,2.01719E-4,2.9914E-4,4.40714E-4,6.41024E-4,8.33479E-4,0.00107331,0.00137035,0.00172859,0.00214569,0.00259909,0.00308355,0.00360778,0.00413342,0.00454752,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,7.20952E-4,0.00130734,0.00202544,0.00296274,0.00424959,0.00610437,0.00872901,0.0110744,0.0140853,0.0177228,0.0212962,0.0253109,0.0295792,0.0340454,0.0386127,0.0428081,0.046112,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,2.40243E-4,5.00395E-4,9.0316E-4,0.00149429,0.00229045,0.00347668,0.00523176,0.00683945,0.0088199,0.011168,0.0143744,0.0179689,0.0217842,0.0254274,0.0293932,0.0332679,0.0357048,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,0.00138664,0.00282267,0.00503391,0.00853318,0.0141264,0.022642,0.0355769,0.0484699,0.0650539,0.0844708,0.111159,0.142426,0.176726,0.211909,0.251003,0.292551,0.321602,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,4.21267E-6,9.67135E-6,1.94681E-5,3.65643E-5,6.55803E-5,1.12216E-4,1.84211E-4,2.57806E-4,3.52796E-4,4.70258E-4,6.13649E-4,7.81891E-4,9.7208E-4,0.00117649,0.00139255,0.00161809,0.00177075,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,0.00201816,0.0038999,0.00655913,0.0102552,0.0153742,0.0222732,0.0313054,0.0378996,0.0455282,0.0532633,0.0648892,0.0776125,0.0920301,0.108018,0.123902,0.139245,0.148307,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,2.34744E-4,4.46228E-4,7.43996E-4,0.00117787,0.0018328,0.00276612,0.0040865,0.00760414,0.0146297,0.0290208,0.0390865,0.0514704,0.0653897,0.0799442,0.096112,0.113144,0.122606,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,2.24149E-4,4.2788E-4,7.16578E-4,0.00113989,0.00178303,0.00270635,0.00402279,0.00521228,0.0066498,0.00820153,0.0112244,0.0149835,0.0193236,0.0239958,0.0293191,0.0351208,0.0384592,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,1.86125E-4,3.38858E-4,5.42733E-4,8.26789E-4,0.0012437,0.00181821,0.00260312,0.00324783,0.00397576,0.00470361,0.0060662,0.00761293,0.00924329,0.0108479,0.0125553,0.0142883,0.0152083,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,1.1506E-4,2.44682E-4,4.50481E-4,7.7344E-4,0.0012704,0.00199681,0.00301718,0.00401269,0.00526262,0.0068143,0.00866975,0.0108402,0.0131889,0.0156741,0.0183515,0.0209797,0.0229295,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,0.00198065,0.00397074,0.00694322,0.0114177,0.0180278,0.027675,0.0414267,0.0545299,0.071773,0.0927208,0.11381,0.137386,0.162399,0.188557,0.215783,0.241339,0.259196,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,6.40075E-5,1.43562E-4,2.59438E-4,4.03254E-4,5.49584E-4,7.16999E-4,9.36218E-4,0.00112047,0.00131986,0.00152195,0.0018358,0.00216936,0.00251676,0.00284153,0.00318331,0.00348894,0.0037684,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,3.69441E-4,8.09816E-4,0.00144602,0.00230279,0.00338956,0.00466947,0.00636645,0.00794053,0.00973505,0.0115115,0.0141965,0.0171949,0.0204175,0.023681,0.0271839,0.0306811,0.0339429,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,1.68808E-6,4.00316E-6,7.81684E-6,1.35008E-5,2.12233E-5,3.10374E-5,4.42729E-5,5.71555E-5,7.20256E-5,8.82772E-5,1.08736E-4,1.319E-4,1.58083E-4,1.86035E-4,2.14869E-4,2.43559E-4,2.71719E-4,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,5.37693E-4,0.00111887,0.00188415,0.00276751,0.00368896,0.00459343,0.00560206,0.00620887,0.0068131,0.00725861,0.00828719,0.00937003,0.0106324,0.0120711,0.0134187,0.0146032,0.0156528,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,6.25423E-5,1.28022E-4,2.13717E-4,3.17864E-4,4.39771E-4,5.7046E-4,7.31275E-4,0.00124574,0.00218927,0.0039549,0.00499185,0.00621394,0.00755457,0.00893382,0.010409,0.0118658,0.0129402,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,5.97195E-5,1.22758E-4,2.05841E-4,3.07615E-4,4.2783E-4,5.58132E-4,7.19874E-4,8.53896E-4,9.95116E-4,0.00111769,0.0014335,0.00180893,0.00223249,0.00268155,0.00317529,0.00368326,0.00405911,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,5.56524E-5,1.12684E-4,1.86003E-4,2.73916E-4,3.75737E-4,4.85447E-4,6.202E-4,7.30448E-4,8.38308E-4,9.31155E-4,0.00117392,0.00145423,0.00176219,0.00207966,0.00242845,0.00278085,0.00304586,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,4.22907E-5,9.34901E-5,1.6775E-4,2.65497E-4,3.82847E-4,5.141E-4,6.73447E-4,8.2296E-4,9.89405E-4,0.00117126,0.001407,0.00167508,0.00196473,0.00227141,0.00259468,0.00289326,0.00321392,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,5.17794E-4,0.00112724,0.00198728,0.00308798,0.00435602,0.00577015,0.00751905,0.00908021,0.010935,0.0128808,0.0148437,0.0169683,0.0192214,0.0216141,0.0239988,0.0260179,0.0280989,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,1.19338E-4,2.89176E-4,5.18219E-4,7.92561E-4,0.00103708,0.00132761,0.0016617,0.00191831,0.00214725,0.00233898,0.00261651,0.00285659,0.00306344,0.00321019,0.0033619,0.00351267,0.00360018,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,6.888E-4,0.00163121,0.00288838,0.00452595,0.00639623,0.00864611,0.0112998,0.0135947,0.0158377,0.0176912,0.0202338,0.0226421,0.0248525,0.0267533,0.0287089,0.0308897,0.0324277,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,4.68662E-6,1.11896E-5,2.07035E-5,3.37978E-5,4.94868E-5,6.93238E-5,9.32518E-5,1.15666E-4,1.38975E-4,1.60745E-4,1.83654E-4,2.04839E-4,2.24772E-4,2.42157E-4,2.57643E-4,2.74784E-4,2.89878E-4,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,0.0010025,0.00225374,0.00376353,0.0054393,0.0069612,0.00850531,0.00994311,0.01063,0.011084,0.0111552,0.0118115,0.0123384,0.0129419,0.0136372,0.0141715,0.0147025,0.014954,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,1.16606E-4,2.57874E-4,4.26893E-4,6.24734E-4,8.29864E-4,0.00105628,0.00129794,0.00213279,0.00356166,0.00607799,0.00711475,0.00818246,0.00919554,0.0100929,0.010993,0.0119465,0.0123626,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,1.11343E-4,2.47271E-4,4.11161E-4,6.04591E-4,8.07331E-4,0.00103345,0.00127771,0.00146193,0.00161892,0.00171769,0.00204313,0.00238198,0.00271742,0.00302945,0.00335342,0.00370831,0.00387791,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,8.78503E-5,1.92778E-4,3.15278E-4,4.55583E-4,6.05851E-4,7.6589E-4,9.37798E-4,0.00106622,0.00117653,0.00124941,0.00147378,0.00169032,0.0019044,0.00209925,0.00229357,0.00249857,0.00259218,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,1.04684E-4,2.36386E-4,4.05383E-4,6.11136E-4,8.26442E-4,0.00106815,0.00132325,0.00155268,0.00177578,0.00198244,0.00221043,0.00242561,0.00261744,0.00278867,0.00295419,0.0031185,0.00328499,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,8.83534E-4,0.00209826,0.00368738,0.00566035,0.00769173,0.0100059,0.0124887,0.0145106,0.0165739,0.0184458,0.01974,0.020935,0.0220948,0.0233068,0.0244613,0.0255709,0.0264939,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,3.38814E-4,7.10102E-4,0.00121518,0.00182657,0.00243991,0.00316961,0.00408532,0.0046483,0.00523952,0.00580821,0.0067506,0.00772504,0.008695,0.00953175,0.0103893,0.0111059,0.0116558,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,0.00195558,0.0040056,0.00677299,0.0104307,0.0150482,0.0206422,0.0277809,0.0329416,0.0386457,0.0439312,0.0522033,0.0612308,0.0705391,0.0794363,0.0887198,0.0976633,0.104987,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,7.49441E-6,1.63984E-5,2.98781E-5,4.90693E-5,7.47804E-5,1.08438E-4,1.53201E-4,1.90032E-4,2.32456E-4,2.77638E-4,3.35262E-4,4.00028E-4,4.71744E-4,5.47577E-4,6.2681E-4,7.07812E-4,7.79077E-4,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,0.0028462,0.00553429,0.00882512,0.0125357,0.0163774,0.020306,0.0244454,0.0257577,0.0270463,0.0277009,0.0304737,0.0333665,0.0367332,0.0404917,0.0437946,0.0464846,0.0484146,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,3.31058E-4,6.33235E-4,0.00100102,0.00143979,0.00195239,0.00252182,0.00319102,0.005168,0.00869085,0.015093,0.018356,0.0221277,0.0260998,0.0299679,0.0339718,0.0377711,0.0400246,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,3.16116E-4,6.07198E-4,9.64135E-4,0.00139337,0.00189938,0.00246732,0.00314127,0.00354242,0.00395036,0.00426542,0.00527128,0.00644156,0.0077129,0.00899508,0.0103631,0.0117245,0.012555,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,2.56714E-4,4.7998E-4,7.43193E-4,0.00105045,0.00140725,0.00180299,0.00225821,0.00251381,0.00272611,0.00286546,0.00339935,0.00396856,0.00454438,0.00507515,0.00563876,0.00617979,0.00650823,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,1.93913E-4,3.97499E-4,6.69497E-4,0.00101483,0.0014265,0.00190628,0.0024761,0.00290309,0.00337737,0.00388499,0.00454096,0.0052808,0.0060558,0.00685873,0.00770671,0.00848953,0.00925083,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,0.0027253,0.00554642,0.00926536,0.0139323,0.0192611,0.0253757,0.0325615,0.0372744,0.0428037,0.048313,0.0534382,0.0589312,0.0645436,0.0702273,0.0755863,0.0796094,0.0833326,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,1.7512E-4,4.12832E-4,7.30005E-4,0.00111808,0.0014378,0.00181783,0.00225375,0.00256186,0.00282085,0.00303489,0.00336769,0.00367776,0.00396221,0.00419211,0.00444169,0.00468189,0.00486818,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,0.00101076,0.00232874,0.0040688,0.00638482,0.00886767,0.0118386,0.0153259,0.0181555,0.0208061,0.0229548,0.0260428,0.0291509,0.0321439,0.0349365,0.0379298,0.0411716,0.0438489,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,4.97019E-6,1.15985E-5,2.12433E-5,3.49549E-5,5.12214E-5,7.20047E-5,9.73033E-5,1.19803E-4,1.42525E-4,1.63816E-4,1.8716E-4,2.10591E-4,2.33882E-4,2.56053E-4,2.77558E-4,3.00474E-4,3.23773E-4,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,0.00147109,0.00321747,0.0053016,0.0076733,0.00965095,0.0116458,0.0134858,0.0141961,0.0145612,0.0144742,0.0152025,0.0158852,0.0167389,0.0178084,0.0187232,0.0195964,0.0202209,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,1.71111E-4,3.68143E-4,6.01356E-4,8.81322E-4,0.00115052,0.0014463,0.0017604,0.0028483,0.00467898,0.00788636,0.00915734,0.0105346,0.0118934,0.0131801,0.0145237,0.015923,0.0167167,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,1.63388E-4,3.53006E-4,5.79195E-4,8.52905E-4,0.00111928,0.00141505,0.00173295,0.00195237,0.0021268,0.00222875,0.0026297,0.00306672,0.00351468,0.00395608,0.00443049,0.00494265,0.00524372,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,1.29114E-4,2.7592E-4,4.45293E-4,6.43407E-4,8.41316E-4,0.00104779,0.00126841,0.00141679,0.00153428,0.00160637,0.00187864,0.00215265,0.00243275,0.00270351,0.00298413,0.00327664,0.003435,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,1.20708E-4,2.6701E-4,4.54565E-4,6.92205E-4,9.34868E-4,0.00121032,0.00150405,0.00175168,0.0019839,0.00220156,0.00244603,0.00269736,0.00293439,0.00316505,0.00340273,0.0036324,0.00389307,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,0.00135186,0.00312088,0.00540948,0.0083072,0.0110637,0.0141871,0.0175182,0.0200396,0.0225026,0.0246985,0.0261536,0.0276257,0.0291111,0.0307747,0.0324199,0.0339082,0.0353274,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,1.19397E-4,2.42308E-4,4.18401E-4,6.36239E-4,8.76985E-4,0.00119039,0.00161217,0.00192547,0.00228531,0.00267259,0.00326345,0.00392231,0.00465248,0.00537401,0.00614882,0.00688546,0.00744922,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,6.89141E-4,0.00136683,0.00233202,0.00363326,0.00540881,0.00775244,0.010963,0.0136454,0.016856,0.0202145,0.0252367,0.0310893,0.0377437,0.0447862,0.0525079,0.0605494,0.0670969,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,1.8031E-6,3.90237E-6,7.27424E-6,1.23795E-5,1.98565E-5,3.05007E-5,4.55262E-5,5.93027E-5,7.6345E-5,9.55963E-5,1.20508E-4,1.4967E-4,1.83799E-4,2.21343E-4,2.61745E-4,3.03925E-4,3.45335E-4,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,0.00100299,0.00188847,0.0030386,0.00436647,0.00588657,0.00762619,0.00964674,0.0106696,0.0117967,0.0127463,0.0147319,0.0169415,0.019655,0.0228292,0.0259194,0.0288195,0.0309418,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,1.16664E-4,2.16079E-4,3.44665E-4,5.01513E-4,7.01753E-4,9.471E-4,0.00125925,0.00214075,0.00379067,0.0069449,0.00887388,0.0112351,0.0139654,0.016896,0.0201058,0.0234173,0.0255797,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,1.11399E-4,2.07194E-4,3.31964E-4,4.85343E-4,6.82699E-4,9.26633E-4,0.00123962,0.00146738,0.00172302,0.00196269,0.0025483,0.00327063,0.00412698,0.00507143,0.00613332,0.00726895,0.00802388,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,6.23083E-5,1.04316E-4,1.51158E-4,2.02873E-4,2.65102E-4,3.41215E-4,4.35812E-4,4.99178E-4,5.63514E-4,6.19649E-4,7.49677E-4,8.94271E-4,0.00105044,0.00120689,0.00137878,0.00155874,0.00168665,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,5.0256E-5,1.01612E-4,1.7489E-4,2.73814E-4,4.03796E-4,5.7083E-4,7.84252E-4,9.68546E-4,0.0011906,0.00144552,0.00176596,0.00214267,0.00256691,0.00302995,0.00353428,0.00402596,0.00452798,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,0.00103126,0.00202172,0.00339512,0.00514271,0.00731313,0.0100494,0.0135462,0.0163024,0.0197586,0.0236112,0.0274868,0.0319012,0.0369018,0.0424101,0.048036,0.0531567,0.0573935,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,1.65445E-4,3.20123E-4,5.26758E-4,7.74584E-4,0.00103829,0.00136857,0.00179186,0.00207928,0.00236703,0.00265544,0.00307801,0.00351239,0.00395903,0.0043921,0.00489393,0.00543792,0.00583804,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,9.54921E-4,0.00180578,0.00293597,0.00442329,0.00640368,0.00891285,0.012185,0.0147354,0.0174588,0.0200848,0.0238026,0.0278401,0.032118,0.0366032,0.0417917,0.04782,0.0525846,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,4.64348E-6,8.98967E-6,1.53616E-5,2.41881E-5,3.68465E-5,5.35389E-5,7.52526E-5,9.25549E-5,1.10862E-4,1.2976E-4,1.51346E-4,1.74281E-4,1.99435E-4,2.26514E-4,2.55467E-4,2.8864E-4,3.17667E-4,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,0.00138982,0.00249493,0.00382554,0.00531592,0.00696932,0.0087677,0.010722,0.0115219,0.0122186,0.0126645,0.0138948,0.0151709,0.0167254,0.018658,0.0206296,0.0227608,0.0242494,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,1.61658E-4,2.8547E-4,4.33927E-4,6.10564E-4,8.30831E-4,0.00108887,0.00139961,0.00231175,0.00392622,0.00690033,0.00836964,0.0100609,0.0118838,0.0138088,0.0160025,0.0184943,0.0200471,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,1.54361E-4,2.73733E-4,4.17936E-4,5.90877E-4,8.08271E-4,0.00106533,0.00137779,0.0015846,0.00178463,0.00195009,0.0024035,0.00292882,0.00351185,0.00414481,0.00488159,0.00574079,0.0062884,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,1.30302E-4,2.26806E-4,3.39857E-4,4.72688E-4,6.35369E-4,8.30113E-4,0.00106607,0.00122159,0.00136014,0.00147943,0.00180341,0.00214265,0.00252222,0.00292313,0.00338717,0.00390917,0.00423651,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,1.13184E-4,2.07056E-4,3.28589E-4,4.79291E-4,6.72972E-4,9.03203E-4,0.00117347,0.00137548,0.00158254,0.00180366,0.00206111,0.00234093,0.0026355,0.00295688,0.0033169,0.0037043,0.00406734,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,0.00126088,0.00238465,0.00384453,0.00567088,0.00786703,0.0105297,0.0137577,0.0161089,0.0187466,0.0214905,0.0238094,0.0262931,0.0289697,0.0320593,0.0354613,0.0390248,0.0419157,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,0.00102438,0.00196191,0.00317,0.00459041,0.00591331,0.00749383,0.0093463,0.0102823,0.0110814,0.0118037,0.0129852,0.0141592,0.0152721,0.016212,0.0170864,0.0174843,0.0172102,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,0.00591255,0.0110669,0.0176685,0.0262137,0.0364704,0.0488038,0.0635564,0.0728684,0.0817346,0.089279,0.100416,0.11223,0.123896,0.135108,0.145909,0.153754,0.155016,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,3.80562E-5,6.94372E-5,1.12896E-4,1.70322E-4,2.40228E-4,3.28252E-4,4.35448E-4,5.13921E-4,5.93383E-4,6.68816E-4,7.50506E-4,8.32806E-4,9.10792E-4,9.87176E-4,0.00105239,0.00109874,0.00112161,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,0.00860528,0.0152905,0.0230219,0.0315037,0.0396918,0.048009,0.0559256,0.0569774,0.0572022,0.0562951,0.0586179,0.0611573,0.0645189,0.0688698,0.0720248,0.0731819,0.0714857,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,0.00100093,0.00174954,0.00261135,0.00361838,0.00473177,0.00596226,0.00730034,0.0114319,0.0183809,0.0306727,0.035309,0.0405578,0.0458423,0.0509707,0.0558702,0.059464,0.0590975,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,9.55754E-4,0.0016776,0.00251511,0.00350171,0.00460329,0.00583341,0.00718652,0.00783601,0.0083549,0.00866837,0.0101396,0.0118067,0.0135471,0.0152992,0.0170433,0.0184582,0.0185378,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,5.22317E-4,8.62805E-4,0.00121062,0.00158971,0.00202456,0.00248536,0.00300119,0.00323198,0.0034445,0.00359804,0.00412205,0.00454978,0.00497775,0.0054066,0.00577565,0.00604813,0.00597844,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,8.23074E-4,0.00143013,0.00216643,0.00303546,0.00397626,0.0050322,0.00616573,0.00688913,0.00759054,0.00829711,0.00909349,0.00995128,0.0107621,0.0116108,0.012408,0.0129144,0.0132646,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,0.00615298,0.0114597,0.017971,0.0258263,0.03423,0.0435339,0.0534222,0.0584861,0.0640786,0.0700323,0.0746006,0.0806062,0.0881334,0.0979113,0.108268,0.117228,0.125223,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,2.6726E-5,6.42908E-5,1.2383E-4,2.02339E-4,2.91178E-4,4.00538E-4,5.50155E-4,6.9286E-4,8.57815E-4,0.00103551,0.00130995,0.0016159,0.00194822,0.00226844,0.00260311,0.00290675,0.00318242,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,1.54258E-4,3.62657E-4,6.90186E-4,0.00115547,0.00179584,0.00260851,0.00374115,0.00491017,0.00632708,0.00783223,0.01013,0.0128081,0.0158052,0.0189048,0.0222293,0.0255614,0.0286648,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,9.0684E-7,2.21649E-6,4.4649E-6,7.87153E-6,1.26334E-5,1.89005E-5,2.76107E-5,3.6726E-5,4.76726E-5,5.98907E-5,7.59003E-5,9.43582E-5,1.1551E-4,1.38376E-4,1.61372E-4,1.83846E-4,2.06674E-4,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,2.24511E-4,5.0106E-4,8.99305E-4,0.00138864,0.00195447,0.00256603,0.00329197,0.00383937,0.00442802,0.00493863,0.00591341,0.0069795,0.00823052,0.00963651,0.010973,0.0121664,0.0132188,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,2.61142E-5,5.73315E-5,1.02007E-4,1.59493E-4,2.32997E-4,3.18677E-4,4.29723E-4,7.70326E-4,0.00142287,0.00269084,0.00356199,0.00462861,0.00584799,0.00713199,0.00851184,0.00988582,0.010928,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,2.49356E-5,5.49741E-5,9.82481E-5,1.54351E-4,2.26671E-4,3.1179E-4,4.23023E-4,5.28022E-4,6.46753E-4,7.60455E-4,0.00102289,0.00134743,0.00172817,0.00214071,0.00259655,0.00306865,0.00342792,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,8.56105E-6,1.75076E-5,2.87243E-5,4.18067E-5,5.75453E-5,7.59277E-5,9.82804E-5,1.18021E-4,1.36006E-4,1.52647E-4,1.88392E-4,2.25784E-4,2.65509E-4,3.04057E-4,3.46188E-4,3.87352E-4,4.22779E-4,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,2.04699E-5,4.69609E-5,8.74107E-5,1.41967E-4,2.10594E-4,2.91532E-4,3.93891E-4,4.99365E-4,6.23019E-4,7.6287E-4,9.4689E-4,0.00115977,0.00139467,0.00164561,0.00190413,0.00214037,0.00239946,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,2.03019E-4,4.76877E-4,9.00171E-4,0.00147654,0.00220895,0.00309832,0.00426223,0.00543681,0.00690929,0.008563,0.0103532,0.0123569,0.0145523,0.0168774,0.0192032,0.0212212,0.0232428,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,4.6447E-5,1.1918E-4,2.25488E-4,3.6014E-4,5.00211E-4,6.7505E-4,9.06962E-4,0.00110846,0.00130721,0.00146442,0.00169612,0.00189616,0.00207944,0.00223477,0.00241737,0.00263119,0.00274496,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,2.68085E-4,6.72279E-4,0.0012568,0.00205659,0.00308505,0.00439628,0.0061675,0.00785548,0.00964175,0.0110764,0.0131163,0.0150295,0.0168697,0.0186243,0.0206432,0.0231382,0.0247246,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,1.35356E-6,3.43338E-6,6.72622E-6,1.14956E-5,1.79464E-5,2.66617E-5,3.86852E-5,5.08025E-5,6.41745E-5,7.615E-5,9.00862E-5,1.02784E-4,1.1519E-4,1.27244E-4,1.39735E-4,1.55205E-4,1.66728E-4,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,3.90177E-4,9.28845E-4,0.00163759,0.00247162,0.00335755,0.00432468,0.005427,0.00614237,0.00674781,0.00698424,0.00765666,0.00819001,0.00878486,0.0094935,0.01019,0.011013,0.0114017,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,4.53838E-5,1.06279E-4,1.8575E-4,2.83879E-4,4.00263E-4,5.37085E-4,7.08423E-4,0.0012324,0.00216829,0.00380541,0.00461205,0.00543139,0.00624186,0.00702615,0.0079045,0.00894864,0.00942587,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,4.33354E-5,1.01909E-4,1.78905E-4,2.74726E-4,3.89395E-4,5.25478E-4,6.97378E-4,8.4475E-4,9.85579E-4,0.00107544,0.00132443,0.00158112,0.00184456,0.00210895,0.00241128,0.00277774,0.00295672,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,2.79258E-5,6.36063E-5,1.07275E-4,1.5881E-4,2.19471E-4,2.88645E-4,3.75081E-4,4.51229E-4,5.25735E-4,5.79316E-4,7.08344E-4,8.21689E-4,9.37299E-4,0.00104746,0.00115866,0.0012797,0.00133287,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,3.22407E-5,7.74611E-5,1.40892E-4,2.22856E-4,3.21517E-4,4.40917E-4,5.89676E-4,7.34553E-4,8.8653E-4,0.00102007,0.00117684,0.0013201,0.00145377,0.00158619,0.00173215,0.00190067,0.00203642,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,3.46601E-4,8.6948E-4,0.00160911,0.00257224,0.00369636,0.00505256,0.00675055,0.00829678,0.00998663,0.011445,0.0126941,0.0137935,0.0148892,0.0160984,0.0174336,0.0189538,0.0199614,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,0.00606942,0.0105877,0.0158727,0.0215474,0.0261949,0.0316825,0.0378956,0.0399004,0.0413938,0.0424997,0.0448165,0.04677,0.0483203,0.0492228,0.0506506,0.0523407,0.0514497,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,0.0350317,0.0597242,0.088469,0.123047,0.161557,0.206333,0.257697,0.282767,0.305313,0.321453,0.346572,0.370712,0.392004,0.410216,0.432531,0.460274,0.46342,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,1.83358E-4,3.20547E-4,4.96388E-4,7.19766E-4,9.82516E-4,0.00130386,0.0016809,0.00190574,0.00212595,0.00232542,0.00252,0.00270807,0.00288885,0.00305114,0.00322025,0.0034261,0.00350043,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,0.050986,0.0825172,0.115274,0.147879,0.175828,0.202973,0.226757,0.221101,0.213674,0.202693,0.202311,0.202012,0.204136,0.209103,0.213509,0.219075,0.213706,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,0.00593048,0.00944164,0.0130754,0.0169847,0.0209609,0.0252073,0.0296001,0.0443615,0.0686604,0.110439,0.121864,0.133969,0.145043,0.154757,0.165621,0.17801,0.176672,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,0.00566282,0.00905342,0.0125936,0.0164371,0.0203917,0.0246625,0.0291386,0.0304077,0.0312091,0.0312109,0.0349954,0.0389993,0.0428625,0.0464514,0.0505229,0.0552559,0.0554187,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,0.00404723,0.00635876,0.00863601,0.0109611,0.0138093,0.0163144,0.0189221,0.0194903,0.0197876,0.0197553,0.021865,0.0238462,0.0257244,0.0272898,0.0290727,0.0310084,0.0307769,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,0.00433995,0.00715839,0.010294,0.0138109,0.0174456,0.0213731,0.0253874,0.027243,0.0289534,0.0306016,0.0322759,0.0340324,0.0356085,0.0371186,0.0389304,0.0409314,0.0417145,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,0.0446744,0.0758661,0.111005,0.150479,0.189356,0.231385,0.274176,0.288764,0.304303,0.318498,0.321667,0.327484,0.335695,0.348176,0.363613,0.3813,0.385089,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,4.00206E-5,8.51488E-5,1.50802E-4,2.35341E-4,3.28462E-4,4.47646E-4,6.07548E-4,7.63514E-4,9.25719E-4,0.00108572,0.0013068,0.00153134,0.00176057,0.00198306,0.00223082,0.00249851,0.00270091,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,2.30992E-4,4.80314E-4,8.4052E-4,0.00134392,0.00202579,0.00291531,0.00413143,0.00541088,0.00682793,0.00821202,0.0101056,0.0121378,0.0142828,0.0165266,0.0190501,0.0219714,0.0243277,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,1.03105E-6,2.11019E-6,3.79E-6,6.23784E-6,9.80612E-6,1.46761E-5,2.1423E-5,2.87369E-5,3.70644E-5,4.57173E-5,5.59661E-5,6.69693E-5,7.866E-5,9.12174E-5,1.04569E-4,1.20029E-4,1.3422E-4,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,3.36192E-4,6.6362E-4,0.00109519,0.00161513,0.00220473,0.00286783,0.00363539,0.00423088,0.00477855,0.00517811,0.00589917,0.00661427,0.00743775,0.00842421,0.00940365,0.0104577,0.0112187,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,3.91044E-5,7.59316E-5,1.24226E-4,1.85507E-4,2.62832E-4,3.56157E-4,4.74552E-4,8.4888E-4,0.0015355,0.00282132,0.00355341,0.0043864,0.00528471,0.00623477,0.00729449,0.0084974,0.00927458,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,3.73395E-5,7.28095E-5,1.19648E-4,1.79526E-4,2.55695E-4,3.4846E-4,4.67154E-4,5.81867E-4,6.9795E-4,7.9733E-4,0.00102043,0.00127692,0.00156171,0.00187141,0.00222519,0.00263767,0.00290926,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,2.36991E-5,4.51686E-5,7.17266E-5,1.04349E-4,1.44057E-4,1.9284E-4,2.54371E-4,3.1347E-4,3.72495E-4,4.24981E-4,5.3383E-4,6.48805E-4,7.78138E-4,9.15328E-4,0.00106431,0.00122793,0.00133944,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,2.52778E-5,4.94344E-5,8.3061E-5,1.27347E-4,1.85231E-4,2.56712E-4,3.46647E-4,4.42783E-4,5.47625E-4,6.57411E-4,7.84882E-4,9.22101E-4,0.00106279,0.00121471,0.00138117,0.00156198,0.00173735,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,3.00788E-4,6.28721E-4,0.00109333,0.00171276,0.00247333,0.00341983,0.00462392,0.00585313,0.00724345,0.00867459,0.00996088,0.0112771,0.0126632,0.01422,0.015864,0.0175754,0.0189908,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,6.41585E-5,1.73817E-4,3.36815E-4,5.37816E-4,7.39363E-4,9.53246E-4,0.00120757,0.00143274,0.00163628,0.00180581,0.00204955,0.00227077,0.00246817,0.00262343,0.00279706,0.00298408,0.00308087,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,3.70313E-4,9.80482E-4,0.00187729,0.00307122,0.00456003,0.00620804,0.00821168,0.0101536,0.0120689,0.0136585,0.0158495,0.0179988,0.0200233,0.0218633,0.0238855,0.0262414,0.0277501,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,2.37571E-6,6.36267E-6,1.25572E-5,2.09909E-5,3.14501E-5,4.33797E-5,5.79106E-5,7.24058E-5,8.679E-5,9.99247E-5,1.1412E-4,1.27291E-4,1.40096E-4,1.52109E-4,1.63958E-4,1.77662E-4,1.88125E-4,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,5.38962E-4,0.00135467,0.00244609,0.003691,0.00496281,0.00610694,0.00722575,0.00793929,0.00844647,0.00861239,0.00925213,0.00980806,0.0104271,0.0111446,0.0117906,0.0124901,0.012797,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,6.26899E-5,1.55002E-4,2.77457E-4,4.23932E-4,5.9163E-4,7.58424E-4,9.43225E-4,0.00159293,0.00271412,0.00469251,0.00557309,0.00650444,0.00740873,0.00824811,0.00914604,0.0101488,0.0105793,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,5.98604E-5,1.48628E-4,2.67233E-4,4.10263E-4,5.75565E-4,7.42033E-4,9.2852E-4,0.00109188,0.00123368,0.00132614,0.00160042,0.00189349,0.00218939,0.00247573,0.00279001,0.00315028,0.00331854,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,3.32503E-5,7.99055E-5,1.39049E-4,2.07184E-4,2.89803E-4,3.74907E-4,4.65503E-4,5.46128E-4,5.90323E-4,6.30351E-4,7.39596E-4,8.11698E-4,9.03654E-4,9.91092E-4,0.0011016,0.00120889,0.00126903,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,5.32466E-5,1.34806E-4,2.47727E-4,3.85019E-4,5.37768E-4,6.90832E-4,8.565E-4,0.00102211,0.00117635,0.00131891,0.00147522,0.00162201,0.00175741,0.00188629,0.00202401,0.00216895,0.00229279,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,4.83965E-4,0.00128584,0.00245202,0.00394708,0.00566381,0.00746386,0.00947862,0.011385,0.0133192,0.0150708,0.0163671,0.0175607,0.0186944,0.0198649,0.0210802,0.0223268,0.0231222,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,5.6578E-4,9.57026E-4,0.00139437,0.0018373,0.00223222,0.00266959,0.00315574,0.00324147,0.00328417,0.00330769,0.00342765,0.0035171,0.00358132,0.00360199,0.00365641,0.0037241,0.00361132,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,0.00326559,0.00539847,0.00777173,0.0104919,0.0137672,0.0173858,0.0214596,0.0229717,0.0242234,0.0250182,0.0265065,0.0278775,0.0290538,0.0300185,0.0312239,0.032749,0.032528,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,1.55407E-5,2.64823E-5,4.03577E-5,5.78737E-5,7.73835E-5,1.01841E-4,1.30963E-4,1.48417E-4,1.65783E-4,1.81614E-4,1.96393E-4,2.10783E-4,2.24566E-4,2.36959E-4,2.49561E-4,2.64495E-4,2.68527E-4,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,0.00475282,0.00745873,0.0101265,0.0126092,0.0149833,0.0171026,0.0188831,0.017962,0.0169528,0.0157753,0.0154732,0.0151913,0.0151298,0.0153015,0.015413,0.0155875,0.0150003,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,5.52829E-4,8.5343E-4,0.00114864,0.00144824,0.0017862,0.00212398,0.00246493,0.00360388,0.00544749,0.00859527,0.00932037,0.0100744,0.0107501,0.0113247,0.011956,0.0126656,0.0124008,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,5.27877E-4,8.18339E-4,0.00110631,0.00140155,0.0017377,0.00207808,0.0024265,0.00247029,0.00247611,0.0024291,0.00267652,0.00293275,0.00317681,0.00339918,0.00364719,0.00393152,0.00388991,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,4.62005E-4,6.86612E-4,8.92663E-4,0.00109561,0.00135045,0.00160579,0.00187123,0.00190053,0.00190855,0.00187723,0.00204333,0.00221741,0.00238296,0.00254533,0.00272666,0.00293281,0.00290845,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,3.83119E-4,6.1502E-4,8.6778E-4,0.00114651,0.00142714,0.00173616,0.00205563,0.00219117,0.00231507,0.0024335,0.00254788,0.00266895,0.00277495,0.00287665,0.00299668,0.00312506,0.00315189,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,0.00445515,0.00733846,0.0104387,0.0137407,0.0173566,0.0210606,0.0247667,0.0255011,0.0262657,0.0269405,0.0266588,0.0265382,0.0265729,0.0269029,0.0273712,0.027907,0.0273766,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,1.77445E-4,3.82756E-4,6.88933E-4,0.00110032,0.00156064,0.00214373,0.00286362,0.00327245,0.00364571,0.0040114,0.004573,0.00514928,0.00575891,0.00634492,0.00706901,0.00785905,0.00835517,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,0.00102419,0.00215908,0.00383988,0.00628342,0.00962528,0.0139611,0.0194731,0.0231912,0.02689,0.0303408,0.0353636,0.0408146,0.0467198,0.0528777,0.0603659,0.0691109,0.075257,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,3.97491E-6,8.57578E-6,1.63202E-5,2.84788E-5,4.62772E-5,7.13387E-5,1.04934E-4,1.31431E-4,1.59875E-4,1.89721E-4,2.25052E-4,2.64338E-4,3.07767E-4,3.55357E-4,4.1025E-4,4.75522E-4,5.28886E-4,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,0.00149063,0.00298307,0.00500332,0.00755144,0.0104755,0.0137338,0.0171351,0.0181337,0.0188191,0.0191315,0.0206435,0.0222411,0.0243293,0.0269538,0.0297983,0.0328946,0.0347048,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,1.73384E-4,3.41324E-4,5.67522E-4,8.67326E-4,0.00124881,0.0017056,0.00223676,0.00363833,0.00604718,0.0104239,0.0124348,0.0147497,0.0172866,0.0199485,0.0231148,0.0267285,0.0286906,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,1.65558E-4,3.27289E-4,5.46607E-4,8.39361E-4,0.0012149,0.00166874,0.00220189,0.0024939,0.0027487,0.00294588,0.00357088,0.00429375,0.00510844,0.00598768,0.00705119,0.00829677,0.00899971,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,5.03982E-5,9.07613E-5,1.38136E-4,1.94761E-4,2.68019E-4,3.49381E-4,4.43113E-4,4.89572E-4,5.32648E-4,5.69642E-4,6.64488E-4,7.5709E-4,8.55152E-4,9.54121E-4,0.00106169,0.00117608,0.00124341,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,9.91457E-5,2.02418E-4,3.56695E-4,5.74448E-4,8.60071E-4,0.00121983,0.00164787,0.00195009,0.00225737,0.00258772,0.00296952,0.00339844,0.00385588,0.00435969,0.00496138,0.00563168,0.00620669,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,0.00142371,0.00299991,0.00527714,0.00843462,0.0123855,0.0172566,0.0229695,0.026461,0.0301311,0.0339157,0.0368365,0.0400125,0.0436195,0.0477972,0.0526891,0.057817,0.0613499,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,1.90404E-4,4.00615E-4,7.00018E-4,0.00107562,0.0014772,0.00198614,0.00262254,0.00304353,0.00343949,0.00380725,0.00430373,0.00478151,0.00520769,0.00556194,0.00593692,0.00626592,0.00638282,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,0.00109898,0.00225982,0.00390167,0.00614239,0.00911064,0.0129348,0.0178337,0.0215689,0.025369,0.0287967,0.0332813,0.0378995,0.0422479,0.0463525,0.0506984,0.0551013,0.0574916,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,5.11697E-6,1.09638E-5,2.04188E-5,3.45162E-5,5.44404E-5,8.19537E-5,1.18446E-4,1.49023E-4,1.81558E-4,2.14241E-4,2.48401E-4,2.83648E-4,3.1815E-4,3.52947E-4,3.86374E-4,4.20594E-4,4.39166E-4,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,0.00159948,0.00312226,0.00508383,0.00738194,0.00991538,0.0127241,0.0156925,0.0168652,0.0177546,0.0181578,0.019428,0.0206526,0.0220006,0.0236276,0.0250262,0.0262264,0.0265122,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,1.86045E-4,3.57249E-4,5.76653E-4,8.47858E-4,0.00118204,0.00158022,0.00204845,0.00338381,0.00570512,0.0098934,0.0117026,0.0136962,0.0156319,0.0174868,0.019413,0.0213103,0.0219178,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,1.77648E-4,3.4256E-4,5.55403E-4,8.2052E-4,0.00114994,0.00154607,0.00201652,0.00231944,0.00259322,0.00279596,0.00336061,0.00398708,0.00461948,0.00524879,0.00592196,0.00661491,0.0068752,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,4.41441E-5,7.30291E-5,1.04322E-4,1.39074E-4,1.78695E-4,2.27001E-4,2.84E-4,3.18085E-4,3.47488E-4,3.70518E-4,4.24369E-4,4.69916E-4,5.12262E-4,5.49805E-4,5.88403E-4,6.23584E-4,6.37431E-4,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,1.19546E-4,2.4053E-4,4.12647E-4,6.40459E-4,9.26706E-4,0.00128048,0.00169756,0.00201957,0.00234528,0.00267728,0.00301502,0.0033685,0.00369358,0.00402341,0.00435633,0.00466082,0.00485608,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,0.00132958,0.00271929,0.00462784,0.00709021,0.010036,0.0136392,0.0178819,0.0208494,0.0240061,0.0270967,0.0290908,0.0310998,0.0329512,0.0349645,0.0369064,0.0384267,0.0391405,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,1.13192E-4,2.6949E-4,4.69895E-4,7.00067E-4,8.78098E-4,0.00108682,0.0013257,0.00148815,0.00162804,0.00173791,0.00191507,0.00207015,0.00220211,0.00229753,0.00240253,0.00251637,0.00257231,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,6.53327E-4,0.00152016,0.00261904,0.00399776,0.00541568,0.00707794,0.00901498,0.0105463,0.0120081,0.0131449,0.0148095,0.0164086,0.0178648,0.0191473,0.0205164,0.0221284,0.0231694,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,5.01508E-6,1.14775E-5,1.99502E-5,3.06426E-5,4.26939E-5,5.75314E-5,7.52015E-5,8.99344E-5,1.04462E-4,1.17587E-4,1.31561E-4,1.44796E-4,1.57478E-4,1.69384E-4,1.80624E-4,1.93403E-4,2.03E-4,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,9.50868E-4,0.00210031,0.00341258,0.00480452,0.00589404,0.00696268,0.0079326,0.00824635,0.0084039,0.00828857,0.00864505,0.00894151,0.0093031,0.00976011,0.0101275,0.0105324,0.0106846,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,1.10601E-4,2.40318E-4,3.87085E-4,5.51826E-4,7.02644E-4,8.64698E-4,0.0010355,0.00165454,0.00270045,0.00451608,0.00520741,0.00592976,0.00661008,0.00722347,0.00785597,0.00855812,0.00883298,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,1.05609E-4,2.30437E-4,3.7282E-4,5.34034E-4,6.83566E-4,8.46011E-4,0.00101935,0.00113411,0.00122747,0.00127628,0.0014954,0.0017262,0.00195338,0.00216817,0.00239648,0.00265652,0.00277074,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,5.8135E-5,1.24711E-4,1.94714E-4,2.66986E-4,3.3437E-4,4.01529E-4,4.67931E-4,5.08002E-4,5.1624E-4,5.29861E-4,6.06282E-4,6.69537E-4,7.4043E-4,8.01308E-4,8.81864E-4,9.39755E-4,9.61561E-4,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,1.07225E-4,2.33509E-4,3.79644E-4,5.43595E-4,7.0068E-4,8.72303E-4,0.00105067,0.00119241,0.00132217,0.00144135,0.00157533,0.00170483,0.00182091,0.00193123,0.00204525,0.00216119,0.002263,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,8.38036E-4,0.00196766,0.00338899,0.00510237,0.00666354,0.00840786,0.0102606,0.0116469,0.0130401,0.0142657,0.0150251,0.0157197,0.0163587,0.0170365,0.0177068,0.0183776,0.0188182,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,1.24121E-4,3.05607E-4,5.64227E-4,8.91168E-4,0.00121154,0.0016268,0.00219153,0.00269446,0.00325293,0.00384631,0.00478406,0.00582077,0.00693388,0.00800564,0.00914236,0.0101833,0.0111479,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,7.16409E-4,0.0017239,0.00314481,0.00508904,0.0074722,0.0105946,0.0149028,0.0190952,0.023993,0.0290922,0.0369958,0.046137,0.0562518,0.0667179,0.0780712,0.0895501,0.100412,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,3.56156E-6,8.91108E-6,1.7092E-5,2.87997E-5,4.36715E-5,6.3889E-5,9.22422E-5,1.20829E-4,1.5487E-4,1.9248E-4,2.42592E-4,3.01533E-4,3.69446E-4,4.43799E-4,5.20985E-4,5.98834E-4,6.72949E-4,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,0.00104268,0.0023818,0.00409765,0.00611603,0.00813221,0.010422,0.0131135,0.0149309,0.0167916,0.0183441,0.0215963,0.0251415,0.0292931,0.0340086,0.0385382,0.042623,0.0463048,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,1.2128E-4,2.72526E-4,4.64793E-4,7.02461E-4,9.69463E-4,0.00129432,0.00171179,0.00299572,0.00539568,0.00999491,0.0130087,0.0166731,0.0208135,0.0251698,0.0298943,0.0346333,0.0382804,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,1.15806E-4,2.6132E-4,4.47664E-4,6.79811E-4,9.43139E-4,0.00126635,0.0016851,0.00205342,0.00245256,0.00282465,0.00373569,0.00485368,0.00615069,0.00755489,0.00911931,0.0107505,0.0120078,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,7.04763E-5,1.50278E-4,2.42447E-4,3.4847E-4,4.62044E-4,5.92867E-4,7.58111E-4,8.94808E-4,0.00102986,0.00113504,0.00139865,0.00168867,0.00199023,0.00227898,0.00258357,0.0028872,0.00315076,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,8.57103E-5,2.01552E-4,3.58448E-4,5.59305E-4,7.85337E-4,0.00106383,0.00141929,0.00176852,0.00217141,0.00262158,0.00322304,0.00392909,0.00470779,0.00554799,0.0064358,0.00726996,0.00814707,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,9.84741E-4,0.00236448,0.00427754,0.00678497,0.0095826,0.0130988,0.0176368,0.0219127,0.0270855,0.032785,0.0389418,0.0458036,0.0532523,0.0612007,0.0692458,0.0762842,0.0836119,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,6.24471E-4,0.00141882,0.00255116,0.00400659,0.00546311,0.00729258,0.00959727,0.0117931,0.0139951,0.0160408,0.0191785,0.0223236,0.0255772,0.0284567,0.031621,0.0347231,0.0374498,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,0.00360435,0.00800337,0.0142193,0.0228798,0.0336938,0.0474931,0.0652631,0.0835756,0.103225,0.121327,0.14831,0.176943,0.207498,0.237154,0.270027,0.305348,0.337319,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,1.11199E-5,2.79418E-5,5.6411E-5,1.01649E-4,1.64098E-4,2.49876E-4,3.63577E-4,4.85666E-4,6.20192E-4,7.55025E-4,9.19898E-4,0.00109667,0.00129735,0.00150991,0.00173513,0.0019763,0.00217357,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,0.00524586,0.0110578,0.0185276,0.027497,0.0366699,0.0467196,0.0574274,0.0653495,0.0722423,0.0765029,0.0865759,0.0964213,0.108054,0.120886,0.133293,0.145336,0.155555,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,6.10176E-4,0.00126523,0.00210156,0.00315818,0.00437152,0.00580214,0.00749638,0.0131117,0.0232138,0.0416831,0.0521497,0.0639439,0.0767751,0.0894682,0.103397,0.118093,0.128598,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,5.82637E-4,0.00121321,0.00202412,0.00305636,0.00425282,0.00567675,0.00737951,0.00898742,0.0105517,0.01178,0.0149757,0.0186146,0.0226882,0.0268545,0.0315413,0.0366571,0.0403387,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,2.92481E-4,5.65764E-4,8.86871E-4,0.00127123,0.00169436,0.00219966,0.00279978,0.00337077,0.00387379,0.0042574,0.00517499,0.00613158,0.00709899,0.00797817,0.00893504,0.00991228,0.0107532,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,2.97382E-4,6.91599E-4,0.00127513,0.00209497,0.00308729,0.00430505,0.00574507,0.00726632,0.00886212,0.0104618,0.0124174,0.0145155,0.0167788,0.0191301,0.0216859,0.0242334,0.0266393,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,0.00523033,0.0114433,0.0199444,0.0311465,0.0437689,0.0591534,0.0775417,0.0961193,0.116661,0.136828,0.156206,0.175777,0.196469,0.21739,0.239069,0.259306,0.280074,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,6.95318E-5,1.51161E-4,2.8801E-4,4.92434E-4,7.64985E-4,0.00116513,0.00172913,0.00221013,0.00274139,0.00331821,0.00410029,0.0049858,0.00589979,0.00679473,0.00778294,0.00877186,0.00936622,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,4.01326E-4,8.52682E-4,0.00160527,0.00281206,0.00471805,0.00758796,0.0117584,0.0156628,0.0202199,0.0250978,0.0317081,0.0395188,0.0478627,0.0566263,0.0664624,0.077138,0.0843638,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,1.12197E-6,2.52429E-6,5.07274E-6,9.50445E-6,1.67856E-5,2.81549E-5,4.48125E-5,6.07603E-5,7.95445E-5,1.00737E-4,1.26183E-4,1.56254E-4,1.89303E-4,2.25629E-4,2.65114E-4,3.08101E-4,3.4367E-4,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,5.841E-4,0.0011781,0.00209165,0.00337954,0.00513479,0.00746439,0.0103466,0.0122471,0.014151,0.0158255,0.0185096,0.021535,0.0249244,0.0288646,0.0328077,0.0367152,0.0389044,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,6.79402E-5,1.34798E-4,2.37253E-4,3.88159E-4,6.12132E-4,9.27006E-4,0.00135061,0.00245724,0.00454717,0.0086226,0.0111494,0.0142814,0.0177094,0.0213627,0.0254492,0.029833,0.0321625,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,6.48737E-5,1.29256E-4,2.2851E-4,3.75644E-4,5.95511E-4,9.06973E-4,0.00132955,0.00168432,0.00206688,0.00243682,0.00320176,0.00415743,0.00523341,0.00641217,0.00776332,0.00926042,0.0100888,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,2.79952E-5,4.97507E-5,7.86737E-5,1.16272E-4,1.68127E-4,2.39191E-4,3.2984E-4,3.98336E-4,4.64704E-4,5.31122E-4,6.54409E-4,7.94949E-4,9.40716E-4,0.00108857,0.00125288,0.00142336,0.00152444,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,3.02922E-5,6.40778E-5,1.19532E-4,2.0703E-4,3.3812E-4,5.25817E-4,7.76454E-4,0.00100671,0.00127001,0.00157349,0.0019203,0.00233305,0.00276645,0.00323907,0.00376254,0.00429532,0.00475064,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,5.56784E-4,0.00117299,0.00217762,0.00371119,0.00595036,0.00918107,0.013565,0.0174762,0.0221459,0.0274034,0.0322917,0.0379224,0.0437736,0.0501769,0.056911,0.0633743,0.0675618,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,6.40548E-4,0.00113592,0.0017548,0.00245549,0.00312082,0.00393153,0.0049421,0.005518,0.00609179,0.00661099,0.00740799,0.00817565,0.00892332,0.00960042,0.0104049,0.0112911,0.0117783,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,0.00369714,0.00640757,0.00978065,0.0140222,0.0192477,0.0256042,0.0336071,0.039105,0.0449318,0.0500032,0.057287,0.0648024,0.0723914,0.0800085,0.0888524,0.099292,0.10609,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,1.87016E-5,3.35963E-5,5.43054E-5,8.19443E-5,1.1893E-4,1.65895E-4,2.24945E-4,2.67316E-4,3.12205E-4,3.5539E-4,4.02657E-4,4.51504E-4,5.03223E-4,5.57387E-4,6.14901E-4,6.82232E-4,7.33199E-4,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,0.00538091,0.00885294,0.0127441,0.0168519,0.0209479,0.0251872,0.0295721,0.030577,0.0314457,0.0315297,0.0334413,0.0353128,0.0376978,0.0407834,0.0438601,0.0472598,0.0489235,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,6.25886E-4,0.00101296,0.00144555,0.00193553,0.00249725,0.00312801,0.00386025,0.00613494,0.0101045,0.0171791,0.0201436,0.0234185,0.0267852,0.0301838,0.0340226,0.038401,0.0404453,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,5.97637E-4,9.71305E-4,0.00139228,0.00187313,0.00242944,0.00306041,0.00380006,0.00420521,0.00459293,0.00485497,0.00578461,0.0068173,0.00791543,0.00905988,0.0103786,0.01192,0.0126869,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,4.3492E-4,6.79523E-4,9.36441E-4,0.00121904,0.00152967,0.00188794,0.00231311,0.00254104,0.00274988,0.00289128,0.00337902,0.00389361,0.00441701,0.00492962,0.00550424,0.00615004,0.0064653,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,4.44754E-4,7.51541E-4,0.00112419,0.00156587,0.00208834,0.00268287,0.00335295,0.00378852,0.00424014,0.00468809,0.00519188,0.00572759,0.00626592,0.00684072,0.00748835,0.00819433,0.00877123,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,0.00458753,0.00792541,0.0119626,0.0167439,0.0219599,0.0280126,0.0350401,0.039374,0.0443344,0.0490557,0.0523742,0.0557892,0.0593755,0.0635961,0.0682792,0.0732313,0.0763393,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,3.11629E-5,5.63849E-5,8.52144E-5,1.17359E-4,1.42916E-4,1.74806E-4,2.11919E-4,2.27818E-4,2.41745E-4,2.55483E-4,2.80181E-4,3.05638E-4,3.3044E-4,3.52295E-4,3.78824E-4,4.05961E-4,4.17615E-4,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,1.79867E-4,3.1806E-4,4.74956E-4,6.7018E-4,8.81434E-4,0.00113843,0.00144109,0.0016145,0.00178307,0.00193238,0.00216668,0.00242257,0.00268073,0.00293598,0.00323497,0.00356994,0.00376156,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,1.2323E-6,2.10239E-6,3.17744E-6,4.55282E-6,6.1145E-6,8.12457E-6,1.05126E-5,1.21233E-5,1.37641E-5,1.53615E-5,1.71476E-5,1.90212E-5,2.09473E-5,2.28951E-5,2.49371E-5,2.72467E-5,2.88985E-5,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,2.61783E-4,4.39444E-4,6.18863E-4,8.05425E-4,9.5929E-4,0.00111989,0.00126807,0.00126241,0.00124789,0.00121847,0.0012648,0.00132013,0.00139599,0.00149658,0.00159687,0.00169918,0.00173465,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,3.04496E-5,5.02813E-5,7.0197E-5,9.25075E-5,1.1436E-4,1.3908E-4,1.65529E-4,2.53289E-4,4.00986E-4,6.6389E-4,7.61862E-4,8.75474E-4,9.91884E-4,0.00110762,0.00123871,0.00138067,0.00143404,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,2.90752E-5,4.82139E-5,6.76101E-5,8.95249E-5,1.11254E-4,1.36074E-4,1.62948E-4,1.73618E-4,1.82265E-4,1.87621E-4,2.18783E-4,2.54857E-4,2.93117E-4,3.3246E-4,3.77869E-4,4.28571E-4,4.49831E-4,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,2.26096E-5,3.21276E-5,4.15883E-5,5.17396E-5,6.12733E-5,7.21318E-5,8.40289E-5,8.80392E-5,9.16752E-5,9.42719E-5,1.06918E-4,1.23682E-4,1.41326E-4,1.56854E-4,1.73425E-4,1.9065E-4,1.97825E-4,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,2.70394E-5,4.41029E-5,6.23982E-5,8.32719E-5,1.03764E-4,1.27643E-4,1.52683E-4,1.67017E-4,1.81187E-4,1.96193E-4,2.13962E-4,2.34067E-4,2.53913E-4,2.74463E-4,2.97594E-4,3.2145E-4,3.39886E-4,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,2.08171E-4,3.82169E-4,5.78543E-4,8.09987E-4,0.00103052,0.00128812,0.00156715,0.00170784,0.00186583,0.00203524,0.00215203,0.00229709,0.00245359,0.00263283,0.00283289,0.00302724,0.00313198,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,2.46755E-4,4.6279E-4,7.52418E-4,0.0010932,0.00143395,0.00184674,0.0023809,0.00270294,0.00306596,0.00342447,0.00398929,0.00458997,0.00521575,0.00578186,0.00638626,0.00692536,0.00724445,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,0.00142423,0.00261054,0.00419372,0.00624278,0.00884392,0.0120269,0.0161905,0.0191552,0.0226139,0.0259015,0.0308497,0.0363814,0.0423133,0.0481852,0.0545355,0.0609003,0.0652525,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,3.65782E-6,7.20153E-6,1.24738E-5,1.97852E-5,2.95496E-5,4.24876E-5,5.95478E-5,7.27972E-5,8.7938E-5,1.04046E-4,1.2423E-4,1.47013E-4,1.72421E-4,1.9902E-4,2.26796E-4,2.54475E-4,2.78856E-4,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,0.00207286,0.00360682,0.00546437,0.0075026,0.0096251,0.0118311,0.0142466,0.0149779,0.0158264,0.0163323,0.0180085,0.0198253,0.0220346,0.0245618,0.0269203,0.0289866,0.0300912,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,2.41106E-4,4.12694E-4,6.19818E-4,8.61715E-4,0.00114743,0.00146931,0.00185971,0.00300514,0.00508554,0.00889873,0.0108476,0.0131476,0.0156561,0.0181782,0.0208822,0.023553,0.0248765,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,2.30224E-4,3.95725E-4,5.96977E-4,8.33931E-4,0.00111628,0.00143755,0.00183071,0.00205988,0.00231159,0.00251486,0.00311508,0.00382737,0.00462663,0.00545632,0.00637016,0.00731108,0.00780331,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,9.72594E-5,1.51793E-4,2.10382E-4,2.74567E-4,3.4749E-4,4.34369E-4,5.37645E-4,5.95593E-4,6.43224E-4,6.84449E-4,7.98972E-4,9.26629E-4,0.00105908,0.00118622,0.00133332,0.00147963,0.00156623,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,1.01251E-4,1.87147E-4,3.00729E-4,4.42296E-4,6.11815E-4,8.14162E-4,0.00105632,0.00123115,0.00143004,0.00164956,0.00191345,0.00221616,0.00253875,0.0028742,0.00323397,0.00356285,0.00386922,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,0.00211357,0.00384095,0.00609009,0.00884881,0.0120144,0.0157009,0.0201889,0.0231419,0.0268642,0.0307108,0.0341561,0.0379948,0.0421453,0.0465163,0.0509025,0.0545881,0.0570308,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,0.0010007,0.00184323,0.00292267,0.00413739,0.00538628,0.00687576,0.00876494,0.0096911,0.0106683,0.0116072,0.0131153,0.0146315,0.016157,0.0174286,0.0187447,0.0198463,0.0205542,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,0.00577589,0.0103974,0.01629,0.0236267,0.0332199,0.0447786,0.0596031,0.068679,0.0786872,0.0877927,0.101422,0.115973,0.131075,0.145248,0.160071,0.174524,0.185136,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,2.45923E-5,4.83819E-5,8.4413E-5,1.35019E-4,2.0582E-4,2.98578E-4,4.21234E-4,5.0951E-4,6.08651E-4,7.11464E-4,8.29214E-4,9.56243E-4,0.00109554,0.00123781,0.00138048,0.00152271,0.00162426,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,0.00840637,0.0143655,0.0212256,0.0283946,0.0361542,0.0440493,0.0524469,0.0537016,0.0550695,0.0553579,0.0592052,0.0631974,0.0682573,0.0740383,0.0790154,0.0830678,0.0853757,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,9.77795E-4,0.0016437,0.0024076,0.00326128,0.00431004,0.00547051,0.00684625,0.0107746,0.0176956,0.0301621,0.0356627,0.0419108,0.0484985,0.0547958,0.0612928,0.0674968,0.0705805,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,9.33663E-4,0.00157611,0.00231888,0.00315613,0.00419301,0.00535229,0.00673951,0.00738549,0.0080434,0.00852406,0.0102412,0.0122006,0.014332,0.0164473,0.0186975,0.0209516,0.0221398,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,7.41022E-4,0.00120233,0.00169974,0.00223254,0.00287697,0.00358819,0.00441318,0.00475031,0.00503127,0.00520159,0.00598673,0.00678861,0.00760405,0.00834662,0.00914222,0.00992049,0.0103081,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,6.22731E-4,0.00113905,0.00181702,0.0026502,0.00368808,0.00489003,0.00630552,0.00718386,0.00814549,0.00915958,0.0103632,0.0116851,0.0130668,0.0144645,0.0159078,0.017205,0.0182874,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,0.00821421,0.0146504,0.0225866,0.0318744,0.0428527,0.0554361,0.0704015,0.0784345,0.0881689,0.0979524,0.105538,0.113709,0.122466,0.131437,0.139966,0.146435,0.151747,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,7.83153E-4,0.00174582,0.0032718,0.0053638,0.0079002,0.0113982,0.0160695,0.0193968,0.0227098,0.0258248,0.0295807,0.033055,0.0361958,0.0386652,0.0413005,0.0437934,0.0447386,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,0.00452024,0.00984794,0.0182359,0.0306301,0.0487246,0.0742309,0.109275,0.137461,0.167503,0.19533,0.228751,0.262003,0.293642,0.322231,0.352686,0.385111,0.402972,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,2.2047E-5,5.30367E-5,1.0932E-4,2.0166E-4,3.44866E-4,5.56783E-4,8.52586E-4,0.00109842,0.00136083,0.00162307,0.00187327,0.00212135,0.00237123,0.00261422,0.00284858,0.00309237,0.00322367,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,0.00657886,0.0136063,0.0237612,0.0368114,0.0530284,0.073022,0.0961552,0.107484,0.117227,0.123166,0.133534,0.142773,0.152914,0.164253,0.174096,0.1833,0.18583,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,7.65226E-4,0.00155683,0.00269521,0.004228,0.00632165,0.00906864,0.0125518,0.0215655,0.037669,0.0671075,0.0804351,0.0946833,0.108649,0.121564,0.135047,0.148941,0.153627,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,7.30689E-4,0.00149282,0.00259589,0.00409167,0.00615,0.00887266,0.0123561,0.0147821,0.0171221,0.0189651,0.0230984,0.0275631,0.0321075,0.0364882,0.0411964,0.0462325,0.0481899,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,6.5949E-4,0.00128932,0.00213717,0.00320801,0.0045897,0.00632434,0.00842698,0.00966404,0.0106824,0.0113465,0.0130996,0.0147732,0.0162717,0.017517,0.0188342,0.0201734,0.0204135,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,5.38088E-4,0.001197,0.00224913,0.00377475,0.00588915,0.00870432,0.0122216,0.0149141,0.0176553,0.0203981,0.0230274,0.025664,0.0281512,0.030559,0.0330171,0.035345,0.0368276,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,0.00592503,0.0127435,0.0231613,0.0377518,0.0572759,0.0835546,0.117088,0.142113,0.169662,0.196814,0.215054,0.232388,0.248756,0.265276,0.281596,0.296202,0.303906,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,0.00112599,0.00189855,0.00279961,0.00376477,0.00459577,0.00557124,0.00667393,0.00698342,0.00720909,0.00740937,0.0078044,0.00817018,0.00847627,0.00868235,0.00896829,0.00929143,0.00916625,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,0.00649906,0.0107095,0.0156041,0.0214988,0.0283444,0.0362828,0.0453838,0.0494901,0.0531729,0.0560419,0.0603525,0.0647591,0.0687647,0.0723575,0.0765848,0.081707,0.0825626,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,4.29646E-5,7.12519E-5,1.06977E-4,1.51046E-4,2.05382E-4,2.72204E-4,3.51017E-4,3.92168E-4,4.31349E-4,4.67521E-4,5.00408E-4,5.3343E-4,5.64295E-4,5.93889E-4,6.22749E-4,6.58489E-4,6.6934E-4,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,0.00945889,0.0147966,0.020332,0.0258374,0.0308481,0.035692,0.0399349,0.0386974,0.0372132,0.0353374,0.0352308,0.0352892,0.0358091,0.0368833,0.0378044,0.0388899,0.0380738,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,0.00110022,0.00169303,0.00230624,0.00296757,0.00367748,0.0044326,0.00521297,0.0077642,0.0119578,0.0192538,0.0212215,0.0234028,0.0254433,0.0272974,0.0293252,0.0316,0.0314758,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,0.00105056,0.00162342,0.00222125,0.00287188,0.00357763,0.00433681,0.00513169,0.00532199,0.00543533,0.00544128,0.00609415,0.00681274,0.00751887,0.0081935,0.00894568,0.00980892,0.00987336,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,3.46766E-4,5.16102E-4,6.68257E-4,8.15432E-4,9.88688E-4,0.00114424,0.00131435,0.00133651,0.00135164,0.00135881,0.0014787,0.00158355,0.00167975,0.00177672,0.00185935,0.00193144,0.0018906,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,9.37346E-4,0.0014717,0.00205679,0.00269588,0.00339105,0.00414887,0.00492755,0.00522631,0.00549649,0.00577986,0.00603831,0.00632875,0.00657845,0.00683554,0.00712371,0.00743819,0.00753653,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,0.00828407,0.0137092,0.0198839,0.0269224,0.0341708,0.0421399,0.0504102,0.0532715,0.0563189,0.0593514,0.0597526,0.0606243,0.0616707,0.0632813,0.0651579,0.0671405,0.0665821,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,4.63005E-4,9.27765E-4,0.00159226,0.00243771,0.00335472,0.00450802,0.00595669,0.0068446,0.00772635,0.00860248,0.00983995,0.0111258,0.0123887,0.0135417,0.0148065,0.0159857,0.0165923,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,0.00267239,0.00523341,0.0088747,0.0139206,0.0206902,0.0293586,0.0405065,0.0485064,0.0569881,0.0650661,0.0760937,0.0881859,0.100504,0.112855,0.12644,0.140575,0.149451,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,1.72114E-5,3.48223E-5,6.2235E-5,1.02485E-4,1.58421E-4,2.33133E-4,3.29925E-4,4.01363E-4,4.76726E-4,5.53833E-4,6.34985E-4,7.23678E-4,8.17358E-4,9.17213E-4,0.00101659,0.00111795,0.00118495,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,0.00388946,0.00723067,0.0115636,0.0167298,0.0225178,0.0288805,0.0356432,0.0379282,0.0398833,0.0410276,0.0444197,0.0480552,0.0523375,0.0575264,0.0624145,0.0669093,0.0689193,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,4.52406E-4,8.27336E-4,0.00131165,0.00192151,0.00268441,0.00358668,0.00465274,0.00760987,0.0128158,0.0223541,0.0267566,0.0318688,0.0371871,0.0425754,0.0484154,0.0543672,0.0569759,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,4.31987E-4,7.93318E-4,0.00126332,0.00185956,0.00261152,0.00350917,0.0045802,0.0052162,0.00582532,0.00631747,0.00768364,0.00927728,0.0109893,0.0127793,0.0147692,0.0168761,0.0178723,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,1.42216E-4,2.25885E-4,3.17263E-4,4.20059E-4,5.39269E-4,6.81502E-4,8.47774E-4,9.31052E-4,9.95393E-4,0.00104695,0.00119245,0.00133578,0.00147864,0.0016167,0.00177934,0.00194767,0.00203558,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,3.78212E-4,7.1731E-4,0.00118381,0.00179465,0.00255513,0.00346718,0.00452352,0.00523713,0.00596997,0.00675088,0.0075845,0.00852121,0.0094642,0.0104753,0.011536,0.0125306,0.0132749,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,0.00342783,0.00670012,0.0112656,0.017309,0.0247231,0.0338231,0.0447084,0.0520026,0.0602418,0.0688606,0.0752774,0.0823741,0.0896578,0.0977231,0.106063,0.113434,0.117969,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,1.33159E-5,2.4604E-5,3.89165E-5,5.61978E-5,7.22457E-5,9.26493E-5,1.18137E-4,1.32882E-4,1.46247E-4,1.60095E-4,1.80594E-4,2.00927E-4,2.20576E-4,2.39924E-4,2.6174E-4,2.82459E-4,2.92889E-4,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,7.68574E-5,1.38788E-4,2.16907E-4,3.20919E-4,4.45576E-4,6.03381E-4,8.03349E-4,9.4171E-4,0.00107869,0.0012109,0.00139656,0.0015926,0.00178945,0.0019995,0.00223513,0.00248389,0.00263812,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,5.84855E-7,1.0591E-6,1.69868E-6,2.56275E-6,3.61011E-6,4.97558E-6,6.71779E-6,7.97918E-6,9.28335E-6,1.06423E-5,1.20893E-5,1.36259E-5,1.51685E-5,1.6838E-5,1.85621E-5,2.03516E-5,2.16518E-5,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,1.1186E-4,1.91755E-4,2.82628E-4,3.85682E-4,4.84934E-4,5.93555E-4,7.06895E-4,7.36343E-4,7.54922E-4,7.63538E-4,8.15241E-4,8.67855E-4,9.31854E-4,0.00101922,0.00110332,0.00118225,0.00121657,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,1.30111E-5,2.19406E-5,3.20582E-5,4.42977E-5,5.78102E-5,7.37139E-5,9.22758E-5,1.47739E-4,2.42581E-4,4.16018E-4,4.91067E-4,5.75537E-4,6.62105E-4,7.54325E-4,8.55857E-4,9.6064E-4,0.00100575,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,1.24239E-5,2.10385E-5,3.08768E-5,4.28695E-5,5.62405E-5,7.21208E-5,9.08372E-5,1.01268E-4,1.10263E-4,1.1757E-4,1.41019E-4,1.67543E-4,1.95662E-4,2.26416E-4,2.6108E-4,2.98191E-4,3.15484E-4,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,4.68513E-6,7.31603E-6,9.93899E-6,1.28232E-5,1.64692E-5,2.05345E-5,2.5983E-5,2.91177E-5,3.0299E-5,3.06547E-5,3.45138E-5,3.6501E-5,3.77086E-5,4.01436E-5,4.47422E-5,5.03897E-5,5.32689E-5,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,1.23657E-5,2.11602E-5,3.15629E-5,4.4187E-5,5.78204E-5,7.39384E-5,9.24676E-5,1.04681E-4,1.16609E-4,1.29767E-4,1.44236E-4,1.59826E-4,1.74761E-4,1.91638E-4,2.10194E-4,2.2797E-4,2.42067E-4,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,9.7696E-5,1.77281E-4,2.76243E-4,4.0247E-4,5.40008E-4,7.0775E-4,9.05915E-4,0.00103341,0.00116662,0.00130975,0.0014116,0.00151742,0.00162566,0.00176248,0.00190866,0.00204097,0.00211813,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,0.00107933,0.00270128,0.00486484,0.00748691,0.00984021,0.0127225,0.0162452,0.0190326,0.0217807,0.0242916,0.0280431,0.0316345,0.0350611,0.0379155,0.0410362,0.0441512,0.0465184,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,0.00622972,0.0152376,0.027115,0.0427543,0.0606896,0.0828553,0.11047,0.134881,0.16065,0.183733,0.216861,0.250744,0.284437,0.315982,0.350429,0.388257,0.419002,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,4.34504E-5,1.06939E-4,1.95875E-4,3.15814E-4,4.58656E-4,6.42676E-4,8.75763E-4,0.0010909,0.0013256,0.00155646,0.00182193,0.0020877,0.00235779,0.00261575,0.00287185,0.00315292,0.00341914,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,0.00906689,0.0210529,0.0353305,0.0513822,0.0660502,0.0815059,0.0972064,0.105466,0.112431,0.115853,0.126593,0.136638,0.14812,0.161068,0.172982,0.184798,0.193223,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,0.00105462,0.00240888,0.0040075,0.00590154,0.00787403,0.0101223,0.012689,0.0211606,0.0361279,0.0631235,0.076254,0.0906143,0.105243,0.119207,0.134183,0.150157,0.159738,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,0.00100702,0.00230983,0.00385982,0.00571126,0.00766022,0.00990352,0.0124912,0.0145046,0.0164216,0.0178392,0.0218977,0.0263786,0.031101,0.0357807,0.0409328,0.0466102,0.0501069,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,6.35954E-4,0.00143613,0.00235237,0.00340057,0.00459367,0.00582408,0.00719172,0.00824289,0.00916858,0.00990062,0.0118701,0.0137984,0.0158596,0.0177853,0.0198639,0.0219649,0.0232849,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,9.51221E-4,0.00221491,0.00377584,0.00565246,0.00761506,0.00987438,0.0124183,0.0146892,0.0170577,0.0194062,0.0222027,0.0250528,0.0278381,0.0305355,0.0333711,0.0362311,0.0392181,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,0.00772778,0.0189575,0.0335427,0.0519107,0.070943,0.0932169,0.118633,0.139941,0.163475,0.186405,0.205832,0.225472,0.245862,0.267504,0.290011,0.311927,0.332131,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,1.641E-4,3.83928E-4,7.96384E-4,0.0015419,0.00274026,0.0045987,0.00737713,0.00986254,0.0127886,0.0160006,0.0196619,0.0237543,0.0292455,0.0318198,0.0363304,0.0405955,0.0421793,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,0.00100457,0.00237844,0.00498277,0.00984714,0.0184565,0.0326189,0.0549782,0.0771945,0.105422,0.137362,0.178669,0.2282,0.29698,0.334429,0.392458,0.450761,0.47335,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,2.41698E-6,6.25579E-6,1.39559E-5,2.76209E-5,5.29758E-5,9.71071E-5,1.68954E-4,2.44598E-4,3.41689E-4,4.55203E-4,5.90678E-4,7.45685E-4,9.31954E-4,0.00109689,0.00128908,0.00149258,0.00161806,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,0.00146745,0.00330554,0.00655414,0.0120758,0.0206569,0.0332636,0.050546,0.0638112,0.077809,0.0903701,0.107079,0.124607,0.14833,0.15735,0.176109,0.191884,0.193254,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,1.70009E-4,3.75569E-4,7.3424E-4,0.00135038,0.00236489,0.00390271,0.00612133,0.0116024,0.0224272,0.0440491,0.0578712,0.0748996,0.0985594,0.112124,0.132683,0.153682,0.16002,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,1.62325E-4,3.60144E-4,7.07335E-4,0.00130737,0.00230204,0.00382123,0.006031,0.00796092,0.0102053,0.012463,0.0166282,0.0218133,0.0291349,0.0336552,0.0404587,0.0476587,0.050116,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,1.25532E-4,2.60944E-4,4.8287E-4,8.45386E-4,0.00140865,0.002222,0.00334152,0.00421888,0.00519521,0.00613133,0.00776643,0.00968565,0.0123364,0.013636,0.0156756,0.0177089,0.0181797,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,6.94463E-5,1.67928E-4,3.48547E-4,6.51754E-4,0.0011726,0.00200748,0.00325352,0.00450933,0.00606068,0.00788031,0.00991687,0.0122505,0.0150374,0.0170877,0.0198046,0.0224143,0.0239409,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,0.00154287,0.00361295,0.00749057,0.0146583,0.0266015,0.0455176,0.0737471,0.101143,0.135745,0.175511,0.211099,0.250347,0.302531,0.320074,0.358782,0.389933,0.393466,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,7.71507E-5,1.55808E-4,2.69303E-4,4.2051E-4,5.98725E-4,8.18986E-4,0.00109121,0.00124699,0.001404,0.00155672,0.00174443,0.00194967,0.00221013,0.0024011,0.00266857,0.0029595,0.00317082,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,4.72291E-4,9.65235E-4,0.00168496,0.00268553,0.0040326,0.00580913,0.00813229,0.0097602,0.0115738,0.0133641,0.0158518,0.0187299,0.0224432,0.0252358,0.0288272,0.0328615,0.035584,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,2.08756E-6,4.61823E-6,8.83761E-6,1.53356E-5,2.46328E-5,3.75304E-5,5.45521E-5,6.71877E-5,8.06678E-5,9.45679E-5,1.09605E-4,1.26279E-4,1.47542E-4,1.63663E-4,1.82078E-4,2.01829E-4,2.14891E-4,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,6.89915E-4,0.00134148,0.00221633,0.00329334,0.00451338,0.00592394,0.00747668,0.00806807,0.0085423,0.00879219,0.00950021,0.0102273,0.0112095,0.0118735,0.0129357,0.0139887,0.0145278,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,7.9929E-5,1.52416E-4,2.48289E-4,3.68277E-4,5.1671E-4,6.95037E-4,9.05457E-4,0.00146697,0.00246218,0.00428558,0.00513443,0.00614749,0.00744828,0.0084608,0.00974598,0.0112037,0.0120294,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,7.63161E-5,1.46156E-4,2.3919E-4,3.56549E-4,5.02978E-4,6.80526E-4,8.92096E-4,0.00100655,0.0011204,0.00121253,0.00147528,0.00179036,0.00220177,0.0025396,0.00297181,0.00347442,0.00376745,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,4.34496E-5,7.76101E-5,1.19726E-4,1.69854E-4,2.315E-4,3.03872E-4,3.90368E-4,4.35775E-4,4.80953E-4,5.15807E-4,6.06811E-4,7.09943E-4,8.35644E-4,9.35632E-4,0.0010569,0.00119744,0.0012849,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,5.13574E-5,1.05625E-4,1.85466E-4,2.95519E-4,4.37108E-4,6.14195E-4,8.24406E-4,9.67975E-4,0.00111594,0.00127193,0.00144113,0.00163337,0.00186865,0.0020387,0.00225883,0.00247849,0.00264187,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,6.49071E-4,0.00131526,0.00226736,0.00354926,0.0051431,0.00717194,0.0096693,0.0113669,0.0132909,0.015267,0.0167621,0.0183945,0.0204019,0.0216776,0.0237203,0.0256823,0.0268722,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,1.06329E-4,2.22393E-4,3.97475E-4,6.49968E-4,0.00100658,0.00152465,0.00226201,0.00283685,0.00346341,0.00410622,0.00483744,0.00557446,0.00633994,0.00700424,0.00773179,0.00843126,0.00898199,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,6.50908E-4,0.00137773,0.0024869,0.00415094,0.00677966,0.0108145,0.0168577,0.0222041,0.0285503,0.035251,0.0439583,0.0535521,0.0643802,0.0736152,0.0835223,0.0936184,0.100799,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,2.28094E-6,5.15961E-6,1.02178E-5,1.85434E-5,3.25569E-5,5.55491E-5,9.1444E-5,1.26455E-4,1.69476E-4,2.18484E-4,2.74631E-4,3.35684E-4,4.04526E-4,4.70845E-4,5.40407E-4,6.1557E-4,6.6402E-4,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,9.50836E-4,0.00191476,0.00327117,0.00509041,0.00758794,0.0110282,0.0154987,0.0183546,0.0210722,0.0231915,0.0263448,0.0292418,0.0321555,0.0346361,0.0374794,0.0398522,0.041153,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,1.10158E-4,2.17551E-4,3.66459E-4,5.69234E-4,8.68699E-4,0.0012939,0.00187695,0.00333731,0.00607372,0.0113043,0.0142381,0.0175768,0.021366,0.0246809,0.0282375,0.0319181,0.0340759,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,1.05178E-4,2.08616E-4,3.53031E-4,5.51106E-4,8.45613E-4,0.00126689,0.00184926,0.00228987,0.0027638,0.00319835,0.00409106,0.00511895,0.00631596,0.00740825,0.00861037,0.00989822,0.0106721,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,8.89359E-5,1.6925E-4,2.74704E-4,4.11464E-4,6.04809E-4,8.67511E-4,0.00121102,0.00143679,0.00166195,0.00185019,0.00224606,0.00266323,0.00310162,0.00349744,0.00388991,0.00429345,0.00454466,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,6.05848E-5,1.28248E-4,2.33742E-4,3.90901E-4,6.32529E-4,9.93909E-4,0.00150501,0.00197028,0.0025111,0.00311733,0.00378773,0.004508,0.00526705,0.00596403,0.00672798,0.0074722,0.0080175,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,9.56926E-4,0.00201219,0.00358579,0.00587625,0.00924932,0.0142488,0.0213195,0.0273876,0.0345528,0.0422484,0.0486015,0.0548141,0.0608022,0.0654462,0.0707804,0.0749245,0.0777383,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,2.53151E-4,6.02788E-4,0.00123794,0.00229759,0.00394251,0.00643424,0.010111,0.0133241,0.0170078,0.0209791,0.0257166,0.0307522,0.036343,0.0413696,0.0470591,0.0528542,0.0571384,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,0.00154971,0.00373429,0.0077455,0.0146733,0.026554,0.0456386,0.0753524,0.104288,0.140202,0.180101,0.233689,0.295427,0.369053,0.434798,0.508355,0.586878,0.641226,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,4.72195E-6,1.27655E-5,2.97703E-5,6.24791E-5,1.22598E-4,2.25297E-4,3.90035E-4,5.59637E-4,7.68399E-4,0.0010096,0.00129103,0.00160145,0.00194481,0.00227371,0.00261753,0.00298168,0.00320589,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,0.00226379,0.00518988,0.0101881,0.0179942,0.0297198,0.0465406,0.0692776,0.0862077,0.103479,0.118488,0.140053,0.161316,0.184328,0.204574,0.228116,0.249827,0.261792,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,2.62268E-4,5.89664E-4,0.00114134,0.0020122,0.00340245,0.00546045,0.00838981,0.0156747,0.0298262,0.0577547,0.0756921,0.0969646,0.122478,0.145775,0.171866,0.200089,0.216772,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,2.50413E-4,5.65446E-4,0.00109952,0.00194812,0.00331203,0.00534645,0.008266,0.0107551,0.0135722,0.0163407,0.0217487,0.0282393,0.0362056,0.0437559,0.0524066,0.0620503,0.0678899,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,2.04398E-4,4.29839E-4,7.8118E-4,0.00129662,0.00207034,0.00314503,0.00458345,0.00564317,0.00676408,0.00776186,0.00966143,0.0117177,0.0139407,0.0159985,0.0180432,0.0202125,0.0214815,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,1.28477E-4,3.21312E-4,6.85279E-4,0.0013184,0.00237755,0.00402293,0.00641916,0.00875488,0.0115117,0.014677,0.0182638,0.0222061,0.0263878,0.0302452,0.0345057,0.0386664,0.0415639,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,0.00221216,0.00524865,0.0106885,0.0197864,0.0343893,0.0569554,0.0901349,0.121604,0.160471,0.204219,0.244579,0.28643,0.330696,0.367363,0.410283,0.448368,0.472733,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,4.40033E-5,1.01461E-4,1.78739E-4,2.74905E-4,3.70792E-4,4.7526E-4,5.96757E-4,6.76912E-4,7.54455E-4,8.28405E-4,9.27516E-4,0.00103099,0.00114295,0.00124129,0.00135325,0.00146543,0.00156369,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,2.69374E-4,6.28556E-4,0.00111832,0.00175565,0.0024974,0.00337106,0.00444734,0.00529821,0.00621929,0.00711168,0.00842842,0.00990442,0.0116063,0.0130461,0.0146184,0.0162717,0.0175483,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,1.22157E-6,3.09531E-6,6.03707E-6,1.0321E-5,1.57111E-5,2.25303E-5,3.11062E-5,3.84278E-5,4.62088E-5,5.43353E-5,6.35934E-5,7.36825E-5,8.51512E-5,9.55065E-5,1.06397E-4,1.17894E-4,1.27804E-4,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,3.93497E-4,8.73562E-4,0.001471,0.002153,0.00279514,0.00343768,0.00408881,0.00437966,0.00459029,0.00467876,0.00505126,0.00540825,0.0057969,0.00613823,0.00655977,0.00692668,0.0071644,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,4.5588E-5,9.92524E-5,1.64791E-4,2.40758E-4,3.2E-4,4.03332E-4,4.95172E-4,7.96328E-4,0.00132307,0.00228057,0.00272997,0.00325082,0.0038518,0.00437396,0.00494223,0.00554766,0.00593234,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,4.35273E-5,9.5176E-5,1.58753E-4,2.33091E-4,3.11496E-4,3.94911E-4,4.87865E-4,5.46395E-4,6.02056E-4,6.45248E-4,7.84408E-4,9.46747E-4,0.00113862,0.00131289,0.00150702,0.0017204,0.00185793,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,4.12971E-5,8.82345E-5,1.44286E-4,2.08243E-4,2.74388E-4,3.4417E-4,4.21285E-4,4.69287E-4,5.13269E-4,5.48045E-4,6.58343E-4,7.8405E-4,9.28223E-4,0.00105867,0.00120113,0.0013553,0.00145656,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,3.06233E-5,7.21401E-5,1.29163E-4,2.02789E-4,2.84247E-4,3.75432E-4,4.77313E-4,5.59641E-4,6.42688E-4,7.3013E-4,8.33529E-4,9.47824E-4,0.00107014,0.0011774,0.00129883,0.00141521,0.00152532,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,3.78566E-4,8.766E-4,0.00154172,0.00237888,0.0032673,0.00426941,0.00542107,0.00631529,0.00729409,0.00827703,0.00907994,0.00990911,0.0107469,0.0114084,0.0122242,0.0128947,0.0133986,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,1.19925E-4,2.82913E-4,4.98338E-4,7.65892E-4,0.0010351,0.00134324,0.00168955,0.00195461,0.0022139,0.00245492,0.00274529,0.0030281,0.00331235,0.0035657,0.00380686,0.00402599,0.00421006,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,7.34142E-4,0.00175266,0.00311797,0.00489127,0.00697174,0.00952772,0.0125914,0.0152988,0.0182501,0.021075,0.0249467,0.02909,0.0336359,0.0374758,0.0411235,0.0447035,0.0472467,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,4.97623E-6,1.19762E-5,2.22496E-5,3.63389E-5,5.34857E-5,7.55471E-5,1.0246E-4,1.27857E-4,1.56166E-4,1.85127E-4,2.16963E-4,2.49436E-4,2.84974E-4,3.15276E-4,3.41638E-4,3.68035E-4,3.91648E-4,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,0.00107242,0.00243583,0.00410126,0.0059983,0.00780292,0.00971602,0.0115763,0.0126464,0.0134699,0.0138652,0.0149509,0.0158844,0.0167999,0.0176325,0.0184535,0.0190297,0.0192893,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,1.24244E-4,2.76754E-4,4.59451E-4,6.70758E-4,8.93311E-4,0.00113995,0.00140194,0.00229943,0.00388248,0.0067583,0.00808027,0.00954788,0.0111628,0.0125645,0.0139032,0.0152411,0.0159721,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,1.18628E-4,2.65387E-4,4.42615E-4,6.49397E-4,8.69571E-4,0.00111615,0.00138125,0.00157773,0.00176669,0.00191215,0.00232172,0.00278066,0.00329982,0.00377137,0.00423945,0.00472647,0.00500225,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,9.28738E-5,2.04252E-4,3.34128E-4,4.80912E-4,6.39111E-4,8.08664E-4,9.89623E-4,0.00112185,0.00124887,0.00134785,0.00161573,0.00189767,0.00221002,0.00249089,0.00275927,0.00303453,0.00319559,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,1.1058E-4,2.51184E-4,4.32266E-4,6.5396E-4,8.92993E-4,0.00116782,0.00146328,0.00173433,0.00201904,0.00230934,0.0026373,0.00297661,0.00332465,0.00362362,0.00391148,0.00416758,0.00442941,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,9.20302E-4,0.00219552,0.00386849,0.00596705,0.00819456,0.0107982,0.0136606,0.0161292,0.0187911,0.0214201,0.0234523,0.025491,0.0275243,0.029484,0.0317196,0.0336073,0.0353701,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,2.84419E-4,6.00311E-4,0.00101331,0.00152585,0.00203686,0.00259874,0.00321884,0.00351739,0.0037727,0.00397955,0.0042894,0.00459907,0.00492163,0.00516213,0.00543606,0.00568885,0.00586106,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,0.00174112,0.00371894,0.00634,0.00974467,0.0137189,0.0184331,0.0239885,0.0275307,0.0310999,0.0341635,0.0389781,0.0441818,0.0499777,0.0542545,0.0587228,0.0631674,0.0657748,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,6.47454E-6,1.48061E-5,2.72325E-5,4.47091E-5,6.64896E-5,9.43054E-5,1.28632E-4,1.54526E-4,1.81563E-4,2.08633E-4,2.40364E-4,2.74437E-4,3.12339E-4,3.48119E-4,3.85339E-4,4.25683E-4,4.53245E-4,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,0.0025434,0.00516856,0.00833938,0.0119502,0.0153545,0.0187974,0.0220546,0.0227577,0.022954,0.0224761,0.0233601,0.0241252,0.024962,0.0255269,0.0263509,0.0268896,0.0268537,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,2.94662E-4,5.87241E-4,9.34235E-4,0.00133632,0.00175785,0.00220543,0.0026709,0.0041379,0.00661611,0.0109555,0.0126251,0.0145013,0.0165862,0.0181899,0.0198532,0.0215362,0.0222357,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,2.81343E-4,5.63122E-4,9.00001E-4,0.00129377,0.00171113,0.00215939,0.00263149,0.00283919,0.00301061,0.00309969,0.00362758,0.00422327,0.00490302,0.00545989,0.00605377,0.00667865,0.00696391,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,2.32965E-4,4.47804E-4,6.91931E-4,9.66007E-4,0.00125271,0.00155098,0.0018584,0.00198667,0.00207855,0.00211544,0.00240678,0.00271354,0.003036,0.00329852,0.00355919,0.0038319,0.00396763,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,1.68522E-4,3.60215E-4,6.12111E-4,9.30401E-4,0.0012823,0.00168281,0.00211843,0.00241436,0.0027019,0.00298972,0.00332982,0.00369917,0.00407892,0.00441158,0.00478421,0.00513702,0.00540464,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,0.00244059,0.00517503,0.00872619,0.0131941,0.0179381,0.0233095,0.0291346,0.0326155,0.0361348,0.0392602,0.0412932,0.0432886,0.0451334,0.0460527,0.047443,0.0481181,0.0481462,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,1.70098E-4,3.89139E-4,6.79751E-4,0.00104601,0.00139024,0.0017721,0.00219051,0.00248549,0.00276545,0.00302315,0.0033482,0.00366855,0.00398957,0.00429582,0.00459527,0.00487982,0.00512084,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,0.00104128,0.00241073,0.00425303,0.00668022,0.00936373,0.0125696,0.0163248,0.019454,0.0227968,0.0259531,0.0304254,0.0352426,0.0405129,0.0451494,0.0496402,0.0541842,0.0574678,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,5.10725E-6,1.19824E-5,2.21785E-5,3.64679E-5,5.36968E-5,7.55116E-5,1.01696E-4,1.25022E-4,1.50466E-4,1.76149E-4,2.05062E-4,2.35194E-4,2.67908E-4,2.97171E-4,3.24103E-4,3.5171E-4,3.78282E-4,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,0.00152109,0.00335041,0.00559427,0.00819214,0.0104801,0.0128181,0.0150088,0.0160813,0.0168257,0.0170745,0.0182343,0.019244,0.0202347,0.0212429,0.0222753,0.0230656,0.0234623,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,1.76224E-4,3.80667E-4,6.26709E-4,9.16083E-4,0.0011998,0.0015039,0.00181762,0.00292397,0.00484972,0.00832261,0.00985482,0.0115673,0.0134451,0.0151372,0.0167825,0.0184735,0.0194274,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,1.68258E-4,3.65032E-4,6.03743E-4,8.86909E-4,0.00116792,0.0014725,0.0017908,0.00200626,0.00220683,0.00235474,0.0028316,0.00336878,0.00397448,0.00454361,0.00511744,0.00572886,0.0060844,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,1.3147E-4,2.79445E-4,4.50889E-4,6.46496E-4,8.40614E-4,0.0010393,0.00124533,0.00138122,0.00150774,0.00160234,0.00190175,0.00221891,0.00256553,0.00289205,0.00320777,0.00354146,0.00373818,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,1.23652E-4,2.74426E-4,4.71726E-4,7.20428E-4,9.82798E-4,0.00127889,0.00159168,0.00186174,0.00214014,0.00242379,0.0027452,0.00308376,0.00342504,0.00373059,0.00403416,0.0043095,0.00459939,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,0.00138424,0.00320706,0.00561447,0.00868972,0.0117543,0.0152468,0.0190094,0.0220925,0.0253833,0.0286041,0.0309894,0.0333231,0.0354951,0.0375314,0.0397208,0.0413885,0.0426167,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,1.23526E-4,2.50156E-4,4.25706E-4,6.57993E-4,9.29103E-4,0.00125229,0.00163645,0.00187251,0.00211237,0.00234495,0.00264453,0.00297728,0.00339589,0.00369029,0.00406952,0.00444945,0.00468738,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,7.56183E-4,0.00154972,0.00266354,0.00420219,0.0062578,0.00888258,0.0121957,0.0146562,0.0174131,0.0201309,0.0240311,0.0286018,0.0344843,0.0387853,0.0439608,0.0494054,0.0526034,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,1.98795E-6,4.44231E-6,8.42545E-6,1.42697E-5,2.2269E-5,3.34897E-5,4.81444E-5,6.02571E-5,7.38887E-5,8.83416E-5,1.05326E-4,1.24377E-4,1.46858E-4,1.6823E-4,1.91266E-4,2.16636E-4,2.37785E-4,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,0.00110462,0.00215379,0.00350351,0.00515327,0.00700387,0.00905814,0.0112125,0.0121152,0.0128522,0.013244,0.0144021,0.0156178,0.0172236,0.0182486,0.0197267,0.0210313,0.0214763,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,1.27974E-4,2.44709E-4,3.92488E-4,5.76262E-4,8.01832E-4,0.00106276,0.00135788,0.00220284,0.00370442,0.00645555,0.00778369,0.00938764,0.0114444,0.0130035,0.0148624,0.0168442,0.017783,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,1.22189E-4,2.34659E-4,3.78105E-4,5.57911E-4,7.80523E-4,0.00104057,0.00133784,0.00151146,0.00168567,0.00182649,0.0022365,0.002734,0.00338305,0.00390315,0.00453195,0.0052236,0.00556939,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,6.57077E-5,1.11497E-4,1.61619E-4,2.18366E-4,2.84232E-4,3.58715E-4,4.41822E-4,4.85412E-4,5.2469E-4,5.56111E-4,6.46371E-4,7.49118E-4,8.70111E-4,9.68648E-4,0.00107994,0.00120054,0.0012664,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,5.51294E-5,1.14869E-4,2.00632E-4,3.15067E-4,4.57638E-4,6.38016E-4,8.49516E-4,0.00101393,0.00119167,0.00138392,0.00159958,0.001846,0.00212842,0.00237197,0.00265861,0.00294423,0.00318557,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,0.00112933,0.00228669,0.00386994,0.00599603,0.00862524,0.0118341,0.0156113,0.0183333,0.0214163,0.0245778,0.0271099,0.0299288,0.0334059,0.0353958,0.0383142,0.0407443,0.0417009,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,1.47845E-4,2.76644E-4,4.38995E-4,6.32625E-4,8.33211E-4,0.00105461,0.00130135,0.00141064,0.00151808,0.00162222,0.00175315,0.00188456,0.00202599,0.00216115,0.0023119,0.00246877,0.00257808,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,9.05057E-4,0.00171382,0.00274668,0.00404018,0.00561194,0.0074804,0.00969834,0.0110412,0.0125141,0.0139264,0.0159311,0.0181043,0.0205733,0.0227139,0.0249742,0.0274125,0.0289321,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,4.40881E-6,8.5582E-6,1.44365E-5,2.22654E-5,3.26102E-5,4.54306E-5,6.05841E-5,7.02034E-5,8.00014E-5,8.97577E-5,9.98004E-5,1.099E-4,1.21317E-4,1.31398E-4,1.41502E-4,1.52399E-4,1.60567E-4,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,0.00132209,0.00238185,0.00361288,0.00495459,0.00628101,0.00762824,0.00891648,0.00912694,0.00923634,0.00916213,0.0095477,0.00988576,0.0102756,0.0106869,0.0112068,0.0116692,0.011812,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,1.53169E-4,2.70621E-4,4.04739E-4,5.54045E-4,7.19076E-4,8.94997E-4,0.00107982,0.0016595,0.00266222,0.0044659,0.00516009,0.00594218,0.00682771,0.00761528,0.00844335,0.00934599,0.00978072,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,1.46246E-4,2.59506E-4,3.89908E-4,5.36401E-4,6.99966E-4,8.76311E-4,0.00106389,0.00113865,0.00121143,0.00126355,0.00148266,0.00173056,0.00201832,0.00228581,0.0025746,0.00289831,0.00306318,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,1.23945E-4,2.15022E-4,3.16662E-4,4.28442E-4,5.50319E-4,6.83976E-4,8.27134E-4,8.85401E-4,9.3471E-4,9.72885E-4,0.0011315,0.00129034,0.00147604,0.00164821,0.00183238,0.00203611,0.00213788,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,1.07201E-4,1.96258E-4,3.07262E-4,4.40108E-4,5.96476E-4,7.69943E-4,9.51846E-4,0.00105457,0.00115621,0.00126387,0.00137747,0.00149599,0.00162021,0.00172996,0.00185308,0.0019706,0.0020679,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,0.00119588,0.00226453,0.00360467,0.00523194,0.00701876,0.00906162,0.0113125,0.0126025,0.0140578,0.0155306,0.0164527,0.017367,0.0182697,0.0190663,0.0200679,0.0208928,0.0212506,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,9.85824E-4,0.0018186,0.00281278,0.00392853,0.00499196,0.0060732,0.00717752,0.00724423,0.00721221,0.0071124,0.00708158,0.00703979,0.0069903,0.00691093,0.00683004,0.00665672,0.00608667,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,0.00603488,0.0112663,0.0175989,0.0250891,0.0336224,0.0430777,0.0534906,0.0567008,0.0594532,0.0610584,0.0643509,0.0676291,0.0709845,0.0726344,0.0737812,0.0739144,0.0683067,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,3.85898E-5,7.02043E-5,1.11537E-4,1.61361E-4,2.18541E-4,2.84857E-4,3.58765E-4,3.90035E-4,4.19275E-4,4.42325E-4,4.63161E-4,4.80405E-4,4.96421E-4,5.0189E-4,5.00878E-4,4.97451E-4,4.72695E-4,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,0.00881567,0.0156578,0.0231489,0.0307674,0.0376309,0.0439291,0.0491783,0.0468705,0.0438808,0.0401702,0.0385664,0.0369284,0.0354541,0.0341747,0.0331082,0.0314645,0.0278874,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,0.00102133,0.001779,0.0025933,0.00344056,0.00430814,0.00515406,0.0059557,0.00852221,0.0126479,0.0195801,0.0208433,0.0221971,0.0235578,0.0243521,0.0249442,0.0252003,0.0230916,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,9.7516E-4,0.00170594,0.00249827,0.00333099,0.00419365,0.00504645,0.00586781,0.00584745,0.00575535,0.00553988,0.00598895,0.00646455,0.00696387,0.00730956,0.00760615,0.00781492,0.00723198,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,5.29742E-4,8.65367E-4,0.00119366,0.00152232,0.0018871,0.00223797,0.00259985,0.00262745,0.00265675,0.00265162,0.00289835,0.00294435,0.0030093,0.00302828,0.00300169,0.00296141,0.00269338,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,8.07603E-4,0.00139199,0.0020544,0.0027633,0.0034803,0.00420794,0.00490428,0.00506233,0.00518568,0.0052888,0.00539439,0.00549546,0.00557744,0.0056091,0.00566339,0.00568279,0.00556422,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,0.00508959,0.00922831,0.0138576,0.0188307,0.0234659,0.0280568,0.0323552,0.0325162,0.0326137,0.0327145,0.0321183,0.0320372,0.0325018,0.0340493,0.03752,0.0426056,0.0507377,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,2.25431E-5,5.42949E-5,1.01896E-4,1.66336E-4,2.39592E-4,3.25807E-4,4.28366E-4,5.12726E-4,5.99504E-4,6.86041E-4,7.98456E-4,9.16853E-4,0.00104217,0.00116222,0.00128866,0.00141428,0.00152304,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,1.38001E-4,3.36358E-4,6.37535E-4,0.00106229,0.00161373,0.00231098,0.0031924,0.00401312,0.00494196,0.00588951,0.00725564,0.00880792,0.0105829,0.012215,0.0139206,0.0157037,0.0170921,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,8.14029E-7,2.06932E-6,4.16107E-6,7.33261E-6,1.15256E-5,1.70246E-5,2.3988E-5,3.06505E-5,3.78928E-5,4.54743E-5,5.4251E-5,6.36838E-5,7.40224E-5,8.38452E-5,9.37022E-5,1.0376E-4,1.12469E-4,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,2.0159E-4,4.67468E-4,8.38588E-4,0.00130271,0.00180612,0.00235665,0.00293504,0.00331736,0.00364753,0.0038747,0.0043484,0.00480951,0.00528578,0.00574721,0.00624668,0.0066849,0.00697814,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,2.33549E-5,5.31128E-5,9.39444E-5,1.45675E-4,2.06772E-4,2.76498E-4,3.55445E-4,6.03178E-4,0.00105134,0.00188864,0.00235011,0.00289092,0.00351218,0.00409533,0.00470634,0.00535401,0.00577811,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,2.22992E-5,5.09314E-5,9.05019E-5,1.41036E-4,2.01277E-4,2.70725E-4,3.502E-4,4.13866E-4,4.78404E-4,5.3436E-4,6.75261E-4,8.41934E-4,0.00103823,0.00122926,0.00143509,0.00166035,0.00180962,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,7.89014E-6,1.6134E-5,2.59304E-5,3.70506E-5,4.95905E-5,6.36123E-5,7.92496E-5,9.10302E-5,1.01928E-4,1.11045E-4,1.32014E-4,1.5377E-4,1.76519E-4,1.98238E-4,2.19533E-4,2.42448E-4,2.59562E-4,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,1.8334E-5,4.35948E-5,8.08984E-5,1.31596E-4,1.91949E-4,2.63116E-4,3.4384E-4,4.1985E-4,4.99571E-4,5.8451E-4,6.83481E-4,7.91056E-4,9.02394E-4,0.00100666,0.00111749,0.00122072,0.00131891,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,1.81802E-4,4.42095E-4,8.32001E-4,0.00136825,0.00201626,0.00280723,0.00374683,0.00462418,0.00562752,0.00668926,0.00763352,0.00861131,0.00958338,0.0104541,0.0113983,0.0121937,0.0127996,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,3.83572E-5,8.99204E-5,1.58106E-4,2.43042E-4,3.22755E-4,4.12574E-4,5.12815E-4,5.94363E-4,6.72404E-4,7.41482E-4,8.23054E-4,9.00057E-4,9.77192E-4,0.00105801,0.00113611,0.00121592,0.00127493,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,2.3481E-4,5.57059E-4,9.8923E-4,0.00155215,0.00217386,0.00292642,0.00382176,0.0046521,0.0055429,0.00636546,0.00747917,0.00864656,0.00992309,0.0111198,0.0122728,0.0135013,0.0143077,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,1.17422E-6,2.81564E-6,5.23338E-6,8.55921E-6,1.24317E-5,1.73711E-5,2.33504E-5,2.91603E-5,3.55056E-5,4.17593E-5,4.85807E-5,5.5373E-5,6.27356E-5,6.9839E-5,7.61645E-5,8.31935E-5,8.93055E-5,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,3.43007E-4,7.74197E-4,0.00130119,0.00190345,0.00243303,0.00298425,0.00351366,0.00384556,0.00409107,0.00418782,0.00448236,0.0047214,0.00495621,0.00523188,0.00550724,0.00574732,0.00584136,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,3.97385E-5,8.79626E-5,1.45769E-4,2.12853E-4,2.78543E-4,3.50133E-4,4.25519E-4,6.99216E-4,0.00117918,0.00204127,0.00242251,0.00283796,0.0032932,0.00372812,0.00414923,0.0046031,0.00483682,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,3.79423E-5,8.43499E-5,1.40427E-4,2.06074E-4,2.71141E-4,3.42823E-4,4.1924E-4,4.79762E-4,5.36578E-4,5.77543E-4,6.96064E-4,8.2651E-4,9.73496E-4,0.00111904,0.00126521,0.00142748,0.00151483,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,2.44353E-5,5.22547E-5,8.34391E-5,1.17879E-4,1.52177E-4,1.88231E-4,2.27277E-4,2.58805E-4,2.89734E-4,3.14102E-4,3.74507E-4,4.31669E-4,4.91132E-4,5.50327E-4,6.03344E-4,6.60037E-4,6.90398E-4,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,2.78178E-5,6.30423E-5,1.08726E-4,1.65116E-4,2.22676E-4,2.88371E-4,3.58701E-4,4.26714E-4,4.96941E-4,5.66395E-4,6.4151E-4,7.17186E-4,7.9378E-4,8.70103E-4,9.4505E-4,0.00102039,0.00109312,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,2.92763E-4,6.9073E-4,0.00120926,0.00185662,0.00248956,0.00321179,0.00399279,0.00470366,0.00545475,0.00617278,0.00670324,0.00722743,0.00776221,0.00840914,0.00917195,0.00993202,0.0106195,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,0.00609817,0.010525,0.015871,0.0221259,0.0284536,0.0355903,0.0436396,0.046554,0.0492022,0.0514218,0.0541277,0.0567513,0.0595447,0.0611695,0.0628745,0.0641426,0.0629909,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,0.0373309,0.0652025,0.0993011,0.141304,0.191644,0.252445,0.325225,0.36438,0.405594,0.441445,0.491863,0.545192,0.604658,0.642897,0.679199,0.712222,0.706905,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,1.91619E-4,3.42447E-4,5.43876E-4,8.0454E-4,0.00112735,0.00153119,0.00201883,0.00231709,0.0026325,0.00293521,0.00324633,0.00356412,0.00392038,0.00417423,0.00440995,0.00465376,0.00476295,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,0.0545325,0.090618,0.130617,0.173285,0.214492,0.257434,0.299006,0.301207,0.299358,0.290426,0.29478,0.297699,0.302004,0.302485,0.30478,0.303184,0.288607,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,0.00631777,0.0102958,0.0146326,0.0193776,0.0245559,0.0302039,0.0362109,0.0547668,0.086285,0.141562,0.159315,0.178942,0.200669,0.215544,0.229626,0.242824,0.238975,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,0.0060322,0.00987296,0.0140964,0.0187605,0.0239033,0.0295733,0.0356766,0.0375778,0.0392634,0.0400527,0.0457762,0.052114,0.0593195,0.0646979,0.0700191,0.0753027,0.0748436,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,0.00428086,0.00684046,0.00947112,0.0121776,0.0155482,0.0186549,0.0220006,0.0227988,0.0235023,0.0238109,0.0267239,0.0296505,0.0327531,0.0349677,0.0370465,0.0390533,0.038506,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,0.00450599,0.00758186,0.011173,0.0153372,0.0199674,0.0251426,0.0306788,0.0335009,0.0363509,0.0392089,0.042178,0.0453851,0.0487728,0.051138,0.0538127,0.0561634,0.0573715,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,0.0449351,0.077525,0.115765,0.160187,0.206903,0.259578,0.316207,0.340522,0.366195,0.390321,0.402185,0.417575,0.437542,0.457266,0.489068,0.519798,0.540332,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,3.04543E-5,6.17368E-5,1.01875E-4,1.51767E-4,2.01685E-4,2.60652E-4,3.28424E-4,3.79904E-4,4.34228E-4,4.88119E-4,5.53592E-4,6.18818E-4,6.87512E-4,7.60167E-4,8.35417E-4,9.11881E-4,9.75959E-4,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,1.86431E-4,3.82462E-4,6.37404E-4,9.69242E-4,0.00135841,0.00184882,0.00244758,0.00297352,0.00357952,0.00419039,0.00503054,0.00594479,0.00698148,0.00798942,0.00902456,0.0101253,0.0109525,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,8.34218E-7,1.68405E-6,2.87778E-6,4.5076E-6,6.58152E-6,9.29918E-6,1.26298E-5,1.56468E-5,1.90823E-5,2.26787E-5,2.67486E-5,3.0996E-5,3.57672E-5,4.04779E-5,4.50601E-5,4.99638E-5,5.45361E-5,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,2.72336E-4,5.31542E-4,8.38416E-4,0.00118861,0.00152036,0.00188536,0.00225027,0.002458,0.00264195,0.00275685,0.00301487,0.00324611,0.00348699,0.00375904,0.00404963,0.00431021,0.00447157,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,3.1551E-5,6.03927E-5,9.39251E-5,1.32916E-4,1.74057E-4,2.21203E-4,2.72517E-4,4.46924E-4,7.61497E-4,0.00134377,0.0016294,0.00195119,0.00231696,0.00267861,0.00305105,0.0034521,0.00370259,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,3.01249E-5,5.79123E-5,9.04833E-5,1.28683E-4,1.69432E-4,2.16585E-4,2.68495E-4,3.06654E-4,3.46514E-4,3.80198E-4,4.68177E-4,5.68252E-4,6.84912E-4,8.04015E-4,9.30348E-4,0.00107054,0.0011596,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,1.99454E-5,3.65402E-5,5.48644E-5,7.55147E-5,9.66025E-5,1.21138E-4,1.48529E-4,1.68748E-4,1.90245E-4,2.08728E-4,2.52227E-4,3.01026E-4,3.54936E-4,4.08522E-4,4.61738E-4,5.19013E-4,5.57413E-4,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,2.04251E-5,3.92978E-5,6.28099E-5,9.19423E-5,1.24825E-4,1.63977E-4,2.06955E-4,2.45394E-4,2.87815E-4,3.33237E-4,3.8342E-4,4.3632E-4,4.91792E-4,5.46943E-4,6.04093E-4,6.59472E-4,7.14533E-4,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,2.42662E-4,4.9976E-4,8.28773E-4,0.0012442,0.00168339,0.0022163,0.00282028,0.00334685,0.00395764,0.00459263,0.00509432,0.00558501,0.00606579,0.0065633,0.00710361,0.00756726,0.00789985,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,4.09209E-5,1.07486E-4,2.00726E-4,3.21449E-4,4.48635E-4,5.94837E-4,7.61658E-4,9.04702E-4,0.00104351,0.00117346,0.00133229,0.0014893,0.00164921,0.00181013,0.00196994,0.00212979,0.00227676,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,2.50504E-4,6.6588E-4,0.00125589,0.00205289,0.0030217,0.00421923,0.00567627,0.00708114,0.00860209,0.0100739,0.0121066,0.0143073,0.0167472,0.0190247,0.0212802,0.0236486,0.0255506,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,1.60777E-6,4.32813E-6,8.42074E-6,1.40913E-5,2.0926E-5,2.95508E-5,4.00241E-5,5.03582E-5,6.14105E-5,7.25258E-5,8.4876E-5,9.75323E-5,1.11208E-4,1.2411E-4,1.35934E-4,1.48394E-4,1.60459E-4,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,3.65932E-4,9.25434E-4,0.00165195,0.00251752,0.00338195,0.00430261,0.00521866,0.00585347,0.00634897,0.00662759,0.00725565,0.00781238,0.00836462,0.00895115,0.00954917,0.0100669,0.0104315,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,4.23945E-5,1.05146E-4,1.85063E-4,2.81521E-4,3.8718E-4,5.04812E-4,6.32001E-4,0.0010643,0.00182998,0.00323048,0.00392135,0.0046959,0.00555795,0.00637839,0.00719449,0.00806273,0.00863758,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,4.04782E-5,1.00827E-4,1.78281E-4,2.72556E-4,3.7689E-4,4.94272E-4,6.22675E-4,7.30264E-4,8.32722E-4,9.14012E-4,0.00112673,0.00136761,0.00164297,0.00191454,0.00219379,0.00250036,0.00270517,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,2.39661E-5,5.69948E-5,9.63071E-5,1.41182E-4,1.92785E-4,2.46386E-4,3.04549E-4,3.53219E-4,3.96687E-4,4.30828E-4,5.13269E-4,5.96844E-4,6.86467E-4,7.72163E-4,8.56224E-4,9.46917E-4,0.00101418,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,3.60217E-5,9.14388E-5,1.65473E-4,2.58053E-4,3.58691E-4,4.73069E-4,5.96989E-4,7.19668E-4,8.44463E-4,9.71356E-4,0.00111272,0.00125909,0.00140676,0.00154693,0.0016857,0.00181699,0.00195728,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,3.26887E-4,8.70727E-4,0.00163614,0.00264838,0.00379096,0.00514945,0.00669042,0.00818215,0.00979546,0.0114086,0.0127003,0.0139583,0.0151597,0.0163398,0.0175846,0.0186414,0.0195434,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,5.975E-4,9.88661E-4,0.00142221,0.00192363,0.00247034,0.00305531,0.00369749,0.00384028,0.00395256,0.00403368,0.0041627,0.00427793,0.00439305,0.00446451,0.00453583,0.00458218,0.00447504,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,0.00365769,0.00612478,0.00889843,0.012285,0.0166385,0.0216715,0.0275556,0.030058,0.0325826,0.0346282,0.0378268,0.0410967,0.0446102,0.0469224,0.0489982,0.0508793,0.0502204,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,1.70185E-5,2.97949E-5,4.69186E-5,6.81058E-5,9.28657E-5,1.24022E-4,1.62294E-4,1.85483E-4,2.10191E-4,2.33668E-4,2.57025E-4,2.80614E-4,3.06539E-4,3.25642E-4,3.42823E-4,3.60327E-4,3.66764E-4,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,0.00534311,0.00851217,0.0117046,0.0150655,0.0186222,0.0220999,0.0253341,0.0248468,0.0240483,0.0227818,0.0226701,0.0224406,0.0222811,0.0220771,0.0219872,0.0216587,0.0205034,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,6.19017E-4,9.67136E-4,0.00131124,0.00168469,0.00213195,0.0025929,0.00306807,0.00451776,0.00693153,0.0111045,0.0122521,0.0134887,0.0148049,0.0157317,0.0165655,0.0173467,0.0169774,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,5.91036E-4,9.27414E-4,0.00126319,0.00163104,0.00207529,0.00253877,0.00302279,0.00309983,0.00315414,0.00314185,0.00352043,0.00392837,0.00437644,0.00472203,0.00505126,0.00537944,0.00531709,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,4.84439E-4,7.28981E-4,9.54375E-4,0.00119766,0.00150958,0.00184104,0.0021883,0.0022412,0.00226688,0.00225379,0.00248414,0.00273051,0.00299876,0.0032283,0.00345467,0.00368513,0.00365777,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,4.17825E-4,6.85487E-4,9.924E-4,0.00133482,0.00170611,0.00212262,0.00257356,0.00278436,0.0029943,0.00319985,0.00340781,0.00362849,0.0038507,0.00400888,0.00417865,0.00431753,0.00435879,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,0.0048521,0.00804809,0.011485,0.0155289,0.0202871,0.0254612,0.0309223,0.0326444,0.0344075,0.0359662,0.0362844,0.0367168,0.0372291,0.0377292,0.0387457,0.0393687,0.0388726,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,1.77715E-4,3.72176E-4,6.51237E-4,0.00102316,0.0014593,0.00197742,0.00258329,0.00284807,0.00307353,0.00326187,0.00349396,0.00372761,0.00399486,0.00423113,0.00451719,0.00481008,0.00494253,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,0.00108791,0.00230564,0.00407463,0.0065343,0.00982885,0.014026,0.019252,0.0222919,0.0253364,0.0280025,0.03175,0.03581,0.0405666,0.0444695,0.0487967,0.0534097,0.0554667,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,4.22178E-6,9.17809E-6,1.73577E-5,2.96721E-5,4.72642E-5,7.15131E-5,1.03206E-4,1.25348E-4,1.4875E-4,1.71881E-4,1.96973E-4,2.24317E-4,2.56687E-4,2.84227E-4,3.14946E-4,3.48659E-4,3.70903E-4,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,0.0015892,0.00320436,0.00535961,0.00801319,0.0110007,0.0143032,0.0177,0.0184271,0.0187001,0.0184228,0.0190282,0.0195538,0.0202615,0.020923,0.0218968,0.0227359,0.0226453,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,1.84115E-4,3.64073E-4,6.0042E-4,8.96072E-4,0.0012594,0.00167815,0.00214354,0.0033505,0.00539,0.0089798,0.0102838,0.0117535,0.0134629,0.0149093,0.0164974,0.0182094,0.018751,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,1.75792E-4,3.4912E-4,5.78418E-4,8.67536E-4,0.00122593,0.00164312,0.00211191,0.00229892,0.00245268,0.00254069,0.00295487,0.00342302,0.00397975,0.00447518,0.00503049,0.00564698,0.00587254,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,5.21192E-5,9.33563E-5,1.40623E-4,1.94075E-4,2.61022E-4,3.33033E-4,4.14701E-4,4.43533E-4,4.69914E-4,4.87656E-4,5.4847E-4,6.03534E-4,6.57606E-4,7.09977E-4,7.56322E-4,8.07621E-4,8.24219E-4,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,1.04963E-4,2.15448E-4,3.77215E-4,5.97399E-4,8.81417E-4,0.00123255,0.00164079,0.00189166,0.00213949,0.00238713,0.00264251,0.00292381,0.00323515,0.00349404,0.00380777,0.00411644,0.00432408,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,0.0015104,0.00319762,0.00559815,0.00883966,0.0128474,0.0177374,0.0234061,0.0264879,0.0296029,0.0324879,0.0339772,0.0354545,0.0370318,0.0382697,0.040068,0.041473,0.0414359,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,1.40109E-4,2.85929E-4,4.87552E-4,7.43814E-4,0.00103145,0.00135769,0.00172494,0.00185686,0.00196909,0.00206026,0.00218123,0.00230936,0.00247485,0.00256515,0.00270564,0.00284334,0.00289213,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,8.57703E-4,0.00177134,0.00305049,0.00475028,0.0069471,0.00963017,0.0128551,0.0145337,0.0162321,0.0176869,0.019821,0.0221853,0.0251314,0.0269599,0.0292275,0.0315717,0.0324565,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,4.00843E-6,8.61919E-6,1.59871E-5,2.67126E-5,4.14953E-5,6.08718E-5,8.4996E-5,9.98346E-5,1.14881E-4,1.29184E-4,1.43966E-4,1.59678E-4,1.7927E-4,1.92604E-4,2.08168E-4,2.2482E-4,2.30825E-4,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,0.00125292,0.00246179,0.0040125,0.0058254,0.00777535,0.0098205,0.0118188,0.012014,0.0119804,0.0116362,0.011879,0.0121142,0.0125522,0.0126847,0.0131154,0.0134397,0.0132509,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,1.45155E-4,2.79704E-4,4.49508E-4,6.51423E-4,8.90155E-4,0.00115221,0.0014313,0.00218444,0.00345316,0.00567181,0.00642005,0.00728163,0.00834041,0.00903884,0.00988134,0.010764,0.0109722,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,1.38594E-4,2.68216E-4,4.33036E-4,6.30678E-4,8.66499E-4,0.00112815,0.00141018,0.00149883,0.00157134,0.00160474,0.00184468,0.00212066,0.00246549,0.00271311,0.00301309,0.00333806,0.00343633,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,3.72314E-5,6.02425E-5,8.485E-5,1.10973E-4,1.3944E-4,1.71253E-4,2.05735E-4,2.14819E-4,2.22935E-4,2.27496E-4,2.50228E-4,2.69602E-4,2.88352E-4,3.01085E-4,3.12099E-4,3.24627E-4,3.2793E-4,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,9.35404E-5,1.88481E-4,3.22029E-4,4.95931E-4,7.1039E-4,9.60786E-4,0.00123568,0.00137849,0.00151486,0.00164814,0.00178255,0.00193145,0.00210854,0.00221443,0.00236264,0.00249987,0.00255525,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,0.00104007,0.00213548,0.00363199,0.00555208,0.00781646,0.0104563,0.0133851,0.01476,0.0161776,0.0174633,0.0180043,0.0186017,0.0193813,0.0195453,0.0201835,0.0205695,0.0203471,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,9.99444E-5,2.26017E-4,3.81301E-4,5.60991E-4,7.05359E-4,8.61438E-4,0.00102668,0.00112561,0.00121035,0.00127239,0.00135907,0.00143942,0.00151938,0.00158537,0.001649,0.00171,0.00175802,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,6.11826E-4,0.00140018,0.00238571,0.0035827,0.00475081,0.00611025,0.00765133,0.00881018,0.00997742,0.0109232,0.01235,0.0138281,0.0154288,0.0166623,0.0178132,0.0189873,0.0197291,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,4.70253E-6,1.06207E-5,1.82763E-5,2.76548E-5,3.76905E-5,4.98946E-5,6.39568E-5,7.51249E-5,8.61957E-5,9.61504E-5,1.06735E-4,1.17069E-4,1.28153E-4,1.37132E-4,1.44946E-4,1.52833E-4,1.59182E-4,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,8.93746E-4,0.00194596,0.00313806,0.00439356,0.00531721,0.00623101,0.0070345,0.00728275,0.00736406,0.00718636,0.0074015,0.00755073,0.00770612,0.00783967,0.00799341,0.00808268,0.00805476,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,1.03544E-4,2.21096E-4,3.51548E-4,4.91309E-4,6.08737E-4,7.31064E-4,8.51907E-4,0.00132418,0.00212257,0.00350285,0.00400017,0.00453863,0.0051204,0.00558638,0.00602236,0.00647351,0.00666958,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,9.88632E-5,2.12015E-4,3.38665E-4,4.75662E-4,5.92559E-4,7.15801E-4,8.39336E-4,9.08577E-4,9.6586E-4,9.91072E-4,0.00114938,0.0013218,0.00151363,0.00167681,0.00183638,0.00200752,0.00208882,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,5.46124E-5,1.14281E-4,1.75923E-4,2.37095E-4,2.91273E-4,3.43389E-4,3.91592E-4,4.16868E-4,4.17684E-4,4.25409E-4,4.81506E-4,5.29356E-4,5.88671E-4,6.43567E-4,7.08246E-4,7.56139E-4,7.83769E-4,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,1.00244E-4,2.1485E-4,3.45595E-4,4.88997E-4,6.19554E-4,7.60804E-4,9.02092E-4,0.00100978,0.00110817,0.00119779,0.00129876,0.00139949,0.00149878,0.00157726,0.0016555,0.00172035,0.00178458,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,7.82545E-4,0.00180509,0.00307784,0.00459236,0.00591375,0.0073917,0.00892915,0.0100755,0.0112309,0.0122301,0.0127994,0.0133115,0.0137664,0.0140858,0.0144676,0.0146766,0.0147691,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,1.4164E-4,3.3445E-4,6.03218E-4,9.49722E-4,0.00130743,0.00171208,0.00217739,0.00252081,0.00285327,0.00317281,0.00360427,0.00405868,0.00453513,0.00499035,0.00547094,0.00595441,0.00639471,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,8.6707E-4,0.00207193,0.00377418,0.00606528,0.00880596,0.0121439,0.016227,0.0197304,0.0235207,0.0272379,0.0327524,0.0389904,0.0460529,0.052449,0.0590996,0.0661161,0.0717636,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,4.31559E-6,1.07702E-5,2.06741E-5,3.47149E-5,5.19949E-5,7.39693E-5,1.01358E-4,1.26133E-4,1.52729E-4,1.80793E-4,2.14506E-4,2.51753E-4,2.93246E-4,3.34551E-4,3.76707E-4,4.2186E-4,4.58849E-4,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,0.0012666,0.00287955,0.00496441,0.00743802,0.00985583,0.0123839,0.0149188,0.0163097,0.01736,0.0179197,0.0196289,0.0212905,0.0230017,0.0246774,0.02652,0.0281448,0.0292988,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,1.4674E-4,3.27168E-4,5.56147E-4,8.31755E-4,0.00112834,0.00145296,0.00180673,0.00296551,0.00500372,0.00873462,0.0106085,0.0127974,0.0152837,0.0175846,0.0199806,0.0225415,0.0242603,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,1.40107E-4,3.13731E-4,5.35768E-4,8.05267E-4,0.00109835,0.00142263,0.00178007,0.00203476,0.00227691,0.00247132,0.00304816,0.00372703,0.00451798,0.0052782,0.00609262,0.00699041,0.00759798,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,8.16905E-5,1.71289E-4,2.74441E-4,3.88934E-4,5.07632E-4,6.32536E-4,7.65255E-4,8.53965E-4,9.20865E-4,9.728E-4,0.00113913,0.00131569,0.00149748,0.00167501,0.00185188,0.00204016,0.00219206,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,1.03368E-4,2.41753E-4,4.29883E-4,6.70024E-4,9.33772E-4,0.00123466,0.00156877,0.00186317,0.00216344,0.00248476,0.0028706,0.00329991,0.00374745,0.0041822,0.00464958,0.00510449,0.0055255,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,0.00118769,0.00282895,0.00511581,0.00811599,0.0114198,0.015286,0.0196879,0.0234411,0.0275153,0.0316605,0.0352023,0.0388845,0.0424883,0.0457046,0.0492737,0.0522817,0.0548498,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,5.60317E-4,0.00120848,0.00208657,0.00319711,0.00433517,0.00562734,0.0070866,0.00819762,0.0093432,0.0105041,0.0120581,0.0137528,0.0157101,0.0174598,0.0194318,0.0214636,0.0233284,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,0.00343007,0.00748655,0.0130551,0.020418,0.0291987,0.0399151,0.052813,0.064163,0.0770199,0.090175,0.109573,0.132119,0.159531,0.183504,0.209911,0.238326,0.2618,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,1.06559E-5,2.61418E-5,5.16547E-5,9.04841E-5,1.41925E-4,2.09567E-4,2.93616E-4,3.73037E-4,4.61885E-4,5.58987E-4,6.76309E-4,8.08547E-4,9.6527E-4,0.00112298,0.00129511,0.00148392,0.00161666,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,0.0050106,0.0104048,0.0171722,0.0250391,0.0326799,0.040704,0.0485553,0.053039,0.0568463,0.0593259,0.0656687,0.0721428,0.0796799,0.0863391,0.0941943,0.101453,0.106884,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,5.80495E-4,0.00118217,0.00192375,0.00279999,0.00374133,0.00477567,0.00588025,0.00964378,0.016385,0.0289173,0.0354909,0.043364,0.052944,0.0615233,0.0709674,0.0812545,0.0885035,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,5.54255E-4,0.00113361,0.00185326,0.00271082,0.0036419,0.00467596,0.00579348,0.00661701,0.00745588,0.00818166,0.0101977,0.012629,0.0156507,0.0184669,0.0216399,0.0251981,0.0277181,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,2.77904E-4,5.22387E-4,7.96929E-4,0.00110044,0.00141333,0.00176101,0.00213583,0.00241182,0.00267368,0.00289647,0.00345834,0.0040799,0.00475965,0.00539256,0.00603344,0.00673449,0.00733698,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,2.83845E-4,6.44297E-4,0.00116307,0.001864,0.00268102,0.00363858,0.00469039,0.00565788,0.00669549,0.00784356,0.00921298,0.0107686,0.0125212,0.0142007,0.0161152,0.0180443,0.0196247,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,0.00497461,0.0107046,0.0183463,0.0280664,0.0385963,0.050939,0.0647488,0.0768921,0.0908204,0.1056,0.118543,0.132504,0.147843,0.160196,0.174754,0.187538,0.198845,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,4.23564E-5,8.71122E-5,1.59025E-4,2.68249E-4,4.23042E-4,6.41499E-4,9.39396E-4,0.00116021,0.00140829,0.00166967,0.00198128,0.00232599,0.0027162,0.00305693,0.003449,0.00386131,0.00409977,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,2.59292E-4,5.39663E-4,9.94979E-4,0.00171314,0.00284932,0.0045502,0.00700086,0.00908103,0.0116091,0.0143337,0.0180041,0.0223451,0.0275822,0.0321286,0.0372577,0.0428749,0.046009,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,7.52805E-7,1.67085E-6,3.30676E-6,6.05359E-6,1.04055E-5,1.70092E-5,2.66642E-5,3.51154E-5,4.51097E-5,5.62875E-5,6.92826E-5,8.39601E-5,1.0081E-4,1.17587E-4,1.35728E-4,1.56283E-4,1.71099E-4,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,3.7877E-4,7.50019E-4,0.00130876,0.00210087,0.00318902,0.00464013,0.00643647,0.00750664,0.00856835,0.00943013,0.0107901,0.0122014,0.0137763,0.0151166,0.0167188,0.0182513,0.018784,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,4.38817E-5,8.52156E-5,1.46616E-4,2.34929E-4,3.65092E-4,5.44411E-4,7.79483E-4,0.00136489,0.00246968,0.00459653,0.00583155,0.00733406,0.00915378,0.0107717,0.0125962,0.0146177,0.0155537,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,4.18982E-5,8.17157E-5,1.41243E-4,2.27447E-4,3.5539E-4,5.33045E-4,7.67981E-4,9.3651E-4,0.00112381,0.00130051,0.00167559,0.00213592,0.00270593,0.00323325,0.00384093,0.00453314,0.0048712,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,1.99407E-5,3.44914E-5,5.36145E-5,7.84044E-5,1.12312E-4,1.57072E-4,2.12907E-4,2.47129E-4,2.82579E-4,3.14332E-4,3.77557E-4,4.49421E-4,5.31129E-4,6.02299E-4,6.7789E-4,7.61495E-4,8.03614E-4,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,2.01816E-5,4.19469E-5,7.69021E-5,1.30747E-4,2.09767E-4,3.20661E-4,4.68978E-4,5.93223E-4,7.36417E-4,8.99431E-4,0.00107866,0.00128281,0.0015061,0.00171678,0.00195715,0.00220675,0.00238843,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,3.59493E-4,7.41058E-4,0.00134889,0.00228043,0.00366273,0.00566496,0.00838025,0.0106266,0.0133632,0.0163785,0.0190037,0.021867,0.0249561,0.0273878,0.0303142,0.0329804,0.0340198,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,5.7584E-4,9.86934E-4,0.00147148,0.00202336,0.00255629,0.00313591,0.00379004,0.00401896,0.00425283,0.00446143,0.00474172,0.0050211,0.0053209,0.00560076,0.00591521,0.00623513,0.00638918,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,0.0035251,0.00611408,0.00920667,0.0129219,0.0172174,0.0222432,0.0282454,0.0314565,0.0350578,0.0383004,0.0430885,0.0482362,0.0540321,0.0588644,0.0638988,0.0692332,0.0717015,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,1.79158E-5,3.22331E-5,5.14462E-5,7.62263E-5,1.07585E-4,1.45859E-4,1.91302E-4,2.17645E-4,2.45004E-4,2.71096E-4,2.97372E-4,3.24265E-4,3.54336E-4,3.80161E-4,4.05891E-4,4.33382E-4,4.50323E-4,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,0.00514941,0.0084973,0.0121101,0.0158465,0.0192701,0.0226828,0.0259683,0.0260029,0.0258752,0.0251977,0.0258235,0.0263391,0.026987,0.0276959,0.0286736,0.0294717,0.0292734,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,5.96577E-4,9.65446E-4,0.00135666,0.00177203,0.00220613,0.0026613,0.00314487,0.00472796,0.00745811,0.0122821,0.0139564,0.015832,0.0179318,0.0197355,0.0216031,0.0236042,0.0242393,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,5.69611E-4,9.25794E-4,0.00130694,0.0017156,0.0021475,0.00260574,0.00309846,0.00324405,0.00339376,0.00347502,0.00401011,0.00461081,0.00530078,0.00592381,0.00658737,0.00731998,0.00759141,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,4.23775E-4,6.51386E-4,8.78878E-4,0.00111431,0.00135314,0.00161321,0.00189933,0.00198524,0.00206856,0.00211741,0.00239698,0.00269712,0.00303005,0.00330791,0.00359487,0.00391116,0.00402692,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,4.25076E-4,7.17633E-4,0.00105922,0.00145244,0.00189146,0.00236969,0.00287376,0.00311975,0.00337213,0.00362752,0.00389331,0.0041785,0.00447152,0.00472074,0.00500365,0.00526508,0.00543914,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,0.00437951,0.00756764,0.0112869,0.0155919,0.0200145,0.0249867,0.0304829,0.0331574,0.0363041,0.0393016,0.040826,0.0423421,0.0437877,0.0449846,0.0466473,0.0478291,0.0476566,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,2.92628E-5,5.30176E-5,8.24204E-5,1.1784E-4,1.55312E-4,1.97632E-4,2.46835E-4,2.65974E-4,2.83586E-4,3.00003E-4,3.24089E-4,3.49992E-4,3.78117E-4,4.08045E-4,4.42365E-4,4.78139E-4,4.98506E-4,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,1.79137E-4,3.28445E-4,5.15684E-4,7.52574E-4,0.00104607,0.00140182,0.00183954,0.00208179,0.00233771,0.00257546,0.00294503,0.00336226,0.00383966,0.00428859,0.00477863,0.00530912,0.0055944,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,1.21938E-6,2.16685E-6,3.45799E-6,5.13883E-6,7.28765E-6,1.00348E-5,1.34721E-5,1.56506E-5,1.80269E-5,2.04103E-5,2.31725E-5,2.61515E-5,2.95775E-5,3.27961E-5,3.59819E-5,3.95196E-5,4.16284E-5,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,2.61681E-4,4.56471E-4,6.7831E-4,9.22902E-4,0.00117079,0.00142952,0.00169124,0.00172087,0.0017254,0.00169439,0.00176499,0.00183594,0.00191777,0.00201779,0.00214434,0.00226003,0.00228402,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,3.03166E-5,5.18633E-5,7.5989E-5,1.03203E-4,1.34037E-4,1.67721E-4,2.04817E-4,3.12896E-4,4.97319E-4,8.25895E-4,9.53898E-4,0.00110356,0.00127428,0.00143783,0.00161557,0.00181008,0.00189123,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,2.89463E-5,4.97332E-5,7.32044E-5,9.99166E-5,1.30475E-4,1.64219E-4,2.01794E-4,2.14691E-4,2.26302E-4,2.33673E-4,2.74085E-4,3.21393E-4,3.76687E-4,4.31582E-4,4.92632E-4,5.6133E-4,5.92308E-4,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,1.89766E-5,2.92191E-5,3.98191E-5,5.12427E-5,6.38906E-5,7.77913E-5,9.35955E-5,9.87654E-5,1.04101E-4,1.08217E-4,1.24839E-4,1.44516E-4,1.65484E-4,1.84214E-4,2.03351E-4,2.24246E-4,2.33233E-4,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,2.69721E-5,4.5635E-5,6.79651E-5,9.42505E-5,1.24563E-4,1.59378E-4,1.98314E-4,2.19443E-4,2.41498E-4,2.64565E-4,2.92287E-4,3.23374E-4,3.56685E-4,3.88489E-4,4.23302E-4,4.58093E-4,4.80789E-4,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,2.30116E-4,4.27361E-4,6.71766E-4,9.73548E-4,0.0013148,0.001713,0.00217014,0.0024068,0.00266285,0.00291833,0.00308869,0.0032784,0.00346978,0.00367177,0.00392907,0.00415383,0.00423744,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,1.72961E-4,3.32936E-4,5.41868E-4,7.94749E-4,0.00105174,0.00134579,0.00169293,0.00184675,0.00199395,0.00212076,0.00229121,0.0024907,0.00277542,0.0028947,0.00309879,0.0032869,0.00335235,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,0.00105881,0.00206255,0.00339033,0.00507557,0.00708377,0.00954579,0.0126166,0.0144546,0.016437,0.0182063,0.0208204,0.0239273,0.0281836,0.0304235,0.0334746,0.0364968,0.0376212,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,2.93012E-6,6.01778E-6,1.0406E-5,1.64116E-5,2.40722E-5,3.40312E-5,4.64533E-5,5.49044E-5,6.3911E-5,7.28219E-5,8.2622E-5,9.30751E-5,1.05438E-4,1.15179E-4,1.26508E-4,1.38444E-4,1.46409E-4,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,0.00154669,0.00286651,0.00445951,0.00622431,0.00792832,0.00973445,0.0115995,0.0119486,0.0121317,0.0119779,0.0124779,0.0130654,0.0140767,0.0143143,0.0150212,0.0155363,0.0153596,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,1.7919E-4,3.25687E-4,4.99584E-4,6.96031E-4,9.07666E-4,0.00114211,0.00140474,0.00217254,0.00349676,0.00583837,0.00674375,0.00785339,0.00935336,0.0102001,0.0113172,0.0124432,0.0127182,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,1.7109E-4,3.12311E-4,4.81278E-4,6.73865E-4,8.83545E-4,0.00111827,0.00138401,0.00149068,0.00159117,0.00165187,0.00193769,0.00228717,0.00276493,0.00306166,0.00345092,0.00385879,0.00398315,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,9.53172E-5,1.42925E-4,1.89243E-4,2.38556E-4,2.91076E-4,3.51317E-4,4.17506E-4,4.40649E-4,4.63226E-4,4.81576E-4,5.4395E-4,6.15864E-4,7.05602E-4,7.57702E-4,8.25031E-4,8.93802E-4,9.15923E-4,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,8.04816E-5,1.54773E-4,2.48898E-4,3.65713E-4,4.99231E-4,6.56586E-4,8.33972E-4,9.43514E-4,0.0010566,0.0011732,0.0012935,0.00142978,0.00159049,0.00169391,0.00183717,0.00196832,0.00205541,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,0.00157411,0.00303398,0.00493283,0.00726626,0.00979412,0.0127759,0.0162512,0.0182192,0.0203985,0.0224564,0.0237594,0.0253724,0.027734,0.0282304,0.0296841,0.0306414,0.0303806,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,8.5613E-4,0.00158559,0.00250207,0.00357787,0.00470613,0.00595846,0.00735959,0.00784951,0.00825835,0.00857567,0.00901419,0.00943903,0.00994391,0.0102111,0.0105819,0.0109274,0.0111068,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,0.00524094,0.00982277,0.0156548,0.0228496,0.0316972,0.0422638,0.0548475,0.0614384,0.068077,0.0736202,0.0819128,0.0906778,0.100977,0.10732,0.114311,0.121335,0.124644,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,2.23022E-5,4.56485E-5,8.09485E-5,1.30367E-4,1.96002E-4,2.80847E-4,3.85759E-4,4.53629E-4,5.21939E-4,5.87481E-4,6.54023E-4,7.21864E-4,8.00533E-4,8.60154E-4,9.22978E-4,9.89447E-4,0.00102149,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,0.00765589,0.0136516,0.0205917,0.0280211,0.0354763,0.0430991,0.0504258,0.0507868,0.0502458,0.0484346,0.0490914,0.049514,0.0504345,0.0504944,0.0512953,0.0516509,0.0508882,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,8.86961E-4,0.00155107,0.00230683,0.00313346,0.00406147,0.00505668,0.00610677,0.00923427,0.0144825,0.0236085,0.0265316,0.0297621,0.0335116,0.0359812,0.0386467,0.0413678,0.042137,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,8.46869E-4,0.00148736,0.0022223,0.00303367,0.00395353,0.00495111,0.00601666,0.00633603,0.00659017,0.00667963,0.00762338,0.00866773,0.00990631,0.0108001,0.0117844,0.0128287,0.0131967,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,6.82033E-4,0.00113768,0.00162217,0.0021251,0.00268391,0.00327523,0.00389834,0.00405128,0.00415747,0.00417042,0.00463347,0.00509978,0.00560488,0.00596721,0.00633774,0.00674136,0.00686525,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,5.63838E-4,0.00107101,0.00173601,0.00255731,0.00352596,0.00463514,0.00583947,0.00649041,0.00709912,0.00768758,0.00830315,0.0089509,0.00965577,0.0101262,0.0107052,0.0112259,0.0115261,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,0.00745168,0.013829,0.0217149,0.0310645,0.0415061,0.0534612,0.0666505,0.0729002,0.0793731,0.0851133,0.0874852,0.0897935,0.0924307,0.0927025,0.0943774,0.0949077,0.0941408,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,4.89859E-4,0.00105563,0.00192012,0.00312293,0.0046724,0.00669008,0.0092852,0.0110033,0.0128321,0.0146622,0.0167693,0.0189523,0.0214371,0.0233809,0.0255283,0.0275621,0.0287383,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,0.00299875,0.00653968,0.0120137,0.0199442,0.0314701,0.0474532,0.0691981,0.0861234,0.10578,0.125871,0.152384,0.182069,0.217687,0.245735,0.275769,0.306042,0.322511,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,1.46566E-5,3.53313E-5,7.224E-5,1.31943E-4,2.23801E-4,3.57864E-4,5.42973E-4,6.94471E-4,8.65218E-4,0.00104747,0.00124061,0.00144745,0.00168301,0.0018711,0.0020694,0.00227257,0.00238478,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,0.00438053,0.0090888,0.0158023,0.0244582,0.035222,0.0483911,0.0636195,0.0711921,0.0780734,0.0828105,0.0913257,0.0994176,0.108727,0.115619,0.123747,0.130278,0.131671,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,5.075E-4,0.00103265,0.00177029,0.00273503,0.00403236,0.00567757,0.00770459,0.0129445,0.0225034,0.0403643,0.0493573,0.0597584,0.0722444,0.0823875,0.0932329,0.104341,0.109027,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,4.8456E-4,9.90239E-4,0.00170542,0.00264793,0.0039252,0.00555903,0.0075909,0.00888174,0.01024,0.0114204,0.0141819,0.0174037,0.021356,0.0247295,0.0284292,0.0323576,0.0341459,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,4.47084E-4,8.78629E-4,0.00145277,0.00216511,0.00308154,0.00420283,0.00554379,0.006282,0.00699359,0.00753499,0.0089176,0.0103863,0.0120139,0.0132922,0.0145342,0.0157957,0.0161852,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,3.56686E-4,7.93785E-4,0.00147942,0.00246581,0.00383275,0.00562865,0.00785339,0.00953529,0.0113551,0.0133007,0.0153886,0.0176496,0.0201167,0.0220239,0.0241845,0.0261679,0.0274118,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,0.00390038,0.00838834,0.0151352,0.024544,0.0371586,0.0539419,0.0753127,0.0912341,0.109737,0.129083,0.144296,0.160006,0.177401,0.190254,0.205876,0.218504,0.22462,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,0.00112951,0.00189657,0.00279228,0.00378705,0.00471467,0.00566231,0.00663656,0.00669087,0.00666235,0.00657831,0.00658887,0.00660623,0.00667038,0.00666005,0.00672849,0.00679724,0.006621,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,0.00691445,0.0117493,0.0174706,0.0241856,0.0317548,0.0401632,0.0494591,0.0523697,0.0549205,0.0564733,0.0598736,0.063464,0.0677358,0.0699976,0.0726842,0.0754746,0.0743031,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,4.56014E-5,7.80237E-5,1.19517E-4,1.69508E-4,2.28963E-4,2.98779E-4,3.77643E-4,4.07849E-4,4.34521E-4,4.55308E-4,4.75066E-4,4.9436E-4,5.1821E-4,5.30673E-4,5.4307E-4,5.57898E-4,5.54106E-4,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,0.0101005,0.0163291,0.0229801,0.0296594,0.0355407,0.040957,0.0454718,0.0432903,0.0405353,0.0371537,0.0358831,0.0346541,0.0338315,0.0329341,0.0326159,0.0321286,0.0303356,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,0.00117018,0.00185528,0.00257439,0.00331665,0.00406884,0.00480535,0.00550682,0.00787123,0.0116836,0.0181098,0.0193931,0.0208301,0.0224796,0.0234681,0.0245733,0.0257322,0.0251187,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,0.00111729,0.00177908,0.00248005,0.00321103,0.00396071,0.00470503,0.00542556,0.00540079,0.00531655,0.00512387,0.00557226,0.00606642,0.00664516,0.0070442,0.00749307,0.00797988,0.00786684,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,3.5471E-4,5.33339E-4,7.02446E-4,8.65678E-4,0.00105029,0.00121463,0.00139206,0.00139851,0.00139433,0.00137337,0.00146511,0.00150779,0.00153725,0.00155856,0.00157419,0.00159491,0.00154622,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,9.90189E-4,0.00160027,0.00228111,0.00301447,0.00378677,0.00458407,0.0053625,0.00552821,0.00564575,0.00574322,0.00584611,0.00597016,0.00611473,0.00615683,0.00626067,0.00634222,0.00626816,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,0.00870201,0.0148155,0.0219256,0.0300118,0.0381367,0.0467116,0.0553223,0.0572825,0.0590672,0.0603351,0.0591882,0.0583351,0.0578491,0.0569729,0.0572984,0.0571871,0.0551504,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,4.07495E-4,7.81506E-4,0.00128873,0.00193,0.00265594,0.00350154,0.00448715,0.00488446,0.00525294,0.00558757,0.00603141,0.00649993,0.00707105,0.00747319,0.00800978,0.00856376,0.00883281,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,0.00249455,0.00484145,0.00806324,0.0123257,0.0178886,0.0248367,0.0334406,0.0382309,0.0433021,0.0479681,0.054808,0.0624428,0.0718044,0.0785439,0.0865254,0.0950896,0.0991248,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,1.60852E-5,3.23435E-5,5.68807E-5,9.16095E-5,1.3846E-4,1.99619E-4,2.7597E-4,3.21359E-4,3.66467E-4,4.09881E-4,4.54427E-4,5.0206E-4,5.60618E-4,6.02375E-4,6.51436E-4,7.034E-4,7.27653E-4,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,0.003644,0.00672861,0.0106061,0.0151154,0.0200213,0.0253275,0.0307447,0.0316027,0.0319601,0.0315581,0.0328471,0.0340965,0.0358636,0.0369551,0.0388269,0.0404785,0.0404695,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,4.2217E-4,7.64491E-4,0.00118817,0.00169027,0.00229212,0.0029716,0.00372331,0.00574615,0.00921198,0.0153824,0.0177524,0.0204949,0.0238299,0.0263334,0.0292528,0.0324197,0.0335099,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,4.03087E-4,7.33092E-4,0.00114463,0.00163644,0.00223121,0.00290956,0.00366836,0.00394268,0.00419185,0.00435218,0.00510081,0.0059688,0.00704431,0.00790425,0.00891996,0.0100538,0.0104948,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,1.3618E-4,2.12924E-4,2.94471E-4,3.81435E-4,4.79085E-4,5.92021E-4,7.19072E-4,7.56888E-4,7.8197E-4,7.95249E-4,8.76675E-4,9.54298E-4,0.00104153,0.00110328,0.00117637,0.00126226,0.00130133,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,3.52726E-4,6.63197E-4,0.00107622,0.00159983,0.00223663,0.0029829,0.00381249,0.0042366,0.00464189,0.00505297,0.00548827,0.0059734,0.00653925,0.0069201,0.00743402,0.00792009,0.00818186,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,0.00319746,0.00618903,0.0102333,0.0154376,0.0216936,0.0292358,0.0379763,0.0425922,0.0476289,0.0525849,0.0556142,0.0588506,0.0626671,0.064846,0.0684503,0.0714617,0.0720518,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,1.22115E-5,2.05816E-5,3.04686E-5,4.19703E-5,5.32927E-5,6.57212E-5,7.98268E-5,8.34933E-5,8.68153E-5,9.04E-5,9.58654E-5,1.02029E-4,1.09358E-4,1.16846E-4,1.26122E-4,1.35957E-4,1.40718E-4,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,7.47549E-5,1.27504E-4,1.90634E-4,2.68038E-4,3.58943E-4,4.66165E-4,5.9491E-4,6.53505E-4,7.15654E-4,7.76064E-4,8.71138E-4,9.80156E-4,0.0011105,0.00122806,0.00136243,0.00150963,0.00157919,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,5.69754E-7,9.77211E-7,1.50188E-6,2.15774E-6,2.93037E-6,3.86636E-6,4.99191E-6,5.5434E-6,6.13643E-6,6.72534E-6,7.36375E-6,8.10501E-6,8.91958E-6,9.67462E-6,1.05093E-5,1.14196E-5,1.19416E-5,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,1.09201E-4,1.77203E-4,2.50753E-4,3.28703E-4,4.01737E-4,4.75378E-4,5.4695E-4,5.40206E-4,5.28205E-4,5.10571E-4,5.22084E-4,5.35208E-4,5.54653E-4,5.77804E-4,6.11369E-4,6.42632E-4,6.44731E-4,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,1.26513E-5,2.01335E-5,2.80911E-5,3.67571E-5,4.59925E-5,5.57746E-5,6.62379E-5,9.82226E-5,1.52246E-4,2.48868E-4,2.82162E-4,3.21705E-4,3.68544E-4,4.11731E-4,4.60615E-4,5.14691E-4,5.33857E-4,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,1.20794E-5,1.93066E-5,2.70617E-5,3.55865E-5,4.47702E-5,5.46102E-5,6.52605E-5,6.73947E-5,6.92786E-5,7.0413E-5,8.10742E-5,9.36915E-5,1.08945E-4,1.23585E-4,1.40454E-4,1.59612E-4,1.67196E-4,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,4.58843E-6,6.90603E-6,9.11497E-6,1.12793E-5,1.41002E-5,1.72305E-5,2.05625E-5,2.1447E-5,2.01885E-5,1.9844E-5,2.15308E-5,2.11784E-5,2.21947E-5,2.35439E-5,2.65526E-5,2.93891E-5,3.0931E-5,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,1.20167E-5,1.94456E-5,2.77881E-5,3.71651E-5,4.71249E-5,5.79722E-5,6.95798E-5,7.39582E-5,7.83873E-5,8.35063E-5,8.94199E-5,9.64561E-5,1.03991E-4,1.11107E-4,1.20096E-4,1.28875E-4,1.34251E-4,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,9.50759E-5,1.63021E-4,2.43502E-4,3.39895E-4,4.43563E-4,5.62078E-4,6.94634E-4,7.50388E-4,8.10071E-4,8.75452E-4,9.09393E-4,9.473E-4,9.92677E-4,0.00103708,0.00110189,0.00115831,0.00116847,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,9.89262E-4,0.00234409,0.00411512,0.00629551,0.00836385,0.0107081,0.0133403,0.0153122,0.0172311,0.0190185,0.0212215,0.0234049,0.0256723,0.0277787,0.0298418,0.0318617,0.0335617,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,0.00605593,0.0145217,0.0257473,0.0402055,0.0563332,0.0759532,0.0994188,0.119849,0.142043,0.163269,0.192842,0.224844,0.260695,0.291957,0.322365,0.353784,0.37664,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,4.18938E-5,1.01023E-4,1.84234E-4,2.94084E-4,4.20413E-4,5.79893E-4,7.72896E-4,9.47066E-4,0.0011371,0.00133021,0.00154436,0.00176564,0.00201331,0.00223326,0.00243463,0.00264884,0.00285147,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,0.00884641,0.0201822,0.033867,0.0493051,0.0630493,0.0774543,0.0914039,0.0990705,0.104838,0.107415,0.115573,0.122774,0.130207,0.137366,0.144656,0.150602,0.15377,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,0.00102489,0.00229306,0.00379401,0.00551353,0.00721815,0.00908746,0.0110694,0.0180134,0.0302179,0.0523571,0.0624618,0.0737978,0.0865174,0.0978842,0.108986,0.120619,0.127326,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,9.7856E-4,0.00219888,0.00365498,0.00533795,0.00702632,0.00889773,0.010906,0.0123598,0.0137504,0.0148136,0.0179472,0.0214924,0.0255752,0.029381,0.0332328,0.0374054,0.0398768,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,6.17178E-4,0.00136369,0.0022219,0.00317565,0.00422597,0.00526577,0.00635728,0.00713859,0.00783101,0.00839564,0.00996167,0.0115314,0.0133552,0.0149967,0.0166274,0.0183102,0.0193663,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,9.1325E-4,0.00207981,0.00352851,0.0052458,0.00698899,0.00895587,0.0110579,0.0129203,0.0148456,0.0168233,0.0190671,0.0214234,0.0239061,0.026135,0.0283786,0.0305246,0.0327775,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,0.00732103,0.017539,0.0308441,0.0474282,0.0640779,0.0832745,0.104255,0.122103,0.141279,0.160305,0.175086,0.190255,0.206097,0.222203,0.241017,0.258388,0.274732,EJ, Biomass Consumption by use scenario,region,input,sector,1990,2005,2010,2015,2020,2025,2030,2035,2040,2045,2050,2055,2060,2065,2070,2075,2080,2085,2090,2095,2100,Units, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,delivered biomass,building,0.1563437,0.22469619999999998,0.2820818,0.361818,0.45070200000000005,0.51606,0.574632,0.610872,0.599543,0.596928,0.59112,0.582916,0.5641579999999999,0.543117,0.507916,0.46826100000000004,0.422518,0.37703810000000004,0.3313442,0.28879,0.2550831,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,delivered biomass,industry,0.44015706,0.60519625,0.67671868,1.0048495,1.2705066,1.5267852,1.8114108,2.1132179,2.3984151,2.7374796,3.1088998,3.5386163,3.980072,4.427535,4.8044389999999995,5.097757,5.268681,5.331351000000001,5.280853,5.156244999999999,5.04483,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,regional biomass,electricity,0.00196741,0.0038093,0.0038093,0.0158708,0.02489112,0.03633185,0.05239698000000001,0.07359307,0.09827507,0.1342474,0.17798004699999997,0.236461103,0.318884174,0.41335794699999995,0.5242835199999999,0.6436229299999999,0.7714904600000001,0.9050651199999998,1.04889447,1.1962298299999998,1.35952211,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,regional biomass,gas processing,0.0,0.0,0.0,2.00072E-6,8.55629E-6,2.27327E-5,5.14454E-5,1.06177E-4,1.98452E-4,3.70247E-4,6.88613E-4,0.00124079,0.00214613,0.00359411,0.00568336,0.00855074,0.0119424,0.0156227,0.0202437,0.0259428,0.0326874,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,regional biomass,hydrogen,0.0,0.0,0.0,0.0,4.35878E-4,8.67767E-4,0.00152252,0.0024632,0.00371941,0.00557204,0.00825549,0.0105374,0.0133043,0.0164634,0.0206888,0.0253478,0.0300538,0.0344714,0.039036,0.0434279,0.0453936,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,regional biomass,refining,0.0,0.0,0.0,0.0,0.049585699999999996,0.114942,0.2051049,0.3381243,0.5109574,0.7321217999999999,0.9662295000000001,1.2176050800000002,1.4729218599999998,1.76980385,2.10769329,2.47980426,2.8640529,3.2534429199999995,3.64636505,4.061698600000001,4.52091207,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,delivered biomass,building,0.0033089001,0.0065225,0.0070573,0.00699085,0.0075869100000000005,0.00754381,0.007349919999999999,0.0068667699999999995,0.00594402,0.00532393,0.0048003,0.00439932,0.00401699,0.0036837170000000004,0.0033176990000000003,0.0029837299999999995,0.002652095,0.002349431,0.002072708,0.00182497,0.001648841,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,delivered biomass,industry,0.02697865,0.0438617,0.0871743,0.105923,0.1237396,0.1338176,0.1427038,0.1473496,0.1435119,0.1424145,0.14181549999999998,0.1432057,0.1441325,0.1458769,0.1456413,0.14472089999999999,0.1420919,0.13843280000000002,0.1345959,0.1312485,0.1283049,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,regional biomass,electricity,0.0,0.0,0.0,0.00447158,0.01040743,0.01744242,0.02712761,0.03787814999999999,0.046636624,0.05578981299999999,0.064939855,0.07574130899999999,0.10122366099999999,0.126420076,0.15405555300000004,0.18097953999999997,0.20642940399999998,0.22965211000000002,0.2542158,0.27628159,0.2976903,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,regional biomass,gas processing,0.0,0.0,0.0,2.17613E-4,6.16948E-4,0.00120593,0.00206264,0.00323681,0.00464239,0.00670436,0.0097017,0.0140855,0.019209,0.0259828,0.0336628,0.0422917,0.0499289,0.0560225,0.063088,0.0711905,0.0798912,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,regional biomass,hydrogen,0.0,0.0,0.0,0.0,2.05263E-4,3.88516E-4,6.23272E-4,8.98988E-4,0.00115206,0.0014715,0.00187369,0.00215248,0.0024438,0.00273588,0.00317738,0.00363818,0.00408279,0.00448712,0.00494463,0.00542913,0.00576582,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,regional biomass,refining,0.0,0.0,0.0,0.0,0.0646152,0.1686156,0.2895376,0.4882276,0.7520663000000001,1.0516589,1.2783346,1.44144958,1.55941152,1.6261931699999999,1.6876038500000003,1.7484656899999997,1.7988147999999997,1.84232153,1.8877488199999999,1.93793842,2.0024216500000005,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,delivered biomass,building,0.0797127,0.13983790000000001,0.15706189999999998,0.1639722,0.2010448,0.2260682,0.24458739999999998,0.2536277,0.245986,0.2445393,0.2437175,0.2447712,0.2422081,0.23835810000000002,0.22814299999999998,0.214905,0.1974278,0.1782253,0.15791110000000003,0.13770659999999998,0.1236865,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,delivered biomass,industry,0.296921395,0.476782008,0.5514989969999999,0.56495182,0.6798911,0.76470124,0.83361678,0.8927561,0.94247468,1.0242563,1.13005025,1.26217951,1.39735236,1.54113728,1.6693908,1.7742714000000002,1.8405765,1.8687784,1.8578995,1.8138335,1.7827959999999998,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,regional biomass,electricity,0.0,0.0,0.0,6.12224E-4,0.0015245229999999999,0.002537394,0.0040887,0.006237779000000001,0.009041066,0.013277533,0.019505052,0.028694276,0.04285928099999999,0.061351091999999996,0.08482717800000002,0.115517498,0.15100509600000003,0.19097816200000003,0.23639962299999998,0.2877841259999999,0.336774116,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,regional biomass,gas processing,0.0,0.0,0.0,6.70264E-6,2.42922E-5,5.51792E-5,1.08481E-4,1.9728E-4,3.35853E-4,5.84832E-4,0.00103077,0.00179759,0.00296571,0.0048039,0.00744849,0.011048,0.0152157,0.0195772,0.0248244,0.0310615,0.0377085,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,regional biomass,hydrogen,0.0,0.0,0.0,0.0,1.88242E-4,3.47735E-4,5.48371E-4,7.94992E-4,0.00109189,0.00153173,0.00217681,0.002715,0.00335745,0.00409917,0.00513385,0.00629054,0.00749205,0.00863556,0.00983804,0.011003,0.0118462,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,regional biomass,refining,0.0,0.0,0.0,0.0,0.031108700000000003,0.0633736,0.1034753,0.1623504,0.24228059999999998,0.3429221,0.44876246000000003,0.5637587500000001,0.6797549749999999,0.8105711760000001,0.963480113,1.1354541599999997,1.31137666,1.4855395500000004,1.65741399,1.8284362299999999,2.0265684,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,delivered biomass,building,0.1991744,0.2311539,0.2366298,0.3106891,0.41552100000000003,0.515199,0.615817,0.6959719999999999,0.7217560000000001,0.757979,0.790524,0.8234269999999999,0.84063,0.85214,0.8401099999999999,0.822382,0.7851969999999999,0.736993,0.6809540000000001,0.623743,0.580605,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,delivered biomass,industry,0.65619142,1.10237948,1.25090791,1.61733915,2.00651955,2.46590858,2.96718816,3.4939337000000004,3.9897676,4.5848608,5.2606461,6.0670722999999995,6.9267642,7.8351843,8.6737036,9.3951465,9.916420200000001,10.2339976,10.3595526,10.3119432,10.268910700000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,regional biomass,electricity,0.0025116,0.00468829,0.0051488,0.00542677,0.01010652,0.016630119999999998,0.025774739,0.037458395,0.04951721800000001,0.065192587,0.08592971499999999,0.11477108219999999,0.15692821550000002,0.21319463809999997,0.286140881,0.37605206099999994,0.48113791399999994,0.59839486,0.7299385899999998,0.8782059400000002,1.0281896100000003,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,regional biomass,gas processing,0.0,0.0,0.0,3.11135E-5,1.01047E-4,2.38435E-4,4.93713E-4,9.41938E-4,0.00164186,0.00287236,0.00502478,0.00874125,0.0146462,0.0238118,0.0367286,0.0539051,0.0735722,0.0940471,0.118481,0.147262,0.178539,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,regional biomass,hydrogen,0.0,0.0,0.0,0.0,5.3269E-4,0.00109736,0.00196339,0.00321352,0.00487331,0.00731933,0.0108995,0.014102,0.0180366,0.0226073,0.0289224,0.0360098,0.0433948,0.0504513,0.0579748,0.0653593,0.070147,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,regional biomass,refining,0.0,0.0,0.0,0.0,0.0685109,0.1773561,0.3287323,0.5455852999999999,0.8109538,1.1301328,1.472537,1.8644881200000003,2.30811562,2.8110748400000003,3.3906589800000004,4.037450890000001,4.71085722,5.387727879999999,6.071424259999999,6.78122393,7.5724542999999995,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,delivered biomass,building,0.0036417999999999997,0.016199799999999997,0.0115951989,0.00950197,0.009982808000000001,0.009809513,0.009566265000000001,0.008935387000000001,0.007818701999999999,0.0070694499,0.006465502800000001,0.0059394296,0.0054411539,0.004995250400000001,0.004506197200000001,0.00402341,0.0035327039,0.0030745523999999996,0.0026836751000000004,0.0023666807,0.0021048433999999996,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,delivered biomass,industry,0.058771409999999996,0.05098543,0.038758230000000005,0.04784855,0.05430949,0.05866715,0.06313385,0.0655452,0.06565019999999999,0.0662657,0.0679357,0.0693566,0.071353,0.07356030000000001,0.075982,0.0780082,0.0795703,0.08048129999999999,0.081211,0.08180269999999999,0.082894,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,regional biomass,electricity,0.00452089,0.0243625,0.0305578,0.038843699999999995,0.0453745,0.0519341,0.06025071999999999,0.06655533999999999,0.06973816999999999,0.0735037,0.07918342,0.08473350999999998,0.10284911000000002,0.11727096199999998,0.13447237,0.14605421,0.16006111999999997,0.17312682999999998,0.187014,0.19802807,0.20957982,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,regional biomass,gas processing,0.0,0.0,0.0,1.18412E-4,3.21572E-4,6.12364E-4,0.00104028,0.00162381,0.00235872,0.00343107,0.00505048,0.00734285,0.0100402,0.0137415,0.01823,0.0233907,0.028359,0.0325455,0.0374232,0.0425981,0.0486612,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,regional biomass,hydrogen,0.0,0.0,0.0,0.0,1.41923E-4,3.14829E-4,5.63995E-4,8.67213E-4,0.00116933,0.00150947,0.00195045,0.00231024,0.00269911,0.00308088,0.00369376,0.00434741,0.00501347,0.00563796,0.00627872,0.00685451,0.00740354,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,regional biomass,refining,0.0,0.0,0.0,0.0,0.0251312,0.0544502,0.0951641,0.1565754,0.2435346,0.3366282,0.41182216,0.45526146000000006,0.488306356,0.5040193930000001,0.52313395,0.54214339,0.56178257,0.5802133700000001,0.5984933499999999,0.6124962599999999,0.63672091,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,delivered biomass,building,0.0804129,0.06672469999999998,0.0635434,0.06297200900000001,0.068166372,0.070570504,0.071508601,0.069426925,0.06308912900000001,0.058544246,0.05475635,0.051212909,0.047623093,0.044465515,0.041029531,0.037679166,0.034035908,0.030455933999999997,0.027167538,0.024138174000000002,0.021418347,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,delivered biomass,industry,0.11540802,0.18016538,0.17053739999999998,0.18327149,0.20298433,0.21962905,0.23167505,0.23650210000000002,0.23054861999999998,0.22829058,0.22772356000000002,0.22640023,0.22432941,0.22222936,0.21845254,0.21339441,0.20676872000000002,0.19914495,0.19217572,0.18661505999999997,0.18039465,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,regional biomass,electricity,0.0,0.00983718,0.00941851,0.004430994,0.00660717,0.009712036,0.015708913999999997,0.022283578999999998,0.030493109999999997,0.036092614,0.0417258345,0.04687311579999999,0.05286613019999999,0.05760475240000001,0.065129156,0.074845269,0.080154994,0.084937895,0.09029743800000001,0.09484059999999997,0.09977666,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,regional biomass,gas processing,0.00208004,0.0133799,0.0186082,0.019683,0.0241117,0.0283192,0.0330593,0.0378423,0.0419419,0.0473773,0.0543128,0.0618839,0.0675486,0.0721089,0.073801,0.0725805,0.0659727,0.0549297,0.0439146,0.0324209,0.0198181,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,regional biomass,hydrogen,0.0,0.0,0.0,0.0,2.64608E-4,6.34159E-4,0.00112656,0.00170443,0.00220656,0.00279498,0.00346187,0.00395529,0.00439109,0.00473477,0.00526461,0.00572463,0.00610247,0.00636942,0.00663096,0.00690111,0.00707305,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,regional biomass,refining,0.0,9.47172E-4,0.0194585,0.020046616000000003,0.022798005000000003,0.025465259,0.031267494,0.045738208,0.07317020299999999,0.10295142500000001,0.12530449899999999,0.1390049636,0.151947857,0.16035940869999998,0.17364027300000004,0.191924363,0.213239007,0.234760216,0.25978847000000005,0.29749539100000005,0.35632633399999997,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,delivered biomass,building,0.03403213,0.02750209,0.028632170000000002,0.02670989,0.029499179999999996,0.030554289999999998,0.031197229999999996,0.03022087,0.027454589999999997,0.025425599999999996,0.02383412,0.0221698,0.02070624,0.01933093,0.01788706,0.016322680000000003,0.01465884,0.0129629,0.011359801999999999,0.009913867,0.008709594000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,delivered biomass,industry,1.3566461,1.8667909999999999,2.2407679999999996,2.085333,2.277146,2.3967859999999996,2.4941109999999997,2.521184,2.478696,2.443811,2.420907,2.3812819999999997,2.345152,2.305643,2.261152,2.201456,2.128536,2.040248,1.945938,1.851302,1.777894,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,regional biomass,electricity,0.0310598,0.114822,0.242746,0.467812,0.631011,0.7613717,0.8948723999999999,0.9911730999999998,1.0629018000000001,1.1174375,1.1844010000000003,1.2328095,1.3646401000000001,1.4881794,1.6150387000000002,1.6438766,1.6572412,1.6552755000000001,1.6283071999999996,1.5793036000000003,1.5127923000000003,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,regional biomass,gas processing,0.0,0.0,0.0,8.37196E-5,2.70955E-4,5.87016E-4,0.00110419,0.00187424,0.00297052,0.00465957,0.00738932,0.0112982,0.0162038,0.0228571,0.0315207,0.0423161,0.0539743,0.0648943,0.0779054,0.0921513,0.108969,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,regional biomass,hydrogen,0.0,0.0,0.0,0.0,7.51251E-4,0.00155724,0.00264169,0.00392811,0.0051913,0.00667287,0.00851108,0.00958412,0.0107148,0.0117575,0.0135827,0.015481,0.0173207,0.0189122,0.0204918,0.0218191,0.0228994,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,regional biomass,refining,0.0,0.0,0.0,0.0,0.0527856,0.10699140000000001,0.1819453,0.2936848,0.4601972999999999,0.6415664999999999,0.8002863,0.9051831400000001,0.9998177699999999,1.06832527,1.1606856499999998,1.2717255699999999,1.39546208,1.51485536,1.6291465499999997,1.73330096,1.8857447199999997,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,delivered biomass,building,0.0624551,0.0790735,0.103143,0.0981177,0.102625,0.102494,0.0999698,0.092939,0.0794695,0.0699573,0.0620278,0.0556965,0.0499057,0.0453237,0.040697,0.0366653,0.0327597,0.0291621,0.0259278,0.0229889,0.0203734,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,delivered biomass,industry,0.2419296,0.3328179,0.27276030000000007,0.28392513999999996,0.30387305,0.31797585,0.32597204999999996,0.3248978,0.30942991999999997,0.29956178,0.29260969,0.28741003,0.28257398,0.27958372000000004,0.27591905,0.27235377000000005,0.2680657,0.26346276,0.25930037,0.25599693,0.25301454,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,regional biomass,electricity,0.036753,0.080706,0.0752642,0.0787637,0.0845084,0.08732267,0.09348733000000001,0.09883783,0.10565593999999999,0.10845337,0.11113824600000001,0.11372663200000002,0.11944708200000001,0.12482367999999999,0.13129962899999997,0.140851842,0.14605906300000004,0.15130843000000002,0.15645297,0.15969319999999995,0.16476791,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,regional biomass,gas processing,3.93498E-4,0.0107938,0.010569,0.0113818,0.0137588,0.0158485,0.0180968,0.0203756,0.0221162,0.0247517,0.028298,0.0325721,0.0362355,0.0398835,0.0426485,0.044509,0.0437961,0.040624,0.0377024,0.034794,0.0318333,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,regional biomass,hydrogen,0.0,0.0,0.0,0.0,3.88292E-4,9.05333E-4,0.00158697,0.00240447,0.00305916,0.003827,0.00469532,0.0052822,0.00576862,0.00614349,0.00677604,0.00737026,0.00789286,0.00831768,0.00876073,0.00919821,0.0095642,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,regional biomass,refining,0.0,0.0,0.0,0.0,0.00838487,0.018215549999999997,0.03763095,0.08492767000000001,0.16395407,0.24461175999999998,0.29708766,0.326622687,0.348851282,0.35640033199999993,0.36897431100000005,0.38855152499999995,0.41138080000000005,0.4350818799999999,0.46166631,0.49691409599999997,0.546721793,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,delivered biomass,building,0.027327987999999998,0.042627778000000005,0.046862899,0.047012021,0.050853432,0.052693521,0.054080253999999994,0.05245646600000001,0.048016716,0.044807850999999996,0.042444368999999996,0.040025897000000005,0.037830932,0.035819373,0.033657533,0.031214514000000002,0.028494354,0.025605544,0.022744008,0.020100159,0.017614324,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,delivered biomass,industry,0.28771163,0.14346239,0.12963233000000002,0.1369915,0.1580977,0.1783108,0.2010338,0.21760069999999998,0.2285873,0.2411502,0.2574989,0.2719533,0.2878716,0.3040927,0.3203691,0.33452380000000004,0.34706119999999996,0.3563111,0.3633687,0.3690334,0.37593960000000004,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,regional biomass,electricity,0.0579034,0.0666484,0.0968785,0.0691605,0.10530780000000001,0.13990784,0.18503364,0.23040427,0.27506987,0.32132332999999996,0.37342359,0.42421511,0.49518668,0.5727722099999999,0.66640379,0.7413807799999999,0.82312984,0.9042468100000002,0.9795512799999999,1.04521111,1.1171459999999998,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,regional biomass,gas processing,0.0,3.93499E-4,1.12409E-4,1.82004E-4,3.22963E-4,5.21635E-4,8.24407E-4,0.00125007,0.00182042,0.00269291,0.00406696,0.00603741,0.0087222,0.012338,0.0169294,0.0224164,0.0281673,0.0335206,0.0397354,0.0465953,0.0547526,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,regional biomass,hydrogen,0.0,0.0,0.0,0.0,2.64739E-4,5.31378E-4,9.09566E-4,0.00136826,0.00186592,0.00250608,0.00335868,0.00397004,0.00467343,0.00541009,0.00656629,0.00786034,0.00926789,0.0106627,0.0121278,0.0135274,0.014635,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,regional biomass,refining,0.0,0.0,0.0,0.0,0.030487300000000002,0.0670292,0.1241681,0.209256,0.32309399999999994,0.4336436,0.52310983,0.5870889200000001,0.6399327189999999,0.679977256,0.72793692,0.78481183,0.8486796200000001,0.91095675,0.97034826,1.0218048300000002,1.0902134399999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,delivered biomass,building,0.026371699999999998,0.0180835,0.0205952,0.018920185,0.020146090000000002,0.020058399999999997,0.019667768999999998,0.018306191999999995,0.015895069,0.014086836999999998,0.012622317,0.011289996,0.010100698,0.009033939000000001,0.007995691,0.006980868,0.005980434000000001,0.005033874,0.004257668,0.0036212250000000005,0.0030798089999999998,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,delivered biomass,industry,0.001507,0.004227902,0.002888394,0.0034521630000000003,0.004085200000000001,0.00455538,0.00497161,0.00520756,0.00521911,0.005279,0.00538092,0.0054367,0.00547969,0.00552118,0.00554088,0.00552038,0.00545392,0.00535224,0.0052821,0.00526858,0.0052094,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,regional biomass,electricity,0.0,0.0,0.0,0.00501235,0.00812037,0.011226581999999999,0.016513291,0.021794712,0.027619134,0.033205304,0.03852289,0.042867782,0.05490624700000001,0.062360411000000004,0.070977675,0.09006803,0.10096946000000001,0.11241928799999999,0.127124531,0.14139416000000002,0.15399577999999997,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,regional biomass,gas processing,0.0,0.0,0.0,2.49499E-4,6.92493E-4,0.00134389,0.00228558,0.00355003,0.00512683,0.0074173,0.0107101,0.0152228,0.0201744,0.0265329,0.0339113,0.0423359,0.0495767,0.0549524,0.0613333,0.0689185,0.0772277,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,regional biomass,hydrogen,0.0,0.0,0.0,0.0,3.6684E-4,7.02024E-4,0.00114513,0.00166577,0.00220913,0.0028812,0.00373304,0.00428717,0.00484055,0.00537538,0.00619317,0.00703885,0.00788651,0.00871449,0.00965272,0.0106835,0.0114696,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,regional biomass,refining,0.0,0.0,0.0,0.0,0.057065199999999996,0.1374761,0.2360355,0.3713377,0.5501802,0.7444852,0.9121247,1.02911824,1.12234068,1.18875267,1.25804355,1.3279216799999998,1.39921441,1.47341182,1.5552393999999998,1.65756783,1.76930598,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,delivered biomass,building,4.707E-4,2.559E-4,1.905E-4,2.001561E-4,2.235254E-4,2.382734E-4,2.4394709999999998E-4,2.357395E-4,2.1224040000000002E-4,1.9310279999999998E-4,1.758589E-4,1.584413E-4,1.421021E-4,1.278424E-4,1.135889E-4,1.002094E-4,8.74565E-5,7.56468E-5,6.51303E-5,5.6414999999999994E-5,4.835894E-5,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,delivered biomass,district heat,0.0,0.0202184,0.0473018,0.0565509,0.0688434,0.0799955,0.0898677,0.0957517,0.0957378,0.0961729,0.096549,0.0960772,0.0952604,0.0947622,0.0936625,0.0922889,0.0903064,0.0875473,0.0842004,0.0799816,0.0750186,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,delivered biomass,industry,2.31E-4,2.201E-4,1.918E-4,2.24199E-4,2.65314E-4,2.98883E-4,3.24655E-4,3.36801E-4,3.31247E-4,3.27341E-4,3.23604E-4,3.17646E-4,3.11586E-4,3.07579E-4,3.03081E-4,2.99381E-4,2.95535E-4,2.90797E-4,2.83879E-4,2.73552E-4,2.6366E-4,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,regional biomass,electricity,4.79999E-6,0.0346181,0.164175,0.13971899999999998,0.2349102,0.34569510000000003,0.5330378,0.7329041000000001,0.9148335,1.0935913,1.2658413,1.4295205999999998,1.5857170600000001,1.73879989,1.9334398999999998,2.3081697,2.5974138000000004,2.8297982999999993,3.0398521,3.1425194999999997,3.2750776,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,regional biomass,gas processing,0.0,0.193839,0.39296,0.537359,0.760664,0.997461,1.26965,1.54794,1.78345,2.05761,2.36091,2.66035,2.91179,3.12213,3.25154,3.30119,3.15841,2.78681,2.23479,1.4122,0.241505,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,regional biomass,hydrogen,0.0,0.0,0.0,0.0,0.00227135,0.00430244,0.0068913,0.00987186,0.0125815,0.0157765,0.0194715,0.0212005,0.0226614,0.0238941,0.0261271,0.0283751,0.0304225,0.0321666,0.0337009,0.0343504,0.0338117,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,regional biomass,refining,0.0,0.0,0.0,0.0,0.299627,0.6559170000000001,1.1455220000000002,1.86764,2.760624,3.7100649999999993,4.518784699999999,5.164563899999999,5.72983083,6.1787481799999995,6.6692366,7.245671000000001,7.885994,8.5474043,9.1618062,9.645232199999999,10.3589246,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,delivered biomass,building,0.0030139,0.015362698,0.014609205100000001,0.015597657800000001,0.0179378694,0.0191679977,0.020289093499999997,0.020323277,0.019041037399999995,0.018141692000000004,0.0174354946,0.0165878025,0.015772363799999998,0.014954452,0.013939888499999999,0.012777369700000001,0.011471810800000001,0.0101235854,0.008898898799999999,0.0078686922,0.0069712966,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,delivered biomass,industry,0.08388743,0.06932007999999999,0.05739002,0.07357767999999999,0.08848381999999999,0.09931949,0.1124204,0.1230192,0.1313507,0.1408847,0.15341069999999998,0.1649901,0.1788601,0.1934512,0.2091266,0.22309600000000002,0.2345264,0.2419096,0.24679269999999998,0.2498507,0.2533225,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,regional biomass,electricity,0.00305582,0.005693,0.00560922,0.01110962,0.01257043,0.01420747,0.018109164,0.021652948999999998,0.024639628,0.028155692,0.033420226000000004,0.038834130999999994,0.050741014000000015,0.06252098599999999,0.07716967099999997,0.09326542500000003,0.110951737,0.128923144,0.146242097,0.16158701500000003,0.17879316,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,regional biomass,gas processing,0.0,0.0,0.0,2.95629E-5,8.70828E-5,1.73424E-4,3.16342E-4,5.32171E-4,8.37837E-4,0.0013151,0.002094,0.00325345,0.00479739,0.00702198,0.0100392,0.0138091,0.0178219,0.0215667,0.0257979,0.0302324,0.0354219,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,regional biomass,hydrogen,0.0,0.0,0.0,0.0,5.92594E-5,1.40989E-4,2.69195E-4,4.35139E-4,6.19527E-4,8.43238E-4,0.00114616,0.00142858,0.00175422,0.00209617,0.00263572,0.00323828,0.00388092,0.00450086,0.00513434,0.00571071,0.00625229,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,regional biomass,refining,0.0,0.0,0.0,0.0,0.01402117,0.02728798,0.0494418,0.08212988,0.12718585999999998,0.17623006000000002,0.22080334000000001,0.2530791700000001,0.28445707600000003,0.310815615,0.34232336700000005,0.37588047100000005,0.410827984,0.44375103,0.47410033,0.500711276,0.53416597,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,delivered biomass,building,0.18079330000000002,0.4032788,0.4865389,0.4623635,0.48566379,0.48013844,0.46450162,0.42700541,0.36648771,0.31876655,0.27783021,0.2416672,0.20794926800000002,0.179017572,0.15200355299999999,0.12826584900000002,0.107285569,0.089604811,0.075338474,0.064012623,0.054148577999999996,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,delivered biomass,district heat,0.00694863,0.0258686,0.028256,0.0373371,0.0445795,0.052908,0.0622729,0.0707539,0.0783791,0.0854478,0.0925007,0.0964697,0.0988054,0.0989734,0.100886,0.0968597,0.0921301,0.0868904,0.0829658,0.0806171,0.0763373,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,delivered biomass,industry,0.0631665,0.1629606,0.19644910000000002,0.2073387,0.23047340000000002,0.2451378,0.2546678,0.2538713,0.2441434,0.23690070000000002,0.2333737,0.2261396,0.2202119,0.21380709999999997,0.2086308,0.2021918,0.1958673,0.1893667,0.1855501,0.18517769999999997,0.1815305,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,regional biomass,electricity,0.00117213,0.0364608,0.11817,0.1273887,0.14139359999999998,0.15064784,0.16724005,0.17849726999999999,0.18934339,0.19527737000000003,0.20417512,0.20469608,0.21064509999999997,0.21195177,0.2163434,0.2303314,0.23677924000000003,0.23952162000000002,0.24684331,0.25510742000000003,0.25722046,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,regional biomass,gas processing,5.0591E-4,0.00781424,0.022993,0.0261327,0.033558,0.0401027,0.0476612,0.0550263,0.0621564,0.0709674,0.0825734,0.0933885,0.102081,0.10784,0.110619,0.10903,0.100566,0.0858191,0.0717638,0.0571496,0.0400426,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,regional biomass,hydrogen,0.0,0.0,0.0,0.0,1.02987E-4,2.61359E-4,4.90192E-4,7.74494E-4,0.00106428,0.00142116,0.0018895,0.00228549,0.00267324,0.00296442,0.00341272,0.00379992,0.00414231,0.00443407,0.00476799,0.00516933,0.00539286,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,regional biomass,refining,0.0,0.0,0.0,0.0,0.035726400000000005,0.06898539999999999,0.12699069999999998,0.22391079999999997,0.374321,0.5155245,0.61664461,0.6638734599999999,0.6935066809999999,0.6866102959999999,0.6812073299999999,0.6713211900000001,0.6627390800000001,0.65516929,0.65871618,0.6769871400000002,0.6929044500000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,delivered biomass,building,0.8571030000000001,0.9811536999999999,1.261439,1.1964748,1.2423606,1.2235437,1.1898055,1.1120158000000002,0.9648178000000001,0.8631215000000001,0.7772523,0.7071447000000001,0.6373098100000001,0.57910648,0.51545319,0.45857656,0.4026756000000001,0.35284876,0.30965391,0.27332705,0.24439207999999998,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,delivered biomass,industry,0.682894,0.975345,1.2491425,1.289184,1.374372,1.42596,1.447165,1.418876,1.315969,1.2493100000000001,1.198573,1.1635490000000002,1.129182,1.0997190000000001,1.0659286,1.0294399,0.9894413000000001,0.9504937,0.9188044,0.8990232,0.8682679000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,regional biomass,electricity,0.120954,0.642526,1.06835,0.67856,0.774273,0.857276,0.9532793999999999,1.0257484000000001,1.1265564,1.1596151,1.2000437,1.2493400000000001,1.3329262999999998,1.4021903999999998,1.5105429,1.5610874999999997,1.5922107,1.6312194000000002,1.6523094999999997,1.6595468,1.6316427999999996,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,regional biomass,gas processing,0.0368228,0.243366,0.593373,0.610068,0.712718,0.797963,0.886835,0.969511,1.03035,1.11118,1.21241,1.32535,1.38051,1.41475,1.38475,1.30983,1.1437,0.90253,0.672677,0.428997,0.150662,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,regional biomass,hydrogen,0.0,0.0,0.0,0.0,0.0134577,0.0232187,0.0345058,0.0463385,0.0557339,0.0667,0.0789492,0.0822689,0.08465,0.0860319,0.090174,0.0937274,0.0962556,0.0976643,0.0999025,0.10283,0.10108,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,regional biomass,refining,0.0,0.0,0.0,0.0,0.0583367,0.16114070000000003,0.41211709999999996,1.023231,2.0027547,2.9508905999999997,3.5297579,3.7969898799999995,3.9335046,3.8445601599999994,3.7191911,3.5754766,3.438780800000001,3.3230551999999998,3.2474297000000005,3.2150831599999994,3.16885673,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,delivered biomass,building,0.0228556,0.0411484,0.0728782,0.06369534,0.06402753,0.06076183,0.05692808,0.0509384,0.04287018000000001,0.03699261,0.03242149,0.028522060000000002,0.025194454999999998,0.02227221,0.019550477,0.016950256999999996,0.014466109000000001,0.01216118,0.010282852,0.008711377,0.007400614000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,delivered biomass,district heat,0.0,0.0165768,0.0235675,0.0266704,0.0287478,0.03103,0.0337313,0.0360354,0.0375147,0.0397,0.0424709,0.0450048,0.0473277,0.0492475,0.051468,0.0516183,0.0510319,0.0497118,0.048707,0.0481858,0.0465762,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,delivered biomass,industry,0.0021767,0.009460300000000001,0.036962398,0.038549031,0.041574992,0.044018887,0.045806585,0.046092645,0.044369239,0.043551758,0.043445386999999995,0.043213792,0.043122008,0.043054405,0.042858302,0.042329161000000004,0.041636866,0.040776953,0.04010751,0.039811491000000004,0.039038373,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,regional biomass,electricity,0.0,0.0,0.00263714,0.00799145,0.0107207,0.01346305,0.020351496,0.028563789,0.039020997999999994,0.049934583000000005,0.061508617999999994,0.071873602,0.086129444,0.09694307699999999,0.110578714,0.13080448300000003,0.142790168,0.15480654600000004,0.17041735000000005,0.18656952999999998,0.19983883,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,regional biomass,gas processing,0.0,0.0,1.12409E-4,3.02874E-4,5.91975E-4,9.63009E-4,0.00147032,0.00212253,0.00290711,0.00403678,0.00565831,0.00788751,0.0104288,0.0136449,0.0173008,0.0213229,0.0246805,0.0270398,0.0298525,0.0332347,0.0368458,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,regional biomass,hydrogen,0.0,0.0,0.0,0.0,8.87374E-5,1.8673E-4,3.2783E-4,5.0611E-4,6.98855E-4,9.42413E-4,0.00126573,0.00157426,0.00189309,0.00219782,0.00262937,0.00306882,0.00350711,0.00393464,0.00440003,0.00490867,0.0053063,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,regional biomass,refining,0.0,0.0,0.0,0.0,0.010235,0.023126920000000002,0.0442703,0.08063739,0.13300366000000002,0.18674845,0.22856430000000003,0.255551339,0.275431295,0.28459283900000004,0.291649268,0.296627878,0.30103081,0.30593705000000004,0.31252680000000005,0.323187695,0.33423868299999987,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,delivered biomass,building,0.3855306,0.29917289999999996,0.27460159999999995,0.29767248999999996,0.31966589999999995,0.32492333,0.32297778,0.30600041,0.26984596000000005,0.24247115000000002,0.21896408,0.19797346000000002,0.17809643,0.16102612,0.14354723000000003,0.12739471000000002,0.11164081999999999,0.09753921,0.085522562,0.075710309,0.06771103900000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,delivered biomass,district heat,0.0,1.25601E-4,6.69815E-4,0.00156418,0.00189635,0.00222406,0.00256014,0.0028258,0.00294402,0.00308253,0.00322589,0.00333858,0.00342039,0.00348326,0.00354606,0.00351601,0.00345312,0.00336129,0.00330243,0.00330779,0.00320479,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,delivered biomass,industry,0.0198223,0.0301546,0.0367114,0.043947023,0.048509569,0.05052732,0.05256081,0.0525695,0.04938323,0.04697524,0.044852369999999996,0.04277839,0.040676739999999996,0.03894528,0.03705049,0.035198679999999996,0.0333491,0.03158038,0.030172249999999998,0.029375019999999998,0.02812711,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,regional biomass,electricity,0.0,0.00104648,0.00175807,0.007492424,0.008496518,0.012192182999999999,0.017937316000000002,0.023848981999999998,0.028300642,0.03363462099999999,0.038750472,0.043765911000000005,0.065128639,0.0721096539,0.08237543299999998,0.114183575,0.124086949,0.13326824299999998,0.14710872999999997,0.15767437000000004,0.16307889000000003,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,regional biomass,gas processing,0.0,5.62176E-4,0.00404763,0.00737629,0.00991946,0.0124516,0.01533,0.018315,0.0208854,0.0244119,0.0289518,0.0345262,0.0361569,0.0394261,0.0415181,0.0445366,0.0440106,0.0414988,0.0396248,0.0380153,0.0357092,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,regional biomass,hydrogen,0.0,0.0,0.0,0.0,1.42258E-4,3.81178E-4,7.32205E-4,0.00115659,0.00157311,0.00200683,0.00251577,0.0029541,0.00334618,0.00365548,0.00412385,0.00455064,0.00491668,0.00520523,0.00551689,0.00586263,0.00605279,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,regional biomass,refining,0.0,0.0,0.0,0.0,0.0487027,0.0973401,0.15295260000000002,0.2346387,0.35077699999999995,0.4917169,0.6001244,0.6513980999999999,0.67518592,0.6673326,0.65488672,0.6397571100000001,0.6204909500000001,0.60295111,0.5923814099999999,0.5909268,0.58490348,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,delivered biomass,building,0.052335099999999996,0.055011,0.06963760000000001,0.07267269500000001,0.0784345,0.07973792,0.07976667000000001,0.075902614,0.067533064,0.061170191,0.055471535,0.050247114999999995,0.04519055,0.041001611,0.036563474,0.032581583,0.028821291000000002,0.025570154,0.022707106999999997,0.020301159000000003,0.018330271000000002,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,delivered biomass,industry,0.04076151,0.07529916,0.07674693999999999,0.06700259,0.07398634000000001,0.07660858000000001,0.07643525999999999,0.07301136,0.0683833,0.0642787,0.060927959999999996,0.0579962,0.05520393,0.05293304,0.050755829999999995,0.04846082,0.04613006000000001,0.043944960000000005,0.04204856,0.04066966,0.038983819999999995,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,regional biomass,electricity,0.0084977,0.00891642,0.0119303,0.007126799999999999,0.019504220000000003,0.03332553,0.0511089,0.06753296,0.06941387,0.07191708000000001,0.076188481,0.08279883000000003,0.08947408899999999,0.09674346500000001,0.10001512,0.10034245,0.09633638999999998,0.09010318,0.08213088999999998,0.07506662,0.07327325900000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,regional biomass,gas processing,0.00213631,0.00460985,0.00567808,0.00539919,0.00690505,0.00832386,0.00993807,0.011606,0.0126901,0.0142118,0.0161868,0.0184045,0.0202225,0.0210158,0.0204906,0.0189551,0.0164252,0.0137268,0.0109304,0.00788562,0.004323,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,regional biomass,hydrogen,0.0,0.0,0.0,0.0,0.0012545,0.00209874,0.00303123,0.00395117,0.0047494,0.00562019,0.00657447,0.00668344,0.00671609,0.00669574,0.00689668,0.00704829,0.0071341,0.0071468,0.00721185,0.0073165,0.00709493,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,regional biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.00455095,0.03152452,0.07393697,0.11478319000000001,0.14044048000000003,0.15354044,0.16155099399999998,0.160150539,0.1568390625,0.152549112,0.14859428800000002,0.145601914,0.14392549600000004,0.14391283200000005,0.143068423,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,delivered biomass,building,0.197244,0.251118,0.268741,0.349144,0.45984,0.562961,0.628685,0.642713,0.595571,0.547105,0.497138,0.443659,0.392714,0.345415,0.302097,0.260167,0.221944,0.187025,0.156613,0.130349,0.108482,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,delivered biomass,industry,0.94205929,1.1423207,1.2223073,1.4907393999999998,2.0073497,2.5629082999999997,3.1020503,3.5552549,3.8119785999999998,4.0403055,4.2259021,4.3271546,4.3625099,4.3724444,4.3471212,4.268390500000001,4.159358299999999,4.0131754,3.8719463,3.7522043999999997,3.6249987,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,regional biomass,electricity,0.0,0.0461297,0.0493948,0.05563491,0.12256118,0.22017834,0.37855228999999996,0.5792874100000001,0.7889508900000002,1.012880624,1.249227162,1.487422268,1.7397733329999998,1.994943182,2.2693714,2.6341179999999995,2.977012,3.3029422999999998,3.6592550999999993,4.024362000000001,4.3339038,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,regional biomass,gas processing,0.0,0.0,0.0,1.79708E-4,5.93832E-4,0.00137309,0.0027895,0.00516415,0.00860812,0.0140985,0.0226867,0.0354436,0.0520988,0.073737,0.0993577,0.128967,0.156877,0.180249,0.208553,0.243524,0.282772,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,regional biomass,hydrogen,0.0,0.0,0.0,0.0,3.93449E-4,8.39378E-4,0.00149768,0.00236628,0.00332052,0.00451312,0.00596588,0.00674732,0.00745543,0.00812025,0.00920121,0.0103192,0.0114719,0.0125891,0.0139428,0.0154402,0.0164149,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,regional biomass,refining,0.0,0.00938506,0.0156704,0.44026489999999996,1.0264316,1.7641972,2.7014019000000005,3.8873041699999997,5.20211135,6.491230859999999,7.626105194,8.637307,9.446991399999998,10.078971000000001,10.662678200000002,11.205360899999999,11.687653999999998,12.1097003,12.5737547,13.136378200000001,13.7900541,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,delivered biomass,building,0.042697189999999996,0.0251997,0.0225625,0.0277048,0.032650200000000004,0.0354243,0.036863099999999996,0.0357047,0.0318843,0.0285669,0.02556728,0.022555770000000003,0.01979152,0.01728733,0.015051720000000001,0.01291183,0.01097459,0.00920499,0.007712480000000001,0.00644979,0.00545078,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,delivered biomass,industry,0.366359198,0.29419201,0.29268510000000003,0.46168326,0.62799312,0.79036684,0.93903366,1.04477174,1.09130377,1.13669747,1.17719066,1.2074871999999999,1.22666004,1.23984596,1.23799473,1.22611297,1.20010229,1.16379372,1.12585395,1.09066458,1.0595730499999998,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,regional biomass,electricity,0.0,3.767E-4,0.0017163,0.006165338,0.013757484,0.025029446,0.042508766,0.06385416000000001,0.08695252900000001,0.111728467,0.13737754700000002,0.1645071807,0.1988454702,0.2322116917,0.26429360999999996,0.31125064999999996,0.35025839000000003,0.38770214,0.42338865,0.45596942,0.4830593600000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,regional biomass,gas processing,0.0,0.0,0.0,1.4493E-4,4.68012E-4,0.00104092,0.00199267,0.00343188,0.00538877,0.00839435,0.0129293,0.0196031,0.0281265,0.0391176,0.0516104,0.0657897,0.0784765,0.0886103,0.099844,0.112739,0.12658,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,regional biomass,hydrogen,0.0,0.0,0.0,0.0,4.22181E-4,8.78542E-4,0.00152178,0.00231317,0.00314298,0.00418134,0.00546363,0.00627532,0.00703372,0.00770698,0.00865942,0.00958217,0.0103739,0.0110356,0.0117099,0.0123103,0.0125399,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,regional biomass,refining,0.0,0.0,0.0,0.0,0.2040052,0.4420474,0.7270109,1.0691592,1.4470464,1.8391255,2.1641659,2.4181500000000002,2.5889649699999993,2.6903012300000007,2.7453658599999997,2.79026395,2.80201093,2.7990831000000003,2.7834656099999995,2.7716908499999997,2.78577556,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,delivered biomass,building,0.0041988,9.693E-4,7.974E-4,7.35437E-4,8.15276E-4,8.27717E-4,8.33221E-4,7.92382E-4,6.94651E-4,6.23357E-4,5.65721E-4,5.11439E-4,4.63811E-4,4.22045E-4,3.82825E-4,3.45786E-4,3.10211E-4,2.77743E-4,2.50612E-4,2.30269E-4,2.07368E-4,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,delivered biomass,industry,0.107288,0.108003,0.114363,0.105047,0.111352,0.115569,0.118765,0.118426,0.112824,0.108869,0.106079,0.103162,0.100604,0.0983705,0.0959197,0.0932157,0.0903298,0.0873867,0.0849533,0.0836465,0.0817502,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,regional biomass,electricity,0.095064,0.179537,0.178407,0.2119863,0.1981627,0.19232664000000002,0.19641775,0.19488581,0.18964904,0.18249758,0.17626400999999997,0.16940435599999998,0.19129711999999993,0.193483181,0.19331184199999996,0.192364719,0.18983358600000005,0.19277678000000004,0.19903065000000003,0.20309577,0.20081329000000006,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,regional biomass,gas processing,0.00326067,0.0089386,0.00730833,0.00850821,0.0108395,0.0126664,0.0149372,0.0174141,0.0198227,0.0232476,0.0278176,0.0332762,0.0343086,0.0374151,0.0406495,0.04401,0.043902,0.0405624,0.0383928,0.0370748,0.0362482,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,regional biomass,hydrogen,0.0,0.0,0.0,0.0,2.5098E-4,5.90987E-4,0.00102151,0.00150552,0.00186829,0.00228804,0.00276187,0.00306836,0.00332932,0.00351804,0.00385326,0.00414859,0.00438667,0.0045586,0.00473872,0.00494375,0.00505365,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,regional biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0423505,0.36244810000000005,0.8732306,1.3608257,1.6711198,1.8010734000000002,1.8729184,1.8283208899999999,1.7810901900000002,1.7468286100000001,1.7085492999999998,1.6727106999999999,1.6501749,1.64367753,1.6477984699999997,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,delivered biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,delivered biomass,industry,0.08162710000000001,0.058059799999999995,0.0428646,0.0415353,0.0509054,0.0568693,0.0635371,0.06827369999999999,0.0705511,0.0735064,0.0778375,0.0816564,0.0861214,0.0910293,0.09632009999999999,0.1009808,0.10476869999999999,0.10735610000000001,0.1095081,0.1113306,0.1136641,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,regional biomass,electricity,0.0,0.0467995,0.0455436,0.01418315,0.02663638,0.03383518,0.04557376,0.05695692,0.06921622,0.0811494,0.09773612,0.11420084,0.139637406,0.17573880199999997,0.2210982,0.2708819200000001,0.32464986,0.38340315,0.4413269099999999,0.5001552699999998,0.5567433099999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,regional biomass,gas processing,0.0,8.43266E-4,0.0025298,0.00255228,0.00365074,0.00479383,0.00634977,0.00823527,0.0104391,0.0135691,0.0184132,0.0247519,0.0328053,0.0423801,0.0538654,0.0667768,0.0790063,0.0886941,0.0996425,0.111011,0.123624,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,regional biomass,hydrogen,0.0,0.0,0.0,0.0,2.75214E-4,6.70192E-4,0.00122658,0.00191649,0.00257775,0.00342485,0.00456568,0.0055556,0.00665222,0.00778606,0.00962587,0.0116649,0.0138125,0.0158842,0.0180323,0.0200065,0.0219015,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,regional biomass,refining,0.0,0.0,0.0,0.0,0.0057047,0.08111291,0.21006848000000003,0.41408970999999994,0.696471,0.95637226,1.1598642399999999,1.2967421010000004,1.4248440009999999,1.51510065,1.6221031999999997,1.7349003699999999,1.85684794,1.9710333100000006,2.07551216,2.1615214099999998,2.2848791800000003,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,delivered biomass,building,0.0152789,0.026622899999999998,0.0221021,0.02250874,0.0253104,0.026105580000000003,0.026489409999999998,0.02566585,0.02344628,0.022005939999999998,0.02094329,0.02001857,0.01915604,0.01838521,0.01748052,0.01645059,0.015210270000000001,0.01388566,0.01262269,0.01148624,0.01060639,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,delivered biomass,industry,0.0045627,0.0030558,0.0032232,0.00355544,0.0042191,0.00469554,0.00517679,0.00551406,0.00565662,0.00585682,0.00611597,0.00636618,0.00662676,0.00688261,0.00711815,0.00729052,0.00738837,0.00740029,0.00741139,0.00745154,0.00756707,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,regional biomass,electricity,0.0,0.0,2.512E-4,0.0081678645,0.02224423,0.0410700485,0.06925521759999999,0.10366241050000001,0.1399060408,0.17687638380000004,0.21624714745000004,0.25400505324,0.32342789340000005,0.3956249173500001,0.48498215999999994,0.58266607,0.6977634499999998,0.8219672199999999,0.9573834100000002,1.0995726499999998,1.21464166,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,regional biomass,gas processing,0.0,5.62714E-5,7.30856E-4,0.00163471,0.00328312,0.0054986,0.00867754,0.0129364,0.0181363,0.0257548,0.0370893,0.0531973,0.0734672,0.0994505,0.129564,0.16354,0.195731,0.22233,0.253657,0.290101,0.330063,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,regional biomass,hydrogen,0.0,0.0,0.0,0.0,0.00138464,0.00311144,0.00554599,0.00861633,0.0116236,0.0153528,0.0199943,0.0243157,0.0286198,0.0324712,0.0385885,0.0447366,0.0509505,0.0564617,0.0623688,0.0682183,0.0735752,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,regional biomass,refining,0.0,0.0,0.0,0.0,0.363754,0.8606640000000001,1.5373240000000001,2.557814,3.926336,5.322034,6.4035074,7.1245131,7.60722506,7.818262099999999,8.0386196,8.2175087,8.3954309,8.514932700000001,8.6352863,8.7581419,9.036741300000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,delivered biomass,building,0.004479,0.0073255,0.0079953,0.00926016,0.010941,0.0120716,0.0128623,0.0128008,0.0118702,0.0110887,0.010343,0.00946562,0.00854921,0.00762031,0.00673655,0.00586418,0.00505169,0.00429983,0.00365249,0.00309104,0.00262308,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,delivered biomass,industry,0.096696602,0.1420315,0.15542609999999998,0.25532498,0.33412792,0.43115062,0.55070459,0.67544435,0.7905235599999999,0.92125245,1.05801015,1.18767134,1.2980451899999998,1.38747485,1.4564251700000002,1.50635211,1.5295099,1.5294967800000001,1.5177408300000002,1.50304686,1.48805185,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,regional biomass,electricity,0.0,0.0,0.0,0.0211393,0.0421941,0.07614362,0.13334592,0.21766500000000003,0.31872132,0.4449727399999999,0.58714342,0.74799076,0.9692435399999999,1.1885768700000001,1.43051086,1.6982239700000001,1.97164039,2.24803245,2.5304041,2.7823466,3.014278599999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,regional biomass,gas processing,0.0,0.0,0.0,1.11604E-4,3.37011E-4,7.36697E-4,0.00145049,0.00265113,0.00447458,0.00753939,0.0124907,0.0202767,0.0309383,0.0457623,0.0642136,0.0861652,0.107714,0.126955,0.148341,0.172276,0.198566,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,regional biomass,hydrogen,0.0,0.0,0.0,0.0,1.54172E-4,3.31494E-4,6.26108E-4,0.001059,0.00162763,0.00245291,0.00360235,0.00455698,0.00560611,0.00671703,0.00825008,0.00999159,0.0117526,0.0134816,0.015351,0.0172335,0.0184012,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,regional biomass,refining,0.0,0.0,0.0,0.0,0.061690499999999995,0.1552987,0.2919852,0.4850312,0.7241832,1.0115451,1.2917102000000003,1.5577623799999998,1.76242619,1.9893234599999998,2.21661057,2.45513431,2.66473751,2.85733157,3.0272030200000004,3.1930848000000007,3.3753226499999998,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,delivered biomass,building,0.3046985,0.0730037,0.0764363,0.07017496,0.07271495,0.07085498,0.06825772,0.06299393,0.05497762,0.04932873,0.04503422,0.04115735,0.03755751,0.03427262,0.031097261,0.027890935999999998,0.024664373,0.021524994000000002,0.018870717,0.016554053,0.014604729999999998,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,delivered biomass,district heat,0.161656,0.097368,0.105994,0.111079,0.122954,0.132993,0.146369,0.158501,0.167199,0.178661,0.192177,0.204069,0.214426,0.222407,0.232533,0.232262,0.228794,0.22225,0.21732,0.214863,0.20787,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,delivered biomass,industry,0.04345073,0.11909169,0.10820812,0.10726257,0.11489400999999999,0.11865277,0.12057121,0.11862389999999999,0.11141883,0.10736308,0.10561879,0.10421195,0.10349069,0.10269844,0.10174106,0.09998932999999999,0.09756287,0.09467877,0.09244546,0.09113349,0.08893557,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,regional biomass,electricity,0.0,0.0,0.0,0.00719193,0.01972856,0.029653500000000003,0.0479712,0.06768130000000001,0.09044612999999999,0.11158620999999999,0.13362322000000001,0.15197609000000004,0.18195387000000002,0.21001836999999995,0.24338795000000002,0.2773728900000001,0.3083753300000001,0.34043669000000004,0.37727813999999993,0.41597563,0.44736939000000003,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,regional biomass,gas processing,0.0,0.0,0.0,9.29664E-4,0.00237858,0.00425809,0.0068227,0.0100741,0.0139033,0.0192612,0.0268162,0.037009,0.0488886,0.0626736,0.0777174,0.0938511,0.107292,0.116022,0.126677,0.139678,0.153837,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,regional biomass,hydrogen,0.0,0.0,0.0,0.0,0.00142028,0.00249104,0.00381478,0.00528063,0.00664005,0.00827691,0.010296,0.0113773,0.0124576,0.0133826,0.0149054,0.0163841,0.0177755,0.0190484,0.0205224,0.022183,0.0231401,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,regional biomass,refining,0.0,0.0,0.0,0.0,0.046235899999999996,0.156059,0.3526053,0.7080334,1.2284777,1.7515465000000001,2.146557,2.3929721200000005,2.589919433,2.68217519,2.77496296,2.85843234,2.9436561999999995,3.0327096000000004,3.13855371,3.289348089999999,3.45008595,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,delivered biomass,building,0.0310183,0.0378833,0.0401437,0.0364515,0.0406828,0.0438247,0.0449016,0.0438184,0.0393878,0.0362687,0.0336419,0.0314072,0.0292858,0.0275554,0.0254801,0.023491,0.0213721,0.0193574,0.017394,0.0154729,0.0138926,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,delivered biomass,industry,0.17091411,0.22009988,0.2330342,0.20740716,0.22740678,0.24452649999999998,0.25309243,0.25433233,0.24230407,0.23435814,0.22763350000000002,0.22379825,0.22017952000000002,0.21843515000000002,0.21452211999999998,0.21033031000000002,0.20439467,0.19776961,0.19047767999999998,0.18291284,0.17550652,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,regional biomass,electricity,0.0,0.00380928,0.00406038,9.22476E-4,0.0016178630000000002,0.005157682,0.009409747999999999,0.015177175999999999,0.020952165999999998,0.027293037,0.033373494,0.040338936,0.046607121,0.05286324640000001,0.062901391,0.06519922600000001,0.06863577800000002,0.07662105999999999,0.08375487500000002,0.09072385000000004,0.09783064,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,regional biomass,gas processing,0.0,0.0,0.0,1.09896E-4,1.87541E-4,2.70668E-4,3.64217E-4,4.73912E-4,5.76713E-4,7.27157E-4,9.52947E-4,0.00123811,0.00159827,0.0020429,0.00255172,0.00307219,0.00354147,0.00395596,0.00444399,0.00502129,0.00566419,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,regional biomass,hydrogen,0.0,0.0,0.0,0.0,6.90973E-5,1.23651E-4,1.85249E-4,2.52384E-4,3.04076E-4,3.68013E-4,4.41499E-4,4.69727E-4,4.94367E-4,5.17172E-4,5.63745E-4,6.12501E-4,6.58247E-4,6.98998E-4,7.47188E-4,7.97565E-4,8.20463E-4,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,regional biomass,refining,0.0,0.0,0.0,0.0,0.0,0.028387700000000002,0.08244860000000001,0.138776,0.181977,0.2270778,0.2623157,0.28710212,0.30246235,0.31196434800000006,0.32117192000000006,0.33092839999999996,0.33997080999999996,0.3483262740000001,0.356661763,0.36699320699999993,0.37828744000000003,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,delivered biomass,building,0.0053866009999999995,0.0071071050999999994,0.0074292477,0.0065372803,0.0071791731,0.007488474,0.0077152978,0.0075840212999999995,0.0070401636,0.0066460628,0.0063862383,0.0061169467000000005,0.0059079159000000004,0.00567901851,0.00540646966,0.0050670222,0.00466673894,0.00422362866,0.00377575235,0.00335174659,0.00295122195,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,delivered biomass,industry,0.01894989,0.02406889,0.02091007,0.02049057,0.02320135,0.02525596,0.027573340000000002,0.02899272,0.02926322,0.02975598,0.030669130000000003,0.031456819999999996,0.03245659,0.0334768,0.0345132,0.0353267,0.035911200000000004,0.0361113,0.0361371,0.0360735,0.0360238,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,regional biomass,electricity,8.06798E-4,9.20296E-4,9.49597E-4,0.009508583999999999,0.017915186,0.02916169,0.044985384,0.062460552,0.07996709999999999,0.10028139189999999,0.12117804210000002,0.14176601619999998,0.18014803390000003,0.2143140313,0.25487033,0.29186586999999997,0.33019424999999997,0.36516113,0.40083008000000003,0.4276246599999998,0.4580550899999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,regional biomass,gas processing,0.0,0.0,0.0,6.886E-5,1.8009E-4,3.21673E-4,5.24555E-4,7.94526E-4,0.00114165,0.00167726,0.00252487,0.00374097,0.00522183,0.00731509,0.00991961,0.0130509,0.0163069,0.0193356,0.0228661,0.0267521,0.0313906,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,regional biomass,hydrogen,0.0,0.0,0.0,0.0,5.47128E-4,0.00101489,0.00163569,0.00235098,0.00305096,0.00388787,0.00496021,0.00557306,0.00626986,0.00693213,0.00802674,0.00919834,0.0103899,0.0114719,0.0125962,0.0136058,0.0142327,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,regional biomass,refining,0.0,0.0,0.0,0.0,0.0466757,0.1573663,0.2618207,0.3688912,0.4607449000000001,0.5475852999999999,0.6200358,0.66246959,0.6817680050000001,0.69543605,0.71503372,0.7397346300000001,0.7676030099999999,0.79294424,0.8153774400000001,0.83254804,0.8611644700000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,delivered biomass,building,0.0254091,0.015069601,0.0168277,0.017816116,0.019607865,0.020006743,0.020090482,0.019013729999999996,0.016658042999999997,0.014902987000000001,0.013455963999999999,0.012089100000000002,0.010841478,0.009724353,0.008595513,0.007509732,0.0064679844,0.0055141253000000005,0.0046958633,0.004034588800000001,0.0035099517999999997,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,delivered biomass,industry,0.12105912,0.1723377,0.21725330000000004,0.27164710000000003,0.30737949999999997,0.3335525,0.35332060000000004,0.3588681,0.353619,0.35247170000000005,0.3571828,0.3626646,0.37041500000000005,0.3778521,0.38579600000000003,0.39066690000000004,0.3929262,0.390952,0.3865572,0.3803048,0.38015750000000004,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,regional biomass,electricity,0.0046884,0.00786999,0.0234427,0.0396062,0.052961,0.06579996,0.08105111000000001,0.09350176,0.10166617000000001,0.10950737,0.11991659000000003,0.1300548,0.15136085,0.17273664299999994,0.19912276000000007,0.22259756,0.24787053000000003,0.27139798,0.29254766000000004,0.31003450000000005,0.3328749800000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,regional biomass,gas processing,0.00101195,0.0,5.05916E-4,8.78985E-4,0.00137575,0.00197707,0.0028274,0.00390689,0.0051928,0.00703011,0.00977545,0.0133964,0.0175461,0.0229363,0.0293019,0.0364951,0.0431839,0.0484786,0.0544141,0.0604477,0.0675165,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,regional biomass,hydrogen,0.0,0.0,0.0,0.0,0.00221885,0.00404216,0.00635362,0.00889761,0.0114602,0.0144753,0.0182603,0.0199817,0.0218165,0.0234963,0.0263889,0.0293217,0.0321852,0.0345806,0.0369718,0.0389907,0.0403815,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,regional biomass,refining,0.0,0.0,0.0,0.0,0.05973869999999999,0.12528430000000002,0.21009619999999998,0.3215002,0.4729466,0.6334896999999999,0.7704929,0.8591303899999999,0.9278650099999999,0.97271835,1.0268374299999998,1.08324805,1.140447,1.1924545,1.2394248,1.27603809,1.3396065800000003,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,delivered biomass,building,0.00328211,0.0104303,0.0122853,0.01333779,0.01533705,0.01633382,0.01698693,0.01678379,0.01561728,0.01484928,0.01427331,0.013665469999999999,0.01305721,0.01240767,0.01169486,0.01083187,0.0098502,0.00878898,0.0077718200000000005,0.00680082,0.005959590000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,delivered biomass,industry,0.0354933001,0.076563997,0.08441169899999999,0.157843536,0.2321263,0.31313022,0.40113959,0.47985712999999997,0.54169617,0.6112532700000001,0.684195,0.76341466,0.8343358599999999,0.89344409,0.9347411299999999,0.957637,0.96560687,0.9609536,0.9494374800000001,0.9365315200000001,0.93267314,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,regional biomass,electricity,1.853E-4,8.37E-5,0.0,0.00496624,0.01318243,0.02564229,0.04523228,0.06998211,0.0970175,0.13000297000000002,0.16989045,0.2201381,0.29123966000000007,0.37020896,0.4572021999999999,0.55796537,0.66476088,0.7791213700000003,0.89961479,1.0235707299999999,1.14968493,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,regional biomass,gas processing,1.68681E-4,0.0028109,0.00359788,0.00792705,0.0137804,0.0212508,0.0315694,0.0445298,0.0591819,0.0798733,0.107847,0.14478,0.183903,0.226035,0.262119,0.289232,0.296751,0.284908,0.267677,0.244703,0.21419,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,regional biomass,hydrogen,0.0,0.0,0.0,0.0,0.00173648,0.00382854,0.00711261,0.011535,0.0168089,0.0239962,0.0334781,0.0399933,0.0464413,0.0522769,0.0595185,0.0662425,0.0721032,0.0767167,0.0814606,0.0860381,0.0878951,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,regional biomass,refining,0.0,0.0,0.0,0.0,0.08415030000000001,0.1944223,0.33333690000000005,0.5029927000000001,0.7048307000000001,0.9451691000000001,1.1867969999999999,1.4274043699999999,1.6426604699999998,1.84615042,2.03928055,2.2342052,2.40967524,2.57350578,2.7217419599999997,2.86746916,3.0499779300000007,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,delivered biomass,building,0.0183765,0.0153053,0.0284943,0.02742881,0.02840972,0.02794027,0.027249170000000003,0.0252473,0.02155314,0.01886525,0.01660842,0.01476899,0.013037449999999999,0.01163698,0.01017782,0.0088927,0.00766223,0.0066038799999999995,0.0056799599999999995,0.00491552,0.00424379,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,delivered biomass,industry,0.01142769,0.07017287,0.09122543000000001,0.09279843,0.09713757,0.10008271,0.10202791,0.10117939,0.09600195,0.09247116000000001,0.08953659,0.08805336,0.08641222999999999,0.08535190000000001,0.08350669999999999,0.08160737,0.07932082,0.0770709,0.074959254,0.07353525999999999,0.071868142,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,regional biomass,electricity,0.0,4.18612E-4,0.00368369,0.0044496,0.006746324999999999,0.008190466,0.012431480999999998,0.017873256,0.024576334,0.03144504000000001,0.037882961,0.043902905,0.050922201,0.056864527,0.06429526499999999,0.07443580199999998,0.08228460200000003,0.087698559,0.095536347,0.10414540999999998,0.11231841999999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,regional biomass,gas processing,0.00101198,0.00455375,0.011356,0.01196,0.0146435,0.0168036,0.0193722,0.0220463,0.0242539,0.0274663,0.0315249,0.0362399,0.0391913,0.0413652,0.0420052,0.0416733,0.0383533,0.032605,0.0273105,0.0223565,0.0171818,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,regional biomass,hydrogen,0.0,0.0,0.0,0.0,0.00249666,0.00416348,0.00608612,0.00809628,0.00977823,0.0117289,0.013904,0.0143988,0.0147425,0.0149987,0.015703,0.0163731,0.016885,0.0172269,0.0176889,0.0182543,0.0180083,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,regional biomass,refining,0.0,0.0,0.0,0.0,0.007736390000000001,0.0269113,0.07742655999999999,0.20152254999999997,0.39677502000000003,0.5873345799999999,0.70197719,0.759395467,0.7921817839999998,0.7821003960000001,0.7649678299999999,0.7505757800000001,0.73490408,0.7197987600000001,0.7089795099999999,0.7069436600000001,0.70928493,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,delivered biomass,building,0.272676769,0.2479129,0.288989,0.336615108,0.39929237700000003,0.44298712399999995,0.478518891,0.48689028500000003,0.46118654699999995,0.441038974,0.42240383699999995,0.40058077400000003,0.37741364000000005,0.35301046499999994,0.326623187,0.296573234,0.264672487,0.23196615499999998,0.201970498,0.17507710199999998,0.15196428299999998,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,delivered biomass,industry,0.692809,0.8231203,0.9243520999999999,1.0843898,1.3635994999999999,1.6251228,1.8825106999999999,2.0767922999999997,2.1715812,2.2634472000000003,2.3537156,2.439331,2.516239,2.5873483,2.6359795,2.6678801,2.6754873,2.6618451,2.6387074,2.6106933,2.5902164,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,regional biomass,electricity,0.0106935,0.0647155,0.130226,0.10299516,0.14924714,0.20756663,0.29122168000000004,0.37426581999999997,0.44136109,0.51266431,0.5897880500000001,0.6754909670000001,0.8079289429999998,0.933646999,1.0612997000000002,1.17989013,1.2776985600000001,1.3636560000000002,1.4336852999999998,1.4831624,1.5297171999999997,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,regional biomass,gas processing,0.0,5.62716E-5,0.00359788,0.00514797,0.00793445,0.0113312,0.0160526,0.0221321,0.0292061,0.0393673,0.0536805,0.0734422,0.0950658,0.121109,0.147551,0.175327,0.195566,0.207042,0.21919,0.231811,0.245238,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,regional biomass,hydrogen,0.0,0.0,0.0,0.0,0.00102662,0.00203457,0.00346143,0.00524238,0.00713769,0.00949057,0.0124098,0.0141126,0.0158003,0.0174139,0.0197987,0.0222961,0.0246786,0.0268685,0.0292042,0.0314061,0.0325978,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,regional biomass,refining,0.0,0.0,0.0,0.0,0.19880370000000003,0.4288471,0.745174,1.1846558999999999,1.7114774,2.268031,2.7484283999999994,3.1673679999999997,3.5386228299999996,3.8451006000000003,4.13420599,4.44178898,4.7348036,5.019895199999999,5.2845797999999995,5.546946299999999,5.8715543,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,delivered biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,delivered biomass,industry,0.0,0.0012139,0.002093,0.00206059,0.00227404,0.00241953,0.00254041,0.00258965,0.00253346,0.00250893,0.00250251,0.00248873,0.00247976,0.0024889,0.0024913,0.00248419,0.00246911,0.00244485,0.00241703,0.00239416,0.00237691,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,regional biomass,electricity,0.0,0.0473498,0.0525763,0.0355522,0.051442699999999994,0.0564732,0.06701283999999999,0.07483026000000001,0.07744750000000002,0.08045849,0.083302,0.08521094000000003,0.09573549,0.10753705000000001,0.11610506000000001,0.12503061,0.13006803000000003,0.13193692999999998,0.13388692,0.13489827000000001,0.13517948000000002,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,regional biomass,gas processing,0.0,0.0,0.0,3.79029E-5,1.23599E-4,2.48671E-4,4.32948E-4,6.87074E-4,0.00100181,0.00145449,0.00210743,0.00300611,0.00377906,0.00458393,0.00553817,0.00679926,0.0079404,0.0086657,0.0095756,0.0107116,0.012045,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,regional biomass,hydrogen,0.0,0.0,0.0,0.0,2.95253E-5,5.3956E-5,8.4601E-5,1.20855E-4,1.53714E-4,1.95051E-4,2.46118E-4,2.73984E-4,2.99073E-4,3.24079E-4,3.63368E-4,4.02658E-4,4.39395E-4,4.7604E-4,5.16253E-4,5.5493E-4,5.75421E-4,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,regional biomass,refining,0.0,0.0,0.0,0.0,0.009863130000000001,0.04113778,0.09131612,0.18649043999999998,0.31840955,0.44364758000000004,0.52203859,0.562851074,0.5883552369999999,0.5906324249999999,0.58855226,0.5902064499999999,0.58965618,0.58591058,0.58243952,0.58038007,0.5842506999999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,delivered biomass,building,0.566659,0.5762028,0.5111529,0.49100509999999997,0.5318383,0.547092,0.555327,0.540619,0.4890947,0.45659859999999997,0.43106069999999996,0.40941659999999996,0.3875991,0.3681842,0.34560630000000003,0.32096119999999995,0.2938081,0.2656561,0.23947629999999998,0.21785890000000002,0.1958782,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,delivered biomass,industry,1.6154229599999999,1.60173148,1.47476959,1.48138751,1.65897392,1.8270990999999999,1.9684618099999998,2.0659206400000003,2.07603153,2.12328151,2.20560773,2.27936979,2.36607552,2.45254232,2.54253481,2.6146931600000003,2.66824879,2.69783845,2.7407833599999996,2.79506119,2.8384755800000003,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,regional biomass,electricity,0.393165,0.49654,0.513823,0.2545962,0.2810217,0.3510158,0.44850850000000003,0.5472623999999999,0.65732489,0.7546344,0.8670853299999999,0.96235772,1.13732786,1.255189,1.4324030500000002,1.6425381800000003,1.77627526,1.9120267,2.0698352,2.2185374999999996,2.3567547000000006,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,regional biomass,gas processing,0.0411517,0.214527,0.299077,0.320055,0.395462,0.468405,0.550005,0.6371,0.715931,0.82277,0.965272,1.12211,1.22646,1.32986,1.3881,1.40351,1.30997,1.12196,0.926995,0.708216,0.454533,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,regional biomass,hydrogen,0.0,0.0,0.0,0.0,0.00239319,0.00592387,0.0105757,0.0161009,0.0209366,0.0267841,0.0338441,0.0392426,0.0445413,0.0491733,0.0564247,0.0633958,0.0698429,0.0752291,0.0809393,0.086741,0.0913917,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,regional biomass,refining,0.0,0.0,0.0,0.0,0.18918790000000002,0.4347987,0.8966706999999999,1.8135336,3.2014848,4.557758799999999,5.5113908,6.037353600000001,6.42641015,6.5297706,6.63960069,6.7458523999999995,6.8692676000000015,6.988458400000001,7.1636036,7.4158181999999995,7.7606397,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,delivered biomass,building,0.1563437,0.22469619999999998,0.2820818,0.3229324,0.4093734,0.497112,0.591666,0.685768,0.738866,0.772446,0.791768,0.789566,0.7719560000000001,0.7431220000000001,0.685779,0.629719,0.590418,0.509045,0.455773,0.40413200000000005,0.358489,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,delivered biomass,industry,0.44015706,0.60519625,0.67671868,0.8104729,1.1121268,1.5126759,2.0271001,2.6489623,3.3426802999999996,4.0857276,4.874357,5.6638209999999996,6.394404,7.028704,7.4512,7.748150000000001,8.078322,7.896484,7.865778,7.758796,7.632605000000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,regional biomass,electricity,0.0019674,0.00380929,0.0038093,0.01044122,0.02224532,0.04059317999999999,0.06935618,0.11203878999999999,0.17825502000000001,0.27319710999999997,0.40143383200000005,0.569135678,0.7806943910000002,1.030220534,1.3179883299999997,1.64114526,2.0343855499999997,2.38771491,2.7926742900000003,3.1973771,3.621305200000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,regional biomass,gas processing,0.0,0.0,0.0,1.43757E-7,8.41922E-7,2.90469E-6,8.02365E-6,1.95951E-5,4.46722E-5,9.51868E-5,1.93313E-4,3.60178E-4,6.47944E-4,0.0011134,0.00177559,0.0027334,0.00411,0.00563707,0.00739406,0.00967527,0.012707,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,regional biomass,hydrogen,0.0,0.0,0.0,0.0,3.63858E-4,8.41946E-4,0.00173127,0.00331591,0.00583033,0.00968148,0.015369,0.0203351,0.0261526,0.0323899,0.0395611,0.0476039,0.058258,0.0631346,0.0716576,0.0797554,0.0828669,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,regional biomass,refining,0.0,0.0,0.0,0.0,0.013886470000000001,0.0386125,0.08087615999999999,0.15185790999999998,0.26097109999999996,0.40992526000000007,0.5976535900000001,0.830188288,1.09784299,1.4005346909999998,1.7269550179999995,2.07609645,2.499377627,3.0010499699999995,3.46241409,3.98729156,4.58608774,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,delivered biomass,building,0.0033089001,0.0065225,0.0070573,0.0073336,0.007648469999999999,0.00765214,0.00754581,0.0072277,0.00658848,0.0060009500000000006,0.00548219,0.004973689999999999,0.00452222,0.00410884,0.0036472600000000003,0.0032533700000000002,0.002939946,0.002593341,0.00234313,0.002122361,0.0019514250000000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,delivered biomass,industry,0.02697865,0.0438617,0.0871743,0.1015421,0.11634710000000001,0.1305213,0.1457087,0.1590748,0.1669416,0.1738093,0.1800933,0.18485790000000002,0.1890543,0.1928781,0.19231710000000002,0.19282080000000001,0.1985966,0.19219540000000002,0.1926952,0.193332,0.1941905,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,regional biomass,electricity,0.0,0.0,0.0,0.00209171,0.00925564,0.02004028,0.035813540000000005,0.05503264,0.074798549,0.094970516,0.11560191699999998,0.13623660199999998,0.16344867600000001,0.19780446899999996,0.23359452599999997,0.27343538999999994,0.32513580000000003,0.3535677300000001,0.4012340800000001,0.44779590999999996,0.49543801000000004,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,regional biomass,gas processing,0.0,0.0,0.0,1.95751E-5,5.99872E-5,1.35631E-4,2.66541E-4,4.78484E-4,8.08261E-4,0.00129843,0.00202007,0.00302216,0.00440939,0.00620145,0.00815881,0.0104999,0.0133295,0.015574,0.0177473,0.0205167,0.0242119,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,regional biomass,hydrogen,0.0,0.0,0.0,0.0,1.71066E-4,3.41684E-4,5.85441E-4,9.04322E-4,0.00127388,0.00172418,0.00227336,0.00257111,0.00287117,0.00315125,0.00350993,0.00390715,0.00440264,0.00476409,0.00526346,0.00581434,0.0062295,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,regional biomass,refining,0.0,0.0,0.0,0.0,0.02500874,0.06784282000000001,0.1284164,0.21959781,0.34689985999999995,0.48598451000000004,0.6099815399999999,0.7309526190000001,0.8487056559999999,0.9451011449999999,1.031424587,1.107131905,1.1783813699999999,1.30907283,1.4039772200000002,1.5203623200000005,1.6624153300000004,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,delivered biomass,building,0.0797127,0.13983790000000001,0.15706189999999998,0.1792785,0.2165977,0.2529359,0.2853499,0.3100543,0.31990260000000004,0.3260675,0.3279688,0.3211103,0.3081222,0.29038390000000003,0.2627722,0.23507820000000001,0.2090343,0.1819288,0.1592142,0.1383329,0.1239046,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,delivered biomass,industry,0.296921395,0.476782008,0.5514989969999999,0.63905988,0.7960482900000001,0.97914024,1.16737878,1.35602847,1.5470383399999998,1.7551080899999998,1.9740612,2.1818261999999997,2.3611724,2.5019367,2.565098,2.5787462999999997,2.5570185000000003,2.4849167000000003,2.4075109,2.3169162,2.2673895,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,regional biomass,electricity,0.0,0.0,0.0,9.36233E-4,0.002454156,0.0050265940000000005,0.009453521,0.016113716000000004,0.025815213,0.040185489,0.06049979800000001,0.08768643,0.12462367300000003,0.16935608500000002,0.21944936299999998,0.280805883,0.3613197740000001,0.4150006969999999,0.49615579,0.57691494,0.6587199199999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,regional biomass,gas processing,0.0,0.0,0.0,9.31912E-7,3.76976E-6,1.04742E-5,2.46119E-5,5.22152E-5,1.05522E-4,2.04464E-4,3.82718E-4,6.79422E-4,0.00115472,0.00188696,0.00286402,0.00420398,0.00602437,0.00781261,0.00970812,0.0120202,0.0148643,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,regional biomass,hydrogen,0.0,0.0,0.0,0.0,2.35762E-4,4.87704E-4,8.64076E-4,0.00139778,0.00214167,0.00320979,0.00471253,0.00584918,0.00708264,0.00831218,0.00973328,0.0111713,0.0126294,0.0138973,0.0152501,0.0165644,0.0176464,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,regional biomass,refining,0.0,0.0,0.0,0.0,0.01124043,0.029807729999999998,0.05740527000000001,0.09802857999999999,0.1592821,0.24445674,0.348433004,0.47043446,0.6015839784,0.74230897,0.8882486600000001,1.0359593759999999,1.1804434400000001,1.405313809,1.590566465,1.7986712299999996,2.06945041,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,delivered biomass,building,0.1991744,0.2311539,0.2366298,0.3139771,0.41279279999999996,0.54634,0.690713,0.822178,0.909073,0.978529,1.031768,1.055155,1.058509,1.049753,0.998896,0.9424220000000001,0.900334,0.8094,0.7438589999999999,0.677814,0.627298,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,delivered biomass,industry,0.65619142,1.10237948,1.25090791,1.60216934,2.0586648,2.82391935,3.7639103,4.8314390000000005,5.9838977,7.2219518,8.5388196,9.8701849,11.134168,12.2628191,13.0797114,13.6656135,14.1026965,14.1822152,14.2217585,14.1710777,14.2021389,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,regional biomass,electricity,0.0025116,0.00468829,0.0051488,0.00598889,0.01278218,0.026136655,0.047645508,0.07912630699999998,0.12056859600000001,0.176916134,0.2523693675,0.35181312779999996,0.47944934640000003,0.6406885259,0.8264737599999998,1.05218682,1.3678939200000002,1.59748088,1.94487386,2.30956374,2.6937251000000004,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,regional biomass,gas processing,0.0,0.0,0.0,3.42651E-6,1.25771E-5,3.77114E-5,9.65426E-5,2.21666E-4,4.72416E-4,9.44703E-4,0.00179927,0.00325177,0.00564599,0.00936757,0.0143891,0.0212641,0.0307032,0.0399732,0.0500943,0.0624983,0.0779572,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,regional biomass,hydrogen,0.0,0.0,0.0,0.0,5.61311E-4,0.0013219,0.00269118,0.00494105,0.00838831,0.0135458,0.0210646,0.0274724,0.0347807,0.0424679,0.0517436,0.0616277,0.0723965,0.0820826,0.0928188,0.103839,0.112256,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,regional biomass,refining,0.0,0.0,0.0,0.0,0.01993603,0.06721733,0.14798801000000003,0.27722950999999996,0.46498981000000006,0.7169781199999999,1.03058653,1.420592155,1.8785573350000002,2.39639234,2.9478364590000004,3.51911368,4.13878457,4.9904151,5.71682027,6.530907920000001,7.53396368,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,delivered biomass,building,0.0036417999999999997,0.016199799999999997,0.0115951989,0.011029473299999999,0.011244803300000002,0.0106436069,0.010121210700000001,0.009455940500000001,0.0084869863,0.0076440947,0.0069174779999999995,0.0062266636000000005,0.005626344500000001,0.0051114833000000005,0.0045163107,0.0040232821,0.0036344188,0.0032087355,0.0028842629999999998,0.0026035169,0.002382294,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,delivered biomass,industry,0.058771409999999996,0.05098543,0.038758230000000005,0.04210142,0.04254855,0.046690579999999995,0.050722779999999995,0.053737850000000004,0.05484061,0.05550728,0.056179969999999996,0.05652712,0.05684143,0.05715771,0.05641261,0.0560259,0.05694352,0.05490415,0.05449859,0.05413238,0.05401815,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,regional biomass,electricity,0.00452089,0.0243625,0.0305578,0.028537299999999998,0.02796947,0.0352195,0.04208419000000001,0.04829598000000001,0.05203921999999999,0.05535642,0.05850175999999999,0.06194904,0.07007382999999999,0.075448964,0.08312429500000001,0.08891241200000002,0.097761332,0.09994057000000002,0.10530264000000002,0.10863645999999999,0.11346796999999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,regional biomass,gas processing,0.0,0.0,0.0,1.05443E-5,2.62747E-5,5.43977E-5,9.86339E-5,1.64605E-4,2.59557E-4,3.91416E-4,5.77572E-4,8.24951E-4,0.00113993,0.00156576,0.00199001,0.00248727,0.00306202,0.00350973,0.0039287,0.00445783,0.00517711,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,regional biomass,hydrogen,0.0,0.0,0.0,0.0,9.75683E-5,2.22503E-4,3.88562E-4,5.91193E-4,7.88919E-4,0.00100055,0.00124324,0.00139569,0.00154285,0.00167693,0.00186623,0.00206612,0.00227678,0.00246288,0.00266912,0.00287904,0.00307209,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,regional biomass,refining,0.0,0.0,0.0,0.0,0.0,0.00626492,0.01584026,0.031499599999999996,0.054468724999999996,0.07837070899999998,0.095098134,0.10621451699999998,0.115414031,0.11983996609999999,0.12355801459999999,0.126105529,0.128325324,0.13621904199999998,0.14010373700000003,0.145769927,0.154729219,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,delivered biomass,building,0.080413,0.0667248,0.0635434,0.0656869459,0.068210362,0.06985746859999999,0.07101852550000001,0.0709267446,0.0683721302,0.0658409659,0.0637122986,0.0613723994,0.0589888761,0.0564818917,0.0524577865,0.04865370869999999,0.044788932000000004,0.04112368970000001,0.037455078800000007,0.034029874,0.030590000300000003,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,delivered biomass,industry,0.11540802,0.18016538,0.17053739999999998,0.18925842,0.20563019,0.22346370999999998,0.23796166,0.24957494,0.25488995000000003,0.26041468,0.26672114999999996,0.27146495000000004,0.27624206,0.28065332000000004,0.27877449,0.27739492,0.27747823,0.27078215,0.26654941,0.26150505,0.25641481000000005,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,regional biomass,electricity,0.0,0.00983718,0.00941851,0.005203729,0.008408428999999999,0.012204169,0.018552256,0.025762545999999997,0.035107999,0.0423439611,0.049748626,0.056602235599999995,0.06493355490000001,0.07251513889999998,0.08091618599999997,0.092697543,0.10139793300000001,0.10740547800000001,0.11552425000000002,0.12158704000000001,0.12862304000000002,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,regional biomass,gas processing,0.00208004,0.0133799,0.0186082,0.0229862,0.0293007,0.0366119,0.044789,0.0539475,0.0647944,0.0763885,0.0894208,0.101602,0.112576,0.121698,0.123936,0.122513,0.11519,0.095882,0.0701279,0.0404693,0.00484789,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,regional biomass,hydrogen,0.0,0.0,0.0,0.0,2.6591E-4,6.20424E-4,0.00108334,0.00164708,0.00220235,0.00282788,0.0035199,0.00403012,0.0045274,0.00496948,0.00552373,0.00606834,0.0065983,0.0070748,0.00750861,0.00790961,0.00827124,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,regional biomass,refining,0.0,9.47172E-4,0.0194585,0.019251922,0.0190051337,0.0180739219,0.016118099999999996,0.013744528700000001,0.013183588499999998,0.0149873735,0.0177904515,0.020417190669999998,0.024426072170000007,0.028559274000000003,0.034319811400000004,0.042257713399999994,0.054969569199999985,0.06974830240000002,0.08691940279999999,0.11568070320000001,0.17829865079999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,delivered biomass,building,0.03403213,0.02750209,0.028632170000000002,0.02581211,0.026399870000000002,0.027298749999999997,0.02783302,0.02758006,0.02595727,0.024288689999999998,0.022638129999999996,0.020819269999999997,0.01907831,0.01741488,0.015446110000000002,0.01371087,0.01227722,0.010669326,0.009413626999999999,0.008264145,0.007357420000000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,delivered biomass,industry,1.3566461,1.8667909999999999,2.2407679999999996,1.994034,2.06808,2.1649339999999997,2.233479,2.261435,2.229514,2.18074,2.121303,2.044162,1.96273,1.878084,1.7717159999999998,1.6715719999999998,1.589242,1.475381,1.383764,1.2973439999999998,1.228947,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,regional biomass,electricity,0.0310598,0.114822,0.242746,0.378668,0.478824,0.6508806999999999,0.7999327999999999,0.9258057000000001,1.0144703999999998,1.0835886,1.1375691,1.1761587,1.2409280000000003,1.2905385,1.3228048,1.3079288000000002,1.2949074999999999,1.1950303000000002,1.1096226000000002,1.0121598000000003,0.9276744999999998,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,regional biomass,gas processing,0.0,0.0,0.0,7.79638E-6,2.41678E-5,6.01938E-5,1.24709E-4,2.31733E-4,4.03191E-4,6.63358E-4,0.00106365,0.00159656,0.00229871,0.00322374,0.00419247,0.00537421,0.006812,0.00804429,0.00921535,0.010688,0.0125967,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,regional biomass,hydrogen,0.0,0.0,0.0,0.0,6.30642E-4,0.00131647,0.00220284,0.0032814,0.00433375,0.00547103,0.00670592,0.00725235,0.00771513,0.00805577,0.00863058,0.00921658,0.00980405,0.0102423,0.010722,0.0111765,0.0115149,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,regional biomass,refining,0.0,0.0,0.0,0.0,0.001692751,0.006937419,0.014070692000000001,0.026119126,0.046208261,0.071233572,0.09283139800000001,0.1108899078,0.1285705407,0.14318300409999998,0.16101212990000002,0.18288088929999996,0.20947253900000004,0.249529035,0.28503506,0.33214623499999996,0.4060632889999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,delivered biomass,building,0.0624551,0.0790736,0.103143,0.1020669,0.10222569999999999,0.101228,0.09932361,0.09517631,0.08714374,0.08025812,0.07488261,0.0698877,0.06534572,0.06093975,0.05503026,0.04989361,0.04504657,0.04073543,0.03681339,0.03320898,0.02967285,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,delivered biomass,industry,0.2419296,0.3328179,0.27276030000000007,0.29029891,0.30578011,0.32193758,0.33523318,0.34436193,0.34480163,0.34570603999999994,0.3485532,0.35100862,0.35387307,0.35702052,0.3538686,0.35118806999999996,0.34915442,0.34367386,0.33885104,0.33362375000000005,0.32863632,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,regional biomass,electricity,0.036753,0.080706,0.0752642,0.0810844,0.0917489,0.09889232999999999,0.11082273,0.12193743999999998,0.13605077999999998,0.14576056,0.15601183999999998,0.16477649000000003,0.17788324000000003,0.19074347,0.20118480999999994,0.21561985999999994,0.22744464999999997,0.23418553999999997,0.24287164000000003,0.24768578000000002,0.25258639,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,regional biomass,gas processing,3.93498E-4,0.0107938,0.010569,0.0130507,0.0161848,0.0195865,0.0233289,0.0274549,0.0321885,0.0371633,0.042712,0.0479921,0.0528328,0.0567178,0.0574035,0.0563092,0.0525847,0.0439623,0.0327147,0.0205881,0.0070216,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,regional biomass,hydrogen,0.0,0.0,0.0,0.0,3.77158E-4,8.53375E-4,0.00147772,0.00224949,0.00295797,0.00373073,0.00456357,0.00512473,0.00565532,0.00611974,0.00673682,0.0073518,0.00794735,0.00852345,0.00906364,0.00958708,0.0100606,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,regional biomass,refining,0.0,0.0,0.0,0.0,9.89139E-4,0.002402531,0.005698081000000001,0.013833741,0.029136736999999996,0.046156499999999996,0.0586134008,0.0678543203,0.07731286174999998,0.08551250610000001,0.0972353664,0.1130250656,0.135053253,0.15847981399999994,0.18256269400000003,0.21520553139999998,0.264652055,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,delivered biomass,building,0.027327984,0.04262768,0.046862999,0.046766562,0.047221772,0.047338161000000004,0.047030155000000004,0.046039118000000004,0.04326615,0.040170206,0.037274826000000004,0.034309888,0.03144495,0.028771058999999995,0.025625769,0.022845469,0.020521288,0.017942128,0.015894907,0.014013913999999999,0.012311407,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,delivered biomass,industry,0.28771163,0.14346239,0.12963233000000002,0.14425770000000002,0.163069,0.1856609,0.2088217,0.2303307,0.24630490000000002,0.2594626,0.2712122,0.2802823,0.2875212,0.2934984,0.29442989999999997,0.2969292,0.3060943,0.2990333,0.2994116,0.2993482,0.2999955,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,regional biomass,electricity,0.0579034,0.0666484,0.0968785,0.08401829999999999,0.1218253,0.16704669,0.2198058,0.27583976,0.3308977,0.38987262999999994,0.44744678000000004,0.5049892600000001,0.5789123,0.650078184,0.7190203700000001,0.7597869300000001,0.8210662500000001,0.8401396799999998,0.8760441000000002,0.9018412000000001,0.926578,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,regional biomass,gas processing,0.0,3.93499E-4,1.12409E-4,1.61133E-4,2.27859E-4,3.20265E-4,4.44496E-4,6.1017E-4,8.34045E-4,0.00112397,0.00150543,0.00195956,0.0025102,0.00317247,0.00381155,0.00452667,0.00533186,0.00588293,0.00629421,0.0068327,0.00757166,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,regional biomass,hydrogen,0.0,0.0,0.0,0.0,2.73893E-4,5.48587E-4,9.25448E-4,0.00141504,0.00197681,0.0026364,0.00340928,0.00386084,0.00431977,0.00474686,0.00532098,0.00596649,0.00676472,0.00732201,0.00802667,0.00874154,0.00920901,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,regional biomass,refining,0.0,0.0,0.0,0.0,0.00670351,0.01699627,0.03184382,0.055715570000000006,0.09168594,0.132231141,0.16602738900000003,0.19366452999999997,0.21400563169999995,0.2291277931,0.24172430400000003,0.254988357,0.268560319,0.29456094400000005,0.310602313,0.32927103,0.35401958400000005,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,delivered biomass,building,0.026371699999999998,0.0180835,0.0205952,0.01969091,0.019523079999999998,0.018751392000000002,0.017984085,0.016956134,0.015430664,0.014085661999999999,0.012953024,0.011900251,0.010956541,0.010127046,0.009131537,0.008274507,0.007478582,0.006804285,0.006177621,0.005639984,0.005213041,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,delivered biomass,industry,0.001507,0.004227902,0.002888394,0.003351596,0.003750127,0.00414998,0.00447484,0.0047027,0.00475799,0.00477561,0.00477372,0.0047426099999999995,0.004721690000000001,0.00471696,0.00462086,0.00454045,0.00450228,0.00435186,0.0042621,0.00419423,0.00414283,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,regional biomass,electricity,0.0,0.0,0.0,0.0044377,0.00700459,0.010181377,0.014659514,0.019166842,0.023785966000000002,0.027686526,0.030451429000000002,0.03264371299999999,0.041182487,0.04585396700000001,0.050633187,0.06340373799999999,0.070522378,0.07469778199999999,0.08297799499999998,0.08840461999999999,0.09439590099999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,regional biomass,gas processing,0.0,0.0,0.0,2.5081E-5,7.01173E-5,1.44758E-4,2.56021E-4,4.13997E-4,6.33574E-4,9.27716E-4,0.00131454,0.00181301,0.00238917,0.00314177,0.00393287,0.0049067,0.00598106,0.00679544,0.00753291,0.00847351,0.00979262,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,regional biomass,hydrogen,0.0,0.0,0.0,0.0,3.27816E-4,6.06675E-4,9.54337E-4,0.00136048,0.00177279,0.00222022,0.00271115,0.00290854,0.00310445,0.00328384,0.00352747,0.00377666,0.00403583,0.004288,0.00455995,0.00485024,0.00506499,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,regional biomass,refining,0.0,0.0,0.0,0.0,0.01041941,0.02964394,0.05415483,0.09054386,0.14239715,0.20102522000000003,0.25155172099999995,0.291892832,0.3286427664,0.35660998799999993,0.381231751,0.40256045900000004,0.4255652959999999,0.46555696899999993,0.491533405,0.525528971,0.5696287830000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,delivered biomass,building,4.707E-4,2.559E-4,1.905E-4,2.0335599999999997E-4,2.129867E-4,2.2186550000000003E-4,2.230283E-4,2.167128E-4,2.003919E-4,1.832781E-4,1.666975E-4,1.493579E-4,1.3319580000000002E-4,1.189428E-4,1.0375099999999999E-4,9.104520000000001E-5,8.02066E-5,7.0848E-5,6.32955E-5,5.6443699999999996E-5,4.96493E-5,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,delivered biomass,district heat,0.0,0.0202184,0.0473018,0.0574246,0.0661112,0.075727,0.0828884,0.0867998,0.0865084,0.084943,0.0824764,0.0787363,0.0747305,0.0707991,0.0654003,0.0605262,0.0565027,0.051479,0.0474512,0.0433708,0.0384877,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,delivered biomass,industry,2.31E-4,2.201E-4,1.918E-4,2.25638E-4,2.5218E-4,2.77589E-4,2.93192E-4,2.9865E-4,2.91907E-4,2.81969E-4,2.70054E-4,2.54974E-4,2.39621E-4,2.25208E-4,2.0796E-4,1.92387E-4,1.7812E-4,1.65335E-4,1.54179E-4,1.43889E-4,1.33426E-4,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,regional biomass,electricity,4.79999E-6,0.0346181,0.164175,0.1512021,0.2272521,0.3385608,0.47768869999999997,0.6018273,0.7110698,0.8009592999999999,0.8633343999999998,0.9014185100000001,0.9207042500000001,0.9183567399999999,0.9241048999999999,1.0999975,1.1819693999999998,1.234168,1.2929464000000004,1.2910576399999998,1.2811314999999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,regional biomass,gas processing,0.0,0.193839,0.39296,0.587406,0.811284,1.10105,1.38967,1.65733,1.90566,2.13199,2.33761,2.46003,2.53272,2.5548,2.47468,2.37301,2.22957,1.95714,1.58133,1.02698,0.0220389,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,regional biomass,hydrogen,0.0,0.0,0.0,0.0,0.00218586,0.00398815,0.00611475,0.00844845,0.0106212,0.0127857,0.0149532,0.0149366,0.0147489,0.0143976,0.0142486,0.0141078,0.0139249,0.0137122,0.0134715,0.013078,0.0119581,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,regional biomass,refining,0.0,0.0,0.0,0.0,0.02497219,0.06633132,0.11655916,0.1893095,0.29874951000000005,0.43016373,0.54840554,0.6437527690000001,0.7311981500000001,0.7937572270000001,0.8592114429999999,0.9334488270000001,1.0404108539999999,1.2029969600000001,1.3328296600000002,1.4984108400000002,1.7114307299999998,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,delivered biomass,building,0.0030139,0.015362797999999999,0.0146091051,0.0153936541,0.016558976499999996,0.0173481198,0.0180989171,0.0183709336,0.0177113722,0.016949567000000002,0.0161286235,0.0151178915,0.0141206884,0.013150922700000001,0.011856121999999998,0.010738609400000002,0.009926639099999999,0.0087268885,0.0078952177,0.007136346399999999,0.0064865706999999995,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,delivered biomass,industry,0.08388743,0.06932007999999999,0.05739002,0.06607986,0.07726894000000001,0.08794751,0.10003276,0.1116619,0.12111519999999999,0.1301497,0.1390469,0.146872,0.1543387,0.16128669999999998,0.164907,0.1683347,0.1730597,0.1716253,0.172069,0.1720268,0.1719069,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,regional biomass,electricity,0.00305581,0.005693,0.00560922,0.008184489999999999,0.01046305,0.012496373,0.016048797,0.019883915000000002,0.022949814000000002,0.026429168,0.030352035000000003,0.034617357,0.04160746800000001,0.048948489,0.05562175299999998,0.06311763699999999,0.071630421,0.07751844499999998,0.084927357,0.091301809,0.09837373,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,regional biomass,gas processing,0.0,0.0,0.0,2.65057E-6,8.24116E-6,1.82133E-5,3.58118E-5,6.51843E-5,1.11855E-4,1.83196E-4,2.91976E-4,4.44936E-4,6.5355E-4,9.34209E-4,0.00125677,0.00165206,0.00212417,0.00254062,0.0029271,0.00339485,0.00400135,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,regional biomass,hydrogen,0.0,0.0,0.0,0.0,4.99847E-5,1.19068E-4,2.21512E-4,3.57713E-4,5.0977E-4,6.8591E-4,8.92429E-4,0.00105717,0.00122598,0.00138875,0.00160655,0.00183738,0.00207604,0.00230599,0.00254173,0.00277854,0.00299222,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,regional biomass,refining,0.0,0.0,0.0,0.0,0.0029432779999999997,0.006523913,0.012151931,0.021034051999999998,0.033934228,0.04882943,0.061950402,0.07292243149999998,0.0830155625,0.09120037320000003,0.09878208530000002,0.10595888480000003,0.11455200399999999,0.12519213599999998,0.13346928600000002,0.14314735400000003,0.15483135399999998,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,delivered biomass,building,0.1807936,0.40327890000000005,0.4865383,0.46944730999999995,0.46644028,0.45113652,0.43220996,0.40421292999999997,0.36361932999999996,0.32628734000000004,0.29408261,0.26449853,0.23729909,0.21210310999999998,0.18428956,0.16028008000000002,0.138942256,0.12220834600000001,0.10771857700000001,0.09529146,0.085038368,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,delivered biomass,district heat,0.00694863,0.0258686,0.028256,0.035985,0.0434257,0.0526237,0.0620149,0.0712402,0.0789707,0.0857313,0.0914839,0.0953908,0.0978925,0.0988536,0.0990662,0.0949139,0.0911847,0.0857153,0.0810037,0.0767138,0.0720528,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,delivered biomass,industry,0.0631665,0.1629606,0.19644910000000002,0.2047446,0.218788,0.2301904,0.23777070000000003,0.2405801,0.23516560000000003,0.2288181,0.2229267,0.21619970000000002,0.2097373,0.2036638,0.19384749999999998,0.18492759999999997,0.177698,0.16886790000000002,0.1626791,0.15715810000000002,0.15213190000000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,regional biomass,electricity,0.00117213,0.0364608,0.11817,0.12377389999999999,0.13823590000000002,0.14686827,0.16019915,0.17073027,0.1765147,0.17821165999999997,0.17927572000000003,0.17918988999999996,0.18210977999999997,0.18505494,0.18381500999999997,0.19298255,0.1993025,0.20082201999999996,0.20511732,0.20652782000000006,0.20715981000000003,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,regional biomass,gas processing,5.0591E-4,0.00781424,0.022993,0.0288601,0.0374551,0.0467258,0.056861,0.0676915,0.0789176,0.0897043,0.100801,0.109926,0.1172,0.121512,0.118975,0.113251,0.103023,0.085237,0.0624563,0.0368497,0.00571615,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,regional biomass,hydrogen,0.0,0.0,0.0,0.0,8.50493E-5,1.97194E-4,3.43709E-4,5.2267E-4,6.86713E-4,8.68576E-4,0.00106837,0.00122549,0.00137506,0.00150097,0.00165604,0.00180372,0.0019466,0.00209922,0.00224085,0.00238884,0.00250477,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,regional biomass,refining,0.0,0.0,0.0,0.0,0.007404300000000001,0.015476689999999998,0.029282990000000002,0.05598401,0.09923918000000002,0.14394521999999998,0.17400321400000002,0.19240484900000002,0.2048260447,0.20758232100000004,0.208439124,0.20873377300000004,0.21327747299999997,0.220205236,0.223073969,0.22862498099999995,0.237897682,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,delivered biomass,building,0.8571020000000001,0.9811536999999999,1.261439,1.2246553000000002,1.2038234,1.1704873,1.1426110999999999,1.0952985000000002,1.0084746,0.9290438000000001,0.8591883,0.789339,0.7244238999999999,0.6642242,0.58967614,0.5261760600000001,0.47480631,0.41228887000000003,0.36181919,0.31578613999999994,0.27190145,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,delivered biomass,industry,0.682894,0.975345,1.2491425,1.304197,1.350887,1.3970230000000001,1.435028,1.456162,1.4349120000000002,1.417135,1.4039300000000001,1.393518,1.385802,1.378517,1.340943,1.308159,1.287585,1.2392459999999998,1.203108,1.1654280000000001,1.126327,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,regional biomass,electricity,0.120954,0.642526,1.06835,0.693977,0.787255,0.8649813999999999,0.9768464,1.0923786,1.2655751999999998,1.3534035000000002,1.4476948,1.5413548999999998,1.6715746000000002,1.7981582000000003,1.9300129999999998,2.0125275000000005,2.0902292,2.1303405,2.1631034999999996,2.1600344000000002,2.1342149999999998,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,regional biomass,gas processing,0.0368228,0.243366,0.593372,0.688585,0.830936,0.976472,1.13465,1.30573,1.50799,1.69837,1.89378,2.07017,2.20648,2.29927,2.27079,2.19131,2.02891,1.66527,1.21943,0.696808,0.034456,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,regional biomass,hydrogen,0.0,0.0,0.0,0.0,0.0135214,0.0230811,0.0345023,0.0475825,0.0605395,0.074927,0.0909159,0.0959877,0.100618,0.104093,0.108909,0.11373,0.118615,0.121368,0.124013,0.126017,0.123754,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,regional biomass,refining,0.0,0.0,0.0,0.0,0.020781920000000002,0.04618896,0.12187072,0.3124773,0.6560677,1.0159870500000001,1.2622614299999997,1.4024992389999995,1.5086037409999997,1.5445940509999996,1.574915969,1.60098656,1.6655617899999997,1.74239583,1.7725414400000001,1.8205322200000003,1.9032778800000003,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,delivered biomass,building,0.0228555,0.041148500000000005,0.07287830000000001,0.06674730999999999,0.06303958,0.058059440000000004,0.053445999999999994,0.04851732000000001,0.042872190000000004,0.038143340000000005,0.03432597,0.030999040000000002,0.02816884,0.02570711,0.022936459,0.020558484000000002,0.018350591,0.016591465,0.014933562,0.013530485,0.012470558,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,delivered biomass,district heat,0.0,0.0165768,0.0235675,0.0218399,0.0228999,0.02543,0.0275793,0.0297124,0.0313729,0.0330409,0.0347132,0.0361805,0.0376757,0.0390191,0.0400567,0.0398826,0.0397918,0.0389998,0.0382598,0.0377552,0.0369991,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,delivered biomass,industry,0.0021767,0.009460300000000001,0.036962398,0.033991509,0.03502438100000001,0.036997446,0.037962879,0.038311748,0.03736891,0.036474449,0.035752432,0.035077081,0.034621846,0.034255186,0.033249996999999996,0.032267216,0.031309266,0.030297137,0.029432530999999998,0.028671753,0.027937983,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,regional biomass,electricity,0.0,0.0,0.00263714,0.0035749200000000005,0.006830588,0.010203537,0.015601789000000001,0.022288577,0.030206498999999998,0.037696504,0.044717586000000004,0.05123003300000001,0.058531199,0.066352259,0.07561420299999999,0.082501709,0.091048802,0.0983193,0.10714385000000001,0.11564844,0.12380470999999998,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,regional biomass,gas processing,0.0,0.0,1.12409E-4,1.36876E-4,1.86443E-4,2.53607E-4,3.35381E-4,4.38103E-4,5.69466E-4,7.31424E-4,9.34772E-4,0.00118773,0.00151098,0.00188735,0.00225148,0.00265618,0.00309296,0.00340742,0.00365418,0.00398984,0.00447581,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,regional biomass,hydrogen,0.0,0.0,0.0,0.0,6.75262E-5,1.35388E-4,2.21467E-4,3.26381E-4,4.29116E-4,5.4874E-4,6.84216E-4,7.83308E-4,8.87991E-4,9.88095E-4,0.00111387,0.00124012,0.00136955,0.00150827,0.00164777,0.00179152,0.0019174,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,regional biomass,refining,0.0,0.0,0.0,0.0,1.881197E-5,5.2262102E-4,0.005621703529999999,0.01501802037,0.029470457379999995,0.043607778609999995,0.053045529970000005,0.05914380760800001,0.064614268641,0.06769583222999999,0.07012714939999999,0.0717838772,0.07345015399999999,0.07795459399999999,0.07968118780000004,0.0825012037,0.08685035209999997,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,delivered biomass,building,0.3855308,0.2991734,0.27460130000000005,0.28672954999999994,0.29664958999999996,0.30342982,0.30809381999999996,0.30570635,0.29104726,0.27512583,0.25999821,0.24364714,0.22796958,0.21322659000000002,0.19433557,0.17737396000000002,0.16249842,0.14729613,0.13490709,0.12388535,0.11391546,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,delivered biomass,district heat,0.0,1.25601E-4,6.69811E-4,0.00107907,0.0013237,0.00167649,0.00206469,0.00245461,0.00276762,0.00306143,0.00333872,0.00356228,0.00375835,0.00393677,0.00404166,0.00412737,0.00440453,0.0042498,0.00432014,0.00439079,0.00438284,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,delivered biomass,industry,0.0198223,0.0301546,0.0367114,0.045430088,0.047987907999999996,0.050447566,0.0532903,0.055210182999999996,0.05447647,0.05351734,0.05251944,0.05106693,0.04948266,0.04810256,0.04577982,0.04425325,0.044946269999999997,0.04144317,0.040686230000000004,0.03985857,0.03871027,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,regional biomass,electricity,0.0,0.00104648,0.00175807,0.002517927,0.0048662689999999995,0.008027971,0.012748763,0.018493401999999996,0.024122980999999998,0.030069086999999998,0.036464946,0.043025925000000007,0.0535962526,0.0638133343,0.07486450500000001,0.089274533,0.10328802599999998,0.115021864,0.128821971,0.14120443,0.15366337,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,regional biomass,gas processing,0.0,5.62176E-4,0.00404763,0.00550794,0.00743943,0.00983162,0.0126166,0.0157589,0.0192922,0.0230384,0.0271042,0.0312299,0.034621,0.0372443,0.0372958,0.0365461,0.0342044,0.0290125,0.022165,0.0147059,0.00620298,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,regional biomass,hydrogen,0.0,0.0,0.0,0.0,9.07337E-5,2.35715E-4,4.3636E-4,6.91288E-4,9.54543E-4,0.00125229,0.00158679,0.00186537,0.00213397,0.00237542,0.00268066,0.00298457,0.00328528,0.00359153,0.00388549,0.00418427,0.00447301,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,regional biomass,refining,0.0,0.0,0.0,0.0,0.00735113,0.017673639999999997,0.032430379999999995,0.056391529999999995,0.09151885000000001,0.128710685,0.15762405100000004,0.17822009399999994,0.19466481400000002,0.2038180432,0.210591947,0.21613581900000003,0.22603059799999997,0.238561214,0.24642388299999998,0.257164338,0.27160331499999996,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,delivered biomass,building,0.0523351,0.0550111,0.0696375,0.07014289,0.07086673,0.07042812000000001,0.06962016000000001,0.06784383999999999,0.06371244999999999,0.05932482,0.05499085,0.05012289,0.045541279999999996,0.041351747999999994,0.036481488,0.032484565,0.029670778000000002,0.025830652,0.023227309,0.020792702000000003,0.018447972,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,delivered biomass,industry,0.04076151,0.07529916,0.07674693999999999,0.07590421,0.0777331,0.07824336999999999,0.07649102999999999,0.07587717000000001,0.07565762,0.07430646,0.07272038000000002,0.07063215,0.06870085000000001,0.06702889000000001,0.06436655,0.061894160000000004,0.05984706,0.057323650000000004,0.055164,0.053034460000000005,0.05118896,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,regional biomass,electricity,0.0084977,0.00891642,0.0119303,0.03972026,0.057993630000000004,0.08002097000000001,0.10534564,0.12520011,0.13143182999999997,0.14158665,0.14950767099999998,0.15915990499999996,0.175516622,0.18605324,0.18944718000000002,0.17996783,0.17212076999999998,0.16050152000000004,0.15187298999999996,0.14145613999999998,0.13893313999999996,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,regional biomass,gas processing,0.00213631,0.00460985,0.00567808,0.00806099,0.0106843,0.0136068,0.0169529,0.0206414,0.0244536,0.0285705,0.0329312,0.0370331,0.0380128,0.0390763,0.0374915,0.0347775,0.0313363,0.026004,0.0189547,0.0108322,0.00107516,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,regional biomass,hydrogen,0.0,0.0,0.0,0.0,0.00132483,0.00216812,0.00309177,0.00413684,0.00525605,0.00643223,0.0077031,0.00791811,0.00808294,0.00816534,0.00837565,0.00857301,0.00875111,0.00885816,0.00894642,0.00900233,0.00879182,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,regional biomass,refining,0.0,0.0,0.0,0.0,0.001046387,0.0024378900000000003,0.005788473999999999,0.014027582000000002,0.028604936000000004,0.043773082,0.0543212736,0.060787671099999996,0.06594912219,0.06821181670000001,0.07016689629999999,0.07197404669999999,0.075856045,0.08012810199999999,0.08250817309999998,0.08572042609999998,0.09040793639999997,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,delivered biomass,building,0.197244,0.251118,0.268741,0.373211,0.506711,0.613702,0.678647,0.702549,0.678783,0.638265,0.590143,0.536955,0.48344,0.432589,0.377522,0.327776,0.2821,0.247675,0.216237,0.188752,0.166348,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,delivered biomass,industry,0.94205929,1.1423207,1.2223073,1.4855040000000002,2.030389,2.5633661,3.0685284000000004,3.5158054,3.8334025,4.0845269,4.2782504999999995,4.3976975,4.4581096,4.4751534,4.3844802000000005,4.2785864,4.1766732,4.0301147,3.9008464,3.7698946,3.6505934,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,regional biomass,electricity,0.0,0.0461297,0.0493948,0.055782080000000005,0.14226782999999998,0.24264782,0.39905811999999996,0.5915601199999999,0.7985099000000001,1.0104128270000001,1.2232939299999996,1.427897344,1.642085705,1.8550674077000004,2.0347737,2.3081125,2.6319358999999998,2.8101396999999997,3.0897617,3.3157873,3.5294094,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,regional biomass,gas processing,0.0,0.0,0.0,1.90371E-5,6.89099E-5,1.70539E-4,3.62791E-4,6.99933E-4,0.00125676,0.00212013,0.00343033,0.00526517,0.00776939,0.0109965,0.0145831,0.019003,0.0244168,0.0289342,0.0332885,0.0387317,0.0459263,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,regional biomass,hydrogen,0.0,0.0,0.0,0.0,3.94046E-4,8.16176E-4,0.00141573,0.00220035,0.0031049,0.004163,0.00538186,0.0058723,0.00628534,0.00660298,0.00703011,0.00747017,0.00795789,0.00839509,0.00890964,0.00945005,0.00971027,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,regional biomass,refining,0.0,0.00938506,0.0156704,0.1060728,0.2473436,0.42474179999999995,0.6583306000000001,0.9697988499999999,1.38559158,1.8540794300000003,2.327152668,2.80532132,3.23054891,3.5728767599999998,3.864492319999999,4.10992666,4.29916324,4.79004676,5.09133897,5.45616804,5.905999419999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,delivered biomass,building,0.042697189999999996,0.0251997,0.0225625,0.02616474,0.029549199999999998,0.0328323,0.0350133,0.035668,0.0340441,0.0318897,0.02949699,0.02686792,0.02428903,0.021873950000000003,0.01922045,0.01698583,0.01530771,0.013197549999999999,0.01171384,0.010365570000000001,0.00927077,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,delivered biomass,industry,0.366359198,0.29419201,0.29268510000000003,0.37954864,0.47908057000000004,0.60200161,0.7170359,0.81319845,0.87738483,0.9227721,0.95319935,0.9679661300000001,0.97568834,0.9782057599999999,0.96042223,0.94447466,0.9388578,0.9023685800000001,0.8808532800000001,0.85953751,0.84359938,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,regional biomass,electricity,0.0,3.767E-4,0.0017163,0.003839911,0.009018294,0.017973754,0.031256445,0.047919319,0.06702643100000001,0.08595140199999998,0.10436701020000001,0.12164510279999999,0.1420154854,0.1621327809,0.18175845100000002,0.21097765300000001,0.24896780000000002,0.266637,0.29977486000000003,0.32644758,0.35006848999999995,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,regional biomass,gas processing,0.0,0.0,0.0,1.26307E-5,4.00706E-5,9.47968E-5,1.90719E-4,3.47706E-4,5.96135E-4,9.62678E-4,0.00149581,0.00221407,0.00317534,0.00440928,0.00573496,0.00732683,0.00925774,0.0107493,0.0121801,0.0139618,0.0162688,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,regional biomass,hydrogen,0.0,0.0,0.0,0.0,3.10664E-4,6.27038E-4,0.0010599,0.0015996,0.00219456,0.00285829,0.00359362,0.00382858,0.00402678,0.00417056,0.00438879,0.00462798,0.00492998,0.00508958,0.00533656,0.00558614,0.00568199,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,regional biomass,refining,0.0,0.0,0.0,0.0,0.02613778,0.06724951,0.11857643999999999,0.18504859,0.27220347999999994,0.36444422000000004,0.4443655,0.516295188,0.574134853,0.6112885029999999,0.6355762690000001,0.649629703,0.6558148690000001,0.6964276509999998,0.715506944,0.741487148,0.7786259470000003,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,delivered biomass,building,0.0041989,9.692E-4,7.974000000000001E-4,7.326733E-4,7.323947000000001E-4,7.189305E-4,7.041355E-4,6.750901E-4,6.090204E-4,5.486991E-4,4.95014E-4,4.443243E-4,3.997849E-4,3.600056E-4,3.1584610000000003E-4,2.8068230000000003E-4,2.579079E-4,2.229915E-4,2.00805E-4,1.8109031999999998E-4,1.6195474E-4,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,delivered biomass,industry,0.107288,0.108003,0.114363,0.105528,0.106264,0.108142,0.109412,0.108951,0.104283,0.0998045,0.0957642,0.091799,0.0883103,0.0850272,0.0805951,0.0768096,0.0740855,0.0700256,0.0671791,0.064672,0.0624899,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,regional biomass,electricity,0.095064,0.179537,0.178407,0.21099980000000002,0.19021580000000002,0.18402479,0.18391533000000002,0.17956550999999998,0.17174329999999996,0.16137400999999998,0.15074925,0.14039226,0.15624079999999999,0.15266779,0.14657815,0.14401897000000002,0.14138890999999998,0.13753522,0.14091061,0.13954823000000002,0.13657177,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,regional biomass,gas processing,0.00326067,0.0089386,0.00730833,0.00945464,0.0116723,0.0138267,0.0162223,0.0187927,0.0217158,0.02473,0.0279279,0.0307158,0.0296188,0.0299641,0.0289717,0.0281556,0.0256536,0.020467,0.0150925,0.0100289,0.00498924,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,regional biomass,hydrogen,0.0,0.0,0.0,0.0,2.21606E-4,4.95651E-4,8.28916E-4,0.00120643,0.00150076,0.00181355,0.00213891,0.00232084,0.00247515,0.00257569,0.00273454,0.00288461,0.00302665,0.00314557,0.00325246,0.00335952,0.00345387,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,regional biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0755836,0.2391169,0.4124392,0.5229291,0.5691983099999999,0.60050977,0.59318493,0.59811053,0.6142356010000001,0.64465798,0.6716150599999997,0.673290556,0.67685897,0.699931846,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,delivered biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,delivered biomass,industry,0.08162710000000001,0.058059799999999995,0.0428646,0.0494489,0.05508589999999999,0.0611511,0.0675176,0.07300670000000001,0.0760015,0.0784884,0.0807818,0.0823312,0.0835038,0.084578,0.0839596,0.0838808,0.0854964,0.0831081,0.0827348,0.0824491,0.0826025,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,regional biomass,electricity,0.0,0.0467995,0.0455436,0.02833349,0.03487102,0.044577900000000004,0.05800649000000001,0.07277351,0.0870145,0.10107854000000002,0.11612842999999999,0.13090199000000002,0.15998943599999998,0.185812836,0.21222897999999998,0.23771843,0.27115342,0.28824897,0.31653217999999994,0.3408409599999999,0.36310751999999996,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,regional biomass,gas processing,0.0,8.43266E-4,0.0025298,0.00345458,0.00474517,0.00636932,0.00845096,0.0110338,0.0142211,0.0179301,0.0225325,0.0271986,0.0315799,0.036088,0.0385937,0.0403206,0.0408804,0.0373643,0.0317394,0.0252041,0.0172412,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,regional biomass,hydrogen,0.0,0.0,0.0,0.0,3.14057E-4,7.33442E-4,0.00131134,0.00204241,0.00278177,0.00360437,0.00453623,0.00519754,0.0058349,0.0064227,0.00725206,0.00813362,0.00903412,0.0099015,0.0107908,0.0116982,0.0125633,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,regional biomass,refining,0.0,0.0,0.0,0.0,0.02052689,0.046370230000000005,0.08547519,0.15017676000000002,0.24747404000000003,0.35056211,0.4284613300000001,0.486090921,0.534591309,0.5620644890000002,0.585674282,0.605783477,0.6254149499999998,0.6656891509999999,0.688875173,0.7190159869999999,0.7634027020000002,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,delivered biomass,building,0.0152789,0.026622899999999998,0.0221021,0.0228645,0.0240379,0.024421349999999998,0.02456835,0.024153749999999998,0.022837120000000002,0.021645590000000003,0.02060751,0.019553570000000003,0.0185843,0.01762049,0.0162874,0.01504699,0.01389197,0.01265051,0.01154523,0.01051504,0.009808299999999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,delivered biomass,industry,0.0045627,0.0030558,0.0032232,0.00354793,0.00402932,0.0044849,0.00496324,0.00538127,0.00566132,0.00591116,0.00615696,0.00637845,0.00660913,0.00684006,0.00694376,0.00707446,0.00730792,0.00724075,0.00729279,0.00735761,0.00754285,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,regional biomass,electricity,0.0,0.0,2.512E-4,0.0080080188,0.0215157906,0.041948354699999996,0.07230640749999999,0.11102679010000001,0.15167411590000002,0.19292452840000002,0.23350117518,0.27324405716999994,0.33832497877,0.4088567856899999,0.4876155499999999,0.5806551400000002,0.71755279,0.7876411500000001,0.9070396399999999,1.01578596,1.1090694,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,regional biomass,gas processing,0.0,5.62714E-5,7.30856E-4,0.00101431,0.00144011,0.00199702,0.00275612,0.00376688,0.00510441,0.00683089,0.00913201,0.0120454,0.0157225,0.0203691,0.0250283,0.0305833,0.0373369,0.0419048,0.0462342,0.0518224,0.0591823,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,regional biomass,hydrogen,0.0,0.0,0.0,0.0,0.00124239,0.00265017,0.00453602,0.00687551,0.00922377,0.011847,0.0147637,0.0169023,0.0191067,0.0212633,0.0242618,0.0275608,0.031295,0.0346424,0.038327,0.0421682,0.0458319,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,regional biomass,refining,0.0,0.0,0.0,0.0,0.07677400000000001,0.2005289,0.3867116,0.6939749000000001,1.1573376000000002,1.67479059,2.10011006,2.4464892799999993,2.72781039,2.9200385269999996,3.0934058900000005,3.2413141500000004,3.3733297499999995,3.66452761,3.82612327,4.02913528,4.345380240000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,delivered biomass,building,0.004479,0.0073255,0.0079953,0.00835705,0.00932651,0.0100475,0.0106593,0.0109665,0.0108389,0.0106128,0.0102866,0.00982282,0.00929278,0.00870539,0.00790416,0.00713655,0.00639292,0.00571504,0.00508672,0.00452601,0.00404762,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,delivered biomass,industry,0.096696602,0.1420315,0.15542609999999998,0.17117065,0.21922843,0.27476307,0.34446875000000005,0.42425050000000003,0.50890257,0.6000333,0.69665566,0.7929685,0.88883687,0.98006054,1.04795297,1.1047195600000002,1.15131772,1.16977112,1.1801228400000001,1.1865370000000002,1.1947054,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,regional biomass,electricity,0.0,0.0,0.0,0.00813417,0.02264694,0.04255808,0.07380243,0.11816228,0.17577698,0.24927341999999997,0.33827734000000004,0.44011831999999995,0.5729014400000001,0.7228267899999998,0.88436597,1.0584372,1.2578066599999997,1.4237554799999999,1.61738911,1.8066029,1.9875677,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,regional biomass,gas processing,0.0,0.0,0.0,8.27791E-6,2.5415E-5,5.65505E-5,1.12326E-4,2.09354E-4,3.76391E-4,6.49383E-4,0.00108449,0.00174214,0.00272322,0.00412544,0.005869,0.00810402,0.0108842,0.0135851,0.0162336,0.0195083,0.0237735,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,regional biomass,hydrogen,0.0,0.0,0.0,0.0,9.39167E-5,1.91036E-4,3.45706E-4,5.76879E-4,9.00089E-4,0.00135052,0.00195708,0.00239219,0.00287993,0.00337989,0.00398648,0.0046613,0.00541076,0.00606533,0.00680277,0.00758607,0.00805455,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,regional biomass,refining,0.0,0.0,0.0,0.0,0.00919069,0.02205066,0.04222625,0.07482369,0.12393950999999999,0.18447321,0.24610500100000002,0.31013845599999995,0.3693655082999999,0.42900375030000004,0.4904180349999999,0.553710206,0.618545819,0.717442754,0.7925061870000001,0.8793048340000003,0.9828575410000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,delivered biomass,building,0.3046985,0.0730037,0.0764363,0.07209578999999999,0.06996893,0.06638599,0.06301865,0.05897371,0.0537857,0.04935401999999999,0.04580431000000001,0.04262239,0.039769570000000004,0.037218980000000006,0.034031120000000005,0.0311583,0.028235473,0.026163559000000003,0.023990955999999997,0.022097587000000002,0.020817707999999997,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,delivered biomass,district heat,0.161656,0.097368,0.105994,0.110351,0.112672,0.1224,0.134179,0.146454,0.156488,0.166365,0.175966,0.184117,0.192106,0.199037,0.204871,0.204746,0.207566,0.202192,0.199781,0.198408,0.196157,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,delivered biomass,industry,0.04345073,0.11909169,0.10820812,0.10667517,0.10570724999999999,0.10659310000000001,0.10644009,0.10510888,0.10053459999999999,0.09684307,0.09419749000000001,0.09206869000000001,0.09089594999999999,0.08996701,0.08755399,0.08531907,0.08329515,0.08078685000000001,0.07867791,0.07690411999999999,0.07542868,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,regional biomass,electricity,0.0,0.0,0.0,0.00590784,0.01329015,0.02554841,0.042231000000000005,0.05974768,0.0781288,0.09314071000000002,0.10555357,0.1172165,0.13831255000000003,0.15633193,0.18098974999999998,0.20301659000000002,0.22243342000000005,0.24211319999999997,0.2642244999999999,0.28092055,0.3004655200000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,regional biomass,gas processing,0.0,0.0,0.0,9.67881E-5,2.41733E-4,4.5808E-4,7.63153E-4,0.00117608,0.00173076,0.0024451,0.00337124,0.0045594,0.00605449,0.00789815,0.00968885,0.0117842,0.0140767,0.0157561,0.0172333,0.0191405,0.0218277,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,regional biomass,hydrogen,0.0,0.0,0.0,0.0,0.00127681,0.00216433,0.00319887,0.0043513,0.00543892,0.00660191,0.00789592,0.00828651,0.00869699,0.00903123,0.00954068,0.0100623,0.0105994,0.0111126,0.0116671,0.0122498,0.0125524,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,regional biomass,refining,0.0,0.0,0.0,0.0,0.0,0.01751324,0.061880779999999996,0.15634972,0.31419981,0.48047057000000004,0.59640857,0.6703717800000001,0.741986748,0.786067831,0.831124886,0.8704757379999999,0.9137848799999998,0.9850837299999999,1.02036912,1.071287316,1.145961665,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,delivered biomass,building,0.0310183,0.0378833,0.0401437,0.039704,0.0420906,0.0456854,0.0475015,0.0475861,0.0449062,0.0417888,0.0386569,0.0351516,0.0317601,0.0286173,0.0250557,0.021932,0.0191235,0.0168044,0.0149047,0.013199,0.0118231,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,delivered biomass,industry,0.17091411,0.22009988,0.2330342,0.206147705,0.21926062899999998,0.240164739,0.25722439999999996,0.26987854,0.27459599,0.27709356999999996,0.27877131,0.2784332,0.27762175,0.27663537000000005,0.27059321999999997,0.26428348,0.25678076,0.2504607,0.24417107000000002,0.23805496,0.23244879000000002,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,regional biomass,electricity,0.0,0.00380928,0.00406038,0.00209821,0.005735405000000001,0.012699924,0.021802352,0.032716803999999995,0.043819821,0.054401428,0.064287684,0.073317742,0.08147775700000001,0.08869126979999999,0.096398992,0.10101193200000001,0.109508982,0.12010699000000001,0.13050665,0.13856545,0.14781443,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,regional biomass,gas processing,0.0,0.0,0.0,4.16686E-5,5.82708E-5,8.39091E-5,1.17713E-4,1.63353E-4,2.24769E-4,3.05042E-4,4.16559E-4,5.45741E-4,7.1393E-4,9.16798E-4,0.00112369,0.00135199,0.00160406,0.00182403,0.00199855,0.00222055,0.00251163,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,regional biomass,hydrogen,0.0,0.0,0.0,0.0,6.48843E-5,1.16267E-4,1.79175E-4,2.5342E-4,3.30451E-4,4.16067E-4,5.1424E-4,5.484E-4,5.7993E-4,6.07293E-4,6.52091E-4,7.01387E-4,7.5322E-4,8.09614E-4,8.72514E-4,9.39369E-4,9.79383E-4,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,regional biomass,refining,0.0,0.0,0.0,0.0,0.0,0.00768113,0.02279238,0.04630447,0.08007372000000001,0.12256966,0.15955822000000003,0.187381751,0.21116281599999998,0.23080198909999994,0.25000261199999996,0.26926854699999997,0.2967742910000001,0.3245047900000001,0.34759443199999995,0.37437562399999996,0.4050288979999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,delivered biomass,building,0.0053866009999999995,0.0071071050999999994,0.0074292477,0.0059493061,0.0051337493,0.005511808,0.0058974419,0.006122042,0.0060371229,0.0059201154,0.0058102894,0.0056329695,0.0054371818,0.0052080366,0.00485282481,0.0045233689100000005,0.00423012166,0.00386358341,0.0035408570800000002,0.00322192157,0.00291697983,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,delivered biomass,industry,0.01894989,0.02406889,0.02091007,0.01842856,0.01745484,0.01930186,0.0212279,0.02280322,0.02349573,0.02403197,0.02452721,0.02482801,0.02503254,0.02514575,0.024716270000000002,0.024507730000000002,0.02514263,0.02393089,0.02364245,0.02328535,0.02291036,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,regional biomass,electricity,8.06798E-4,9.20296E-4,9.49597E-4,0.0034874249999999997,0.002749794,0.009834095000000001,0.022706307000000002,0.03861272500000001,0.054220610999999995,0.070989366,0.08549423519999999,0.10259313840000003,0.12481778340000002,0.14270345446,0.16300376799999997,0.183846788,0.211982255,0.22526562000000006,0.24105340999999997,0.24891498000000004,0.25914645000000003,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,regional biomass,gas processing,0.0,0.0,0.0,6.29729E-6,1.42228E-5,2.92799E-5,5.19095E-5,8.41082E-5,1.28272E-4,1.90544E-4,2.85658E-4,4.13303E-4,5.85665E-4,8.30983E-4,0.00108818,0.00139568,0.00176973,0.00208318,0.00238238,0.00275799,0.0032464,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,regional biomass,hydrogen,0.0,0.0,0.0,0.0,3.83506E-4,7.30123E-4,0.00117797,0.00170914,0.00223774,0.00283324,0.00352693,0.00380774,0.00407761,0.00429304,0.00461007,0.00499137,0.00552873,0.00574344,0.00611202,0.00645757,0.00658616,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,regional biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.01123152,0.03525141,0.06924572999999999,0.10589558,0.13224452,0.14940573999999998,0.16063598899999998,0.16770122299999998,0.17104603969999999,0.173237405,0.17740962900000004,0.18492386400000005,0.18868690800000001,0.19419030699999998,0.20310066599999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,delivered biomass,building,0.0254091,0.015069599999999999,0.0168277,0.017801965000000003,0.018261298000000002,0.018270918,0.018091395,0.017348767,0.015656183,0.014045937999999999,0.012563497,0.011097488,0.009779948,0.0086226747,0.0073873891,0.0063920037,0.0056912384000000005,0.0047884494,0.0041807695,0.0036491458999999998,0.0032426546,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,delivered biomass,industry,0.12105912,0.1723377,0.21725330000000004,0.2491866,0.26523660000000004,0.28972790000000004,0.30746249999999997,0.3173191,0.3171811,0.3154049,0.3129435,0.310647,0.3072333,0.30271919999999997,0.2929482,0.2834302,0.2769242,0.26346759999999997,0.2535934,0.2442919,0.23979560000000003,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,regional biomass,electricity,0.00468839,0.00786999,0.0234427,0.0310635,0.0413899,0.05539126999999999,0.07037504,0.0843035,0.09351386999999999,0.10173501,0.10922142999999998,0.11643631000000002,0.12734930400000002,0.137902417,0.14718209,0.15539941000000002,0.16652114000000004,0.16590946,0.16984210000000002,0.17045666999999998,0.17579707000000003,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,regional biomass,gas processing,0.00101195,0.0,5.05916E-4,8.16949E-4,0.00122911,0.00186709,0.00272372,0.00382074,0.00516691,0.00676644,0.0087022,0.0106733,0.0126079,0.0144912,0.015464,0.0160528,0.0162113,0.014809,0.0126584,0.01028,0.00756016,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,regional biomass,hydrogen,0.0,0.0,0.0,0.0,0.00189829,0.00347717,0.00543929,0.00769435,0.010013,0.0125441,0.0153325,0.0161846,0.0168882,0.0173597,0.0181372,0.0189159,0.0198086,0.0202602,0.0208717,0.0214684,0.0218208,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,regional biomass,refining,0.0,0.0,0.0,0.0,0.00889837,0.02524334,0.045654129999999994,0.07434465,0.11450897000000002,0.15899085999999998,0.19447680400000003,0.22204666700000003,0.2433428951,0.255755747,0.26509164999999996,0.27222589399999997,0.27901191599999997,0.298390498,0.309763177,0.32520724500000003,0.348798161,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,delivered biomass,building,0.00328211,0.0104303,0.0122853,0.01273646,0.01358227,0.01402279,0.014332149999999998,0.01432067,0.013804130000000001,0.01332796,0.01292261,0.012490620000000001,0.01209012,0.01168747,0.01103409,0.01040341,0.009788729999999999,0.00918496,0.00859966,0.008026,0.00752391,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,delivered biomass,industry,0.0354933001,0.076563997,0.08441169899999999,0.109301305,0.15056639200000002,0.19867517299999998,0.24969724,0.29862448999999996,0.34335082,0.38802779,0.43271522,0.48148931,0.53098809,0.57840112,0.6140061800000001,0.6453544999999999,0.6771396199999999,0.69030108,0.70205156,0.70854418,0.72015721,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,regional biomass,electricity,1.853E-4,8.37E-5,0.0,0.00250609,0.007583970000000001,0.015169710000000001,0.02632582,0.04033670999999999,0.056043931,0.074143242,0.094962835,0.120443225,0.156246076,0.19877166999999996,0.24551894800000001,0.300772272,0.3690127110000001,0.42627805999999996,0.5025607099999999,0.5795772899999999,0.6637121899999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,regional biomass,gas processing,1.68681E-4,0.0028109,0.00359787,0.00623,0.0105057,0.0164877,0.0245743,0.0350055,0.0485126,0.0651628,0.0853576,0.10875,0.134367,0.160424,0.178053,0.189273,0.191555,0.170887,0.13476,0.0874571,0.0245235,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,regional biomass,hydrogen,0.0,0.0,0.0,0.0,0.00108616,0.00231499,0.00417417,0.00671599,0.00994129,0.0140844,0.0193442,0.0226873,0.0262414,0.0296805,0.033741,0.0379806,0.0427033,0.0463906,0.0503518,0.0541495,0.0564603,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,regional biomass,refining,0.0,0.0,0.0,0.0,0.01094794,0.026955869999999996,0.04795755,0.07634206,0.11681428,0.16670833000000004,0.219819351,0.27789253599999997,0.3360148179,0.391539762,0.44670540999999997,0.4999748110000001,0.548616755,0.644879936,0.7141846339999999,0.7954942439999999,0.897192743,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,delivered biomass,building,0.0183765,0.015305199999999998,0.0284942,0.027064163999999998,0.025234926,0.023331022,0.021624123,0.019664883,0.016985754999999998,0.014629953000000001,0.012618877,0.010809538,0.009325142,0.008097029,0.006823077,0.005828254,0.005109038,0.004297744,0.0037436749999999997,0.003283405,0.002879483,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,delivered biomass,industry,0.01142769,0.07017287,0.09122543000000001,0.09497453,0.09772691,0.10095198,0.10339565,0.1038524,0.10044171,0.09631744,0.09194370999999998,0.08789247,0.08374301,0.07987322000000001,0.075000245,0.070644037,0.066952319,0.063194242,0.060208109999999995,0.057578471,0.055342242,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,regional biomass,electricity,0.0,4.18612E-4,0.00368369,0.00500604,0.00855488,0.010917095,0.015483571000000002,0.020519026999999995,0.025983099,0.030716206000000006,0.034363487000000005,0.036453566,0.039978809,0.042642091000000014,0.046458378999999994,0.054822901,0.063422706,0.06606337899999999,0.071474122,0.07527400499999999,0.07872290900000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,regional biomass,gas processing,0.00101198,0.00455376,0.011356,0.0141734,0.0183983,0.0226555,0.0271744,0.0318003,0.0365653,0.0410761,0.0453982,0.0487781,0.0496359,0.0484205,0.0446985,0.0410932,0.036344,0.0283966,0.0197999,0.011341,0.0022935,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,regional biomass,hydrogen,0.0,0.0,0.0,0.0,0.00250445,0.00415914,0.00607017,0.0081442,0.0100312,0.0119207,0.0138262,0.0137956,0.0136244,0.0133164,0.0132573,0.0132389,0.0132876,0.0132144,0.0132712,0.0133541,0.0130079,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,regional biomass,refining,0.0,0.0,0.0,0.0,0.00715006,0.01663469,0.03286428,0.06653135,0.12253284999999998,0.182254061,0.22156611700000003,0.24150969800000008,0.2541408592,0.2530284976,0.253033389,0.25470294199999993,0.264466371,0.270401466,0.26967806699999997,0.27103896699999996,0.27840125000000004,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,delivered biomass,building,0.272675769,0.2479129,0.28898999999999997,0.32523324600000003,0.35964059000000004,0.387193728,0.40909837000000004,0.41836737199999996,0.407281589,0.392950106,0.377311561,0.35887298500000003,0.34056801800000003,0.3221522500000001,0.29736405000000005,0.27441653000000005,0.25512342499999996,0.23093064500000002,0.211977802,0.19400882600000002,0.177909189,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,delivered biomass,industry,0.692809,0.8231203,0.9243520999999999,1.0252759,1.2242218,1.4240747999999999,1.6146461,1.7719729000000002,1.8722179,1.9499069,2.0112745,2.0523288,2.0859324999999997,2.1145873,2.1072348,2.1009023,2.1110884999999997,2.0688494,2.0509562,2.0342647,2.0262061,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,regional biomass,electricity,0.0106935,0.0647155,0.130226,0.08330001,0.12179817999999999,0.16352976,0.21848615000000002,0.27309996,0.32088199,0.36404513000000005,0.4055325760000001,0.44503671199999995,0.5168705229999999,0.584388233,0.6482104399999999,0.7086222299999998,0.7734119599999999,0.8088689799999998,0.8605255999999998,0.8978804,0.9335934000000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,regional biomass,gas processing,0.0,5.62716E-5,0.00359788,0.00523424,0.00770774,0.0108276,0.01478,0.0196329,0.0256824,0.0326799,0.0408548,0.0494643,0.0574883,0.0650965,0.0689764,0.0715308,0.0716239,0.0648358,0.0545311,0.0431098,0.029974,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,regional biomass,hydrogen,0.0,0.0,0.0,0.0,9.03537E-4,0.00171383,0.00280158,0.00415054,0.00565094,0.00737165,0.00934823,0.0100711,0.0107422,0.0113109,0.0121356,0.0130259,0.0140858,0.0148278,0.0157984,0.0168247,0.0173533,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,regional biomass,refining,0.0,0.0,0.0,0.0,0.02145921,0.051744,0.09611697,0.16716325999999998,0.27287948,0.39702928,0.51208101,0.61914063,0.7217596399999998,0.808919334,0.8952438610000001,0.983806378,1.0993496029999998,1.24468404,1.37122542,1.5220731800000002,1.70491259,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,delivered biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,delivered biomass,industry,0.0,0.0012139,0.002093,0.0021246,0.00220554,0.00226722,0.00232618,0.00236102,0.00233068,0.00229715,0.00226763,0.00223206,0.00219963,0.00218674,0.00214404,0.00211154,0.00209137,0.00206983,0.00206737,0.00207144,0.00207965,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,regional biomass,electricity,0.0,0.0473498,0.0525763,0.046294300000000004,0.042739,0.04445288,0.049421059999999996,0.053918520000000004,0.056052569999999996,0.057375419999999996,0.057848330999999996,0.057405212000000004,0.06905802899999999,0.07376225900000002,0.077568426,0.08565630800000001,0.087294979,0.08776952699999999,0.09126308799999996,0.09262755099999999,0.09344664800000002,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,regional biomass,gas processing,0.0,0.0,0.0,4.66173E-6,1.35594E-5,2.71513E-5,4.72642E-5,7.63634E-5,1.18055E-4,1.74546E-4,2.52555E-4,3.49584E-4,4.09988E-4,5.14541E-4,6.26873E-4,8.18509E-4,0.00101189,0.00115835,0.00130021,0.00148992,0.00175315,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,regional biomass,hydrogen,0.0,0.0,0.0,0.0,2.70766E-5,4.51351E-5,6.62361E-5,9.02588E-5,1.13389E-4,1.3836E-4,1.66306E-4,1.72151E-4,1.77536E-4,1.82996E-4,1.92888E-4,2.04466E-4,2.17845E-4,2.31837E-4,2.48762E-4,2.67106E-4,2.7646E-4,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,regional biomass,refining,0.0,0.0,0.0,0.0,0.0018677569999999998,0.005957524,0.014978998,0.038696853,0.080292058,0.124376687,0.15272323700000004,0.1681684401,0.1805744356,0.1853139528,0.19171451699999995,0.20115959700000002,0.21189671399999999,0.22345512799999998,0.22927092200000002,0.236701179,0.24905172899999997,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,delivered biomass,building,0.5666589000000001,0.5762032,0.5111528,0.48861922999999996,0.48102078000000004,0.4680658,0.46075424,0.45012404,0.42446842,0.40170817999999997,0.38443837,0.36813072999999996,0.35476602999999995,0.34301157,0.32182483999999995,0.3032483,0.28584516,0.26499174000000003,0.24632014,0.22984104000000002,0.21289450999999998,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,delivered biomass,industry,1.6154229599999999,1.60173148,1.47476959,1.4864784199999999,1.59118029,1.7104301300000002,1.8171101099999998,1.90713755,1.9425916,1.97398473,2.0107045599999998,2.04534029,2.0887184000000003,2.13564084,2.13772734,2.1410582400000004,2.1462510200000002,2.12608402,2.1119893100000002,2.09938325,2.08856476,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,regional biomass,electricity,0.393165,0.49654,0.513823,0.251352,0.2667047,0.313438,0.38738783,0.4667217,0.5631752999999999,0.6359754799999999,0.7081571200000001,0.77267523,0.8998838500000002,0.9840884500000001,1.08483872,1.217511,1.2888595700000003,1.3579216999999997,1.4425945,1.506274,1.5696286,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,regional biomass,gas processing,0.0411517,0.214527,0.299077,0.359067,0.448772,0.547712,0.65619,0.775548,0.911154,1.04934,1.20173,1.3412,1.42825,1.50809,1.50105,1.4657,1.35537,1.11989,0.814757,0.471606,0.059071,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,regional biomass,hydrogen,0.0,0.0,0.0,0.0,0.00219349,0.00514055,0.00894592,0.0135387,0.0177954,0.0225433,0.0277923,0.0315715,0.0352375,0.0384989,0.0426993,0.0469036,0.0511401,0.0551165,0.0588596,0.0625968,0.0659365,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,regional biomass,refining,0.0,0.0,0.0,0.0,0.03215908,0.07372408999999999,0.16467138,0.36991731000000005,0.72751627,1.10330812,1.3590894699999998,1.5211441500000003,1.6568936639999998,1.7301021699999999,1.811294069,1.91084341,2.08242293,2.22677233,2.34629127,2.49562859,2.7031819199999996,EJ, Electricity generation by technology (inc solar roofs) scenario,region,technology,1990,2005,2010,2015,2020,2025,2030,2035,2040,2045,2050,2055,2060,2065,2070,2075,2080,2085,2090,2095,2100,Units, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,CSP,0.0,0.0,0.0,2.12442E-5,5.05421E-5,9.63297E-5,1.648376E-4,2.625369E-4,3.996469E-4,5.930576999999999E-4,8.386407999999999E-4,0.0011823822,0.0016816793,0.00225514,0.0029197859999999997,0.0036421770000000003,0.004374516,0.005067637,0.005692942,0.006277792,0.006900816000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,CSP_storage,0.0,0.0,0.0,0.0,0.0,3.77003E-4,0.001595483,0.004263933,0.008500872999999999,0.015974343,0.026688943,0.042009439999999995,0.06438186,0.09048471,0.12163807,0.15635090000000001,0.19191809999999998,0.22666740000000002,0.2593146,0.2903236,0.32350330000000005,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,Gen_III,0.0,0.0,0.0,0.00156495,0.0022828370000000002,0.007363347,0.017489647,0.033917737,0.054698236000000004,0.085271336,0.123018636,0.169786836,0.229824136,0.29370653500000005,0.36361342500000005,0.437872174,0.51362978,0.5860175999999999,0.6568153999999999,0.7219917999999999,0.7905230999999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,PV,0.0,3.6E-6,7.19999E-6,0.00633550999,0.01042045999,0.01318448999,0.01630880999,0.02003634999,0.024611650000000002,0.024872750000000002,0.0286337,0.03647267,0.04823805,0.06180761,0.07758000999999999,0.09468039999999998,0.1124632,0.1293773,0.1449656,0.1600471,0.17666350000000003,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,PV_storage,0.0,0.0,0.0,1.08867E-4,2.63217E-4,5.90832E-4,0.001063464,0.001697671,0.002551171,0.003756394,0.005286494,0.007387919,0.010532937000000001,0.014308060000000001,0.018885930000000002,0.024096779999999998,0.029631650000000002,0.03515171,0.04044413,0.04562172,0.05129125,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,5.71537E-4,0.001482475,0.002864869,0.004816607,0.007984873,0.012188576,0.018237673,0.027128098,0.037866975,0.050962190000000004,0.066402476,0.083119748,0.100736046,0.11990271000000001,0.13975938999999998,0.16200345,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,biomass (conv),7.23596E-4,0.00113761,0.00113761,0.00433182,0.006846801999999999,0.009691535000000001,0.01374976,0.019183517,0.025472513,0.034662289,0.04585038799999999,0.060875598,0.08227462799999999,0.1068239577,0.13592173000000002,0.16750956,0.20159187,0.23771451,0.27717833,0.31821303,0.36407470000000003,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,coal (IGCC),0.0,0.0,0.0,0.0,0.0,3.16011E-4,7.69295E-4,0.0014215070000000002,0.0023301,0.00378985,0.005766625000000001,0.008715159,0.01327563,0.019072649,0.026571768000000003,0.036117264999999996,0.047305439000000005,0.06004345,0.07543833100000001,0.09297995199999999,0.11468077,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,coal (conv pul),0.00125085,0.00237117,0.00341518,0.0114956,0.015594360000000002,0.01932816,0.02364718,0.02888371,0.035172190000000006,0.04435583,0.055775069,0.071614104,0.09471948,0.122774968,0.15759072,0.19246271,0.23799994,0.29195157,0.35663383000000004,0.43184636,0.52759519,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,gas (CC),0.0,1.3375E-4,9.03293E-5,0.0028134477,0.0044121729,0.0064187505,0.0092545543,0.0134484943,0.0193403344,0.0288206503,0.041383766200000005,0.05911953960000001,0.0821307812,0.11163587995999999,0.14776593999999998,0.19153056999999998,0.24119562,0.29874936,0.3659847,0.4424374,0.5350048,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,gas (steam/CT),0.0,5.1348E-5,1.28255E-4,0.002237956,0.0033134489999999996,0.004465914,0.0057761967,0.007178892900000001,0.008551006000000002,0.0100778317,0.011471579999999999,0.0128998798,0.012658784599999997,0.01333448935,0.014150049999999999,0.015132879999999998,0.01629526,0.017945080000000002,0.02004714,0.02283515,0.026568199999999997,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,geothermal,0.00117361,0.0036108,0.0052956,0.01980392,0.02889406,0.03888861,0.04995509,0.0618758,0.06976238000000001,0.07361672,0.07361699000000001,0.07361503,0.07361698,0.07361703,0.07361695,0.07362113,0.07361691000000001,0.07361519999999999,0.07361704,0.07361421,0.07361706000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,hydro,0.0219597,0.0353919,0.0539216,0.0712437,0.0885658,0.105888,0.12321,0.140532,0.174952,0.209372,0.243792,0.278212,0.312632,0.347051,0.381471,0.415891,0.450311,0.484731,0.519151,0.553571,0.553571,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,hydrogen cogen,0.0,0.0,0.0,0.0,0.00112122,0.00208487,0.00349595,0.00555191,0.00862137,0.0132691,0.0199601,0.0261772,0.03513,0.0467376,0.0593679,0.07488,0.0915302,0.109357,0.12959,0.14967,0.152644,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,refined liquids (CC),0.0,0.0,0.0,0.0180053,0.0283106,0.0445562,0.0678734,0.1005019,0.14165091,0.20236548000000001,0.27226014,0.36259335000000004,0.47186414,0.5910002,0.7211652,0.8569228,0.9821259,1.1021697,1.210315,1.2936998,1.372895,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,refined liquids (steam/CT),0.00813916,0.0265001,0.0368684,0.0730136,0.08418510000000001,0.09424219999999998,0.1011273,0.10528390000000001,0.10724734,0.10910699,0.11038636000000002,0.11230082999999999,0.08276396,0.07366597,0.06515064999999999,0.06050091000000001,0.057393200000000005,0.05612775,0.05555630000000001,0.056082900000000005,0.05751176999999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,rooftop_pv,0.0,0.0,0.0,0.00179196,0.00493324,0.0095729,0.0163216,0.0263791,0.0407343,0.0608504,0.0902482,0.129253,0.179281,0.238864,0.30462,0.37553,0.449812,0.526188,0.604353,0.682701,0.762376,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,wind,0.0,1.11E-5,2.327E-4,0.01008672,0.0197199,0.0344052,0.0563577,0.0877283,0.1293482,0.18367438000000003,0.25518450000000004,0.3516952,0.4868927,0.6378351,0.8092425000000001,0.9905783000000001,1.171732,1.3386430000000002,1.4856930000000002,1.6230520000000002,1.7706270000000002,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,wind_storage,0.0,0.0,0.0,5.64504E-5,1.132879E-4,2.0318069999999998E-4,3.4227169999999997E-4,5.497907E-4,8.373217E-4,0.0012375243,0.0017846718,0.002559177,0.003693436,0.005025257,0.006622346,0.008414673,0.010283848,0.01212125,0.013867210000000001,0.015550030000000001,0.01739441,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,CSP,0.0,0.0,0.0,9.62946E-6,3.125306E-5,7.031366E-5,1.3409145999999998E-4,2.2480556E-4,3.3715356E-4,4.5895910000000003E-4,5.750855E-4,6.913379000000001E-4,8.815931E-4,0.001024644,0.001144283,0.001250284,0.001353412,0.001439186,0.001444914,0.001465201,0.001482744,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,CSP_storage,0.0,0.0,0.0,0.0,0.0,1.29885E-4,5.2333E-4,0.0013181830000000001,0.002373263,0.003738453,0.0053707730000000006,0.007267427999999999,0.011988353,0.01778753,0.02460573,0.03196149,0.0396274,0.04719661,0.05259784,0.05643371,0.05896493,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,Gen_III,0.0,0.0,0.0,8.72257E-4,0.001524858,0.0057930970000000005,0.013609776,0.024652356,0.036120734,0.048090534000000004,0.059764121999999996,0.0713786,0.09155989900000001,0.11152826699999999,0.131507544,0.150327785,0.16876787,0.18269766,0.1935307,0.20000869999999998,0.20518990000000004,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,PV,0.0,0.0,0.0,0.00351201,0.00934857,0.017502089999999998,0.028556289999999998,0.04201979,0.05670099,0.06863608,0.07698412,0.0826833,0.0857906,0.08195949000000001,0.07550326,0.06802297,0.06177057,0.055735299999999995,0.05000117,0.04865653,0.04859554999999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,PV_storage,0.0,0.0,0.0,5.85342E-5,1.551833E-4,2.907093E-4,4.739533E-4,7.007833E-4,9.559833E-4,0.0011856781,0.001397155,0.001638162,0.0023966260000000002,0.0033831959999999998,0.004578846,0.0059102270000000005,0.007343621,0.008782628,0.009841370000000002,0.010636350000000001,0.011208000000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,4.12526E-4,0.001000499,0.0017827910000000001,0.00265907,0.0036726379999999998,0.004750170999999999,0.006044589000000001,0.008857779,0.011921095,0.015378464000000001,0.019088496,0.022934997,0.026524845999999998,0.030318175,0.033843996,0.037221961000000005,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,biomass (conv),0.0,0.0,0.0,0.00118944,0.002855139,0.004572151,0.007005482,0.009731485,0.011886375000000001,0.014131278,0.016372791,0.019053417,0.025616813,0.032017508,0.039120703,0.046086288,0.05268043000000001,0.05887127,0.06559243000000001,0.07175258,0.07782097,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,coal (IGCC),0.0,0.0,0.0,0.0,0.0,9.16363E-4,0.002043194,0.00335708,0.004752905,0.006229004000000001,0.007693749000000001,0.009322594,0.012493646,0.015987050000000003,0.019850195,0.024043404999999997,0.028495109999999997,0.03220473,0.03631685,0.04035549,0.04450238,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,coal (conv pul),0.00796861,0.0473972,0.0399414,0.055137900000000004,0.067637,0.0765627,0.0845766,0.09153370000000001,0.09694470000000001,0.10176288,0.10616223,0.11162073000000002,0.12531261999999999,0.1405779,0.15561801,0.15637342999999998,0.16195347,0.17101987999999999,0.18245625000000001,0.19493717,0.20975095,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,gas (CC),0.0753821,0.198188,0.0832847,0.1540682,0.2261385,0.3111067,0.4210627,0.5565374,0.6979500999999999,0.8396022999999999,0.9668083000000001,1.0908033,1.23281789,1.3657482600000002,1.471946,1.546432,1.584348,1.605511,1.6283819999999998,1.652471,1.6690600000000002,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,gas (steam/CT),0.0604314,0.28426,0.552887,0.650478,0.731851,0.781126,0.8009954,0.7851095,0.736691,0.6771109999999999,0.6174388,0.5657569,0.4212369,0.3176548,0.22389250000000002,0.16675749999999998,0.12508539999999999,0.09948905,0.08499359000000001,0.07786298000000001,0.07425401000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,geothermal,0.0,0.0,0.0,0.00727223,0.01613014,0.02570807,0.03582854,0.04571215000000001,0.05427879,0.05621046,0.056642790000000005,0.0572591,0.06385967000000001,0.06963575,0.07266696,0.07266463,0.07266625,0.0726657,0.0726676,0.072667,0.07266700000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,hydro,0.0408238,0.0516204,0.0603183,0.0632959,0.0662735,0.0692511,0.0722286,0.0752062,0.0811228,0.0870394,0.092956,0.0988726,0.104789,0.110706,0.116622,0.122539,0.128456,0.134372,0.140289,0.146205,0.146205,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,hydrogen cogen,0.0,0.0,0.0,0.0,2.50784E-4,4.30498E-4,6.46354E-4,8.94076E-4,0.00117204,0.00154908,0.00201079,0.00233392,0.00280958,0.00335351,0.00385856,0.00444238,0.00498427,0.00549645,0.00612568,0.0067545,0.00682261,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,refined liquids (CC),0.0,0.0,0.0,0.0313199,0.0518053,0.0793085,0.1111852,0.1438766,0.1706088,0.19694820000000002,0.21964569999999997,0.248929,0.3139559,0.3538191,0.38900680000000004,0.41171420000000003,0.42047599999999996,0.4209622,0.41940020000000006,0.4065858,0.39992489999999997,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,refined liquids (steam/CT),0.11773,0.126766,0.200053,0.22075899999999998,0.2252819,0.2306315,0.2204803,0.2028993,0.1839791,0.16856046,0.15694798999999998,0.15033048999999998,0.11179649999999998,0.08558083,0.059196929999999995,0.04432793,0.033611430000000005,0.027019349999999998,0.02320009,0.020978100000000003,0.01978243,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,rooftop_pv,0.0,0.0,0.0,0.00123814,0.00310578,0.00567578,0.00877974,0.0126466,0.0172703,0.0233641,0.0316584,0.0428642,0.0583611,0.0754506,0.0936484,0.111193,0.126677,0.138669,0.149269,0.158685,0.172662,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,wind,0.0,0.0028801,0.0082198,0.017658029999999998,0.03016803,0.04645013,0.06778163,0.09354113,0.11322723,0.1340084,0.1518232,0.16928240000000003,0.2125922,0.2567901,0.30405879999999996,0.3528302,0.4038337999999999,0.45138399999999995,0.47459609999999997,0.4912908,0.5019035000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,wind_storage,0.0,0.0,0.0,6.77598E-5,1.6227089999999998E-4,2.9199589999999995E-4,4.7029889999999994E-4,6.969219E-4,9.507528999999999E-4,0.0011656771,0.0013636710000000001,0.0015674950000000001,0.002049935,0.002561888,0.003130578,0.0037361020000000003,0.004379212,0.005004421,0.005392468,0.005694762,0.005916341,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,CSP,0.0,0.0,0.0,1.40677E-6,4.64777E-6,1.005323E-5,1.984228E-5,3.6406079999999996E-5,6.452157999999999E-5,1.1109171E-4,1.8499960999999998E-4,3.0305714999999997E-4,4.928671E-4,7.472713E-4,0.0010628938,0.0014412689000000002,0.001833318,0.002224265,0.0025975340000000003,0.0029648429999999996,0.003223907,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,CSP_storage,0.0,0.0,0.0,0.0,0.0,1.797E-5,7.82925E-5,2.226695E-4,4.820485E-4,9.550045E-4,0.0017662425,0.0030375825,0.00506476,0.007865733,0.011739583999999999,0.017410007999999998,0.0248082,0.033757590000000004,0.043950789999999997,0.055496540000000004,0.06593591,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,Gen_III,0.0,0.0,0.0,1.19425E-4,2.1113000000000002E-4,7.669799E-4,0.0019002499,0.0038105199,0.0065256998,0.0106248878,0.0166262777,0.0247796866,0.0361185465,0.0498801954,0.06616495419999999,0.0860385991,0.10840353400000001,0.13250051999999998,0.15831939,0.18597136000000003,0.21101235999999995,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,PV,0.0,0.0,0.0,4.56535E-4,0.0012349919999999999,0.0022393219999999998,0.003751272,0.005953762,0.009297251999999999,0.014191187000000001,0.02156749,0.03326266,0.05175901,0.07570592,0.10220773000000001,0.12774256,0.1483016,0.1637282,0.17344130000000002,0.1793316,0.1785792,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,PV_storage,0.0,0.0,0.0,7.60868E-6,2.049728E-5,3.718108E-5,6.217938E-5,9.883968E-5,1.5466268E-4,2.3590249999999997E-4,3.592709E-4,5.557401E-4,8.727498E-4,0.0013183455,0.0019402285000000002,0.00286655,0.004098423,0.00560895,0.007345682,0.009346265999999999,0.011189079999999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,5.37229E-5,1.429823E-4,2.867173E-4,5.169966E-4,9.048579000000001E-4,0.001522833,0.0025047855,0.0040806456,0.0062562754000000005,0.0091299004,0.0129918724,0.0176270088,0.022991493,0.02913983,0.036147035,0.042947268999999996,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,biomass (conv),0.0,0.0,0.0,1.62852E-4,4.17714E-4,6.68163E-4,0.001060072,0.001610079,0.002320523,0.003394688,0.0049751887,0.0073137414000000005,0.0109563405,0.015705632799999997,0.0217862685,0.029815157000000002,0.039155481000000006,0.049732453,0.061896916999999996,0.075834976,0.08918082899999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.00170874,0.00398451,0.0070520999999999995,0.011353970000000001,0.0176697,0.02665181,0.03959981,0.05863938,0.08277759,0.11221629,0.14911054999999998,0.19093211999999998,0.23510408000000002,0.28339432,0.33511728,0.3815607100000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,coal (conv pul),0.0215065,0.0200021,0.0180461,0.0540384,0.0825832,0.1027966,0.12440029999999999,0.1488118,0.17835442999999998,0.21768737,0.26930053,0.33859199,0.43481536,0.55146955,0.6877944,0.8174466,0.9742155,1.1563643,1.3542971000000001,1.5713124000000003,1.7695144,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,gas (CC),0.0,8.11349E-4,0.0,0.00335112,0.007660439999999999,0.01330575,0.0224132,0.03673995,0.05813029,0.08980873,0.13317933,0.19084123,0.26497383,0.3517576,0.44919545000000005,0.562176,0.6826647,0.8094806,0.9396168,1.0730575,1.1794772999999998,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,gas (steam/CT),0.0,0.00338992,0.00619505,0.02003785,0.030336369999999998,0.03791126,0.044848860000000004,0.05069935999999999,0.05540078999999999,0.05937189000000001,0.062492826,0.064947246,0.056138062,0.050612818999999996,0.04758958,0.0458447,0.045206489999999995,0.04585444,0.04732083,0.04978001,0.05208005999999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,geothermal,0.0,0.0,0.0,0.00116079,0.00287793,0.0049091199999999995,0.00768434,0.01134978,0.01613743,0.02150478,0.02817174,0.0366274,0.04685973,0.057052950000000005,0.06646986,0.07071998,0.07071914,0.07071834,0.07072035,0.07072006,0.07071999000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,hydro,0.0549063,0.1228,0.143803,0.152226,0.160649,0.169072,0.177496,0.185919,0.202656,0.219393,0.236131,0.252868,0.269606,0.286343,0.30308,0.319818,0.336555,0.353293,0.37003,0.386767,0.386767,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,hydrogen cogen,0.0,0.0,0.0,0.0,3.18341E-4,5.59735E-4,8.38814E-4,0.00118069,0.00165606,0.00238552,0.00342737,0.00438764,0.00576526,0.00753996,0.00951319,0.0119634,0.0145676,0.0172093,0.0201845,0.0229154,0.0241953,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,refined liquids (CC),0.0,0.0,0.0,0.0140958,0.025723799999999998,0.03918002,0.057590289999999995,0.08189483,0.11411371,0.15928659,0.21690589,0.29140467000000003,0.38488206,0.48118201,0.581174,0.6867832,0.77162,0.8328006,0.8627326,0.8436218999999999,0.8364254999999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,refined liquids (steam/CT),0.00267763,0.00666428,0.00933526,0.03528483,0.04915947,0.05924714,0.0660765,0.07045517,0.07373864100000001,0.07690683499999999,0.07989219700000001,0.083275558,0.067949273,0.059762236,0.05497245,0.051819939999999995,0.04954389000000001,0.04768077999999999,0.0456679,0.04296243000000001,0.04104204,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,rooftop_pv,0.0,0.0,0.0,3.93262E-4,0.00106824,0.0020671,0.0032721,0.00486323,0.00706714,0.0102637,0.0150625,0.0220257,0.0319411,0.04455,0.0599289,0.0774809,0.095912,0.113049,0.12935,0.143926,0.167769,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,wind,0.0,2.4E-6,3.54999E-5,5.183409E-4,0.0012891409000000001,0.0022992809,0.0038609809000000003,0.0062117509,0.009748651,0.01496291,0.02283922,0.03497898,0.053802680000000006,0.07866931,0.10978101000000001,0.14945551,0.19489420000000002,0.24383440000000003,0.2943403,0.34786600000000006,0.39148740000000004,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,wind_storage,0.0,0.0,0.0,2.56799E-6,6.73578E-6,1.2303060000000001E-5,2.1047410000000002E-5,3.453851E-5,5.547481000000001E-5,8.694752E-5,1.3609733E-4,2.1412995000000002E-4,3.3870960000000007E-4,5.090225E-4,7.314972E-4,0.0010263465,0.0013759309,0.0017696709999999998,0.002194991,0.002659955,0.003061107,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,CSP,0.0,0.0,0.0,2.2326E-6,9.16439E-6,2.802169E-5,6.613429E-5,1.3363509E-4,2.3786009E-4,3.9519849000000003E-4,6.157337E-4,9.061084E-4,0.0012516778,0.001640791,0.002104432,0.002665157,0.003306603,0.004013091,0.0047936789999999995,0.005663915,0.006464499,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,CSP_storage,0.0,0.0,0.0,0.0,0.0,6.26952E-5,2.9766419999999996E-4,8.873651999999999E-4,0.0018578141999999998,0.0034904042,0.0062357242,0.010927939000000001,0.01953274,0.033078839,0.05258449,0.07872570000000001,0.11095908,0.14825227,0.1887036,0.2318016,0.2715384,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,Gen_III,0.0,0.0,0.0,1.603E-4,3.2699499999999995E-4,0.001987955,0.005794815,0.012560255,0.021351555,0.033402735,0.049722304999999994,0.070888805,0.099276774,0.13499814300000001,0.17896562300000002,0.232137004,0.29321278,0.35962148,0.43029553000000004,0.5053094499999999,0.5783513,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,PV,0.0,1.44E-5,1.08E-5,6.1423E-4,0.00200085,0.004918530000000001,0.009818300000000002,0.017273330000000003,0.027475629999999997,0.0410865,0.05693918,0.07178380000000001,0.08187472999999999,0.088523,0.0940034,0.0989038,0.1044786,0.11307619999999999,0.1282111,0.1485277,0.16833540000000002,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,PV_storage,0.0,0.0,0.0,1.00569E-5,3.30156E-5,8.14942E-5,1.625924E-4,2.873024E-4,4.612514E-4,7.066265000000001E-4,0.0010677038,0.0016739291999999998,0.0027990309999999996,0.004601971,0.007224232000000001,0.01079122,0.015262164,0.020503069999999998,0.02624577,0.03248529,0.03836293,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,3.53645E-4,9.02166E-4,0.001718881,0.00279035,0.004316051,0.006454783,0.009587259,0.014288906,0.020855226,0.029664761999999997,0.041036077000000004,0.054759019,0.070438643,0.088131037,0.10809005000000001,0.12848184,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,biomass (conv),1.692E-4,6.11997E-4,8.28003E-4,0.001312679,0.002630346,0.004266618,0.006593483000000001,0.00959875,0.0126486133,0.016600150299999998,0.0218350297,0.0291552483,0.03999066717,0.05447565245,0.07344329,0.097023049,0.12478853000000001,0.15605297,0.19160513,0.23227620000000002,0.27370683,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,coal (IGCC),0.0,0.0,0.0,0.0,0.0,2.40206E-4,6.15135E-4,0.001173659,0.001928642,0.002996342,0.004495909,0.006713595000000001,0.010115276999999999,0.014982559999999999,0.021744946,0.030968055,0.042803276,0.05718571,0.074821484,0.096144063,0.11963212000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,coal (conv pul),0.00130874,0.00250043,0.003599,0.005529259999999999,0.00779121,0.01056581,0.014071160000000001,0.018482150000000003,0.02361419,0.030196499999999998,0.038749571999999996,0.050573487,0.06774147200000001,0.091265764,0.12262173000000001,0.16217008,0.21241548999999998,0.27427254,0.34920787999999997,0.44160552,0.54589091,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,gas (CC),0.00907155,0.0219692,8.15672E-4,0.008430679,0.021382773,0.048790027,0.09782165500000001,0.178286652,0.287003334,0.43200948499999997,0.614338242,0.8443733339999999,1.1331489708000002,1.4796370619,1.8732772999999998,2.3132844,2.781528,3.278638,3.78943,4.3173200000000005,4.780148,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,gas (steam/CT),0.0175865,0.0425327,0.0790683,0.10230909999999999,0.1285307,0.1602554,0.19161419999999998,0.2176086,0.2330819,0.24252210000000002,0.24794449999999998,0.2523655,0.23659382999999998,0.2223813,0.2041665,0.19049510000000003,0.1811437,0.18007040000000002,0.1845257,0.19463990000000003,0.20594549999999998,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,geothermal,0.0,0.0,0.0,0.00157438,0.00474222,0.01075555,0.01962879,0.03137598,0.044854530000000004,0.05938513,0.07503294,0.09173794,0.1106684,0.1300984,0.144519,0.1445189,0.1445186,0.144516,0.14451979999999998,0.1445207,0.1445189,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,hydro,0.0814254,0.10931,0.113792,0.139788,0.165784,0.191781,0.217777,0.243773,0.295429,0.347085,0.398742,0.450398,0.502054,0.55371,0.605366,0.657022,0.708678,0.760334,0.81199,0.863646,0.863646,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,hydrogen cogen,0.0,0.0,0.0,0.0,9.24471E-4,0.00170992,0.00282984,0.00442609,0.00681554,0.0105622,0.0160989,0.0218689,0.0304999,0.0418792,0.0552285,0.0718418,0.0900506,0.109276,0.132126,0.155423,0.166509,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,refined liquids (CC),0.0,0.0,0.0,0.0108229,0.02432012,0.05066264,0.08882641,0.14046788999999998,0.1980533,0.27160916,0.36137178,0.47989273000000005,0.63486272,0.8108329,1.0050153000000002,1.2042442,1.3820375,1.5325844,1.644107,1.6904119999999996,1.748557,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,refined liquids (steam/CT),0.0179558,0.0344399,0.0455212,0.0599224,0.07222579999999999,0.08829290000000001,0.0995085,0.1064195,0.10975209999999999,0.11292445000000001,0.11648565000000001,0.12195997,0.11442217,0.10888504,0.09994938999999999,0.09291622999999999,0.0873481,0.08436163999999999,0.08264284999999999,0.08102242999999999,0.08080383999999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,rooftop_pv,0.0,0.0,0.0,0.00113548,0.00282465,0.00515564,0.00830246,0.0128004,0.0193221,0.0292384,0.0448173,0.0690391,0.105542,0.153645,0.215139,0.287431,0.366407,0.444871,0.526782,0.612057,0.725961,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,wind,0.0,1.17E-5,1.769E-4,0.00137424,0.00396551,0.009469439999999999,0.01887475,0.03353955,0.05342355,0.08084151,0.11788614,0.16920591,0.2436476,0.34335780000000005,0.4724999,0.6337326,0.8218827,1.026151,1.236943,1.454816,1.645716,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,wind_storage,0.0,0.0,0.0,6.55481E-6,2.119661E-5,5.357061E-5,1.1097301E-4,2.0460790999999998E-4,3.3770690999999995E-4,5.279321E-4,7.985833E-4,0.0011934213,0.0017932129,0.002638862,0.003798923,0.0053274030000000005,0.00720147,0.009361748,0.011732444,0.01431026,0.01673691,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,CSP,0.0,0.0,0.0,8.33939E-6,2.223199E-5,4.700749E-5,8.980869E-5,1.4974819E-4,2.3224249E-4,3.219772E-4,4.253846E-4,5.253761000000001E-4,6.986339E-4,8.051884E-4,8.923870999999999E-4,9.79836E-4,0.0010612739999999999,0.0011416329999999998,0.001151777,0.001199893,0.001251459,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,CSP_storage,0.0,0.0,0.0,0.0,0.0,8.23664E-5,3.461524E-4,8.689133999999999E-4,0.0016319764,0.0026068234,0.0038721034,0.005177986999999999,0.008382511,0.01208501,0.016933326999999998,0.02278849,0.02923378,0.03608043,0.0418715,0.046588199999999996,0.05034321,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,Gen_III,0.0,0.0,0.0,0.0055657,0.00867085,0.012110159999999998,0.01647656,0.02142322,0.02721705,0.03340669,0.04028992,0.04664146,0.05830418,0.06879877999999999,0.08018262,0.08684659,0.09629528,0.10522751999999999,0.11386077,0.12078857999999999,0.12684108,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,Gen_II_LWR,0.0262116,0.0247428,0.0258156,0.0238573,0.0227383,0.0211061,0.0188727,0.0160691,0.0129078,0.00974639,0.00694284,0.00470939,0.00307727,0.0019583,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,PV,0.0,0.0,0.0,0.00100765,0.00225005,0.00396394,0.00642503,0.00939104,0.01303532,0.016071460000000003,0.01934855,0.02217197,0.025504930000000002,0.025811189999999998,0.025004409999999998,0.02389599,0.022487640000000003,0.02112205,0.018831399999999998,0.01890174,0.01952676,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,PV_storage,0.0,0.0,0.0,1.67929E-5,3.73622E-5,6.58333E-5,1.0653299999999999E-4,1.559539E-4,2.1709719999999999E-4,2.684872E-4,3.270415E-4,3.840204E-4,5.548827E-4,7.630368E-4,0.0010444505,0.0013964766,0.001795775,0.002226482,0.002598461,0.002911305,0.003171914,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,5.5247E-4,0.001226219,0.001993052,0.002843745,0.003729877,0.0047295290000000005,0.005716681,0.007917009,0.00991163,0.012287174,0.014933954,0.017694406000000003,0.020087804000000004,0.022572750000000003,0.024681636000000003,0.026754315,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,biomass (conv),3.85201E-4,0.0046368,0.007902,0.01019953,0.01209868,0.01363464,0.01569516,0.01725335,0.01794504,0.01878207,0.020122284,0.021431745,0.026071798,0.029659470999999996,0.034044599999999994,0.036954009999999995,0.040471520000000004,0.04397574,0.04781257,0.05090847,0.05423242,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,coal (IGCC),0.0,0.0,0.0,0.0,0.0,3.30162E-4,7.809780000000001E-4,0.001322387,0.001973234,0.002680285,0.003483464,0.004315234,0.006033913,0.00776357,0.009846849,0.012322852,0.015118743,0.017805821,0.020873621,0.023841879,0.027021025000000004,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,coal (conv pul),0.0016128,0.00567,0.00806399,0.01591662,0.02050784,0.02412259,0.02801261,0.03179055,0.03560722,0.03927155,0.043187979999999994,0.04704372,0.055324522,0.063390981,0.07252607,0.07526464,0.08276415000000001,0.09202102999999999,0.10281712000000001,0.11375293,0.12630473,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,gas (CC),0.0177817,0.143583,0.0614012,0.1193438,0.1571267,0.19779680000000002,0.2509253,0.313645,0.38537819999999995,0.45754059999999996,0.5318963,0.5981977,0.66195125,0.72959476,0.7954355,0.8554205000000001,0.9050708,0.9427037999999999,0.9841337000000001,1.0112593,1.0441429999999998,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,gas (steam/CT),0.053761,0.0556123,0.163188,0.2196571,0.2472753,0.267195,0.2812138,0.2828005,0.2742877,0.2590979,0.24244330000000003,0.22530695999999997,0.16514963000000005,0.13073256000000003,0.10047157,0.07937469999999999,0.06395504,0.05350168,0.04785374,0.044394539999999996,0.04344132,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,geothermal,0.0,0.0,0.0,0.00421802,0.00868814,0.01446107,0.02210125,0.03066132,0.03992457,0.045249620000000004,0.05094543,0.055124559999999996,0.06557462,0.07346505,0.08193208,0.09098178000000001,0.09941491,0.10722530000000002,0.1091714,0.1113671,0.1129684,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,hydro,0.0643536,0.122414,0.120913,0.123868,0.126823,0.129777,0.132732,0.135687,0.140903,0.14612,0.151337,0.156554,0.16177,0.166987,0.172204,0.177421,0.182637,0.187854,0.193071,0.198288,0.198288,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,hydrogen cogen,0.0,0.0,0.0,0.0,1.27587E-4,2.10081E-4,3.10152E-4,4.21953E-4,5.54959E-4,7.25071E-4,9.33749E-4,0.00105093,0.00122733,0.00142367,0.00161718,0.0018473,0.00207745,0.00231021,0.0025957,0.00287722,0.002942,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,refined liquids (CC),0.0,0.0,0.0,0.0139803,0.0197241,0.02986843,0.04390074,0.05836462,0.07381398,0.08746622000000001,0.10239099,0.11513503,0.15090716999999998,0.1680912,0.18966586,0.2073072,0.2187211,0.22448160000000003,0.22905580000000003,0.22236840000000002,0.22280899999999998,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,refined liquids (steam/CT),0.0178164,0.0206892,0.0597456,0.0734711,0.07620260000000001,0.0792852,0.07812692,0.07378285999999999,0.06908931,0.06469797999999999,0.061403769999999996,0.05926992,0.04369565999999999,0.034986489999999995,0.02650071,0.021032330000000002,0.017078450000000002,0.0143633,0.012861779999999998,0.011754259999999997,0.011373443000000002,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,rooftop_pv,0.0,0.0,0.0,1.36609E-4,3.473E-4,6.40362E-4,0.00101719,0.00149318,0.00212246,0.00291541,0.00402,0.00539336,0.00726599,0.00928887,0.0116125,0.0138795,0.015941,0.0175717,0.0188214,0.0196388,0.021073,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,wind,0.0,2.7E-4,9.0E-5,0.00397049,0.0087086,0.01577397,0.026760269999999996,0.041125869999999995,0.059198669999999995,0.07608258,0.09564247,0.1141576,0.1563533,0.1956197,0.2412189,0.2947461,0.3527307,0.413167,0.4558599,0.49456799999999995,0.5270021,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,wind_storage,0.0,0.0,0.0,2.02534E-5,4.51881E-5,8.294220000000001E-5,1.42368E-4,2.216153E-4,3.2322329999999997E-4,4.2003490000000005E-4,5.344802E-4,6.451731E-4,8.983833000000001E-4,0.001138662,0.0014249759999999999,0.001766544,0.002140628,0.002538438,0.002840271,0.003114992,0.0033546419999999997,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,CSP,0.0,3.60003E-6,1.44E-5,1.880598E-5,2.7317300000000004E-5,4.2829000000000006E-5,7.50941E-5,1.2442680000000002E-4,1.933401E-4,2.7149022E-4,3.4199590000000003E-4,3.994982E-4,4.422807E-4,4.594076E-4,4.643001E-4,4.88594E-4,4.92387E-4,4.951648E-4,5.034681E-4,5.217568000000001E-4,5.35328E-4,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,CSP_storage,0.0,0.0,0.0,0.0,0.0,5.15858E-5,2.507268E-4,6.847738E-4,0.0014712798,0.0023779438,0.0035217538,0.0048282080000000005,0.006295327000000001,0.007390870000000001,0.008628164,0.01083751,0.0123904,0.01368788,0.01511131,0.01685569,0.01889356,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,Gen_III,0.0,0.0,0.0,0.0,0.0,3.91815E-4,0.0013840710000000002,0.0029410670000000003,0.006740696,0.011234084,0.016297823000000003,0.020881091,0.025384097999999997,0.028991944,0.03330941,0.038876086,0.043183052,0.046674560000000004,0.04988207,0.052538589999999996,0.05374239,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,PV,0.0,2.80802E-4,9.82801E-4,0.002537181,0.004759331,0.007891101000000001,0.013297431000000002,0.020343201,0.0298264,0.037059369999999994,0.04113975,0.04237274,0.040685349999999995,0.036843219999999996,0.03066988,0.02613509,0.022905679999999998,0.02121472,0.02034384,0.01998658,0.019072640000000002,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,PV_storage,0.0,0.0,0.0,2.59097E-5,6.27131E-5,1.147825E-4,2.045042E-4,3.243272E-4,5.083562E-4,6.676205E-4,8.396841000000001E-4,0.0010317037000000002,0.001238776,0.0013912360000000001,0.001567972,0.0019426009999999997,0.002222331,0.0024642749999999997,0.0027360679999999995,0.0030736410000000002,0.0034766430000000006,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,2.23032E-4,5.8482E-4,0.0010775099999999998,0.0018475879999999998,0.0025324090000000002,0.0032423670000000003,0.003963544,0.004789045999999999,0.005509392,0.0065492039999999994,0.00803131,0.009117894999999999,0.010049414000000001,0.011062793999999999,0.011999393,0.013010396,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,biomass (conv),0.0,0.00150481,0.0014688,0.0011457928,0.0017709177000000001,0.0024985548,0.004009208,0.0056779727,0.0077284238,0.0090698055,0.010426038799999999,0.011657706739999999,0.013128255030000001,0.01426327245,0.016166758,0.018654879,0.019922901,0.021165629,0.022656039999999995,0.02397193,0.02549667,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,biomass cogen,0.00399456,0.0112041,0.0107029,0.0119857,0.0138495,0.0156849,0.0166537,0.0169829,0.016238,0.0159981,0.0160151,0.0159456,0.0158631,0.0157988,0.0156196,0.0153216,0.0148919,0.0143734,0.0139498,0.0136024,0.0130255,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.00529971,0.01346821,0.02346778,0.03751277,0.0498178,0.06118364999999999,0.07195478000000001,0.08311325,0.09241962,0.10385193000000001,0.11882698,0.13045072,0.135558,0.13864657,0.139702,0.13846982,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,coal (conv pul),0.439003,0.672518,0.655517,0.722737,0.7760834,0.8008922,0.8273401,0.8421376,0.8655624,0.8662628000000001,0.8629020000000001,0.8651606999999999,0.8807984000000001,0.8976708999999999,0.9014591,0.8520416,0.8220053999999999,0.8019388999999999,0.7680111,0.7311512,0.6855471,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,coal cogen,7.08817E-4,0.00236353,0.0024372,0.00296462,0.00297113,0.00327482,0.00326522,0.00325105,0.00326639,0.00331345,0.00339315,0.00344103,0.00345063,0.00341097,0.00334763,0.00326068,0.00313071,0.0029903,0.00287315,0.00278627,0.00272742,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,gas (CC),0.0392458,0.0623957,0.0181282,0.02493885,0.03176097,0.040277639999999997,0.05516551,0.07542237,0.10555524,0.13122165,0.15370307,0.17304738,0.18353937,0.19024153000000005,0.19734240000000003,0.2044653,0.2008153,0.18669290000000002,0.1783662,0.17350539999999998,0.17559190000000002,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,gas (steam/CT),0.0328841,0.0559444,0.143944,0.1262849,0.1287036,0.1305279,0.12872378,0.12121088,0.11089344999999999,0.09695917000000001,0.08360914,0.07144360999999999,0.05170402000000001,0.03878156000000001,0.02684254,0.020256562999999998,0.015003248000000002,0.010508180999999998,0.008240553000000001,0.007097086,0.006774224999999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,gas cogen,6.22289E-4,0.00413685,0.00788556,0.00914561,0.0091953,0.00978569,0.00967227,0.00934947,0.00886098,0.00835924,0.00784343,0.00720409,0.0066549,0.00611906,0.00568422,0.00535092,0.00514195,0.00505904,0.00502179,0.0049564,0.00483017,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,geothermal,0.00746642,0.0111493,0.0209844,0.02741602,0.033514970000000005,0.04051423,0.05073893,0.06252182,0.05877984,0.06703557,0.07428794,0.079881,0.0829915,0.0828956,0.0810009,0.08665529999999999,0.08969639999999998,0.092426,0.0960664,0.1014654,0.10645650000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,hydro,0.134392,0.138895,0.133859,0.139576,0.145294,0.151011,0.156728,0.162446,0.169607,0.176768,0.18393,0.191091,0.198253,0.205414,0.212575,0.219737,0.226898,0.23406,0.241221,0.248382,0.248382,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,hydrogen cogen,0.0,0.0,0.0,0.0,1.38162E-4,2.4258E-4,3.68526E-4,5.15805E-4,6.85125E-4,8.99749E-4,0.0011416,0.00124926,0.00138888,0.00153854,0.00165005,0.00178969,0.00191996,0.00205172,0.00222533,0.00239881,0.00233815,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,refined liquids (CC),0.0,0.0,0.0,9.96559E-4,0.00146029,0.002327372,0.004066131,0.006021387,0.009126269999999999,0.010604263999999999,0.012098797,0.013475030999999998,0.014986597,0.015670465,0.017426212,0.01956535,0.019419660000000002,0.01885422,0.01889111,0.01845063,0.01882416,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,refined liquids (steam/CT),0.012816,0.0102421,0.0113868,0.0055818199999999995,0.00578975,0.00630981,0.006461257999999999,0.006342851,0.006304996,0.006000116,0.005737465000000001,0.005507907,0.004441577,0.0036738010000000004,0.0029227042,0.0023659444999999998,0.0018603300000000003,0.0013898405999999998,0.0011544524,0.0010221672000000001,9.824283E-4,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,rooftop_pv,0.0,0.0,0.0,1.8417E-4,5.0021E-4,0.00106378,0.00182508,0.0028813,0.00425732,0.00603881,0.00833032,0.0108817,0.0138373,0.0168153,0.0194998,0.021913,0.0240092,0.0256517,0.0269972,0.0280841,0.0290476,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,wind,0.0,0.00539644,0.0231552,0.030307630000000002,0.03804486,0.04803879,0.06468779,0.08640498999999999,0.09557949,0.11860516,0.14034863,0.1598288,0.1756577,0.18290620000000002,0.1884004,0.2105938,0.22454489999999996,0.23635660000000003,0.25071390000000005,0.2705766,0.29229130000000003,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,wind_storage,0.0,0.0,0.0,4.19599E-5,8.78974E-5,1.484102E-4,2.512262E-4,3.8913620000000006E-4,5.968682E-4,7.519163E-4,9.027678000000001E-4,0.0010421130000000001,0.001161025,0.001222052,0.001277204,0.001448591,0.001558807,0.001653952,0.001769358,0.00192372,0.00209852,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,CSP,0.0,0.0,0.0,2.8642E-5,1.043248E-4,2.316698E-4,4.2732480000000003E-4,6.766548000000001E-4,0.0010623468,0.0015082178,0.002070708,0.002667236,0.003915471,0.005438350999999999,0.007362968999999999,0.009719915999999999,0.011989683,0.013887489999999999,0.01494157,0.0154614,0.015486100000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,CSP_storage,0.0,0.0,0.0,0.0,0.0,4.23337E-4,0.001628997,0.003802277,0.007360497000000001,0.012037887,0.018745427000000002,0.02586513,0.03960677,0.055934689999999995,0.07720416999999999,0.10573668,0.14141824,0.1875457,0.23588710000000002,0.28469330000000004,0.3342704,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,Gen_III,0.0,0.0,0.0,6.20903E-4,0.004325883,0.008985063,0.014991443,0.021827063,0.030972411999999998,0.041196382000000004,0.054023952,0.06639894099999999,0.087614411,0.11070338,0.138232319,0.17026477,0.20221236,0.23494406999999998,0.26760271,0.29812485,0.32754560000000005,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,Gen_II_LWR,0.00805313,0.0354779,0.0522827,0.0483166,0.0460504,0.042745,0.0382217,0.0325438,0.0261413,0.0197388,0.0140609,0.00953766,0.00623222,0.00396604,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,PV,0.0,0.0,0.0,0.00105905,0.0031302300000000003,0.005826080000000001,0.009269280000000001,0.013046850000000002,0.01827331,0.02324544,0.02886687,0.03468128,0.04795888,0.06472651,0.08600075,0.11147007,0.13366496,0.1484329,0.1522392,0.14971800000000002,0.1412278,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,PV_storage,0.0,0.0,0.0,1.76498E-5,5.19409E-5,9.672310000000001E-5,1.536522E-4,2.165295E-4,3.03785E-4,3.862542E-4,4.803321E-4,5.776409E-4,7.997478E-4,0.0010820375,0.001458633,0.001983818,0.002660381,0.00354782,0.004489444,0.005458307,0.006460836,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,0.00865793,0.01794506,0.02716018,0.03799593,0.048556959999999996,0.06043001,0.07107883,0.08966983,0.10823991000000001,0.12877784,0.15038066000000003,0.17038986,0.18129924999999997,0.18791902000000002,0.19012321000000001,0.18822824,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,biomass (conv),0.0138923,0.0489274,0.113382,0.168815,0.2129261,0.24127759999999998,0.2703551,0.28910959999999997,0.3002207,0.3069163,0.317672,0.3247143,0.3551603,0.38405958999999995,0.41270260000000003,0.4190562,0.4201009,0.42113220000000007,0.41560329999999995,0.40370880000000003,0.38764610000000005,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.0035052,0.00791757,0.0128297,0.019337399999999998,0.026442439999999998,0.035145420000000004,0.04410619,0.06046208,0.07920499,0.10245082999999999,0.13090052000000002,0.16263763000000003,0.19286755,0.22419069,0.25401107,0.28359875,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,coal (conv pul),0.0171142,0.0386711,0.0408167,0.0951128,0.1459495,0.18717589999999998,0.2285621,0.2663606,0.3093976,0.3511341,0.39860799999999996,0.44410916,0.5251673,0.61458313,0.7202109,0.7916082,0.8802289999999999,0.9860542999999999,1.0973912,1.2094473,1.3249776,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,gas (CC),8.08283E-4,0.0445118,0.0777075,0.2661384,0.4384421,0.599352,0.7626091999999999,0.9114116,1.0748764000000002,1.2249891,1.3839999,1.5231915999999999,1.56229983,1.62620846,1.727207,1.864622,2.032919,2.198053,2.381376,2.5377479999999997,2.7159240000000002,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,gas (steam/CT),3.65337E-4,0.0232112,0.0536022,0.05694069,0.06267568,0.06689164,0.07011592000000001,0.07112511999999999,0.07189698,0.07167915999999999,0.07219706999999999,0.07215330999999998,0.07010949,0.06913804999999999,0.06914197999999999,0.07305491,0.07826257,0.08382351,0.08981839999999999,0.09446593,0.10066957000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,geothermal,0.0,0.0,0.0,0.00407581,0.01120444,0.02093264,0.03367691,0.04799255000000001,0.06634429,0.08203927,0.09867435000000001,0.1130565,0.1415303,0.17141409999999999,0.20398929999999998,0.24116310000000002,0.27611840000000004,0.3097431,0.3282008,0.34174150000000003,0.3517575,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,hydro,0.744149,1.21485,1.45184,1.4758,1.49977,1.52373,1.5477,1.57166,1.61397,1.65628,1.69859,1.7409,1.78321,1.82552,1.86783,1.91014,1.95245,1.99476,2.03707,2.07938,2.07938,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,hydrogen cogen,0.0,0.0,0.0,0.0,8.96416E-4,0.00151257,0.00226807,0.00313426,0.00419059,0.00549675,0.00700556,0.00770031,0.00875551,0.00987974,0.0109036,0.0121305,0.013308,0.0143604,0.01552,0.0164094,0.0161553,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,refined liquids (CC),0.0,0.0,0.0,0.0297143,0.0614614,0.1030632,0.15597260000000002,0.2105278,0.2846879,0.35255480000000006,0.4325752,0.4976164,0.6290492,0.7282030999999999,0.8359969,0.9365079999999999,1.0102449999999998,1.047039,1.0528833,0.9997518000000001,0.9869867000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,refined liquids (steam/CT),0.017773,0.0420406,0.0578339,0.1102707,0.1474756,0.17624399999999998,0.1935692,0.1998483,0.204095,0.2041648,0.20370340000000003,0.20245734000000004,0.16360358000000003,0.13091601,0.10302618000000001,0.08360599,0.07143343,0.06192433000000001,0.05612902,0.050877240000000004,0.04886996,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,rooftop_pv,0.0,0.0,0.0,9.74293E-4,0.00255241,0.00486058,0.00793968,0.011949,0.0172987,0.0238832,0.0325722,0.0424715,0.0555203,0.0692196,0.0844249,0.0994256,0.113297,0.123326,0.129192,0.130473,0.137129,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,wind,0.0,3.34799E-4,0.00783718,0.01940108,0.03290878,0.04877628,0.06863548,0.09080768,0.11244090000000001,0.1338899,0.16162510000000002,0.1891077,0.2496947,0.3214959,0.4099665,0.5227926,0.6472337,0.7822216000000001,0.8920174,0.987333,1.069378,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,wind_storage,0.0,0.0,0.0,6.48031E-5,1.422243E-4,2.356735E-4,3.553765E-4,4.929705E-4,6.796835E-4,8.272714000000001E-4,0.0010223182,0.0012211610000000001,0.001658909,0.002192983,0.002883018,0.003793737,0.004836819,0.0060119069999999995,0.007057676,0.008006978,0.00888232,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,CSP,0.0,0.0,0.0,3.88701E-4,9.95281E-4,0.001579526,0.002460106,0.003547006,0.005333286,0.006673235,0.007735344999999999,0.00881175,0.00985965,0.01057093,0.01105895,0.01239724,0.0132759,0.013915440000000001,0.014453950000000002,0.014884180000000002,0.01487449,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,CSP_storage,0.0,0.0,0.0,0.0,0.0,0.00131504,0.00498941,0.01140657,0.02256997,0.034125470000000005,0.04604727,0.05654893,0.06659196,0.0730593,0.0783422,0.0896506,0.0975132,0.10447800000000002,0.1126129,0.12266700000000001,0.13930710000000002,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,Gen_III,0.0,0.0,0.0,0.0488495,0.081259,0.1081887,0.1486856,0.1988307,0.2639348,0.31654760000000004,0.3604986,0.39743200000000006,0.43457100000000004,0.4652216,0.5001571,0.49523419999999996,0.49737549999999997,0.5004512,0.4918874999999999,0.47232530000000006,0.44656720000000005,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,Gen_II_LWR,0.262681,0.331344,0.326372,0.301614,0.287467,0.266833,0.238597,0.203153,0.163186,0.123218,0.0877746,0.0595383,0.0389042,0.0247578,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,PV,0.0,6.11999E-5,5.68799E-4,7.06796E-4,8.66187E-4,9.84949E-4,0.00113376,0.001291916,9.55617E-4,0.001028753,0.0010628270000000001,0.0011321680000000002,0.001199289,0.001243723,0.0012678639999999998,0.001410175,0.001520337,0.001611918,0.001706931,0.001802635,0.001883663,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,PV_storage,0.0,0.0,0.0,2.29958E-6,4.938219999999999E-6,6.910839999999999E-6,9.37107E-6,1.200382E-5,1.588574E-5,1.709365E-5,1.769043E-5,1.887435E-5,2.0045480000000002E-5,2.0821499999999997E-5,2.129682E-5,2.389419E-5,2.598636E-5,2.7938839999999997E-5,3.028432E-5,3.322611E-5,3.811584E-5,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,4.33261E-4,0.001132376,0.002069665,0.003538809,0.0048656490000000005,0.006139449999999999,0.007337806,0.008708777,0.009939149,0.011540997,0.013746819,0.015460881,0.016746757,0.018064159,0.01916922,0.02053919,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,biomass (conv),0.0137844,0.0300024,0.0279072,0.02758696,0.02904962,0.02921632,0.03006165,0.03049924,0.031085940000000003,0.03065274,0.03034865,0.030214929999999997,0.031121930000000003,0.03208653,0.03317771,0.0356018,0.03678,0.03820689,0.039745550000000004,0.04083171,0.042616060000000004,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,biomass cogen,4.21048E-4,4.20829E-4,4.24375E-4,4.54847E-4,5.13385E-4,5.71264E-4,5.82852E-4,5.64487E-4,4.96103E-4,4.57806E-4,4.3459E-4,4.18171E-4,4.0563E-4,3.97348E-4,3.88723E-4,3.79304E-4,3.68981E-4,3.58477E-4,3.50563E-4,3.43627E-4,3.31279E-4,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.00201422,0.0052133100000000005,0.009314570000000001,0.0154824,0.021062690000000002,0.0262011,0.030924749999999997,0.036028979999999995,0.04051335,0.04589931,0.05299319,0.05879506,0.06199453,0.06461629999999999,0.06627881,0.06781325,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,coal (conv pul),0.295991,0.395942,0.316566,0.3523066,0.3792586,0.3844196,0.3895984,0.3904802,0.3972418,0.39518320000000007,0.39145480000000005,0.38991790000000004,0.3960072,0.4041022999999999,0.40528470000000005,0.3776184,0.3627645,0.360717,0.35360349999999996,0.34394769999999997,0.3333254,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,gas (CC),0.0338351,0.0585332,0.016694,0.0253853,0.03393745,0.04205985999999999,0.05702843,0.07869512,0.11335572,0.14418234,0.17114353000000002,0.19371470999999998,0.20642181,0.21547347,0.22651340000000003,0.23733800000000002,0.2357894,0.21973269999999998,0.20947410000000002,0.2030153,0.20856829999999998,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,gas (steam/CT),0.00100203,0.0677619,0.173231,0.1724021,0.1789101,0.17845970000000003,0.17495489999999997,0.1653297,0.15203281,0.1343633,0.11693856999999999,0.10148138000000002,0.07169532999999999,0.05252878,0.036158867,0.027633393,0.020576647999999996,0.014127899,0.010757398,0.009028482000000001,0.008618409,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,geothermal,0.0,0.0,0.0,0.00373612,0.00710286,0.00972705,0.012812430000000001,0.01323099,0.013231010000000001,0.01323095,0.013231,0.01323098,0.01323101,0.013231,0.013231,0.013231,0.01323096,0.01323089,0.01323099,0.013231109999999999,0.013230990000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,hydro,1.06835,1.30916,1.26543,1.30693,1.34854,1.39015,1.43175,1.47336,1.49957,1.52578,1.55199,1.5782,1.60441,1.63062,1.65683,1.68304,1.70925,1.73547,1.76168,1.78789,1.78789,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,hydrogen cogen,0.0,0.0,0.0,0.0,2.96349E-4,5.08593E-4,7.48738E-4,0.00101157,0.00127269,0.00159795,0.00195012,0.00208463,0.00228081,0.00250378,0.0026699,0.00289594,0.00312379,0.00337442,0.00369965,0.00402057,0.0039511,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,refined liquids (CC),0.0,0.0,0.0,0.00209194,0.00341521,0.004914770000000001,0.008258979999999999,0.012551686999999999,0.019448654,0.023877510999999997,0.027746797000000004,0.031056791,0.034357537,0.03616745,0.03945835,0.043395260000000005,0.04353557000000001,0.04192843,0.041410989999999995,0.04019452999999999,0.04171706,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,refined liquids (steam/CT),0.0592847,0.0551952,0.0266292,0.02045054,0.02117214,0.02161891,0.021084319999999997,0.01990482,0.018563740000000002,0.01685308,0.015290249999999998,0.014061583,0.010592559000000001,0.008242749000000002,0.0061262339999999995,0.0049756670000000005,0.003938906,0.002911077,0.002374434,0.002082608,0.002029102,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,rooftop_pv,0.0,0.0,0.0,6.37144E-6,2.3422E-5,4.53608E-5,7.67641E-5,6.23012E-5,8.54537E-5,1.13035E-4,1.46271E-4,1.83738E-4,2.25708E-4,2.65108E-4,3.03309E-4,3.36528E-4,3.64311E-4,3.8677E-4,4.02929E-4,4.13512E-4,4.24191E-4,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,wind,0.0,0.00529559,0.0344051,0.0460662,0.0583181,0.0703786,0.0909935,0.1189782,0.1289257,0.1596221,0.18820330000000002,0.2152691,0.2390059,0.2520521,0.25925370000000003,0.2873266,0.3067062,0.32365239999999995,0.3431888,0.36733819999999995,0.40418509999999996,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,wind_storage,0.0,0.0,0.0,6.82123E-5,1.408744E-4,2.1376040000000001E-4,3.408074E-4,5.183584E-4,8.029504000000001E-4,0.0010114621,0.001212051,0.001405706,0.0015835750000000003,0.0016903500000000002,0.001767432,0.0019913220000000002,0.002148728,0.002288098,0.002449631,0.0026439569999999997,0.0029442750000000005,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,CSP,0.0,0.0,0.0,4.66816E-5,1.6501059999999998E-4,3.634936E-4,5.915206E-4,8.563046E-4,0.0011992676,0.0015472209999999999,0.001894392,0.002204479,0.002700896,0.0032670259999999997,0.003956932999999999,0.004733348,0.005579618000000001,0.006444378,0.007166574,0.00774119,0.00827612,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,CSP_storage,0.0,0.0,0.0,0.0,0.0,8.66281E-4,0.004899371,0.012776421,0.024475420999999997,0.039704421,0.05973862099999999,0.08137873999999999,0.11032465,0.1414624,0.17974429999999997,0.2224043,0.26864140000000003,0.3166043,0.3586475,0.3931028,0.4257016,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,Gen_III,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00839601,0.024604,0.049516000000000004,0.0736301,0.10400288999999999,0.13552049,0.17163308000000002,0.20989408,0.25040457,0.29070877,0.33126595999999997,0.36931874000000003,0.4022228,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,PV,0.0,0.0,4.32E-5,0.00378357,0.01075138,0.01795626,0.022003540000000002,0.025789140000000002,0.03007138,0.030948660000000003,0.02911572,0.027331670000000002,0.030801250000000002,0.035550540000000005,0.0417271,0.049010250000000005,0.057333579999999995,0.06600445,0.07344059,0.0796052,0.08565890000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,PV_storage,0.0,0.0,0.0,6.23537E-5,1.794087E-4,3.780137E-4,7.907337E-4,0.0012846467,0.0019063996999999998,0.0025505120000000004,0.003264404,0.003984621,0.004906161,0.005989728,0.007391695,0.009047469,0.010943832,0.0129546,0.01475625,0.0162873,0.01779071,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,0.00188429,0.00461853,0.00794956,0.01203373,0.01663979,0.0220705,0.02778553,0.035780479999999996,0.04487758,0.05616758,0.06876575,0.08272864999999999,0.09550215999999999,0.10794197,0.11913041,0.13098869999999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,biomass (conv),0.00762288,0.008862,0.0143049,0.01489271,0.02521883,0.03418002,0.04603293,0.0582985,0.07029561000000001,0.08242539600000001,0.095930887,0.10903138099999998,0.127497602,0.14766823700000004,0.17230415,0.19210249999999998,0.21363892,0.2361565,0.25759740000000003,0.276702,0.2978678,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,coal (IGCC),0.0,0.0,0.0,0.0,0.0,4.37649E-4,0.001112701,0.001998781,0.0031836140000000004,0.004627358999999999,0.006472145,0.008612680000000001,0.011879656,0.015946568,0.021469513000000003,0.028343023999999998,0.036794043,0.046016306,0.05658935,0.06764271,0.08105087999999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,coal (conv pul),1.548E-4,0.007992,0.0111816,0.0163244,0.021598700000000002,0.02636181,0.03226656,0.038670340000000004,0.046046870000000004,0.05417414,0.06396281000000001,0.07470860000000001,0.09070813,0.110009952,0.1349935,0.16011785,0.19196370000000001,0.22934058,0.27165109,0.31706958,0.37445243,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,gas (CC),0.0,0.0,0.0,0.0035472,0.00874589,0.0169788,0.03119664,0.051295059999999996,0.07768469,0.10758862,0.14155393,0.1751519,0.21508134,0.25661933,0.303455,0.34987759999999996,0.39813339999999997,0.4455462,0.49620449999999994,0.5441611000000001,0.6057591,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,gas (steam/CT),0.0129143,0.042021,0.0577774,0.0684651,0.0789961,0.08740709999999999,0.0948338,0.09849459999999999,0.09905586999999998,0.09716269000000001,0.09456471999999999,0.09171599999999999,0.075867,0.06328232,0.05089249,0.041944579999999995,0.035529660000000005,0.03139022,0.029671470000000002,0.029332129999999998,0.03081416,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,geothermal,0.002898,0.0094176,0.0117864,0.01908155,0.02686259,0.03379204,0.033792,0.03379195,0.033791999999999996,0.0337918,0.03379203,0.03380061,0.03379201,0.03379203,0.033791970000000005,0.033790810000000004,0.03379172,0.03379086,0.03379199,0.03379809,0.03379203,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,hydro,0.0486099,0.0767999,0.0855111,0.0891228,0.0927345,0.0963461,0.0999578,0.103569,0.109946,0.116323,0.1227,0.129076,0.135453,0.14183,0.148206,0.154583,0.16096,0.167337,0.173713,0.18009,0.18009,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,hydrogen cogen,0.0,0.0,0.0,0.0,5.76136E-4,9.81789E-4,0.00152893,0.00215277,0.0029557,0.00403484,0.00543362,0.00634416,0.00766059,0.00922557,0.0108106,0.0127899,0.0149761,0.0173327,0.0201248,0.0229446,0.0232421,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,refined liquids (CC),0.0,0.0,0.0,0.0138551,0.0318659,0.0579668,0.0982104,0.14698350000000002,0.2052296,0.26631225999999997,0.33437433,0.40011499000000006,0.48298920000000006,0.563728,0.6560184,0.7407228,0.8212069000000001,0.8889606999999999,0.9488293000000001,0.9810574000000001,1.0225797,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,refined liquids (steam/CT),0.119832,0.219264,0.220659,0.22857339999999998,0.24070129999999998,0.2464956,0.2448818,0.2331548,0.2158802,0.19628795,0.17859549999999996,0.164542,0.13121867999999998,0.10564698,0.0760408,0.06239667,0.053133219999999995,0.04702062,0.04402023,0.04232435,0.04256063,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,rooftop_pv,0.0,0.0,0.0,0.00115094,0.00259066,0.00468835,0.007582,0.0111553,0.015999,0.0222794,0.0312029,0.0421802,0.0569548,0.0743208,0.0944887,0.116107,0.13868,0.159206,0.17606,0.188839,0.201225,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,wind,0.0,9.144E-4,0.00207,0.012181999999999998,0.029209899999999997,0.0537374,0.09019949999999999,0.1346095,0.186056,0.2353805,0.2866587,0.3332065,0.39338280000000003,0.4561058,0.5305653,0.6110348,0.6948386999999999,0.7772744,0.838511,0.8828640000000001,0.921718,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,wind_storage,0.0,0.0,0.0,6.86428E-5,1.966198E-4,4.000648E-4,7.334008E-4,0.0011797978,0.0017640728,0.0023885,0.003112179,0.003843429,0.004850433,0.005970376,0.0073728909999999995,0.008970391000000001,0.010732175,0.01256519,0.01416711,0.01548583,0.0167617,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,CSP,0.0,0.0,0.0,6.50716E-5,1.5847730000000001E-4,2.6568130000000003E-4,4.235403E-4,6.114863000000001E-4,8.918913E-4,0.0011432457,0.001368252,0.0015542870000000003,0.00199313,0.002285887,0.0025119979999999997,0.0032333019999999995,0.0036841409999999997,0.004040613,0.0041175149999999995,0.004193448,0.004160342,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,CSP_storage,0.0,0.0,0.0,0.0,0.0,3.56387E-4,0.001329162,0.002967462,0.005554812,0.008674802,0.012022762000000001,0.014723215,0.01993373,0.02330192,0.026043289999999997,0.0344607,0.040853169999999994,0.04865182999999999,0.05691694,0.06843774999999999,0.08112613000000002,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,Gen_III,0.0,0.0,0.0,0.0762759,0.11373950000000001,0.1483826,0.1932293,0.242467,0.29733099999999996,0.34688689999999994,0.38849759999999994,0.42037789999999997,0.47589649999999994,0.5152403,0.5524484,0.5479211999999999,0.5634984000000001,0.5784083999999999,0.5899757,0.5955739999999999,0.5932268999999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,Gen_II_LWR,0.0,0.00977756,0.00896395,0.00828395,0.00789541,0.00732868,0.00655316,0.00557968,0.00448196,0.00338424,0.00241076,0.00163524,0.00106852,6.79982E-4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,PV,0.0,0.0,0.0,0.00160117,0.0033022700000000004,0.0048125600000000004,0.00666129,0.008556270000000001,0.01108477,0.01215984,0.013012719999999998,0.013796530000000001,0.016545820000000003,0.01836661,0.019750629999999998,0.025015419999999997,0.02819733,0.030294249999999998,0.02991125,0.02936075,0.02796101,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,PV_storage,0.0,0.0,0.0,2.66837E-5,5.4846500000000004E-5,7.99339E-5,1.104995E-4,1.420412E-4,1.8426209999999999E-4,2.020188E-4,2.164931E-4,2.2972390000000002E-4,2.7597030000000005E-4,3.0658339999999995E-4,3.3061120000000004E-4,4.3072980000000003E-4,5.111747E-4,6.114255E-4,7.200535000000001E-4,8.726107E-4,0.001042651,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,2.24664E-4,5.43751E-4,9.389940000000001E-4,0.0015151449999999999,0.0021524969999999997,0.002802104,0.003389268,0.004748051,0.005751195,0.0068775239999999994,0.009447694999999999,0.011312126000000002,0.013103469999999999,0.015306379,0.017494158000000003,0.019527482,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,biomass (conv),0.0,0.0,0.0,0.00133328,0.0022235939999999997,0.002955257,0.00428382,0.005617835,0.007057803,0.008419127,0.009708983000000001,0.010752999000000001,0.013842431000000002,0.015675486000000002,0.017866129,0.022891568,0.025628001999999997,0.028666242999999998,0.0326928,0.03664577,0.040206189999999996,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.00285865,0.006380230000000001,0.01010057,0.01488084,0.0196916,0.02412123,0.027829370000000003,0.03474803,0.03994858999999999,0.04511051,0.055491059999999995,0.06343053,0.06820498,0.07374464,0.07907203,0.08323146000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,coal (conv pul),0.257637,0.202024,0.264001,0.365612,0.4151528,0.4341847,0.44718990000000003,0.45050789999999996,0.45346650000000005,0.4527962,0.45056890000000005,0.448044,0.46675420000000006,0.48062470000000007,0.48477099999999995,0.4100179,0.3843459,0.38247809999999993,0.3862497,0.39445529999999995,0.3996811,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,gas (CC),0.0,0.0,0.0,0.0432161,0.07808480000000001,0.1147337,0.16904570000000002,0.23509039999999998,0.3240695,0.4125224,0.48907940000000005,0.5461338,0.6034293,0.6349436,0.6590252000000001,0.7217513999999999,0.7395521,0.7313166999999999,0.7345631,0.7457908,0.7704993,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,gas (steam/CT),0.270924,0.259231,0.289064,0.330154,0.3712198,0.3978298,0.4127837,0.40857129999999997,0.3911271,0.3680594,0.34373529999999997,0.31917587,0.19723962,0.13704212999999998,0.09963127,0.07441592,0.05598377000000001,0.042043620000000004,0.03459765,0.031185820000000003,0.03032211,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,gas cogen,0.0,6.27014E-4,0.0015317,0.00129887,0.00130794,0.00138801,0.00137847,0.00133023,0.00123033,0.00115068,0.00109076,0.00102816,9.84233E-4,9.30903E-4,8.91028E-4,8.57508E-4,8.34972E-4,8.27751E-4,8.29721E-4,8.27851E-4,8.12208E-4,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,geothermal,0.0,0.0,0.0,0.00790414,0.01447155,0.02016197,0.02672306,0.03308746,0.040248479999999996,0.04011933,0.04088237,0.0414926,0.04596317,0.04787013,0.049061009999999995,0.05623846,0.05972851,0.06330722,0.06480186,0.06731794999999999,0.06731805,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,hydro,0.183715,0.211439,0.217472,0.23678,0.256088,0.275396,0.294704,0.314012,0.33546,0.356908,0.378356,0.399804,0.421252,0.4427,0.464148,0.485596,0.507045,0.528493,0.549941,0.571389,0.571389,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,hydrogen cogen,0.0,0.0,0.0,0.0,3.4533E-4,6.15756E-4,9.49652E-4,0.00133876,0.0017678,0.0023232,0.00298585,0.00333993,0.00383464,0.00437823,0.00486542,0.00545499,0.00602526,0.00661051,0.00738409,0.00821687,0.00821304,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,refined liquids (CC),0.0,0.0,0.0,0.00208115,0.002383246,0.003049713,0.004201865000000001,0.005313379,0.006969909,0.008292337,0.009396050999999999,0.010268801000000001,0.012973585,0.013646979,0.014846472999999999,0.01881418,0.019694450000000002,0.02062356,0.022214849999999998,0.02314548,0.02427666,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,refined liquids (steam/CT),0.162338,0.0429694,0.00578517,0.00614446,0.005810930000000001,0.0061978960000000005,0.006331105,0.006243762,0.006131963000000001,0.006034738,0.005991496999999999,0.006020168,0.0039075176,0.0029359696,0.0022910647999999996,0.0018870413,0.0015641048000000002,0.001306758,0.0011936529999999998,0.001156632,0.0011822472999999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,refined liquids cogen,0.0,0.0,4.6779E-5,4.42577E-5,4.05384E-5,4.42094E-5,4.45418E-5,4.47928E-5,4.53675E-5,4.66871E-5,4.86616E-5,5.09241E-5,5.40684E-5,5.62534E-5,5.85077E-5,6.07908E-5,6.19389E-5,6.28402E-5,6.40338E-5,6.35507E-5,6.25427E-5,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,rooftop_pv,0.0,0.0,0.0,5.1968E-5,1.50612E-4,3.31173E-4,5.93489E-4,9.67984E-4,0.00144086,0.00206971,0.00292983,0.00401863,0.00541999,0.00694898,0.00857706,0.0101983,0.0116989,0.0129935,0.0142273,0.0154514,0.0167744,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,wind,0.0,0.0,2.87998E-5,0.0074202398,0.0153039198,0.0237214498,0.0358075498,0.0500994498,0.06997565,0.08447451,0.09828763,0.10927329999999999,0.13567790000000002,0.1522497,0.1647607,0.2109283,0.2441295,0.279849,0.3088759,0.34819429999999996,0.38717999999999997,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,wind_storage,0.0,0.0,0.0,4.06655E-5,8.487809999999999E-5,1.3307359999999998E-4,2.035028E-4,2.887871E-4,4.0992810000000003E-4,5.038306E-4,5.95376E-4,6.699395E-4,8.458753E-4,9.59999E-4,0.001051303,0.00137156,0.0016062820000000001,0.0018617730000000002,0.002083293,0.002374104,0.002669278,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,CSP,0.0,0.0,0.0,2.52356E-4,9.20635E-4,0.002084845,0.004231185,0.007181125,0.011042745,0.015109428999999999,0.01887585,0.02249206,0.02520641,0.02701407,0.02892252,0.03432356,0.037966559999999996,0.039728620000000006,0.04068606,0.040333690000000005,0.039397360000000006,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,CSP_storage,0.0,0.0,0.0,0.0,0.0,0.00387073,0.01710353,0.04287253,0.07870832999999999,0.12201423,0.17030833,0.21933490000000003,0.260039,0.28702010000000006,0.3159519,0.399486,0.48742589999999997,0.5734226,0.6795677,0.7700785999999998,0.8796899999999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,Gen_III,0.0,0.0,0.0,0.183669,0.430996,0.735549,1.1854850000000001,1.7182780000000002,2.3429249999999997,2.996089,3.6381520000000003,4.223817,4.7362210000000005,5.1764779999999995,5.6569,6.275969999999999,6.742773000000001,7.053977999999999,7.203634000000001,7.145344,7.045403000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,Gen_II_LWR,0.0,0.191116,0.265967,0.245791,0.234263,0.217448,0.194437,0.165553,0.132983,0.100413,0.0715293,0.048519,0.0317039,0.0201756,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,PV,7.19999E-6,2.74E-4,0.00338849,0.027859790000000002,0.07582189,0.14045129,0.23946739,0.35646439,0.48964989999999997,0.6072026,0.6956115,0.7717221000000001,0.8126420000000001,0.8334830000000001,0.8634720000000001,0.9758929999999999,1.0209840000000001,1.007785,0.9658289999999999,0.8963399,0.8014017999999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,PV_storage,0.0,0.0,0.0,4.07837E-4,0.0012019539999999999,0.0022757639999999996,0.003914364,0.005869554,0.008174114,0.010197187,0.01182687,0.01336619,0.01436811,0.014993740000000002,0.015862440000000002,0.01969458,0.02405493,0.028428819999999997,0.03388515,0.03863887,0.04447804999999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,0.00704692,0.0181139,0.032755320000000004,0.050590140000000006,0.07019904,0.09043161999999999,0.11189285,0.13322593,0.15439142,0.18108237,0.23274914,0.28015231,0.31902787,0.3563536,0.3814137,0.4096503,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,biomass (conv),1.49641E-6,0.00866158,0.0410615,0.0363795,0.06317880000000001,0.08968029999999999,0.1369285,0.1877228,0.23293764,0.27709065,0.31957288000000006,0.3597942,0.39847603,0.43652621,0.48618184,0.5844320000000001,0.65853,0.7208365999999999,0.7799437,0.8107335999999999,0.8514294,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.180389,0.43903499999999995,0.737048,1.066439,1.390565,1.692494,1.990155,2.266617,2.515949,2.798018,3.282582,3.721325,3.922937,4.043851,4.046911,4.051581,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,coal (conv pul),1.69735,7.20575,11.8677,13.98244,16.25462,17.75939,19.366130000000002,20.639969999999998,21.618550000000003,22.29773,22.810100000000002,23.41237,24.075929999999996,24.774544,25.193849999999998,24.36827,23.534479999999995,22.9745,22.00117,20.77642,19.85887,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,gas (CC),0.00682159,0.0496339,0.0453922,0.0714828,0.1054966,0.14825850000000002,0.21649069999999998,0.3033744,0.4038504,0.5027996,0.591809,0.67348736,0.71803331,0.7510459700000001,0.7905104,0.8897160000000001,0.9734471,1.0501265,1.1569395,1.264157,1.4519636,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,gas (steam/CT),0.00312522,0.03391,0.254969,0.2068844,0.227945,0.2507521,0.2654904,0.2626874,0.2478497,0.22414850000000003,0.1981997,0.17135205000000003,0.12894882,0.09820233,0.07385428,0.06078671000000001,0.05145106000000001,0.046409580000000006,0.046480679999999996,0.049268870000000006,0.058420700000000006,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,geothermal,0.0,4.13999E-4,5.83199E-4,0.048443425000000005,0.095567186,0.11579897500000001,0.115799073,0.115799042,0.11579890000000001,0.1157989,0.11579909999999999,0.11579889999999998,0.1157991,0.115799,0.11579910000000002,0.11579933,0.11580863,0.11579882000000001,0.11579897000000001,0.11578658,0.11579893,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,hydro,0.45643,1.4296,2.60038,2.6427,2.68502,2.72734,2.76966,2.81198,2.90904,3.00611,3.10317,3.20023,3.29729,3.39435,3.49142,3.58848,3.68554,3.7826,3.87966,3.97673,3.97673,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,hydrogen cogen,0.0,0.0,0.0,0.0,0.00183676,0.0035076,0.00562381,0.0081511,0.0110494,0.0146092,0.0184972,0.0199481,0.021996,0.0244598,0.0266058,0.029633,0.0330905,0.0368234,0.0411859,0.0447811,0.0436765,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,refined liquids (CC),0.0,0.0,0.0,0.00521691,0.009619560000000001,0.01603563,0.0275042,0.04006141,0.0539424,0.06680765999999999,0.07834601,0.08941869000000001,0.09748439999999998,0.1032071,0.11089745,0.1291391,0.1361737,0.139043,0.14210530000000002,0.1376474,0.13741852,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,refined liquids (steam/CT),0.177202,0.221325,0.0483861,0.0312623,0.03565322,0.040898199999999996,0.04344772,0.04378252,0.043274509999999995,0.04205573,0.040616269999999996,0.03908465999999999,0.031793374000000006,0.025387445,0.018928573,0.014706182000000002,0.011433153000000001,0.009116247000000001,0.007804148999999999,0.0069618909999999996,0.006610906999999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,rooftop_pv,0.0,0.0,0.0,8.12497E-4,0.00298797,0.0083132,0.0176023,0.0331032,0.0566274,0.0893251,0.133165,0.18245,0.241594,0.305389,0.370276,0.437092,0.505878,0.564723,0.607847,0.626533,0.636593,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,wind,7.19999E-6,0.00730149,0.160644,0.268867,0.436674,0.6564719999999999,0.9919309999999999,1.39458,1.696409,2.063803,2.358525,2.6142710000000005,2.7467159999999997,2.794544,2.8716720000000002,3.350084,3.7874429999999997,4.129821999999999,4.499843,4.749242,5.020231999999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,wind_storage,0.0,0.0,0.0,7.83639E-4,0.0020784690000000003,0.0038941090000000006,0.006872509000000001,0.010721069,0.015359259,0.01957306,0.02335278,0.02693232,0.02935108,0.03076307,0.03254807,0.03937593,0.04581478,0.0511908,0.05711154,0.0614425,0.06639400999999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,CSP,0.0,0.0,0.0,2.05736E-5,5.748979999999999E-5,1.047089E-4,1.926062E-4,3.159152E-4,4.950562000000001E-4,7.017626000000001E-4,9.759014000000001E-4,0.0013036723,0.001941483,0.002666898,0.003578797,0.004818207,0.006201572000000001,0.007665132,0.008863573999999999,0.009874240000000001,0.01088653,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,CSP_storage,0.0,0.0,0.0,0.0,0.0,1.56967E-4,6.985769999999999E-4,0.0017732969999999999,0.003425697,0.005665437000000001,0.008933217,0.012680559999999999,0.01963121,0.02733576,0.037045760000000004,0.05011992,0.06470084,0.08032213,0.09342007000000001,0.1046711,0.11618030000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,Gen_III,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00118939,0.0036149700000000003,0.00778426,0.01206097,0.01916893,0.02650961,0.03502135,0.04552002,0.05681796,0.06831807000000001,0.07969858,0.09021156,0.10047837,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,PV,0.0,0.0,0.0,2.61376E-4,6.085E-4,9.51967E-4,0.00148347,0.00212543,0.0029595970000000004,0.003690957,0.004632493,0.005804495999999999,0.008164753,0.010919762999999999,0.014455395999999999,0.01940947,0.02515548,0.03132495,0.03658942,0.041225279999999996,0.04606728,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,PV_storage,0.0,0.0,0.0,4.35587E-6,1.010268E-5,1.58078E-5,2.4594600000000003E-5,3.5278000000000003E-5,4.9200400000000004E-5,6.131673E-5,7.705752000000001E-5,9.662240000000001E-5,1.358921E-4,1.814856E-4,2.4050150000000001E-4,3.2310140000000004E-4,4.180678E-4,5.214898E-4,6.098843E-4,6.879684000000001E-4,7.699070999999999E-4,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,1.85738E-4,4.4685099999999995E-4,7.7072E-4,0.001169694,0.001635161,0.00226384,0.0029563830000000004,0.004308777,0.005763099,0.007601008,0.009985939000000001,0.012604126,0.015194974,0.017738938,0.020040275,0.022568072999999998,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,biomass (conv),9.86411E-4,0.00181081,0.00179639,0.00314446,0.0035994409999999997,0.003937224,0.004892324,0.005746325,0.006422657,0.007236515000000001,0.008509364,0.009820021,0.0128575,0.0158251895,0.019578515,0.023757466000000005,0.028353594,0.033120964,0.037808512,0.04203307,0.046846769999999996,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,coal (IGCC),0.0,0.0,0.0,0.0,0.0,7.27076E-4,0.001893173,0.0033788380000000003,0.005251571,0.007383819,0.010068901,0.013010206,0.018218526,0.023886438999999995,0.030729103999999997,0.039446254,0.049041669,0.058226730000000004,0.06712376999999999,0.07500427999999999,0.08342456,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,coal (conv pul),0.0133489,0.00888839,0.0135144,0.0335918,0.0463744,0.05460434,0.06530533,0.07661038999999999,0.08877972,0.1011513,0.11569990999999999,0.13062663,0.15640753999999998,0.18339772999999998,0.21437811,0.23273479000000002,0.26206212,0.2969412,0.32907169999999997,0.3579045,0.390724,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,gas (CC),0.00176041,0.0144738,0.0156616,0.0447883,0.0645732,0.0813394,0.10672319999999999,0.13824615,0.17649681,0.21808233,0.26755684,0.31658435,0.36740223000000005,0.42692735,0.49735039999999997,0.5766667999999999,0.6548835,0.7274390000000001,0.7941925000000001,0.8433411,0.8991843,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,gas (steam/CT),0.014436,0.0121625,0.0260878,0.0472455,0.057614399999999996,0.0647869,0.07372385000000001,0.07966909,0.08324496,0.08436704,0.08476895000000001,0.08359875,0.06807434,0.05890904,0.05298133000000001,0.04760069,0.04347153,0.04076266,0.03962677,0.03891311,0.03977467999999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,geothermal,0.0,0.0,0.0,0.00153437,0.00334097,0.0053133,0.008468400000000001,0.01230759,0.01674817,0.020054629999999997,0.0239785,0.027883410000000004,0.0339913,0.03930944,0.04485587,0.05114537,0.05639919,0.058848559999999994,0.05884848,0.05884901,0.058849030000000004,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,hydro,0.0989892,0.143291,0.145444,0.15207,0.158696,0.165322,0.171948,0.178574,0.190273,0.201972,0.213671,0.22537,0.237068,0.248767,0.260466,0.272165,0.283864,0.295563,0.307262,0.318961,0.318961,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,hydrogen cogen,0.0,0.0,0.0,0.0,3.3319E-5,6.03417E-5,9.87684E-5,1.48734E-4,2.20078E-4,3.20638E-4,4.59248E-4,5.65369E-4,7.22773E-4,9.15697E-4,0.00113396,0.00140143,0.00168944,0.00198047,0.00232738,0.00267633,0.0027895,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,refined liquids (CC),0.0,0.0,0.0,0.0018924,0.002513006,0.003468736,0.005912723,0.008718715,0.012294197,0.016123967,0.021612962,0.026999653,0.039743988,0.050059502000000006,0.06383765,0.0810298,0.09734488000000001,0.11246563,0.12639888000000002,0.13480737,0.14647097,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,refined liquids (steam/CT),0.00136439,4.10394E-4,0.00180719,0.004664435,0.004978027,0.005531854,0.00631713,0.0067225539999999995,0.007164728,0.0075683799999999996,0.008077125999999999,0.008563503299999999,0.007426694199999999,0.0068226617,0.0065639010000000005,0.006291896,0.006163771,0.006178372,0.0063791590000000006,0.006532623,0.00691735,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,rooftop_pv,0.0,0.0,0.0,2.04255E-5,5.98211E-5,1.24862E-4,2.23979E-4,3.69321E-4,6.04024E-4,9.47648E-4,0.00148403,0.00222001,0.00333665,0.00476162,0.0066624,0.00886766,0.0112841,0.0135597,0.0157611,0.0176772,0.0199375,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,wind,0.0,1.764E-4,1.404E-4,8.908099999999999E-4,0.001726706,0.002660637,0.004248447,0.006333897,0.008849677,0.011215117,0.014354111000000001,0.017814570000000002,0.02394938,0.03028918,0.0377667,0.04743685,0.05755516,0.06774417,0.07488375000000001,0.08060210000000001,0.0862279,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,wind_storage,0.0,0.0,0.0,6.62012E-6,1.47488E-5,2.460525E-5,4.291705E-5,6.919565E-5,1.0531725E-4,1.4362503E-4,1.9681665E-4,2.5884910000000005E-4,3.760363E-4,5.069777E-4,6.723991E-4,8.977752E-4,0.0011502659,0.001419337,0.001642297,0.001833703,0.002031376,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,CSP,0.0,0.0,0.0,8.71065E-5,2.438835E-4,4.318375E-4,7.446544999999999E-4,0.0011247605,0.0017166625,0.0022532890000000003,0.002787887,0.003136987,0.003418336,0.0034514840000000003,0.003444139,0.003908196,0.004213214,0.004513479,0.005017663,0.005655839,0.005858014999999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,CSP_storage,0.0,0.0,0.0,0.0,0.0,6.24848E-4,0.002552618,0.005866398,0.011328708,0.017482077999999998,0.024761857999999998,0.02974848,0.033982319999999996,0.03495968,0.03560276,0.04088388999999999,0.04423171,0.04774518,0.05434047,0.06574273,0.07794983999999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,Gen_III,0.0,0.0,0.0,0.0722065,0.1315306,0.18054409999999999,0.24318429999999996,0.30572199999999994,0.38115019999999994,0.4465764,0.5084919999999999,0.549155,0.588025,0.6119541999999999,0.6424827,0.6224462000000001,0.6076271000000001,0.5937946,0.576107,0.5618094999999999,0.5335501,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,Gen_II_LWR,0.268826,0.348192,0.3271,0.302287,0.288109,0.267428,0.239129,0.203606,0.16355,0.123493,0.0879704,0.0596711,0.038991,0.024813,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,PV,0.0,3.60007E-6,0.00240838,0.003340893,0.004583113,0.005735143,0.0073290329999999996,0.008996413,0.008910273,0.01027289,0.011442999999999998,0.01211843,0.012517639999999998,0.012242859999999998,0.011892279999999998,0.0133082,0.01437187,0.01547627,0.01733197,0.019486550000000002,0.019958519999999997,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,PV_storage,0.0,0.0,0.0,1.55398E-5,3.61046E-5,5.524E-5,8.15915E-5,1.0934660000000001E-4,1.481239E-4,1.707141E-4,1.9048170000000002E-4,2.019473E-4,2.0889480000000002E-4,2.043159E-4,1.9856000000000002E-4,2.227579E-4,2.408482E-4,2.609199E-4,2.988499E-4,3.643686E-4,4.358272E-4,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,0.00104892,0.0025704540000000002,0.004315907000000001,0.006772279,0.009101508999999999,0.011618742999999999,0.013287260999999998,0.015150069000000002,0.016290637,0.018078515,0.021513461,0.024358072999999997,0.025931249999999996,0.02807801,0.03032383,0.031856199999999994,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,biomass (conv),1.65607E-4,0.009839,0.0341529,0.03613682,0.04013644,0.04202358,0.04585895000000001,0.048262650000000004,0.05036652,0.051171640000000004,0.05282704,0.052383149999999996,0.053544949999999994,0.05355572,0.05439676,0.05799939,0.05937763999999999,0.060259650000000005,0.06267618,0.06539132,0.06659944,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,biomass cogen,8.85281E-4,0.00496363,0.00829689,0.00834349,0.00968789,0.0108576,0.0112752,0.0111089,0.0103073,0.00982199,0.00962963,0.00931812,0.00911574,0.00890601,0.0087516,0.00853117,0.00830101,0.00804167,0.00793237,0.00794583,0.00770153,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.0110551,0.0279957,0.0474937,0.0745104,0.10050150000000001,0.1273284,0.1463826,0.16572220000000001,0.1782202,0.19475499999999998,0.22381379999999998,0.2490507,0.25814859999999995,0.26749860000000003,0.27629410000000004,0.2770572,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,coal (conv pul),0.859385,0.892792,0.885689,1.04794,1.202298,1.284464,1.380293,1.451745,1.54271,1.605221,1.6690499999999997,1.6966929999999998,1.7395950000000002,1.762002,1.7721606,1.6742028000000002,1.5937748000000003,1.5450028,1.4875117,1.4455647999999997,1.3720372,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,coal cogen,0.0571659,0.0509867,0.0372456,0.0353812,0.0340022,0.036427,0.034612,0.0326083,0.0313354,0.0301747,0.0297598,0.0291475,0.0286438,0.0276478,0.0268442,0.0259138,0.0248383,0.0237133,0.0230813,0.0229213,0.0227234,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,gas (CC),0.0,0.0,0.0,0.00748856,0.01773773,0.030970650000000002,0.05554746,0.088427,0.13685139999999998,0.18350099,0.22973464,0.25934018000000003,0.27971526999999996,0.2857484,0.2938294,0.3071733,0.3076482,0.28788040000000004,0.2792739,0.2754971,0.28814999999999996,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,gas (steam/CT),0.140306,0.12755,0.123565,0.1434749,0.1592038,0.16749640000000002,0.17485420000000002,0.17356280000000002,0.16787549999999998,0.15549707000000001,0.14161709,0.12639647,0.09451481,0.0702611,0.0487733,0.036196180999999994,0.026853476,0.01869398,0.014466630999999999,0.012192943000000001,0.011912826,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,gas cogen,0.0112803,0.0180645,0.0206726,0.0206164,0.0204034,0.0212021,0.0203142,0.0188379,0.0172626,0.0156428,0.0142687,0.0126812,0.0114931,0.0103538,0.00955863,0.00894979,0.00862145,0.00852599,0.00860621,0.0087243,0.00860684,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,geothermal,0.0,0.0,0.0,0.00605472,0.01394482,0.02169691,0.031669,0.04111946,0.05106199,0.05453056,0.05674246999999999,0.056837570000000004,0.056055339999999995,0.05343131,0.05193432,0.0560544,0.05723651,0.05723673,0.057236949999999995,0.057237329999999996,0.05723695,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,hydro,0.092826,0.14841,0.159804,0.159292,0.158992,0.158692,0.158392,0.158092,0.163653,0.169214,0.174776,0.180337,0.185898,0.191459,0.19702,0.202581,0.208143,0.213704,0.219265,0.224826,0.224826,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,hydrogen cogen,0.0,0.0,0.0,0.0,5.87276E-5,1.01889E-4,1.52235E-4,2.07632E-4,2.71382E-4,3.4822E-4,4.35758E-4,4.65853E-4,5.11893E-4,5.58985E-4,5.98332E-4,6.48125E-4,6.99522E-4,7.54098E-4,8.3541E-4,9.29646E-4,9.18995E-4,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,refined liquids (CC),0.0,0.0,0.0,0.00555554,0.00992337,0.014979349999999999,0.02485131,0.03467144,0.04952882,0.05956704,0.07019515,0.07372503999999999,0.0786665,0.07759289,0.08052902,0.08679402,0.08520916,0.07821596,0.0751453,0.06998104999999999,0.06860246,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,refined liquids (steam/CT),0.0841881,0.0370123,0.0384476,0.0377238,0.04132801,0.043645880000000005,0.04460585,0.04322788,0.04177051000000001,0.03934898999999999,0.03721755,0.035187337,0.027324101,0.020970402,0.015305700999999998,0.011499869000000001,0.008602505,0.005989958999999999,0.004547263,0.0036311429999999994,0.0033463060000000003,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,refined liquids cogen,0.0149473,0.012935,0.0093774,0.00936832,0.00978742,0.0103488,0.0101193,0.00985881,0.00986832,0.00990784,0.0100561,0.0100731,0.0102465,0.0102068,0.0102383,0.0102691,0.0102104,0.0101576,0.0102354,0.0101466,0.0098779,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,rooftop_pv,0.0,0.0,0.0,2.11469E-5,6.19776E-5,1.38395E-4,2.46425E-4,3.94722E-4,6.02584E-4,8.59317E-4,0.00119685,0.00155699,0.00197961,0.00236042,0.00272966,0.00302945,0.00326533,0.00342622,0.00356565,0.00369047,0.00377954,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,wind,0.0,0.00100802,0.0147851,0.023158980000000003,0.03491678,0.04875228,0.07179328,0.10001008,0.12627408,0.1596509,0.19310070000000001,0.2131039,0.22660729999999998,0.2237923,0.21870099999999998,0.24340250000000002,0.2596287,0.2776441,0.31123280000000003,0.3645606,0.40902400000000005,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,wind_storage,0.0,0.0,0.0,5.4591E-5,1.340293E-4,2.312912E-4,4.004932E-4,6.180272E-4,9.458842E-4,0.0012362182,0.0015446979000000001,0.0017444519999999999,0.001899707,0.0019086569999999998,0.0019041099999999999,0.0021687019999999998,0.002350511,0.002542834,0.002894073,0.00344489,0.003938087999999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,CSP,0.0,0.0,0.00249109,0.003416158,0.004539528,0.006117908,0.008373367999999999,0.010570357999999998,0.013010618000000002,0.015025130000000001,0.015870409999999998,0.016112550000000003,0.015904210000000002,0.01550062,0.013074,0.01260726,0.01275166,0.01326066,0.013687969999999999,0.01443754,0.01487852,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,CSP_storage,0.0,0.0,0.0,0.0,0.0,0.00541651,0.021385309999999998,0.05522381,0.11028091,0.16575911,0.22686851,0.2888344,0.3554772,0.39673179999999997,0.4491997,0.5042705,0.540642,0.5838956,0.6212759999999999,0.6720049,0.7129219,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,Gen_III,0.0,0.0,0.0,0.302516,0.503943,0.717802,0.978933,1.264378,1.700487,2.0255979999999996,2.3102639999999997,2.5728459999999993,2.852431,3.078409,3.3708820000000004,3.343562000000001,3.3659339999999998,3.387844,3.3654129999999998,3.31541,3.1414,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,Gen_II_LWR,2.59272,3.24344,2.97257,2.74707,2.61822,2.43029,2.17312,1.8503,1.48628,1.12226,0.799443,0.542269,0.354337,0.225492,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,PV,4.32005E-5,0.00524505,0.0781778,0.0901165,0.100822,0.11236829999999999,0.125597,0.13539211999999998,0.07932971999999999,0.07838942,0.07405006,0.06805203,0.060875259999999994,0.056364529999999996,0.04160893,0.03788577,0.03781502,0.039204869999999996,0.04057113,0.04298739,0.04461002,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,PV_storage,0.0,0.0,0.0,2.00448E-4,3.80475E-4,5.80972E-4,8.448170000000001E-4,0.001187394,0.001659829,0.001874912,0.0021041189999999998,0.002347777,0.0026235760000000003,0.002771226,0.0030017330000000004,0.003314563,0.003553058,0.00385153,0.004121714,0.00449103,0.004811778,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,0.00587412,0.01428656,0.02519271,0.04329881,0.056623009999999994,0.0690735,0.08180825,0.09683514000000001,0.10970763000000001,0.12854436,0.14662640999999998,0.16135207000000001,0.17384226,0.18477753000000002,0.193915,0.19955250000000002,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,biomass (conv),0.028465,0.159297,0.259185,0.1683142,0.19470169999999998,0.21497139999999998,0.23968730000000002,0.25918539999999995,0.2857077,0.29393420000000003,0.3040885,0.31638450000000007,0.3376863,0.35495985,0.3832618,0.3954769,0.4019789999999999,0.4136126000000001,0.4214184,0.42610599999999993,0.42323260000000007,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,biomass cogen,0.0378044,0.076501,0.1013,0.104769,0.115989,0.123614,0.125691,0.122338,0.110337,0.103529,0.0990736,0.0959489,0.0931859,0.0907914,0.0880303,0.0847591,0.0810177,0.0773635,0.0745256,0.0725933,0.0688587,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.0141195,0.0352518,0.0625022,0.1071577,0.1418897,0.1733084,0.20511390000000002,0.241692,0.2733479,0.3168046,0.35994619999999994,0.39672209999999997,0.4230411,0.445261,0.4626611,0.47017169999999997,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,coal (conv pul),2.83949,2.63263,2.14461,2.255947,2.3505420000000004,2.3914129999999996,2.421004,2.4223989999999995,2.489418,2.4552739999999997,2.4097929999999996,2.398314,2.4497929999999997,2.5108500000000005,2.551453,2.4725360000000003,2.4486310000000002,2.4515329999999995,2.4259679999999997,2.390034,2.296815,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,coal cogen,0.0231679,0.0224157,0.027054,0.0298603,0.0276026,0.0272682,0.0253744,0.0235987,0.021995,0.0209559,0.0202479,0.0197509,0.0191148,0.0181645,0.0171615,0.0160483,0.0147787,0.0136523,0.0127209,0.0120774,0.0115002,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,gas (CC),0.280897,1.64617,1.12349,1.2241579999999999,1.309734,1.393422,1.5021700000000002,1.627803,1.8675,1.999963,2.100625,2.2021610000000003,2.1495260000000003,2.1290016,2.1046500000000004,2.1008809999999998,2.027625,1.854417,1.79819,1.79997,1.86618,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,gas (steam/CT),0.182548,0.279272,1.15728,1.077905,1.083796,1.0773764,1.0489438,0.9851211,0.9127002999999999,0.8003113,0.6905424000000001,0.5942463000000001,0.4481867,0.3521379,0.25026940999999997,0.19839319000000002,0.15481174999999997,0.10957710000000001,0.08971642,0.0815378,0.08082679,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,gas cogen,0.0770739,0.369884,0.424487,0.44987,0.420523,0.409263,0.380764,0.346381,0.307394,0.272574,0.240471,0.211485,0.188611,0.168607,0.15388,0.143486,0.138184,0.138136,0.139916,0.142189,0.141914,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,geothermal,0.0116137,0.0194286,0.0201663,0.0490891,0.0796217,0.1176828,0.16448410000000002,0.2119358,0.25373219999999996,0.25492570000000003,0.2549175,0.25491250000000004,0.25492590000000004,0.2549265,0.254926,0.25492590000000004,0.2549217,0.2549249,0.2549276,0.2549279,0.254926,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,hydro,0.939621,0.95855,1.17152,1.14714,1.13525,1.12336,1.11147,1.09957,1.10415,1.10873,1.11331,1.11789,1.12247,1.12705,1.13163,1.13621,1.14078,1.14536,1.14994,1.15452,1.15452,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,hydrogen cogen,0.0,0.0,0.0,0.0,0.0155234,0.0257901,0.0376886,0.0507769,0.0645418,0.0816001,0.0997608,0.106922,0.116977,0.127861,0.135619,0.145779,0.155367,0.165969,0.180517,0.196256,0.19029,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,refined liquids (CC),0.0,0.0,0.0,0.0122626,0.02028629,0.03631078,0.06321794,0.09823128,0.16219930999999999,0.19287444,0.22431808,0.25718123,0.29254386,0.31339310000000004,0.3515416,0.3719023,0.37193599999999993,0.3618263,0.3603984,0.3561329,0.36036369999999995,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,refined liquids (steam/CT),0.625719,0.358867,0.20094,0.149855,0.1523822,0.156483,0.15298799999999999,0.1449696,0.13856349999999998,0.12679688,0.11625231999999999,0.10786689,0.08564716,0.07053865,0.05258070000000001,0.042225030000000004,0.03322281,0.02385005,0.01980891,0.01783439,0.017129039999999998,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,refined liquids cogen,0.0730513,0.0956435,0.064278,0.0621766,0.0615695,0.0624777,0.059572,0.0572025,0.0556832,0.0550146,0.0544867,0.0547095,0.055385,0.0551449,0.0547034,0.0543757,0.0533008,0.0524223,0.0517699,0.0499917,0.047681,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,rooftop_pv,0.0,0.0,0.0,2.24955E-4,5.98465E-4,0.00119633,0.00200055,0.00306599,0.00438312,0.00602912,0.00807877,0.0103572,0.0129729,0.0154663,0.0177874,0.0197297,0.0212539,0.0223969,0.0232456,0.0239483,0.0242518,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,wind,0.00280083,0.25258,0.521819,0.6170332000000001,0.7070392000000001,0.8325512000000002,1.0246622,1.2764512000000001,1.1841662000000002,1.4312970000000003,1.657285,1.8579009999999998,2.0508290000000002,2.143948,2.201747,2.353337,2.4701779999999998,2.627439,2.7617849999999997,2.9565280000000005,3.099987,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,wind_storage,0.0,0.0,0.0,5.95923E-4,0.001169289,0.001990835,0.003285515,0.005051235,0.008060265,0.009931782,0.011712176,0.01338107,0.01507675,0.01602111,0.016899949999999997,0.01843498,0.01962174,0.021158820000000002,0.022549979999999997,0.02444924,0.026049629999999997,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,CSP,0.0,0.0,0.0,2.14988E-4,4.80886E-4,7.38517E-4,0.001238247,0.001871747,0.0028680750000000003,0.0038233370000000004,0.004844899,0.005879128,0.007071948,0.007853778,0.00854266,0.00978731,0.0101677,0.01034994,0.01031688,0.01023975,0.009620829999999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,CSP_storage,0.0,0.0,0.0,0.0,0.0,8.02809E-4,0.0036893689999999996,0.008865719,0.017485799,0.028315499,0.041058999,0.05302679,0.06707383,0.07633438,0.08537919999999999,0.1040713,0.1139221,0.1235733,0.1375516,0.16000979999999998,0.1821651,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,Gen_III,0.0,0.0,0.0,0.0685085,0.0986099,0.1240038,0.1735488,0.2377806,0.3156855,0.3908309,0.4614952,0.520967,0.5887105,0.6391201,0.6937831000000001,0.7056694,0.7307234,0.7546766000000001,0.7659974,0.7658265000000001,0.7503074000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,Gen_II_LWR,0.274249,0.319511,0.32094,0.296594,0.282683,0.262392,0.234626,0.199772,0.16047,0.121168,0.0863137,0.0585474,0.0382568,0.0243458,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,PV,0.0,0.0,0.0,4.12937E-4,7.90944E-4,0.001074269,0.001531135,0.0020297740000000002,0.002731237,0.0030912229999999997,0.003519962,0.004026801,0.004592415000000001,0.004953801000000001,0.005278818,0.006012235,0.006277369,0.0064481930000000005,0.006536103000000001,0.006608243,0.006345349,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,PV_storage,0.0,0.0,0.0,6.88127E-6,1.3139E-5,1.7844890000000002E-5,2.5397550000000002E-5,3.369636E-5,4.5409860000000004E-5,5.137399E-5,5.863086E-5,6.725567E-5,7.722041E-5,8.3847E-5,9.0422E-5,1.0837950000000001E-4,1.186403E-4,1.2914370000000002E-4,1.4466479999999997E-4,1.696545E-4,1.948546E-4,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,1.75116E-4,5.67857E-4,0.001136659,0.002040887,0.0031233,0.004362276,0.005587684,0.007246737000000001,0.008622308,0.010354367,0.013217716,0.015224295,0.017067257,0.019448265,0.021980645,0.024266159999999995,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,biomass (conv),0.0,0.0,2.62796E-4,0.001741327,0.002537524,0.0032216370000000003,0.005000089,0.007142549,0.009835089,0.0126240456,0.0155725385,0.0181986184,0.0218693496,0.0246171241,0.028174069000000003,0.03349204200000001,0.03655118699999999,0.039763259999999995,0.044104380000000006,0.048676769999999994,0.052552409999999994,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,biomass cogen,0.0,1.04308E-4,0.00147812,0.00148258,0.00169294,0.00195645,0.00208802,0.00210537,0.00192928,0.00184947,0.0018306,0.00182098,0.00182879,0.00184248,0.00184902,0.00182944,0.00180228,0.00176011,0.00173106,0.00171336,0.00164886,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.00137116,0.00392303,0.00711543,0.011607679999999999,0.01646811,0.021517220000000004,0.02618626,0.031920279999999995,0.036479670000000006,0.04171206000000001,0.04981292,0.05562414000000001,0.05966601,0.06416702999999999,0.06870814,0.07210453,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,coal (conv pul),0.428483,0.180041,0.245558,0.2979123,0.3192898,0.3209077,0.325643,0.3264252,0.32951610000000003,0.33141930000000003,0.33487089999999997,0.3391796,0.3529802,0.36452,0.3703706,0.3360286,0.3298622,0.3367348,0.3415962,0.34850349999999997,0.3510921,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,coal cogen,0.0,1.43898E-5,0.0049572,0.00468648,0.00452124,0.00530311,0.00539425,0.00533419,0.00502408,0.00487272,0.00487262,0.00496163,0.00506086,0.00508613,0.00507849,0.00496147,0.00480677,0.00460157,0.00442588,0.00430259,0.00421027,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,gas (CC),0.0754138,0.0,0.0,0.0115105,0.01990491,0.02799169,0.04614933,0.07237549,0.11121782,0.15303295,0.19430208,0.22887002,0.25610572,0.27548951,0.2969117,0.3222169,0.3258664,0.31526160000000003,0.3093058,0.3066922,0.3102164,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,gas (steam/CT),0.173775,0.224147,0.177037,0.2049694,0.2122546,0.2117503,0.2109969,0.2028058,0.18943590000000002,0.17204835,0.15419385,0.13755017,0.09059498999999999,0.06757652,0.04734109000000001,0.03711159,0.02845022,0.02108159,0.01668822,0.014280979999999999,0.01329196,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,gas cogen,0.0292656,0.0203419,0.0138646,0.0137794,0.0135034,0.0146929,0.0146165,0.0139647,0.0126401,0.0115366,0.010629,0.00970787,0.00899981,0.00829237,0.00772284,0.00722138,0.00692045,0.00677566,0.00669239,0.00657249,0.00631232,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,geothermal,0.0,0.0,0.0,0.00419121,0.00671689,0.0084353,0.00983599,0.009835990000000001,0.009835983,0.009835999,0.009835999,0.00983497,0.009836000000000001,0.00983601,0.009836010000000001,0.009836013,0.009836137,0.009835967000000001,0.009835993000000001,0.009836617,0.009836000000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,hydro,0.0388476,0.0448632,0.0479592,0.0480941,0.0483945,0.048695,0.0489954,0.0492959,0.0496296,0.0499634,0.0502971,0.0506309,0.0509646,0.0512984,0.0516321,0.0519659,0.0522996,0.0526334,0.0529671,0.0533009,0.0533009,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,hydrogen cogen,0.0,0.0,0.0,0.0,7.83937E-5,1.38374E-4,2.11005E-4,2.94295E-4,3.83773E-4,4.98584E-4,6.32836E-4,6.97951E-4,7.90165E-4,8.92547E-4,9.77444E-4,0.0010775,0.00118037,0.00128625,0.00142471,0.00157027,0.00153938,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,refined liquids (CC),0.0,0.0,0.0,7.38927E-4,9.09935E-4,0.001189112,0.0020014489999999998,0.002958841,0.004357359999999999,0.005696479000000001,0.007037388,0.008165688,0.009491032,0.010229712,0.011390547,0.013165228000000001,0.01347316,0.013503799999999998,0.013905279999999999,0.0140561,0.014282560000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,refined liquids (steam/CT),0.255453,0.00542502,0.0047411,0.0053828999999999995,0.005378107,0.005408241,0.0053829820000000006,0.005154702000000001,0.004840141000000001,0.004475102,0.004136345,0.003863511,0.0026642041,0.0020858625999999997,0.0015714675000000002,0.0013150771999999999,0.0010790704,8.642889E-4,7.416162000000001E-4,6.749675E-4,6.540637999999999E-4,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,refined liquids cogen,2.52062E-4,0.0,3.27453E-4,2.96023E-4,2.98848E-4,3.22612E-4,3.19746E-4,3.16141E-4,3.1422E-4,3.17959E-4,3.26017E-4,3.3563E-4,3.50729E-4,3.59969E-4,3.68491E-4,3.76032E-4,3.79042E-4,3.8102E-4,3.84027E-4,3.7646E-4,3.64289E-4,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,rooftop_pv,0.0,0.0,0.0,9.55449E-6,2.71038E-5,6.23261E-5,1.14499E-4,1.90103E-4,2.88113E-4,4.20079E-4,6.00981E-4,8.2699E-4,0.00110685,0.00140147,0.00170426,0.00197228,0.00221587,0.00240642,0.00255662,0.0026766,0.00278885,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,wind,0.0,1.40396E-4,1.87196E-4,0.004942966,0.009412096,0.013711206,0.022836106000000002,0.035347306,0.05384291,0.07075434,0.09005210999999999,0.10879639999999999,0.1294023,0.1418167,0.1530243,0.179211,0.1913301,0.2028964,0.2190387,0.2455902,0.2688859,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,wind_storage,0.0,0.0,0.0,3.06186E-5,6.04194E-5,9.00019E-5,1.551276E-4,2.48208E-4,3.9247E-4,5.334324E-4,6.979206000000001E-4,8.613060999999999E-4,0.0010493823999999999,0.001171418,0.001289784,0.0015466599999999998,0.001676094,0.001799393,0.00196986,0.002235233,0.00247815,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,CSP,0.0,0.0,0.0,6.04955E-5,1.296713E-4,2.3834030000000002E-4,3.991703E-4,5.974153E-4,8.272683E-4,0.0010338688000000001,0.001234537,0.001410689,0.00213523,0.002456116,0.00278012,0.004018224,0.004583159,0.004986672,0.004987393,0.005260544,0.0053115160000000005,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,CSP_storage,0.0,0.0,0.0,0.0,0.0,3.61261E-4,0.001352351,0.003080391,0.0052008409999999995,0.007833300999999999,0.010668590999999998,0.01327333,0.0214302,0.02507875,0.0287379,0.04217314,0.04866972,0.05395559999999999,0.055414439999999995,0.060151149999999994,0.06247841,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,Gen_III,0.0,0.0,0.0,0.0877664,0.1218393,0.1522206,0.1826664,0.2107731,0.23665689999999998,0.2621632,0.2848636,0.30485860000000004,0.358024,0.3854242,0.411648,0.3896497,0.39007349999999996,0.3871561,0.3895441,0.3901251,0.3855033,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,PV,0.0,0.0,0.0,0.00189009,0.00348973,0.0054336,0.007825180000000001,0.010363150000000002,0.012995100000000002,0.013973880000000001,0.015123259999999998,0.01600985,0.02229073,0.024859140000000002,0.02767658,0.03965721,0.04519136,0.04903975,0.04911796,0.051768220000000004,0.05220803,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,PV_storage,0.0,0.0,0.0,3.14992E-5,5.7982799999999997E-5,9.02729E-5,1.2981400000000001E-4,1.7205760000000002E-4,2.1599320000000003E-4,2.3210439999999999E-4,2.514688E-4,2.663869E-4,3.711398E-4,4.136506E-4,4.609511E-4,6.689657E-4,7.728447E-4,8.593835000000001E-4,8.879435000000001E-4,9.700141E-4,0.001013775,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,2.79403E-4,6.3653E-4,0.001092376,0.001587179,0.002189003,0.002806253,0.003458165,0.005782203,0.0068724649999999995,0.008228507,0.012340087999999999,0.014241284,0.015826277,0.017951229,0.019730582000000003,0.020865461000000002,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,biomass (conv),0.0,3.23995E-4,5.00385E-4,0.002005778,0.002335084,0.0031972629999999997,0.0046364200000000005,0.006121308,0.007190706,0.0084866135,0.009723780400000001,0.010940491699999999,0.0164665413,0.0180767968,0.020676214999999998,0.0290881,0.031422218,0.033826220000000004,0.03763533,0.04057439,0.042098449999999996,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,biomass cogen,0.0,2.1581E-5,8.991E-5,1.45989E-4,1.77273E-4,2.05095E-4,2.24766E-4,2.3652E-4,2.34026E-4,2.36439E-4,2.41314E-4,2.44603E-4,2.48788E-4,2.519E-4,2.53504E-4,2.53276E-4,2.49912E-4,2.44306E-4,2.40993E-4,2.40306E-4,2.32243E-4,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.00827308,0.01836359,0.029265100000000002,0.04007226,0.051188109999999995,0.061379050000000004,0.0710849,0.09848902,0.11331166999999999,0.12802229,0.16596001,0.18621296,0.19422677,0.20400978,0.21051784000000004,0.21266318,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,coal (conv pul),0.231522,0.307824,0.36616,0.669815,0.785457,0.865695,0.9367549999999999,0.9907459000000001,1.0257206,1.0540377,1.0750902999999998,1.0965472,1.2135528000000002,1.2698015,1.3108487,1.1510078,1.109542,1.0783993999999997,1.0625695999999998,1.046177,1.0250988,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,coal cogen,0.00156515,0.00241029,0.0029088,0.00550388,0.00585882,0.00654984,0.00691747,0.00734309,0.00796059,0.00858082,0.00923385,0.00982877,0.0104399,0.0107714,0.0110287,0.0112053,0.0111008,0.0108403,0.0106593,0.010648,0.0106019,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,gas (CC),0.0370173,0.233934,0.247603,0.543115,0.651642,0.745961,0.834032,0.905595,0.9561698999999999,0.9964356999999999,1.0243264,1.0460215000000002,0.8407865,0.763683,0.6885447,0.7091421,0.6758107000000001,0.6479214,0.6413351999999999,0.641338,0.6361695,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,gas (steam/CT),0.0103584,0.024693,0.1046,0.1050926,0.10311809999999999,0.10144933,0.0972817,0.09006575,0.08051885999999998,0.07054287000000001,0.06105884999999999,0.05288386,0.04100979999999999,0.03344993,0.02460056,0.026106450000000003,0.0241857,0.023261,0.02340387,0.02353922,0.0232861,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,gas cogen,7.66171E-4,0.0136033,0.0129492,0.0222999,0.023844,0.0259983,0.0269002,0.0272582,0.0271747,0.0267083,0.0259163,0.0245644,0.0234664,0.0220659,0.0208914,0.0199709,0.0193253,0.0190329,0.0189531,0.0188696,0.0182897,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,geothermal,2.87998E-4,3.38395E-4,0.00240475,0.01206867,0.01812257,0.024949310000000002,0.03264856,0.040212569999999996,0.04491719,0.04338415,0.04482914,0.04540867,0.05560437,0.05770387,0.06031802,0.07278053000000001,0.07573276999999999,0.07750251999999999,0.07436938,0.07595908999999999,0.07562616999999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,hydro,0.154156,0.263261,0.335171,0.322883,0.311124,0.299366,0.287607,0.275848,0.291875,0.307902,0.323929,0.339956,0.355983,0.37201,0.388037,0.404064,0.420091,0.436118,0.452145,0.468172,0.468172,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,hydrogen cogen,0.0,0.0,0.0,0.0,4.80699E-5,8.6497E-5,1.35339E-4,1.94792E-4,2.66455E-4,3.58164E-4,4.63428E-4,5.16645E-4,5.88493E-4,6.6398E-4,7.25434E-4,8.02958E-4,8.75785E-4,9.49304E-4,0.00104822,0.00115758,0.00113748,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,refined liquids (CC),0.0,0.0,0.0,0.00346653,0.0030650779999999997,0.004483638,0.006440986,0.008441502,0.010270679,0.012477439,0.014292126999999998,0.016192549,0.025289402,0.025025902000000003,0.027448060000000003,0.03920991,0.03860096,0.03969743,0.04264577,0.043326260000000005,0.04282409,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,refined liquids (steam/CT),0.0262079,0.0251024,0.00900702,0.01176216,0.00980367,0.010526220000000001,0.01061149,0.010418844,0.010249536,0.010150423,0.010030594,0.009951999999999999,0.00685257,0.0054338220000000005,0.004052124999999999,0.0034959,0.002849132,0.0024774209999999996,0.002327146,0.002249827,0.002194734,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,refined liquids cogen,0.0107523,0.00468467,0.00174882,0.0023754,0.00251402,0.00277242,0.00284878,0.00293082,0.00306589,0.00321792,0.00336634,0.00350598,0.00368675,0.0037892,0.00387649,0.00397257,0.0039949,0.00400172,0.00402948,0.00396754,0.00383715,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,rooftop_pv,0.0,0.0,0.0,7.63078E-5,2.25223E-4,5.02194E-4,9.22917E-4,0.00155627,0.0024812,0.00373238,0.00541393,0.00743187,0.00999089,0.0126495,0.0153511,0.0180079,0.0203655,0.0222606,0.023969,0.0256016,0.0269127,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,wind,0.0,2.48396E-4,0.0110014,0.0259092,0.03471862,0.04540152,0.05909852,0.07450362,0.07949692,0.08212352,0.0901722,0.0963194,0.1309428,0.1430389,0.1555993,0.21215799999999999,0.2367533,0.2548704,0.2514809,0.2654861,0.2694801,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,wind_storage,0.0,0.0,0.0,1.07242E-4,1.7312019999999998E-4,2.5667189999999996E-4,3.684799E-4,5.003009E-4,6.400619E-4,6.879919E-4,7.755967E-4,8.483980000000001E-4,0.001208803,0.001351489,0.00150434,0.002154894,0.002462691,0.0027038870000000003,0.002743833,0.002947685,0.003034978,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,Gen_III,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00454184,0.01194048,0.024616060000000002,0.04191276000000001,0.05898744,0.07554343,0.08608651,0.09373647,0.10144006,0.10894812,0.11673941999999998,0.12522391,0.12638916000000003,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,Gen_II_LWR,0.0850906,0.0840297,0.094822,0.0876289,0.0835189,0.077524,0.0693204,0.0590228,0.0474109,0.0357991,0.0255015,0.0172979,0.011303,0.00719298,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,PV,3.60004E-6,6.84017E-5,2.98805E-4,3.84874E-4,8.05431E-4,0.001511443,0.002524883,0.003403332,0.003407471,0.00359166,0.0035211519999999996,0.0033524339999999996,0.002941644,0.002722294,0.0028669079999999996,0.002947591,0.002980481,0.002847808,0.0027040700000000003,0.002592939,0.002542335,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,PV_storage,0.0,0.0,0.0,1.43419E-6,8.396099999999999E-6,2.01281E-5,3.72457E-5,6.16946E-5,7.2451E-5,8.226651E-5,9.07986E-5,1.0386259999999999E-4,1.146287E-4,1.206365E-4,1.320301E-4,1.3859120000000002E-4,1.427442E-4,1.3865539999999998E-4,1.336108E-4,1.293225E-4,1.25754E-4,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,7.45736E-4,0.0017948999999999999,0.002978232,0.003369913,0.0037930080000000005,0.0043873950000000005,0.005322292,0.006330599000000001,0.007430193999999999,0.008131302,0.008644494,0.009207291999999999,0.009259691,0.00911589,0.008968480000000001,0.009068463,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,biomass (conv),0.00161282,0.00203766,0.00243364,0.0016447340000000001,0.005050605,0.008469936,0.012985700999999999,0.017218363,0.017662766,0.018291138999999998,0.019370918,0.021034288999999998,0.022707054499999997,0.024529187300000005,0.025309377,0.025321700000000003,0.02413044,0.02265856,0.020799950000000005,0.019187964000000002,0.018766147,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,biomass cogen,0.00186413,0.00639876,0.00725394,0.00563964,0.00671208,0.00708462,0.00696974,0.00645228,0.00596738,0.00549914,0.00512753,0.00473272,0.00438347,0.00410972,0.00387531,0.00362629,0.00338304,0.00316238,0.00297875,0.0028357,0.00264674,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,coal (IGCC),0.0,0.0,0.0,0.0,0.0,1.70298E-4,4.31044E-4,7.495869999999999E-4,8.86828E-4,0.001031847,0.00124344,0.001607768,0.0020546110000000005,0.0025869770000000003,0.0029982580000000006,0.0033570600000000003,0.003786749,0.004109784,0.004457382,0.004910142,0.0053758140000000005,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,coal (conv pul),3.38404E-4,4.7522E-4,3.81602E-4,8.41123E-4,0.002591447,0.004695787,0.007317237,0.010014484,0.01098085,0.011888010000000001,0.013108569,0.015069122200000002,0.0173299573,0.019903357600000005,0.021797959000000002,0.022933322,0.023078749,0.023138574999999998,0.023144293,0.023831994,0.025551064999999998,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,coal cogen,1.00746E-4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,gas (CC),0.0,0.00174519,0.0180938,0.01995417,0.029696359999999998,0.04143069,0.05429971,0.06555515,0.06757432000000001,0.06880011999999999,0.07076507,0.07449245,0.07527989,0.0693467,0.05874236,0.04721958999999999,0.037274940000000006,0.03640701,0.03690595,0.03785223,0.03613727,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,gas (steam/CT),2.69998E-4,1.05273E-4,1.08859E-5,1.7873308999999998E-4,7.0629004E-4,0.0013338122000000003,0.00203758172,0.0026366473,0.0027757786499999996,0.0028769341999999995,0.0029796703499999997,0.0030961312,0.0030443888140000005,0.0027198566760000004,0.002263102,0.0017597029999999998,0.0013825209999999998,0.001352131,0.0013790209999999998,0.0014375980000000002,0.0013781367,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,gas cogen,0.00120861,0.00317471,0.0040509,0.00285797,0.00295509,0.00282839,0.00250557,0.00212642,0.00195482,0.0016925,0.00144166,0.00118679,9.92069E-4,8.38697E-4,7.31341E-4,6.4883E-4,5.94621E-4,5.65526E-4,5.43691E-4,5.22868E-4,4.96327E-4,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,geothermal,0.00108001,0.00596895,0.0160743,0.01908162,0.027012920000000003,0.03466233,0.03547401,0.03547404,0.03426615,0.03440013,0.03134825,0.03007217,0.03063636,0.03188108,0.03268699,0.032911380000000004,0.03242364,0.03029091,0.02849144,0.027550349999999998,0.027186309999999998,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,hydro,0.558752,0.626339,0.598385,0.583929,0.569578,0.555226,0.540875,0.526524,0.53205,0.537576,0.543103,0.548629,0.554155,0.559681,0.565207,0.570734,0.57626,0.581786,0.587312,0.592839,0.592839,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,hydrogen cogen,0.0,0.0,0.0,0.0,0.00177029,0.00292548,0.00417643,0.00542254,0.00708863,0.00887569,0.0106563,0.0109802,0.0115286,0.0121621,0.0125376,0.013073,0.0135547,0.0141135,0.0149305,0.0157672,0.0149716,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,refined liquids (CC),0.0,0.0,0.0,5.39448E-6,3.130308E-5,7.148112E-5,1.276834E-4,1.8385264999999998E-4,1.8618034E-4,2.0223086E-4,2.2579175999999998E-4,2.5938332E-4,2.856235E-4,2.997198E-4,2.847031E-4,2.532914E-4,2.195344E-4,2.1415869999999999E-4,2.1068130000000002E-4,2.020602E-4,1.7590460000000002E-4,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,refined liquids (steam/CT),0.0010152,2.62807E-4,1.83584E-4,1.727403E-4,1.9836556E-4,2.1879670000000002E-4,2.2855420999999998E-4,2.2316651E-4,2.0287095999999997E-4,1.8269791E-4,1.6471200000000002E-4,1.4952898000000002E-4,1.3017944999999998E-4,9.851156000000002E-5,5.89306E-5,3.4453009E-5,1.7876042999999997E-5,1.4324094000000003E-5,1.2452731E-5,1.096335E-5,9.045018E-6,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,refined liquids cogen,4.21305E-4,6.08071E-4,1.87116E-4,1.1752E-4,1.22946E-4,1.23616E-4,1.14446E-4,1.05415E-4,1.0475E-4,1.02097E-4,9.90883E-5,9.58031E-5,9.34414E-5,9.01247E-5,8.73451E-5,8.47844E-5,8.13553E-5,7.85172E-5,7.59924E-5,7.1778E-5,6.73644E-5,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,rooftop_pv,0.0,0.0,0.0,4.64004E-7,1.93276E-6,3.58276E-6,5.93351E-6,8.72611E-6,1.3366E-5,1.83648E-5,2.41391E-5,2.91711E-5,3.42139E-5,3.83758E-5,4.27033E-5,4.5545E-5,4.73066E-5,4.83034E-5,4.83371E-5,4.79555E-5,4.7245E-5,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,wind,0.0,0.00182525,0.00335526,0.0053507,0.016699,0.0368243,0.066548,0.1005842,0.11086294,0.12232090000000001,0.1290936,0.13751760000000002,0.140062,0.1414644,0.15273250000000002,0.15910619999999998,0.1628407,0.15736450000000002,0.1509995,0.1459087,0.1427657,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,wind_storage,0.0,0.0,0.0,1.06483E-5,7.309430000000001E-5,1.8808030000000002E-4,3.637323E-4,5.724773E-4,6.570883E-4,7.306432E-4,7.832261999999999E-4,8.513741999999999E-4,8.827322E-4,9.019582E-4,9.801112E-4,0.0010262790000000002,0.001055092,0.0010242110000000001,9.877380000000002E-4,9.584530000000001E-4,9.39034E-4,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,CSP,0.0,0.0,0.0,1.82759E-4,7.77527E-4,0.002083467,0.004578867,0.008478897,0.014169367000000002,0.021178708,0.028974530000000002,0.037225,0.0454359,0.05268407,0.059187899999999995,0.0683456,0.07692521000000001,0.0847365,0.093,0.10160720000000001,0.10780269999999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,CSP_storage,0.0,0.0,0.0,0.0,0.0,0.0043425,0.0197301,0.0537838,0.10644200000000001,0.1777652,0.2668572,0.3636067,0.4611881,0.5455264,0.6236702,0.731163,0.8345969999999999,0.940128,1.07033,1.2337930000000001,1.39774,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,Gen_III,0.0,0.0,0.0,0.0640601,0.1343658,0.21773510000000001,0.321749,0.4402938,0.5819177,0.7378785,0.9020804,1.0636831,1.2200688,1.3647604000000002,1.508381,1.6237193,1.7308853000000002,1.823177,1.9096190000000002,1.994541,2.049904,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,Gen_II_LWR,0.0221076,0.0623663,0.0945575,0.0873845,0.0832859,0.0773077,0.069127,0.0588581,0.0472786,0.0356992,0.0254303,0.0172496,0.0112714,0.00717289,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,PV,0.0,6.83999E-5,8.27999E-5,0.0114319999,0.0387671999,0.0851908999,0.1589086999,0.2580250999,0.3871762999999999,0.5287331,0.6701269,0.8105472,0.9424433999999999,1.057741,1.162691,1.324115,1.483309,1.625738,1.7694079999999999,1.9027759999999998,1.9756349999999998,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,PV_storage,0.0,0.0,0.0,1.89158E-4,6.41806E-4,0.001413318,0.002633598,0.004288318,0.006457058,0.00883193,0.011242892,0.013669659999999998,0.01599127,0.01804618,0.01998169,0.023072350000000002,0.026348800000000002,0.02980724,0.03414233,0.03967423,0.045326069999999996,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,0.00559627,0.01488149,0.02878186,0.047325229999999996,0.06994179,0.09594225,0.12467138999999999,0.15618328,0.18921331000000002,0.22567253000000004,0.27606896000000003,0.32806095,0.37848372999999996,0.43381369999999997,0.49177909999999997,0.5437432999999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,biomass (conv),0.0,0.00692279,0.00740519,0.014516683,0.033317743999999996,0.057160011,0.097115532,0.14832017600000003,0.200880788,0.256636827,0.3153254976,0.3743374601,0.4375573449,0.5015395434000001,0.57131505,0.6658570000000001,0.7543397999999999,0.8409338999999999,0.9385485,1.040971,1.1295396,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.125295,0.315594,0.569403,0.883523,1.233015,1.601618,1.981462,2.3690330000000004,2.7423439999999997,3.122696,3.6053439999999997,4.0844380000000005,4.429893,4.750063,5.030037999999999,5.220275,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,coal (conv pul),0.68977,1.69899,2.35082,3.5071000000000003,4.90403,6.32143,8.05528,9.98216,12.01303,14.024194999999999,15.967542000000002,17.84282,19.676231,21.390589,22.99147,23.840310000000002,24.473470000000002,24.99562,25.29049,25.4796,25.446520000000003,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,gas (CC),0.0,0.247169,0.0386551,0.08943090000000001,0.16987190000000002,0.3045569,0.536699,0.886809,1.3438994,1.85848,2.3864300999999997,2.89484597,3.3239807,3.68290838,3.974571,4.279509,4.471464,4.573803000000001,4.686383,4.848015,5.017698,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,gas (steam/CT),0.0358488,0.0245121,0.385385,0.465995,0.587332,0.721978,0.8591,0.9663010000000001,1.0287170000000003,1.048406,1.0387814,1.0097005000000001,0.8776945,0.7456422,0.6042728,0.4818024,0.37838819999999995,0.3017379,0.25452600000000003,0.23134930000000004,0.2220521,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,geothermal,0.0,0.0,0.0,0.022071,0.0474938,0.0565819,0.05658201,0.05658191,0.05658197,0.05658168,0.05658203,0.05658197,0.056581980000000004,0.05658198,0.05658199,0.056582099999999996,0.05658982,0.05657965,0.05658196,0.056604089,0.056581983,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,hydro,0.257962,0.366228,0.411926,0.447853,0.48378,0.519707,0.555634,0.591561,0.654843,0.718125,0.781406,0.844688,0.90797,0.971252,1.03453,1.09782,1.1611,1.22438,1.28766,1.35094,1.35094,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,hydrogen cogen,0.0,0.0,0.0,0.0,4.28409E-4,9.26154E-4,0.00164606,0.00262371,0.0038625,0.00548587,0.00739201,0.00847287,0.0097784,0.0111895,0.0123635,0.0136894,0.0150458,0.0163672,0.018058,0.0197251,0.0194992,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,refined liquids (CC),0.0,0.0,0.0,0.0781665,0.1718893,0.3348949,0.5854263,0.8956243,1.2322777999999999,1.5497766,1.8361967,2.0923476,2.30854,2.4564899000000002,2.560372,2.655589,2.6063519999999993,2.468769,2.284952,2.026728,1.824573,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,refined liquids (steam/CT),0.0361728,0.0836639,0.0951875,0.17719969000000002,0.28851479,0.41445401000000004,0.51989123,0.5913516600000001,0.6383338700000001,0.6668814800000001,0.68450628,0.6972874060000002,0.616770419,0.528150169,0.42994449999999995,0.33188809999999996,0.24878150000000002,0.18523620000000002,0.14160567,0.11160448,0.09293870000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,rooftop_pv,0.0,0.0,0.0,0.00164147,0.00569963,0.0151464,0.0307108,0.055482,0.0911552,0.139208,0.202574,0.279137,0.370294,0.465061,0.555368,0.633252,0.703584,0.75408,0.791016,0.811453,0.837736,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,wind,1.152E-4,0.0237708,0.0716795,0.1179991,0.1874505,0.2897955,0.43998249999999994,0.6332544999999999,0.795881,1.0075894,1.209095,1.38699,1.529054,1.627269,1.7010690000000002,1.844691,1.986975,2.1268599999999998,2.2989490000000004,2.5075930000000004,2.685553,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,wind_storage,0.0,0.0,0.0,4.67883E-4,0.001239043,0.002497913,0.004544653,0.007462013,0.011262263,0.015291589999999999,0.01956625,0.02380387,0.0277012,0.03088829,0.03372215,0.038151309999999994,0.04254416,0.04692351,0.05220644,0.058534989999999995,0.06435107999999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,CSP,0.0,0.0,0.0,1.00245E-4,3.58855E-4,8.479799999999999E-4,0.0016633169999999999,0.002795587,0.0044101669999999996,0.006307772,0.008304742,0.010434847,0.012966740000000001,0.01532027,0.01721194,0.02022781,0.02288995,0.025447209999999998,0.02749759,0.029524960000000003,0.03126774,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,CSP_storage,0.0,0.0,0.0,0.0,0.0,0.00144805,0.00592233,0.01471107,0.02797467,0.045508969999999996,0.06661317,0.08945322,0.11575454,0.1390739,0.15831869999999998,0.1873672,0.2123258,0.23687440000000004,0.2573917,0.27802720000000003,0.2962414,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,Gen_III,0.0,0.0,0.0,0.00385367,0.00726916,0.01490819,0.02820198,0.04701988,0.07043768,0.09696505999999999,0.12509005,0.15287534,0.18336661,0.21140499999999998,0.23683946,0.26634811999999997,0.29340244000000004,0.31583209999999995,0.3321805,0.3423082,0.3454523,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,PV,0.0,0.0,0.0,0.0015181,0.004416740000000001,0.00865773,0.014534600000000002,0.02156111,0.03052283,0.039406529999999995,0.04764649,0.056023,0.06604483,0.07564922,0.08342840000000001,0.09726310000000002,0.11047059999999999,0.12366100000000002,0.1350546,0.14683359999999998,0.15750739999999996,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,PV_storage,0.0,0.0,0.0,2.52997E-5,7.32889E-5,1.43735E-4,2.408944E-4,3.578334E-4,5.074144E-4,6.547217E-4,7.924785E-4,9.324444E-4,0.001099502,0.001258051,0.0013877859999999998,0.0016185529999999998,0.001835074,0.002055495,0.0022462520000000002,0.0024443200000000003,0.002624739,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,6.09403E-4,0.001628218,0.003097986,0.005107144,0.007578496,0.010384793,0.013599685,0.017713276,0.021971057999999998,0.026255491,0.032621293999999995,0.038618646000000006,0.044504444,0.050314990000000004,0.05585331,0.060635669999999996,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,biomass (conv),0.0,7.91916E-5,3.42008E-4,0.0016047729999999999,0.0037320879999999997,0.006513115,0.0109279446,0.0163793429,0.0221906008,0.028382465200000002,0.03476913499999999,0.0415281167,0.050228544050000004,0.05863430367,0.066780865,0.07900332,0.08903205,0.09894997,0.1086579,0.11775082,0.12555448,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.017221,0.041543300000000005,0.07176099999999999,0.10886180000000001,0.1497309,0.1918218,0.2359428,0.28713869999999997,0.33631439999999996,0.38228829999999997,0.4438491,0.5005879999999999,0.5393282,0.5706211000000001,0.5940552999999998,0.6055224000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,coal (conv pul),0.0351648,0.186455,0.24521,0.46773200000000004,0.6755570000000001,0.87528,1.101661,1.3348200000000001,1.5786430000000002,1.8174383,2.0418478,2.2620593,2.5083542999999997,2.7369571,2.9333769999999997,2.970941,3.0049859999999997,3.0379830000000005,3.033568,3.0121100000000003,2.95835,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,gas (CC),1.566E-5,0.0351839,0.0227519,0.0641766,0.1124239,0.1835784,0.2913044,0.43586420000000003,0.616293,0.8109768900000001,0.9998987500000001,1.17911255,1.32574867,1.44257144,1.512144,1.5881340000000002,1.6082450000000001,1.593018,1.55994,1.5255749999999997,1.4843909999999998,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,gas (steam/CT),0.00262674,0.0335258,0.121385,0.1867877,0.24402030000000002,0.30276440000000004,0.35639849999999995,0.3912944,0.4071859,0.4058845,0.3928749,0.3731697,0.30450204,0.24714439000000002,0.19167572,0.14694248,0.11169343000000002,0.08628175999999999,0.06963865,0.059754100000000004,0.05390713,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,geothermal,0.00405,0.0237744,0.0336852,0.059615,0.0803817,0.10118,0.1222342,0.1411212,0.1346936,0.13593840000000001,0.1406365,0.1449685,0.1507037,0.15489399999999998,0.154894,0.1549111,0.1548892,0.15489129999999998,0.154894,0.1548941,0.154894,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,hydro,0.0205488,0.03861,0.0636336,0.0643101,0.0649865,0.065663,0.0663395,0.0670159,0.0690624,0.071109,0.0731555,0.075202,0.0772485,0.079295,0.0813415,0.083388,0.0854345,0.0874811,0.0895276,0.0915741,0.0915741,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,hydrogen cogen,0.0,0.0,0.0,0.0,5.13516E-4,0.00103018,0.00170478,0.00250703,0.00343865,0.00462174,0.00597133,0.00667846,0.00759352,0.00856901,0.00934515,0.0102633,0.0110864,0.0118211,0.0127659,0.0136115,0.0133574,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,refined liquids (CC),0.0,0.0,0.0,0.0391023,0.0776873,0.1424995,0.2320661,0.3325204,0.44257969999999996,0.5434203,0.6286352000000001,0.7096009000000001,0.7903384999999999,0.8338463,0.8485775,0.8675155000000001,0.8275351,0.7612857,0.6760043,0.5718736000000001,0.49403900000000006,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,refined liquids (steam/CT),0.0551952,0.140904,0.124218,0.171029,0.2127517,0.2566433,0.28274340000000003,0.29197660000000003,0.2934445,0.2900231,0.2848658,0.2814968,0.23171174,0.18963113999999998,0.14454477,0.10804420999999999,0.07916735999999999,0.057480869999999996,0.04258039999999999,0.032403270000000005,0.025910087,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,rooftop_pv,0.0,0.0,0.0,2.63166E-4,8.5531E-4,0.00208249,0.00392767,0.00659659,0.0102765,0.0151722,0.0216143,0.029673,0.0394599,0.0495608,0.0590826,0.067458,0.0739617,0.0778953,0.0800918,0.0804054,0.0837739,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,wind,0.0,0.0,0.0,0.00267997,0.00713278,0.01416356,0.02444656,0.03735786,0.053058060000000004,0.06791929,0.08180757999999999,0.09435160000000001,0.1073539,0.117631,0.12452739999999998,0.1380319,0.1494347,0.1603137,0.1682872,0.17665450000000002,0.1838193,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,wind_storage,0.0,0.0,0.0,2.77223E-5,8.208940000000001E-5,1.811799E-4,3.457939E-4,5.777699E-4,8.894069E-4,0.0012377656,0.0016047055000000003,0.0019806520000000003,0.002407806,0.002788191,0.0030928,0.0035971759999999997,0.004045609,0.0044887419999999996,0.004859864,0.005237721,0.0055765369999999995,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,CSP,0.0,0.0,0.0,0.00181957,0.00299271,0.003632397,0.004822987,0.0063669569999999995,0.008937547,0.009907557,0.011440496999999999,0.01312499,0.01785543,0.01972459,0.02059009,0.022998659999999997,0.023677019999999997,0.024488410000000002,0.0231394,0.02456641,0.02584343,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,CSP_storage,0.0,0.0,0.0,0.0,0.0,8.08437E-4,0.003597517,0.008713517,0.017727957000000003,0.028179157000000003,0.038987357,0.047379160000000003,0.06783588,0.07614698,0.08074054,0.09093153999999999,0.09367484000000001,0.0971243,0.0924364,0.09879840000000001,0.10467309999999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,Gen_III,0.0,0.0,0.0,0.0,0.0,0.0108417,0.0454575,0.1053462,0.188082,0.265932,0.3331205,0.3834277,0.4973147,0.5568092,0.6119354,0.6895682999999999,0.7370515,0.7676782,0.7901974,0.7878837000000001,0.7587221,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,Gen_II_LWR,0.728178,1.09712,1.03763,0.958912,0.913936,0.848335,0.758563,0.645878,0.518811,0.391744,0.279059,0.189288,0.123687,0.0787116,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,PV,3.6E-6,0.00537479,0.0136764,0.01714957,0.01880694,0.019506046000000003,0.020587736000000002,0.021795466000000003,0.009917566,0.008275176,0.008302325999999999,0.00901458,0.0114783,0.01232353,0.01259343,0.013931129999999998,0.01435963,0.014920119999999999,0.01429118,0.015386070000000002,0.01642651,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,PV_storage,0.0,0.0,0.0,5.78794E-5,8.53173E-5,9.692940000000001E-5,1.1481140000000001E-4,1.3490960000000002E-4,1.649254E-4,1.3742190000000002E-4,1.380706E-4,1.499913E-4,1.9103380000000001E-4,2.0495030000000002E-4,2.0945610000000002E-4,2.318561E-4,2.387117E-4,2.481277E-4,2.378055E-4,2.5625040000000005E-4,2.738665E-4,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,5.01523E-4,0.001366024,0.002497353,0.00427535,0.006041746,0.00769474,0.008987346,0.012715191,0.014379889999999998,0.016219841999999998,0.019074808000000002,0.020581237,0.02165382,0.023203197999999998,0.02453412,0.02512596,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,biomass (conv),0.037872,0.0795455,0.0844343,0.08792699999999999,0.08345345000000001,0.07982909,0.0778822,0.07348583000000002,0.0672706,0.060628409999999994,0.05480934,0.04967905,0.05302034,0.051714970000000006,0.04885863,0.04846282,0.04743569,0.048236890000000004,0.05015009999999999,0.051516629999999994,0.05132249,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.00440388,0.012959020000000002,0.02450154,0.04284792,0.0620216,0.08009297,0.09477075,0.13005285,0.14939713,0.16798279,0.19489939999999997,0.21165854,0.22204162000000002,0.2342947,0.24379140000000002,0.24511999999999998,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,coal (conv pul),0.420141,1.09279,1.09618,1.366932,1.462502,1.4482577,1.4405442,1.4207695,1.4219649999999997,1.4138595999999997,1.4026081000000001,1.3880973,1.4992226,1.5458134,1.5495921000000001,1.3174714,1.2488886000000001,1.2594389,1.2633331,1.2575586,1.2113012,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,gas (CC),0.550414,0.734881,0.709121,1.119144,1.26994,1.3075186,1.3775393999999999,1.4477316999999998,1.5543632000000003,1.6387497999999998,1.6994836000000002,1.7314895,1.4361501,1.3204019000000002,1.2752579000000002,1.2687332,1.1962775,1.0700996999999999,0.9900690999999999,0.9419904000000001,0.9281942000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,gas (steam/CT),0.0510872,0.125658,0.387131,0.31220289999999995,0.29812119000000004,0.28727392,0.26758605,0.23901666000000002,0.20348107999999998,0.16799219,0.13654840000000001,0.1107637,0.08350678000000002,0.06619872,0.04764004,0.04675489,0.04306890000000001,0.03855192999999999,0.03621057,0.034825,0.03451695,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,geothermal,0.00626759,0.0116136,0.00947519,0.01764907,0.02233794,0.024987709999999996,0.02975493,0.035465390000000006,0.03563534,0.03738525,0.04128859,0.04499952,0.053058419999999995,0.054354730000000004,0.05356064000000001,0.055417049999999995,0.05469847,0.05514290000000001,0.05346017,0.05612455,0.056581969999999995,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,hydro,0.321498,0.275292,0.295963,0.294981,0.293999,0.293016,0.292034,0.291052,0.294216,0.29738,0.300544,0.303708,0.306872,0.310036,0.3132,0.316365,0.319529,0.322693,0.325857,0.329021,0.329021,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,hydrogen cogen,0.0,0.0,0.0,0.0,1.28107E-4,2.24795E-4,3.46928E-4,4.93157E-4,6.41784E-4,8.2605E-4,0.0010304,0.0011157,0.00124044,0.00137088,0.00146972,0.00159359,0.00171053,0.00182831,0.00198864,0.00216937,0.00213252,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,refined liquids (CC),0.0,0.0,0.0,0.0263883,0.02259635,0.02293207,0.03749253,0.05464673,0.08318249,0.10363618999999999,0.11980644999999998,0.12980594,0.17801592,0.17519604,0.18788311000000002,0.20918969999999998,0.2021089,0.19074810000000003,0.186196,0.17613499999999999,0.1712284,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,refined liquids (steam/CT),0.892385,0.495089,0.350827,0.32580230000000004,0.2850523,0.27586313999999995,0.25859172999999996,0.23354803999999998,0.20207725,0.16981921,0.14096918,0.11808302000000001,0.07437931,0.05256798000000001,0.027835810000000002,0.023392607,0.018806493,0.014121536,0.011334297000000004,0.009694759,0.009027341000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,rooftop_pv,0.0,0.0,0.0,4.17595E-5,1.08356E-4,2.40407E-4,4.37738E-4,7.28937E-4,0.00106048,0.00146997,0.00197523,0.00255416,0.00323807,0.00388037,0.00448409,0.00499267,0.00538096,0.00562387,0.00579013,0.00594896,0.0061182,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,wind,0.0,0.00631439,0.0142632,0.0258423,0.03351849,0.0383537,0.0484938,0.0628526,0.0724549,0.0869771,0.10469891,0.1211621,0.16226040000000003,0.17734390000000003,0.18334679999999998,0.20216849999999997,0.2066117,0.21317670000000002,0.2038232,0.2188075,0.23229749999999996,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,wind_storage,0.0,0.0,0.0,8.51054E-5,1.440302E-4,1.824811E-4,2.669818E-4,3.940238E-4,6.132858E-4,7.784663999999999E-4,9.762966E-4,0.0011624977,0.0016585159999999999,0.0018752290000000002,0.0020123830000000004,0.002315683,0.0024303059999999997,0.002558424,0.0025045530000000005,0.0027308640000000004,0.002945729,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,CSP,0.0,0.0,0.0,2.05713E-6,1.660503E-5,4.226913E-5,9.253833000000001E-5,1.6976703000000002E-4,2.9984703E-4,4.581299E-4,6.68594E-4,9.084499000000001E-4,0.0012509177,0.001697521,0.0021554110000000003,0.0025979600000000003,0.003035395,0.003491978,0.003855658,0.004126731,0.0043488680000000005,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,CSP_storage,0.0,0.0,0.0,0.0,0.0,8.53182E-5,3.950992E-4,0.0010683552,0.0022690452,0.0038530051999999997,0.0062350852,0.008977367,0.013061745999999999,0.01968582,0.030111830000000003,0.04480717,0.06419499,0.08792138999999999,0.11263043,0.13661839999999997,0.1573832,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,Gen_III,0.0,0.0,0.0,0.00137158,0.00465136,0.00817766,0.01315586,0.01923073,0.027874799999999998,0.03737591,0.04962235,0.06197582,0.07806798,0.09917799999999999,0.12511265,0.15319275000000002,0.18383162999999997,0.21741038,0.25008978,0.28224205,0.3112977,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,Gen_II_LWR,0.0105732,0.038898,0.0211644,0.0195589,0.0186415,0.0173034,0.0154724,0.0131739,0.0105821,0.00799038,0.00569195,0.0038609,0.00252284,0.00160548,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,PV,3.6E-6,3.24E-5,1.116E-4,5.05172E-4,0.002565172,0.0053763019999999995,0.009953431999999998,0.016006552,0.025009741999999995,0.03513617,0.04700647,0.05999824,0.07721581,0.09504019,0.1059652,0.1117908,0.11380860000000001,0.1142298,0.1091424,0.1028452,0.1007977,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,PV_storage,0.0,0.0,0.0,6.5593E-6,4.06659E-5,8.73644E-5,1.630478E-4,2.638328E-4,4.161768E-4,5.850415E-4,7.868099E-4,0.0010157044,0.0013644479999999999,0.001968066,0.0029396220000000002,0.004350128,0.006253133,0.008613019999999999,0.011092863000000001,0.01354861,0.01572766,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,5.66013E-4,0.001322684,0.0022685459999999998,0.0036028249999999996,0.0050310680000000005,0.006931092,0.008977682999999998,0.011979786,0.016300549,0.021946936,0.028574647999999998,0.036465371,0.044890575999999995,0.05336756300000001,0.06197485,0.07031577,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,biomass (conv),0.0,0.0109656,0.00929879,0.0032140299999999997,0.006657814999999999,0.008342418,0.011329608000000001,0.01429223,0.017445531,0.020447441,0.024633987000000003,0.028755153999999998,0.035262719,0.044528222,0.056284056,0.06922291,0.08325673,0.0989001,0.11454286,0.1306831,0.14643736000000002,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.00166505,0.0041289,0.0072242,0.011597340000000001,0.01630633,0.022253929999999998,0.02868431,0.03764644,0.050096119999999994,0.06610927,0.08500948,0.10743397,0.13086335999999998,0.15475803,0.17888493,0.20187080999999998,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,coal (conv pul),0.0279864,0.118998,0.117129,0.1189286,0.1401114,0.15351309999999999,0.1684624,0.18235609999999997,0.2002958,0.21693069999999998,0.23968789999999998,0.2647449,0.3031723,0.35866687999999997,0.42468140000000004,0.4995309,0.5730562,0.6635546,0.7537252999999999,0.8480395999999999,0.9397386,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,gas (CC),0.0269085,0.312594,0.31265,0.3422076,0.46158269999999996,0.5605365,0.6766261,0.7918764,0.9284394,1.0490107,1.1867724000000002,1.3169632,1.4339045999999998,1.527153,1.6617890000000002,1.817722,2.004408,2.194414,2.4001840000000003,2.593285,2.7855280000000002,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,gas (steam/CT),0.0251475,0.0299315,0.195244,0.16317617,0.15971214,0.15291116,0.14319126,0.1296089,0.11482686,0.09975935,0.08804035000000002,0.07920535,0.07418074,0.07137716,0.06741061,0.07268384,0.07962904,0.08731834000000001,0.0955012,0.10349824999999999,0.11199442000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,geothermal,0.0184464,0.0262764,0.0238248,0.02651748,0.0334804,0.04005644999999999,0.04808428000000001,0.056514669999999996,0.04656307999999999,0.056225569999999996,0.06324272,0.07014151,0.07865164,0.0894262,0.0969659,0.0969661,0.09696570000000002,0.0969642,0.0969665,0.0969671,0.09696600000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,hydro,0.0845208,0.0995724,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,hydrogen cogen,0.0,0.0,0.0,0.0,1.88182E-4,3.37174E-4,5.42781E-4,8.05581E-4,0.00114909,0.00161841,0.00222718,0.00264179,0.00322954,0.00393435,0.00467667,0.00554138,0.00642356,0.00730813,0.00838837,0.009453,0.00988384,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,refined liquids (CC),0.0,0.0,0.0,0.00687523,0.024311469999999998,0.0397149,0.06739222,0.09896171000000001,0.14529139000000002,0.18383536,0.23651824999999999,0.28308026,0.35433216999999995,0.438422,0.5306579,0.6114726,0.6860523000000001,0.7401285,0.7730248000000001,0.7713469,0.7878697,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,refined liquids (steam/CT),0.223423,0.240426,0.157964,0.1288578,0.12628559,0.13029099,0.12999781,0.12480686999999999,0.11981862,0.11299155999999999,0.10761670999999999,0.10347368000000001,0.09388493999999999,0.07893374,0.06346503,0.05474376000000001,0.04862026999999999,0.04349476,0.040794109999999995,0.038417759999999995,0.037869980000000004,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,rooftop_pv,0.0,0.0,0.0,2.71915E-4,7.46022E-4,0.00154382,0.00278545,0.00465767,0.00744009,0.0113875,0.0172522,0.0249122,0.0358692,0.0496697,0.0670008,0.0861693,0.106757,0.125888,0.143918,0.159258,0.181473,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,wind,3.6E-6,6.83999E-5,0.00446039,0.00571256,0.01098733,0.01784352,0.028750320000000003,0.04309352,0.05945323,0.08130796,0.10583079000000001,0.13175199999999998,0.1671829,0.2175242,0.27951040000000005,0.3534679,0.43859129999999996,0.5333959,0.6192732,0.6919146999999999,0.7475343999999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,wind_storage,0.0,0.0,0.0,8.40847E-6,4.609577E-5,9.820156999999999E-5,1.8656047E-4,3.1094147E-4,5.0198447E-4,7.17738E-4,9.865957E-4,0.0012887559,0.001726139,0.00237986,0.003250687,0.004344475,0.00568252,0.0072560640000000004,0.008812312000000001,0.01026137,0.011512270000000002,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,CSP,0.0,0.0,0.0,1.91008E-5,6.85537E-5,1.677516E-4,3.482996E-4,6.223156E-4,0.0010116796,0.0014676458,0.0019747039,0.002468822,0.003282102,0.004070596,0.004864862,0.0055993250000000005,0.006336494,0.007087497999999999,0.0075653399999999985,0.0080508,0.00819011,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,CSP_storage,0.0,0.0,0.0,0.0,0.0,3.29782E-4,0.001442452,0.003831572,0.007427182,0.012123442,0.018016272,0.02397359,0.03381902,0.044673199999999996,0.05953529,0.07932903000000001,0.1070968,0.1426807,0.1805855,0.2217498,0.2516623,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,Gen_III,0.0,0.0,0.0,0.00781418,0.02135838,0.04386658,0.07859658,0.12482736999999999,0.17727727,0.23184477,0.28839976,0.33938535000000003,0.41375085,0.4871801400000001,0.5684581299999999,0.6479275000000001,0.7343186000000002,0.819754,0.9002776000000001,0.9730814,1.0199721,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,PV,0.0,0.0,2.52E-4,0.006151299999999999,0.017455599999999998,0.034995799999999994,0.06153209999999999,0.09619559999999999,0.1399579,0.1843147,0.2285423,0.2681196,0.3309132,0.3802523,0.4109808,0.4209058,0.41818049999999996,0.4087457,0.36972279999999996,0.3371596,0.3056956,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,PV_storage,0.0,0.0,0.0,9.83186E-5,2.854816E-4,5.768716000000001E-4,0.0010157026,0.0015930496,0.0023295136000000003,0.003070812,0.003825612,0.00452342,0.005793209,0.007279512,0.009423288,0.012435101,0.016831838000000002,0.02255113,0.02871399,0.03552206,0.04060396,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,9.59412E-4,0.002574125,0.004889834,0.007961231,0.011592933,0.015803117,0.020228364999999998,0.028045732999999996,0.036747078,0.047700565,0.060526279,0.076418079,0.09395022,0.11333696000000001,0.13389183,0.15096568999999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,biomass (conv),0.0,0.0,4.32068E-5,0.0021639385,0.0060893901,0.0107699198,0.01789553738,0.02669766312,0.035846123300000005,0.04511637205,0.05497991762,0.064419056167,0.08227373251,0.10073042366700001,0.12390539,0.14942812,0.17974474,0.21295649000000003,0.24976532,0.28901216,0.32116688000000004,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.00177285,0.00423235,0.00732792,0.011126839999999999,0.01531932,0.01991623,0.02461976,0.03238697,0.04102153,0.0517079,0.06449792,0.08073250000000001,0.09831975,0.11900065000000001,0.14224188000000001,0.16271908,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,coal (conv pul),0.0379187,0.132671,0.124711,0.1422198,0.1613144,0.1755872,0.1898336,0.20290270000000002,0.2156708,0.227975,0.24184850000000002,0.2567969,0.288632,0.32523464999999996,0.36575700000000005,0.39668899999999996,0.4444309,0.5081454,0.5842912000000001,0.6746692999999999,0.7566363,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,gas (CC),0.0,0.0,0.0,0.0746055,0.1828243,0.3535952,0.6305461,1.0210725,1.5080328,2.0217848,2.5324961000000004,2.982285,3.544176,4.041534,4.512898,4.899856,5.257735,5.577303000000001,5.91752,6.278314,6.539199,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,gas (steam/CT),0.38072,1.3344,1.95927,2.106113,2.283261,2.391138,2.4372640000000003,2.3857019999999998,2.2506440000000003,2.0679909999999997,1.8824775,1.7146884,1.3457561000000005,1.0579598999999997,0.7672947,0.5914467999999999,0.4599441000000001,0.37194299999999997,0.3254783,0.30653600000000003,0.3011887,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,geothermal,0.0,0.0,0.0,0.0110436,0.024266,0.0381282,0.052268699999999994,0.05658185,0.05658205000000001,0.05658159,0.056581980000000004,0.056581980000000004,0.056582,0.056582030000000005,0.05658196,0.056582560000000004,0.056581969999999995,0.05657815,0.05657696,0.05657844,0.056582009999999995,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,hydro,0.04293,0.0992016,0.064242,0.0855464,0.106966,0.128386,0.149805,0.171225,0.202866,0.234507,0.266148,0.297789,0.329429,0.36107,0.392711,0.424352,0.455993,0.487634,0.519275,0.550916,0.550916,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,hydrogen cogen,0.0,0.0,0.0,0.0,0.00198166,0.0031427,0.0044973,0.0059926,0.00777124,0.0101634,0.0131017,0.0148546,0.0173974,0.020307,0.023119,0.0263775,0.0294186,0.0321413,0.0355979,0.0391337,0.040461,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,refined liquids (CC),0.0,0.0,0.0,0.163447,0.333524,0.56674,0.8739220000000001,1.2107936000000001,1.5559847,1.8595021000000003,2.1391964,2.3718417,2.7642675,3.020016,3.2730050000000004,3.4140820000000005,3.472384,3.421223,3.3047839999999997,3.0818019999999997,2.95822,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,refined liquids (steam/CT),0.402346,0.720668,1.02737,1.104466,1.198057,1.278274,1.2859519999999998,1.243997,1.189691,1.1368491,1.0950158,1.0680927,0.8318895999999999,0.6610435000000001,0.4988568,0.3754747,0.2841994,0.2204852,0.1813185,0.1555068,0.1422386,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,rooftop_pv,0.0,0.0,0.0,0.00945009,0.0213751,0.0340765,0.0481328,0.0644108,0.0844481,0.109936,0.144179,0.185547,0.238541,0.294774,0.353098,0.405872,0.450471,0.478401,0.499759,0.515836,0.563724,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,wind,3.59999E-6,3.05999E-4,6.26399E-4,0.009818789,0.026045488999999998,0.050687089,0.087419089,0.135212489,0.19344379,0.2499225,0.3054736,0.35347409999999996,0.4340321,0.5134567,0.606138,0.7138609,0.8519061,1.015096,1.1606290000000001,1.3152490000000001,1.408143,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,wind_storage,0.0,0.0,0.0,6.69638E-5,1.955468E-4,4.061428E-4,7.420108E-4,0.0012093108,0.0018179178,0.002459646,0.003140222,0.0037757500000000005,0.004854392,0.005972552000000001,0.007325665,0.008934863,0.011021144,0.01355101,0.016001809999999998,0.01865547,0.02045071,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,CSP,0.0,0.0,0.0,1.14171E-4,2.87814E-4,6.21881E-4,0.001084335,0.001735935,0.0026353920000000003,0.0037158009999999995,0.004929838000000001,0.006247571,0.008082917,0.009776957,0.01147503,0.01333133,0.015126840000000003,0.01685512,0.018221340000000003,0.01949569,0.02057851,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,CSP_storage,0.0,0.0,0.0,0.0,0.0,0.00163023,0.00920279,0.027654989999999997,0.05704268999999999,0.10107118999999999,0.15830009,0.22701046,0.3208449,0.4094147,0.50235,0.6053435,0.7052286,0.804583,0.8894850000000001,0.9685350000000001,1.037502,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,Gen_III,0.0,0.0,0.0,0.0206179,0.0311487,0.044835200000000006,0.06399690000000001,0.09005270000000001,0.1216856,0.1601592,0.2023841,0.2487221,0.3064012,0.3602202,0.4157888,0.45700779999999996,0.5084671,0.5584833,0.6067033999999999,0.6465260999999999,0.6818703,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,Gen_II_LWR,0.0010548,0.0089424,0.012312,0.011378,0.0108444,0.010066,0.00900079,0.00766372,0.006156,0.00464828,0.0033112,0.00224602,0.00146762,9.33964E-4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,PV,0.0,0.0,0.0,0.0128966,0.0270204,0.0420487,0.053214700000000004,0.0655039,0.08034000000000001,0.0856952,0.0914588,0.0991903,0.1186363,0.1371857,0.1560793,0.17733739999999998,0.19897379999999998,0.2202486,0.23764100000000002,0.254691,0.2700108,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,PV_storage,0.0,0.0,0.0,2.15319E-4,4.62257E-4,9.89602E-4,0.002082992,0.003715482,0.0059191520000000004,0.008585663,0.011687845,0.01521227,0.01990763,0.02438062,0.02916518,0.03474824,0.04052208,0.046424129999999994,0.051623379999999996,0.0566259,0.061165569999999995,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,0.00166296,0.004825,0.01019612,0.01796727,0.028924,0.04242192,0.05890422,0.0824442,0.107155,0.13537339,0.16912883,0.20481406000000002,0.2417017,0.28057959,0.31701404999999994,0.351848,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,biomass (conv),0.0,0.0,0.0,0.00562305,0.01150363,0.019976630000000002,0.034483009999999994,0.056166049999999995,0.08199126000000001,0.11426856,0.15065822,0.19198031000000002,0.24951,0.30654985,0.37014121999999994,0.44122248999999997,0.51429798,0.5894714,0.6676955,0.7389836999999999,0.8057062,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,coal (IGCC),0.0,0.0,0.0,0.0,0.0,6.29279E-4,0.001731374,0.0035639390000000003,0.006275454,0.010197489,0.015274435,0.021881962,0.032008819,0.043473635000000004,0.05759977,0.076109575,0.097616159,0.12222441999999999,0.15169833,0.18321,0.21799699,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,coal (conv pul),1.36804E-4,4.64397E-4,3.16794E-4,0.0114731,0.018292928,0.026137969999999996,0.03732993,0.05305101999999999,0.073027334,0.09878725,0.1290338812,0.1651640307,0.2169308004,0.27269624039999996,0.33874313,0.41135261,0.50021686,0.6042931,0.7267694,0.8591332,1.0090441,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,gas (CC),0.00153787,0.0520253,0.0,0.0207192,0.0386018,0.0705508,0.1288914,0.2263773,0.358734,0.5257206999999999,0.7063584,0.8954363000000001,1.1070463000000001,1.3039158999999998,1.4898231000000002,1.6719537,1.818763,1.945578,2.060738,2.1629250000000004,2.2646949999999997,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,gas (steam/CT),0.0440705,0.0966043,0.0931644,0.17344379999999998,0.21124659999999998,0.25005710000000003,0.2905103,0.3263518,0.351106,0.3672427,0.3751375,0.3785617,0.30576390999999997,0.27086039,0.23233730000000002,0.1971172,0.1638751,0.1393988,0.1230471,0.11458050000000002,0.1114031,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,geothermal,0.0,0.0,0.0,0.0244259,0.0422917,0.06310260000000001,0.08072599999999999,0.0807259,0.0807259,0.08072558,0.08072593,0.08071771,0.08072589999999999,0.08072617,0.08072598,0.08072602000000001,0.08072943999999999,0.08072423,0.08072604,0.08074813,0.08072599,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,hydro,0.06093,0.111103,0.11452,0.117706,0.120892,0.124078,0.127264,0.13045,0.140089,0.149728,0.159367,0.169006,0.178645,0.188284,0.197923,0.207562,0.217201,0.22684,0.23648,0.246118,0.246118,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,hydrogen cogen,0.0,0.0,0.0,0.0,3.04749E-4,6.23921E-4,0.00114475,0.00189536,0.00300556,0.00471907,0.00709533,0.0091577,0.01184,0.0148752,0.0177846,0.0212221,0.0245843,0.0278336,0.0315975,0.035254,0.0346757,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,refined liquids (CC),0.0,0.0,0.0,0.0453975,0.07042000000000001,0.11724699999999999,0.1907892,0.29548430000000003,0.4192643,0.5645104,0.7102017,0.8599358,1.0164499,1.1461141,1.2560912,1.3401213,1.368132,1.356899,1.308016,1.2224958,1.1388739,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,refined liquids (steam/CT),0.0278928,0.0686556,0.119718,0.204624,0.2292517,0.2580089,0.2801561,0.2939094,0.30014769999999996,0.3030888,0.3034728,0.3043916,0.22454056000000003,0.19168024999999997,0.15471885,0.12561475,0.09961997999999998,0.08001377,0.06541401,0.05529851,0.04848918,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,rooftop_pv,0.0,0.0,0.0,0.0013461,0.0036716,0.00769655,0.0142056,0.0239087,0.0386756,0.0611591,0.0948171,0.142631,0.208028,0.287565,0.373263,0.463601,0.549599,0.62351,0.68494,0.73513,0.781856,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,wind,0.0,0.0,0.0,0.0221021,0.0448401,0.0822089,0.1415807,0.2274846,0.3354806,0.44838849999999997,0.5753715,0.7049527,0.8648118999999999,0.9951939999999999,1.1195149999999998,1.25031,1.373393,1.489427,1.5728339999999998,1.6529120000000002,1.719506,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,wind_storage,0.0,0.0,0.0,1.75336E-4,3.74807E-4,7.40157E-4,0.001387128,0.002434858,0.003889008,0.005684282,0.007853991,0.010316170999999999,0.01362981,0.01669492,0.01988227,0.02345321,0.02697826,0.030485699999999998,0.03346555,0.036283699999999995,0.038799349999999996,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,CSP,0.0,0.0,0.0,8.71975E-4,0.0032188250000000002,0.005556275,0.008790225,0.012395975,0.017605755,0.02233932,0.025852169999999997,0.02900554,0.0335453,0.03779373,0.04164179,0.04616765,0.050717349999999994,0.055020519999999996,0.05660856,0.05609451,0.05255511,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,CSP_storage,0.0,0.0,0.0,0.0,0.0,0.00338659,0.01207198,0.02577078,0.04672548,0.07083288,0.09773338000000001,0.11937708999999999,0.14600190000000002,0.1683219,0.18966080000000002,0.21427400000000002,0.24099399999999999,0.27553720000000004,0.31465640000000006,0.3659529,0.41599870000000005,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,Gen_III,0.0,0.0,0.0,0.112233,0.222157,0.327047,0.477392,0.650847,0.845418,1.017776,1.1717990000000003,1.2924790000000002,1.439316,1.5702789999999998,1.7068009999999998,1.7362389999999999,1.766665,1.800713,1.8033640000000002,1.786994,1.740936,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,Gen_II_LWR,0.425914,0.537994,0.613461,0.566925,0.540334,0.50155,0.448475,0.381854,0.30673,0.231606,0.164984,0.11191,0.0731259,0.0465357,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,PV,0.0,0.0,0.0,2.03327E-4,6.08365E-4,9.2044E-4,0.001279382,0.001623961,0.002069329,0.002315638,0.0023566290000000003,0.002452553,0.002664181,0.002900265,0.003127788,0.003447566,0.003828323,0.0042474259999999995,0.004550799,0.004761392,0.004754565,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,PV_storage,0.0,0.0,0.0,3.38816E-6,1.009312E-5,1.527632E-5,2.120987E-5,2.694416E-5,3.4378889999999996E-5,3.8456729999999996E-5,3.920049E-5,4.083934E-5,4.4443130000000004E-5,4.84316E-5,5.2429569999999995E-5,5.8236569999999995E-5,6.552014999999999E-5,7.52326E-5,8.646586000000001E-5,1.014073E-4,1.163057E-4,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,6.65754E-4,0.0017451349999999999,0.0031497590000000002,0.005216452,0.007468562000000001,0.009954387,0.012249114000000002,0.015729466,0.019233018,0.023442028000000004,0.028241912999999997,0.033372102,0.038393353000000005,0.044153460000000005,0.050233490000000006,0.05559878,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,biomass (conv),0.0,0.0,0.0,0.00191305,0.00543047,0.00780175,0.01241658,0.01741997,0.023104569999999998,0.028311726,0.033749299999999996,0.038242301,0.045876152999999996,0.052959648,0.061537204000000005,0.07033215,0.0783175,0.08692269,0.09712446,0.10802690999999999,0.11711812,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,biomass cogen,1.33152E-4,0.00948844,0.00997641,0.0098715,0.010676,0.0112023,0.0113071,0.010995,0.00995104,0.00943702,0.00927431,0.00922735,0.00929781,0.00935429,0.00939802,0.00932066,0.00914458,0.00889458,0.00872795,0.00863652,0.00836298,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.00357095,0.008475429999999999,0.013964480000000001,0.02115215,0.028344659999999997,0.03550296,0.04172284,0.04996871,0.05792057,0.06680932,0.07666101,0.08703025,0.09433148000000001,0.10230792,0.11086565,0.11787138999999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,coal (conv pul),0.54613,0.551288,0.556386,0.5870021,0.6363392,0.6457858000000001,0.6475766999999999,0.6343449000000001,0.6192632,0.5984375,0.5807082,0.5666064000000001,0.5735966,0.5881646,0.587531,0.5593129,0.5320104999999999,0.5356063,0.5420022,0.5572083,0.5684714,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,coal cogen,0.0191956,0.0442918,0.0415224,0.0413546,0.035148,0.0336449,0.0306,0.0281889,0.0256598,0.0244552,0.024414,0.0252306,0.0263735,0.0269271,0.0274538,0.0273762,0.0266569,0.0256149,0.0248364,0.0244238,0.0242873,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,gas (CC),0.0,0.0,0.0,0.0579784,0.1522601,0.2535962,0.41946969999999995,0.630558,0.9163022,1.1943110000000001,1.4509119,1.6462520999999999,1.8217565,1.9267013999999998,2.024918,2.061835,2.051961,1.9711180000000001,1.9165019999999997,1.886191,1.8970989999999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,gas (steam/CT),1.69041,1.4949,1.7391,1.7269960000000002,1.83339,1.8304770000000001,1.788802,1.6678570000000001,1.4942374,1.2946301,1.1067888,0.9440675000000001,0.6902036,0.4816324,0.29657416,0.2145002,0.15768163000000002,0.11375454000000002,0.0893161,0.07657194,0.07149042,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,gas cogen,0.153428,0.0866757,0.134862,0.134515,0.123481,0.119513,0.111443,0.10221,0.0908221,0.0820905,0.0755471,0.0696201,0.0653406,0.0605991,0.056877,0.0535428,0.0511791,0.0498903,0.0491895,0.0483493,0.0467108,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,geothermal,1.00804E-4,0.00147597,0.0018179,0.0143042,0.03456645,0.05236234,0.07443063,0.09629884999999999,0.1190002,0.1299237,0.13343470000000002,0.1363467,0.1414738,0.14555869999999999,0.1496483,0.1566419,0.1639663,0.1735462,0.1809149,0.1896331,0.19384,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,hydro,0.597301,0.621637,0.599339,0.636624,0.673909,0.711195,0.74848,0.785765,0.827183,0.868601,0.910019,0.951437,0.992855,1.03427,1.07569,1.11711,1.15853,1.19994,1.24136,1.28278,1.28278,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,hydrogen cogen,0.0,0.0,0.0,0.0,0.00144644,0.00237411,0.00344962,0.00463425,0.00588335,0.00748152,0.00935546,0.0102588,0.0115946,0.0130333,0.0142703,0.015726,0.0171119,0.0185084,0.020396,0.0224184,0.0220754,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,refined liquids (CC),0.0,0.0,0.0,0.00331758,0.00649115,0.00904399,0.01397172,0.01900903,0.02611192,0.03173816,0.037373699999999996,0.04176435,0.04932869,0.05404001,0.060079509999999996,0.06502967,0.06857445000000001,0.07046492,0.07357996,0.07552829,0.07783904999999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,refined liquids (steam/CT),0.463118,0.0644098,0.025717,0.024897179999999998,0.02609951,0.0268153,0.026686309999999998,0.02548519,0.024064779999999997,0.02254716,0.021331285999999998,0.020498921,0.01618222,0.012333248,0.009150461,0.007176749,0.005765386,0.004603534,0.00400576,0.0037255359999999993,0.00369339,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,refined liquids cogen,0.0,0.0119671,0.0078013,0.00849256,0.00710828,0.00713344,0.00676452,0.00648034,0.00630901,0.00628048,0.00636735,0.006529,0.00681806,0.00697257,0.00712778,0.00726522,0.00727742,0.00726617,0.00728958,0.00712932,0.00691287,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,rooftop_pv,0.0,0.0,0.0,5.69384E-6,1.66185E-5,3.4422E-5,5.97665E-5,9.41599E-5,1.07493E-4,1.51558E-4,2.1043E-4,2.85583E-4,3.81691E-4,4.79257E-4,5.85856E-4,6.8148E-4,7.61924E-4,8.24571E-4,8.76577E-4,9.21169E-4,9.66959E-4,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,wind,0.0,2.51994E-5,1.43992E-5,0.011670099199999999,0.0357549992,0.0617519992,0.1021886992,0.1514741992,0.219425,0.2800492,0.3315084,0.3739407,0.4278938,0.4732218,0.5140866000000001,0.5651707,0.6225456,0.6948723,0.7662485,0.852616,0.925004,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,wind_storage,0.0,0.0,0.0,6.8964E-5,2.19594E-4,3.8916000000000005E-4,6.63769E-4,0.001013356,0.001514806,0.001993836,0.0024330560000000003,0.002808991,0.003299136,0.003728497,0.004141525,0.004646310999999999,0.005205351,0.00590211,0.006623406,0.007488708,0.008254000000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,CSP,0.0,0.0,0.0,0.0,7.51925E-7,1.0838525E-5,3.0405025E-5,6.3358425E-5,1.10229725E-4,1.68514925E-4,2.202849E-4,2.6349790000000005E-4,2.940516E-4,3.1008209999999997E-4,3.317911E-4,3.0747179999999997E-4,2.9118849999999996E-4,3.07996E-4,3.300312E-4,3.5740710000000005E-4,3.73422E-4,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,CSP_storage,0.0,0.0,0.0,0.0,0.0,3.35322E-5,1.541102E-4,4.414782E-4,8.769722E-4,0.0015204052,0.0025099332,0.003857061,0.005179583,0.006330685,0.008040521,0.008329465999999999,0.00823931,0.008894599999999999,0.00984641,0.011144209999999998,0.012135680000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,Gen_III,0.0,0.0,0.0,0.0,3.27418E-5,0.0016100617,0.0050105017,0.0106409417,0.0173165217,0.0247827116,0.032109191599999996,0.0396667816,0.046198531499999994,0.0518966915,0.0593503514,0.06247426129999999,0.06535254000000001,0.06954866,0.07221778000000001,0.07300207,0.07328272,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,Gen_II_LWR,0.0304164,0.0406546,0.0435562,0.0358406,0.0383641,0.0356104,0.0318421,0.0271119,0.021778,0.0164442,0.011714,0.00794571,0.00519199,0.00330406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,PV,0.0,7.55997E-5,7.55997E-5,6.73143E-5,3.579977E-4,0.0032883776999999997,0.0080135777,0.0148604777,0.023414298,0.032148268,0.03615096,0.03626862,0.03408878,0.02969706,0.024331900000000004,0.01744451,0.0153875,0.01608314,0.01699228,0.0180048,0.01852463,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,PV_storage,0.0,0.0,0.0,0.0,4.67555E-6,5.3353849999999994E-5,1.3148505E-4,2.4557905E-4,3.9212905000000003E-4,5.811270500000001E-4,8.363255E-4,0.0011445452,0.001436097,0.001690272,0.002093732,0.00214564,0.002120122,0.002299146,0.002563317,0.002928093,0.003226407,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,1.64497E-4,4.2430100000000003E-4,8.370000000000001E-4,0.001370741,0.002029342,0.0027234860000000002,0.003566434,0.00438261,0.0052111349999999996,0.006493647,0.006947497,0.00748702,0.008661404999999999,0.009828717,0.011021238999999999,0.012260173,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,biomass (conv),0.0,9.54006E-4,0.00101159,2.29823E-4,4.14864E-4,0.0012989102,0.0023676304,0.0038359434,0.0052772464,0.006850593300000001,0.0083484111,0.0100751574,0.011627315599999999,0.013183930600000001,0.0157668793,0.0162659712,0.017138624,0.019322833999999997,0.021295029999999996,0.02328879,0.02536401,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.00484883,0.0116765,0.02071726,0.03129276,0.042795059999999996,0.053759089999999995,0.06575957,0.07672563,0.08671888,0.10019200000000002,0.10595420000000001,0.11137412,0.11727180000000001,0.12183236000000001,0.12468232000000001,0.12682563,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,coal (conv pul),0.561333,0.824519,0.870765,0.716001,0.7768921,0.7825589,0.7767833000000002,0.7600005000000001,0.7314803000000001,0.7005593,0.6714423,0.6618172999999999,0.662878,0.6737787,0.6708003,0.6968804000000001,0.7105242999999999,0.6975952999999999,0.6778862999999999,0.6529809999999999,0.6325561,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,gas (CC),0.0,0.0,0.0,0.0,2.05107E-5,2.847204E-4,8.262389E-4,0.0018255807,0.0032975124,0.0052051648,0.0072700313,0.0097342388,0.0121574171,0.014570959000000001,0.01798978,0.019145169,0.02007958,0.02320146,0.0268921,0.03168391,0.03768376,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,gas (steam/CT),0.0,0.0,0.0,0.0,4.87646E-5,4.122793E-4,8.028383E-4,0.0012198491,0.0015614297999999999,0.0018127193,0.0019586712,0.0020521091,0.0020925524,0.002088118,0.001969578,0.0016842910999999997,0.0014352668,0.0013596463999999999,0.0013473499,0.0014511224000000001,0.0016422735999999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,geothermal,0.0,0.0,0.0,0.0,6.14406E-4,0.0045288870000000005,0.008563827,0.012392723,0.015377954,0.015538997,0.01553897,0.015539049999999999,0.015539,0.015539,0.015539,0.01553846,0.015539,0.015539010000000002,0.015539089999999998,0.015539,0.015539,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,hydro,0.003636,0.0047952,0.0076968,0.00702261,0.0080772,0.0082674,0.0084576,0.0086478,0.0090258,0.0094037,0.0097816,0.0101596,0.0105375,0.0109155,0.0112934,0.0116714,0.0120493,0.0124272,0.0128052,0.0131831,0.0131831,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,hydrogen cogen,0.0,0.0,0.0,0.0,5.52161E-5,1.02949E-4,1.59887E-4,2.26831E-4,2.97614E-4,3.84805E-4,4.80371E-4,5.22001E-4,5.80649E-4,6.51226E-4,7.0417E-4,7.74031E-4,8.39737E-4,9.06803E-4,9.8873E-4,0.00105831,0.00101883,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,refined liquids (CC),0.0,0.0,0.0,0.0,7.60971E-6,7.738699000000001E-5,1.5026438E-4,2.5192322E-4,3.6029248E-4,4.7346275E-4,5.6844033E-4,6.8444258E-4,7.7453055E-4,8.575886999999999E-4,9.904837000000001E-4,9.385312E-4,9.173542999999999E-4,9.773817E-4,9.908376E-4,9.932388E-4,9.986924000000002E-4,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,refined liquids (steam/CT),0.0,0.0,7.09205E-4,2.75053E-4,2.7450043E-4,3.3624744E-4,3.3743395000000005E-4,3.2529449E-4,3.0096706999999996E-4,2.7346695E-4,2.470571E-4,2.2584228999999998E-4,2.1113502E-4,1.9696300000000003E-4,1.4659253E-4,1.1529637000000001E-4,8.801530000000001E-5,7.056246000000001E-5,5.869680999999999E-5,5.247105E-5,4.9156099999999995E-5,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,rooftop_pv,0.0,0.0,0.0,8.20864E-5,2.60672E-4,6.60488E-4,0.00124483,0.00209258,0.00315891,0.0044909,0.0062499,0.00826639,0.0108482,0.013785,0.016852,0.0199909,0.0229894,0.0255928,0.0280066,0.0299857,0.0318237,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,wind,0.0,1.15199E-4,1.152E-4,1.02574E-4,6.71477E-4,0.0060305870000000004,0.014411927,0.026354927,0.040946926999999994,0.05792632699999999,0.07443385,0.08874334,0.09948759999999998,0.106194,0.11804189999999999,0.11330029999999999,0.1087084,0.11528979999999998,0.1252365,0.1386322,0.1481267,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,wind_storage,0.0,0.0,0.0,0.0,3.30766E-6,3.926286E-5,9.965026E-5,1.9173966E-4,3.1139166E-4,4.5583966000000006E-4,6.04244E-4,7.488628E-4,8.673474E-4,9.52344E-4,0.001091585,0.001066431,0.001035866,0.001114366,0.001226891,0.001375758,0.001490675,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,CSP,0.0,0.0,0.0,7.50417E-5,1.8312070000000002E-4,3.703317E-4,6.590697E-4,9.826277E-4,0.0012894047,0.0015560620000000002,0.0017822320000000001,0.0019348240000000001,0.002199359,0.002385807,0.002669452,0.0029648450000000002,0.003297046,0.0036216919999999997,0.003796812,0.00392586,0.004048123,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,CSP_storage,0.0,0.0,0.0,0.0,0.0,6.24154E-4,0.002463584,0.006048714,0.011854584000000001,0.020437414,0.031057914,0.042085159999999996,0.06263033,0.0810318,0.10204563,0.1233324,0.1448938,0.16601629999999998,0.1799027,0.1899934,0.1992291,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,Gen_III,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00687728,0.02097707,0.04043497,0.058287069999999996,0.08650176,0.11050486,0.13642536,0.16262805,0.18852824999999998,0.21299633999999998,0.23838673999999996,0.25968962999999995,0.27567319999999995,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,PV,0.0,0.0,0.0,0.00426863,0.0088179,0.01490119,0.02252978,0.02894845,0.03309403,0.03273727,0.03156585,0.028722240000000003,0.02591632,0.02383727,0.02461762,0.025997540000000003,0.02819311,0.03049961,0.03180821,0.03291369,0.0341199,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,PV_storage,0.0,0.0,0.0,7.11439E-5,1.465026E-4,2.480776E-4,3.8169660000000004E-4,5.412696E-4,7.602986000000001E-4,9.717837E-4,0.001209113,0.001445191,0.001954435,0.002425906,0.002977722,0.00356031,0.004187752,0.004817269,0.005250626,0.005582991000000001,0.005905316000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,5.61523E-4,0.0014466280000000001,0.002583646,0.0039861620000000006,0.005817552,0.007875,0.010077101,0.014180187,0.018110567,0.022900026000000004,0.028172156999999996,0.033792052,0.038973105,0.04441752,0.04882185,0.05363307,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,biomass (conv),1.28437E-4,1.46781E-4,1.53303E-4,0.0024993178,0.0048481388,0.007652261,0.0116648575,0.016155892499999998,0.0206192632,0.0257977213,0.03112610448,0.036386220920000004,0.046373141220000004,0.05522697753,0.06587264000000001,0.07565756000000001,0.08582924,0.09543623999999999,0.10546521,0.1131804,0.12204519,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,coal (IGCC),0.0,0.0,0.0,0.0,0.0,1.96453E-4,4.87332E-4,8.58412E-4,0.001331462,0.001969578,0.002728724,0.0036025080000000004,0.005327527,0.00713655,0.009509613,0.012391709999999998,0.015769956,0.019313616999999998,0.023600783,0.027658128,0.032639511,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,coal (conv pul),0.0,0.0,0.0,0.00423969,0.00673523,0.00919062,0.01215183,0.01534219,0.018834,0.02303132,0.02755909,0.032340440000000005,0.041161750000000004,0.04996299,0.06106225,0.06986969000000001,0.08240636,0.09654038,0.11359692999999998,0.13007818,0.15130326,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,gas (CC),0.0,0.0,0.0,0.00845691,0.015414319999999999,0.0259512,0.042150019999999996,0.06288454,0.08716522,0.11577633,0.14426706,0.17067796,0.20425246,0.2333429,0.2619033,0.2858045,0.306294,0.3233569,0.3403788,0.3525689,0.3721921999999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,gas (steam/CT),0.0559019,0.0568119,0.0896734,0.1184296,0.1314175,0.1408687,0.14689439999999998,0.1470973,0.14277682999999997,0.13642915,0.12942508000000003,0.12290148,0.0853989,0.06694213,0.04886342999999999,0.037349429999999996,0.02936713,0.02429046,0.021179840000000005,0.01954957,0.01933873,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,geothermal,0.0,0.0,0.0,0.0123549,0.02191847,0.0325547,0.043966349999999994,0.0544764,0.06398072999999999,0.06376223,0.06618319,0.06753575,0.06837506,0.06837506,0.068375,0.06837554,0.06837505,0.0683739,0.06837562999999999,0.06837499999999999,0.0683751,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,hydro,0.135365,0.280561,0.279418,0.282905,0.286392,0.289879,0.293366,0.296853,0.303009,0.309166,0.315323,0.321479,0.327636,0.333792,0.339949,0.346105,0.352262,0.358418,0.364575,0.370731,0.370731,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,hydrogen cogen,0.0,0.0,0.0,0.0,0.00105364,0.00174528,0.00263024,0.00366255,0.00489558,0.0064357,0.00834152,0.00943929,0.0111671,0.0130428,0.0148022,0.0169352,0.0191336,0.0213297,0.0239252,0.0264299,0.025995,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,refined liquids (CC),0.0,0.0,0.0,0.0181884,0.0290757,0.046505000000000005,0.0704457,0.0972897,0.126689,0.1609719,0.19426674,0.22612512,0.27489891,0.31146510000000005,0.35136180000000006,0.3844457,0.4118788,0.43262490000000003,0.45036349999999997,0.4528994,0.46206330000000007,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,refined liquids (steam/CT),0.0549622,0.0959904,0.110144,0.13737169999999999,0.14599440000000002,0.152417,0.1531404,0.14794274999999998,0.13949943,0.13015594000000003,0.12143179000000001,0.11457425,0.07910183,0.06188157999999999,0.04323088,0.03374866,0.027537729999999996,0.023663819999999995,0.02128433,0.019857029999999998,0.019490050000000002,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,rooftop_pv,0.0,0.0,0.0,7.89031E-4,0.00184336,0.0033283,0.00533828,0.00803185,0.0116108,0.0160074,0.0221781,0.0296458,0.0399681,0.0510668,0.0628303,0.0744306,0.085665,0.0948756,0.101777,0.106458,0.111247,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,wind,0.0,0.0,0.0,0.0090067,0.01782222,0.03021142,0.04701932,0.06609552,0.08725152,0.10362511999999999,0.1213602,0.1358909,0.16515749999999998,0.1885816,0.2161089,0.2426349,0.269979,0.2959383,0.30749709999999997,0.315612,0.3232854,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,wind_storage,0.0,0.0,0.0,7.25768E-5,1.510275E-4,2.724475E-4,4.5252650000000003E-4,6.747235000000001E-4,9.391505000000001E-4,0.0011997837,0.0014889999999999999,0.00175558,0.0022754,0.002726394,0.0032706420000000003,0.003832602,0.004425636,0.005012240000000001,0.005392111,0.005676594000000001,0.0059524190000000005,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,CSP,0.0,0.0,0.0,6.70847E-6,2.112507E-5,4.936027E-5,1.0023926999999999E-4,1.7150306999999998E-4,2.7049406999999997E-4,3.848346E-4,5.261179999999999E-4,6.793357999999999E-4,9.432247999999999E-4,0.00123953,0.001611918,0.002089171,0.002565378,0.002987338,0.003255642,0.003421953,0.003517544,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,CSP_storage,0.0,0.0,0.0,0.0,0.0,9.3866E-5,4.0740000000000004E-4,0.001028593,0.0019419099999999998,0.0031352999999999997,0.00477223,0.006570004,0.00951721,0.012731257,0.01684584,0.02243212,0.029082729999999998,0.037070189999999996,0.04490505,0.05242611,0.06049121,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,Gen_III,0.0,0.0,0.0,0.0,0.0,6.95663E-4,0.002269192,0.004600901,0.009069481,0.015371680999999998,0.02413195,0.032807339000000005,0.045734658,0.059104306999999995,0.074689146,0.09339928400000001,0.11322570300000001,0.13258346,0.15095362,0.16722331,0.18265815000000002,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,PV,0.0,0.0,1.08005E-5,8.985905E-4,0.0023106605,0.004449970500000001,0.007654540500000001,0.011518680500000001,0.01630828,0.02092583,0.0262282,0.031718590000000005,0.04153892,0.052880880000000005,0.06733618,0.08536594,0.1013153,0.1120487,0.1151362,0.11380259999999999,0.1086761,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,PV_storage,0.0,0.0,0.0,1.47955E-5,3.81738E-5,7.37106E-5,1.2669409999999998E-4,1.9101479999999999E-4,2.71169E-4,3.477926E-4,4.365303E-4,5.285195E-4,6.93384E-4,8.851343E-4,0.0011411561,0.001506582,0.001957672,0.002508346,0.0030563709999999996,0.0035937420000000005,0.0041810319999999995,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,8.37407E-4,0.0019051670000000001,0.003080993,0.004366873,0.005703046,0.007262483,0.008871746,0.011588851,0.014486441,0.01807673,0.022511869999999996,0.027198952,0.031356552999999995,0.035245329000000006,0.038612969999999996,0.042383460000000005,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,biomass (conv),7.38012E-4,0.00187927,0.00589348,0.01030537,0.014095260000000002,0.01721979,0.021046290000000002,0.02419019,0.026148579999999998,0.028006330000000003,0.030530875,0.032977114,0.038392675,0.043763255,0.0505166,0.05652334,0.06293819,0.06924633,0.0750588,0.0799428,0.08646475,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,biomass cogen,0.0036131,0.00638438,0.0103109,0.0132472,0.0145009,0.0149014,0.0144926,0.0134889,0.0120994,0.0113757,0.0111608,0.011127,0.011309,0.0114929,0.0117433,0.0118516,0.0118351,0.0116162,0.0113623,0.011035,0.0109642,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.00317042,0.007543060000000001,0.012608330000000001,0.018518140000000002,0.0248272,0.03210746,0.03978714,0.05194326,0.06514577,0.08110619000000001,0.10080711,0.12205088,0.14056048999999998,0.15816239999999998,0.17359702000000002,0.18963000000000002,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,coal (conv pul),0.0234905,0.0288587,0.0638058,0.1190174,0.1606954,0.19628400000000001,0.23527540000000002,0.271892,0.3076984,0.341381,0.377871,0.4143714,0.47249807000000005,0.5339609000000001,0.6037669999999999,0.6329128000000002,0.6830055,0.7395449000000001,0.7911182,0.8386353,0.8944483999999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,gas (CC),9.8948E-4,0.0455514,0.0115326,0.0398393,0.0677645,0.10631927,0.16501861,0.23996615999999998,0.33018274,0.42541382000000005,0.53005437,0.63042239,0.7472043300000001,0.8636682790000001,0.9854552999999999,1.1127862000000002,1.2305262,1.3342103,1.4292610000000001,1.499012,1.5817610000000002,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,gas (steam/CT),0.00377339,0.0350843,0.0949676,0.15648810000000002,0.1984125,0.2352376,0.2681481,0.28682989999999997,0.29324469999999997,0.28974360000000005,0.2820287,0.2705116,0.21299166999999997,0.17328363,0.13787245,0.11002333,0.09063541,0.07825844,0.07169471999999999,0.0677506,0.06798873,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,gas cogen,0.0,0.0,2.55884E-4,3.69139E-4,3.23661E-4,2.92496E-4,2.52896E-4,2.16186E-4,1.89864E-4,1.69509E-4,1.5559E-4,1.4358E-4,1.36423E-4,1.28476E-4,1.23815E-4,1.2002E-4,1.18251E-4,1.17708E-4,1.1688E-4,1.1376E-4,1.14563E-4,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,geothermal,0.0,0.0,0.0,0.00340536,0.00815314,0.01494944,0.0244051,0.03508482,0.04684323,0.05569932,0.06473444,0.07222233,0.0842913,0.0960075,0.1098045,0.126579,0.14196350000000002,0.15564419999999998,0.16253379999999998,0.16712040000000003,0.17135430000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,hydro,0.215035,0.400529,0.415487,0.446642,0.478199,0.509757,0.541315,0.572873,0.628591,0.684309,0.740027,0.795745,0.851463,0.907181,0.962899,1.01862,1.07434,1.13005,1.18577,1.24149,1.24149,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,hydrogen cogen,0.0,0.0,0.0,0.0,0.0032615,0.00547438,0.00802163,0.0107504,0.0140348,0.0181923,0.0232353,0.0259968,0.0301265,0.034705,0.0391305,0.0444492,0.049874,0.055145,0.0612138,0.0665769,0.0681422,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,refined liquids (CC),0.0,0.0,0.0,0.0267335,0.047736100000000004,0.0795759,0.1229912,0.16619319999999999,0.2110806,0.2511949,0.2966533,0.3363238,0.40763859999999996,0.45659929999999993,0.5111466,0.5613137,0.5890468,0.5970804999999999,0.5884457999999999,0.5495194,0.5406466000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,refined liquids (steam/CT),0.0240485,0.0371498,0.0619949,0.1026289,0.1246361,0.14432419999999999,0.1548842,0.15558349999999999,0.1531112,0.14936189000000002,0.14665085,0.14481306000000002,0.11334057,0.09221647,0.07254377000000001,0.056792680000000005,0.04572573,0.03807876,0.03323361,0.029241740000000002,0.027490469999999996,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,refined liquids cogen,0.0,0.0,0.00306942,0.00348542,0.00340728,0.00348978,0.00333007,0.003185,0.00318991,0.00323963,0.00335781,0.003521,0.00377881,0.00397398,0.00420732,0.00444356,0.00461443,0.00473783,0.00482087,0.00470339,0.00473625,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,rooftop_pv,0.0,0.0,0.0,3.03752E-4,7.73521E-4,0.00145164,0.00228171,0.00329628,0.00465113,0.00637687,0.00879146,0.0116963,0.0156287,0.0199777,0.0249975,0.0300641,0.0348874,0.0386265,0.0412467,0.0425753,0.0461877,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,wind,0.0,2.88011E-5,0.00145447,0.00552456,0.01081101,0.01871997,0.03078367,0.04584277,0.0629275,0.07996831,0.10030866000000001,0.1207177,0.1553485,0.1931734,0.2405605,0.3029507,0.3703704,0.4396918,0.4941982999999999,0.5394639,0.5818436,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,wind_storage,0.0,0.0,0.0,2.30552E-5,5.4057099999999994E-5,1.0224759999999999E-4,1.7850899999999998E-4,2.7781249999999996E-4,4.0430949999999995E-4,5.291523E-4,6.842114E-4,8.474449E-4,0.0011308255,0.001452316,0.00187278,0.002445394,0.0030898460000000003,0.0037826440000000004,0.004383476,0.004909329,0.005432078,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,CSP,0.0,0.0,0.0,4.12065E-5,1.384245E-4,3.376065E-4,6.876885000000001E-4,0.0012029045,0.0019148705000000001,0.002742523,0.003596528,0.004476206,0.005375384,0.006156988,0.006802002,0.007476113,0.00820612,0.00899003,0.00974966,0.01056273,0.01138458,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,CSP_storage,0.0,0.0,0.0,0.0,0.0,6.62911E-4,0.002834941,0.007479421,0.014957261,0.026652661,0.043992461,0.06795255,0.10430822000000001,0.14729024000000002,0.1952072,0.2509614,0.3109141,0.3748514,0.4341141,0.4912166,0.5460967999999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,Gen_III,0.0,0.0,0.0,0.00484375,0.00909776,0.018663779999999998,0.03519756,0.05911716,0.08911104,0.12597392000000002,0.16959681,0.21846889,0.27798568,0.33936204000000003,0.40150002,0.4646112,0.53141532,0.5971590999999999,0.6583525,0.7132183000000001,0.7622287999999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,PV,0.0,5.012E-4,5.476E-4,0.00402675,0.01010103,0.01971965,0.03370605,0.051054050000000004,0.07046495,0.087112,0.09898122,0.1066406,0.1092592,0.1076851,0.10341670000000001,0.10068490000000001,0.10159040000000001,0.10500220000000002,0.11071910000000001,0.11851790000000001,0.1272482,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,PV_storage,0.0,0.0,0.0,5.79857E-5,1.5858970000000002E-4,3.187197E-4,5.529107E-4,8.597507000000001E-4,0.0012784787,0.001792134,0.002449293,0.003348303,0.0047564519999999996,0.006478552,0.008423034,0.010751363,0.01334505,0.01616503,0.01882951,0.0214693,0.02406871,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,6.78008E-4,0.001835394,0.003564269,0.0059595229999999996,0.009227958,0.01346263,0.019095492,0.027176581,0.036668504,0.047475105999999996,0.060467082000000005,0.074998788,0.090950706,0.10799755,0.12570666000000003,0.14381201999999998,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,biomass (conv),5.77679E-5,7.19828E-6,0.0,0.00132102,0.0036196369999999998,0.006691392,0.011627024,0.017928963,0.024695617,0.032930364000000004,0.042895074,0.055519383,0.073675374,0.093793591,0.116189666,0.14243336,0.17040884999999997,0.20078773000000005,0.2333381,0.26740827999999994,0.30252348,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,coal (IGCC),0.0,0.0,0.0,0.0,0.0,6.21703E-4,0.001555431,0.002833606,0.0045502730000000005,0.006792937000000001,0.009629869,0.013364606999999999,0.018722341,0.025187137,0.032779425,0.042358877,0.053823649,0.06700978099999999,0.08244328999999999,0.09985693,0.11923186999999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,coal (conv pul),0.0,0.00107293,0.00306897,0.01061151,0.01785394,0.02542949,0.034668870000000004,0.0453242,0.05761932,0.07199506,0.088582244,0.10875338200000001,0.135957781,0.167277306,0.2025551,0.23814539,0.28178534,0.33526071,0.39732179999999995,0.4693646000000001,0.5522703999999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,gas (CC),0.00718271,0.0264569,0.0,0.0422615,0.1040714,0.2137268,0.3984844,0.669317,1.0215117999999999,1.4406434000000001,1.898402,2.3941917000000004,2.9323162000000003,3.4438720000000003,3.887691,4.287078,4.619097999999999,4.909104999999999,5.148396999999999,5.350039000000001,5.5015670000000005,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,gas (steam/CT),0.0162713,0.0598219,0.139214,0.29906699999999997,0.42978,0.559251,0.6778176,0.75928,0.8016744,0.8168326,0.8128922000000001,0.7997739,0.6811885599999999,0.5810156200000001,0.4829723,0.3945383,0.3257705,0.27914999999999995,0.24924619999999997,0.23326320000000003,0.2260472,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,geothermal,0.0,0.0,0.0,0.00832162,0.020246010000000002,0.03584885,0.05400247,0.07247524999999999,0.08960979,0.0996178,0.0997189,0.0997255,0.099719,0.099719,0.0997189,0.0997191,0.0997191,0.0997171,0.09971959999999999,0.09971899999999999,0.09971920000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,hydro,0.0268079,0.0463089,0.0710383,0.0749133,0.0787882,0.0826631,0.0865381,0.090413,0.102136,0.113859,0.125581,0.137304,0.149027,0.16075,0.172473,0.184196,0.195918,0.207641,0.219364,0.231087,0.231087,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,hydrogen cogen,0.0,0.0,0.0,0.0,0.00238753,0.00489234,0.00859729,0.013535,0.0202534,0.0301808,0.0434874,0.0551391,0.0705284,0.0879531,0.104616,0.123264,0.141288,0.158839,0.179687,0.200572,0.206509,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,refined liquids (CC),0.0,0.0,0.0,0.0289845,0.054550299999999996,0.09665409999999999,0.152917,0.21650190000000002,0.2856948,0.3617323,0.4409721,0.5341248000000001,0.6457983,0.7359228,0.8098548,0.8670005000000001,0.8893539,0.8846956999999999,0.8498598000000002,0.7779858,0.7226613,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,refined liquids (steam/CT),0.00879917,0.0428959,0.0412827,0.09172,0.1184265,0.14661760000000001,0.1639295,0.17093219999999998,0.17398798000000001,0.17691710000000002,0.18026188,0.18591498999999997,0.15791913999999999,0.13651986,0.11266812,0.0906421,0.0727564,0.05927587999999999,0.04921522,0.04138593,0.03598662,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,rooftop_pv,0.0,0.0,0.0,1.9787E-4,5.86468E-4,0.00122869,0.00217774,0.00356475,0.00564918,0.00885339,0.0137838,0.0212205,0.0320424,0.0456409,0.0617915,0.07969,0.0973332,0.113451,0.128454,0.14222,0.160833,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,wind,0.0,4.92E-5,1.312E-4,0.00794378,0.022679579999999998,0.04891028,0.09108658,0.14986568,0.22699148000000002,0.3175798,0.42151099999999997,0.5418513,0.6952959999999999,0.8552268999999999,1.0136379,1.186555,1.365132,1.543757,1.695498,1.839439,1.9753640000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,wind_storage,0.0,0.0,0.0,4.09068E-5,1.199951E-4,2.6593609999999996E-4,5.095141E-4,8.656461E-4,0.0013553871,0.0019648633,0.0027110140000000003,0.003633733,0.004884375,0.006279663,0.0077742720000000005,0.009511989,0.011409820000000001,0.013454110000000002,0.01539747,0.01733371,0.01925931,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,CSP,0.0,0.0,0.0,7.78489E-5,2.466519E-4,4.035519E-4,7.138359E-4,0.0011507229,0.0018230749,0.002532716,0.00316322,0.003817092,0.004429732,0.004827131,0.00514796,0.005733429999999999,0.006237023,0.0064829810000000005,0.006965957,0.0078046009999999996,0.00870764,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,CSP_storage,0.0,0.0,0.0,0.0,0.0,4.17981E-4,0.001950161,0.005001591,0.009971481,0.016190321,0.022919301,0.029265799999999998,0.0353681,0.03923005,0.042543649999999995,0.04779771,0.052041729999999994,0.05423726,0.058603279999999994,0.0660542,0.07419420999999998,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,Gen_III,0.0,0.0,0.0,0.0721375,0.1285617,0.1660719,0.2255132,0.297267,0.3797194,0.4563093,0.5202106,0.5745912999999999,0.6278859999999999,0.6704149,0.7159612000000001,0.7012807000000001,0.6952227,0.6956093999999999,0.6831873000000002,0.6639995000000001,0.6377511,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,Gen_II_LWR,0.1904,0.528419,0.534944,0.494364,0.471177,0.437356,0.391075,0.33298,0.267471,0.201963,0.143868,0.097587,0.0637665,0.0405796,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,PV,3.60012E-6,5.40015E-5,0.00277919,0.003353445,0.004275051,0.0049377100000000005,0.00602712,0.00734776,0.006386430000000001,0.007809385,0.008810539,0.010050449999999999,0.01109652,0.01171494,0.01220721,0.01344346,0.01466352,0.01532831,0.01665765,0.018921590000000002,0.02144219,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,PV_storage,0.0,0.0,0.0,9.56995E-6,2.4827350000000002E-5,3.583425E-5,5.3843950000000005E-5,7.582115E-5,1.0615995000000001E-4,1.2972709999999998E-4,1.465278E-4,1.67242E-4,1.847113E-4,1.9484219999999996E-4,2.0302919999999998E-4,2.236686E-4,2.434817E-4,2.545474E-4,2.766876E-4,3.1439049999999996E-4,3.564414E-4,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,1.19016E-4,3.728708E-4,7.663003E-4,0.0013742023,0.002093974,0.0028396517,0.0035939635,0.0044663684,0.005253889800000001,0.006236890300000001,0.0076281654,0.0089071218,0.009828104,0.011067519000000001,0.012462215,0.013871451,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,biomass (conv),0.0,1.62005E-4,0.0012456,0.001380582,0.002023323,0.002347724,0.0033998220000000003,0.004758769,0.006407088,0.008083314000000001,0.009646808,0.011111875,0.012865427999999998,0.0143402231,0.016228864000000003,0.018870246,0.020881893000000002,0.022300768999999998,0.0244848,0.026939440000000002,0.029338200000000002,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,biomass cogen,0.0,4.28023E-4,8.23576E-4,8.7149E-4,9.19436E-4,0.00101853,0.00107045,0.00108233,9.96929E-4,9.49123E-4,9.17759E-4,9.08753E-4,9.02784E-4,9.0366E-4,8.95128E-4,8.81357E-4,8.61505E-4,8.37215E-4,8.1906E-4,8.05754E-4,7.74371E-4,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.00349908,0.00981365,0.01819326,0.02962337,0.04180361,0.05327952999999999,0.06389107999999999,0.07494452,0.08421585999999999,0.09452746,0.1079288,0.11991538,0.12555089,0.13084605,0.13553425,0.13820177,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,coal (conv pul),0.0423734,0.482673,0.721766,0.748941,0.7978244999999999,0.7959329,0.7977815,0.7914598999999999,0.7874589999999999,0.7792093,0.7692892000000001,0.7649292,0.7758341,0.7896631999999999,0.783162,0.7617668,0.7349198,0.7317065000000001,0.7181889,0.7041971,0.6837118000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,coal cogen,0.0211961,0.0529509,0.067626,0.0762502,0.0633158,0.0681628,0.0686334,0.0696417,0.0682482,0.0670661,0.066119,0.0674696,0.0683989,0.0685458,0.0678415,0.0665441,0.0644079,0.0617779,0.0596939,0.0582594,0.0572733,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,gas (CC),0.0269822,0.20285,0.255413,0.2824354,0.3172189,0.32975560000000004,0.3501849,0.36962819999999996,0.39210659999999997,0.4097065,0.42160460000000005,0.4308481,0.39664249999999995,0.3620554999999999,0.33769220000000005,0.3244596999999999,0.3033441,0.2700484,0.24702659999999999,0.23667660000000001,0.2369493,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,gas (steam/CT),0.0075934,0.0102148,0.110062,0.09209488,0.08789583,0.08329191999999999,0.07654832,0.06759636,0.05714837000000001,0.04674818,0.03752877,0.03027658,0.023665539999999995,0.01878036,0.012968790999999999,0.012284202,0.011407502,0.010192743,0.009505567999999999,0.009303137000000001,0.009493324000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,gas cogen,0.0,0.0111745,0.00791079,0.0085724,0.0076057,0.0078598,0.00771814,0.00744475,0.00683943,0.00624025,0.00564106,0.00515115,0.00474375,0.00436487,0.00403875,0.00379015,0.00363726,0.00357804,0.00355087,0.00350435,0.00340178,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,hydro,0.0228996,0.0132228,0.0139644,0.0151472,0.0170392,0.0189311,0.0208231,0.0227151,0.0258792,0.0290433,0.0322074,0.0353714,0.0385355,0.0416996,0.0448637,0.0480278,0.0511919,0.054356,0.0575201,0.0606842,0.0606842,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,hydrogen cogen,0.0,0.0,0.0,0.0,0.00245809,0.00418599,0.00627091,0.00869969,0.0112719,0.0144455,0.0178343,0.0194984,0.0217416,0.0243003,0.0261865,0.0286375,0.0310447,0.0335847,0.0369098,0.0403576,0.0395739,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,refined liquids (CC),0.0,0.0,0.0,0.00193801,0.0039025460000000002,0.005119793,0.009456186,0.01496535,0.022668847,0.029723664,0.03559213,0.041020743,0.0468915,0.050266469999999994,0.05554668,0.06189414,0.06420919,0.06243312000000001,0.0631809,0.06376252,0.06548551999999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,refined liquids (steam/CT),0.0678875,0.0757497,0.0538667,0.04036515,0.03974577,0.03889103000000001,0.03690666,0.033878189999999996,0.03025149,0.02640758,0.022855643,0.020117259999999998,0.015873278,0.012216651,0.008336683,0.006901075,0.005574528999999999,0.004312241999999999,0.0035604580000000003,0.003197978,0.0031008389999999998,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,refined liquids cogen,0.0,0.017814,0.0142928,0.0131006,0.0127056,0.0131941,0.0128808,0.012691,0.0125613,0.0125491,0.0125245,0.0127802,0.0131488,0.0133693,0.0134746,0.0136284,0.0135924,0.0135617,0.0135422,0.0131681,0.0127184,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,rooftop_pv,0.0,0.0,0.0,4.88425E-5,1.19471E-4,2.52363E-4,4.41728E-4,7.15382E-4,0.00105589,0.00148025,0.00200159,0.00263024,0.00336388,0.00410103,0.00477411,0.00536321,0.00584768,0.006189,0.00644517,0.00662701,0.00676311,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,wind,0.0,4.68013E-4,0.00294119,0.003925068,0.005555078000000001,0.007021988000000001,0.009872838,0.013832818,0.016527288,0.02176093,0.02620051,0.030544210000000002,0.034035789999999996,0.035716319999999996,0.036713880000000004,0.03953365,0.04201302999999999,0.043104949999999996,0.04587617,0.05094076,0.05627404,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,wind_storage,0.0,0.0,0.0,8.53182E-6,2.364492E-5,3.798622E-5,6.763752E-5,1.1177642E-4,1.7744372E-4,2.454957E-4,3.089775E-4,3.729496E-4,4.310986E-4,4.6652130000000006E-4,4.963195999999999E-4,5.527298E-4,6.020948999999999E-4,6.286235E-4,6.817291999999999E-4,7.714616E-4,8.709619999999999E-4,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,CSP,0.0,0.0,0.0,7.53117E-5,2.653097E-4,6.323686999999999E-4,0.0012774217,0.0022292297,0.0036122096999999997,0.0053022780000000005,0.00720875,0.009409861,0.012612518,0.01590615,0.01911274,0.023108709999999998,0.026939860000000003,0.03064973,0.03313398,0.03497269,0.03674831,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,CSP_storage,0.0,0.0,0.0,0.0,0.0,0.00122023,0.00519512,0.01349125,0.026249349999999998,0.04364945,0.06567935,0.09120762000000002,0.12697973,0.1626391,0.19774590000000003,0.2406551,0.2813604,0.3218459,0.3507004,0.3734252,0.3965422,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,Gen_III,0.0,0.0,0.0,0.00961864,0.01915876,0.03705974,0.06693563,0.10925201000000001,0.1628957,0.22550287999999996,0.29516296,0.36743002999999996,0.46033810999999997,0.55081707,0.63897764,0.7308613100000001,0.8186091,0.8973853,0.9597187,1.0021163000000002,1.033969,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,PV,0.0,2.509E-4,3.334E-4,0.00397496,0.010774579999999999,0.020936279999999998,0.03578128,0.05463978,0.07881418,0.10451682,0.1307677,0.160098,0.2035821,0.249351,0.29473,0.3541184,0.41439659999999995,0.4741627,0.5170826000000001,0.5512855000000001,0.5856807,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,PV_storage,0.0,0.0,0.0,6.06883E-5,1.732623E-4,3.420573E-4,5.874893E-4,9.013603E-4,0.0013104723000000001,0.0017368199999999998,0.002175565,0.0026656619999999996,0.00339051,0.004148989,0.004909257,0.005907141,0.0069136219999999995,0.00794123,0.00870116,0.0093311,0.009991030000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,0.00440013,0.00969242,0.01626729,0.02393824,0.032591419999999996,0.04208183,0.0528825,0.06856288,0.0845001,0.10102560000000001,0.12101387999999999,0.13997133,0.15609501,0.17027322,0.18174519,0.19222757,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,biomass (conv),0.00220873,0.00903599,0.0205776,0.026811777000000002,0.040155235,0.053778137999999996,0.074765936,0.09576605499999999,0.11212977099999999,0.129416216,0.14817329299999998,0.169201864,0.202733992,0.23423717630000002,0.26667788000000003,0.2970807,0.3215983,0.3449173,0.3647858,0.37966859999999997,0.394432,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.0169728,0.0411276,0.0719748,0.1102446,0.15346579999999999,0.2000612,0.2518033,0.3225566,0.3950272,0.4683925000000001,0.5554312,0.6405438,0.7091749999999999,0.7685291,0.8147429,0.8546511000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,coal (conv pul),0.104596,0.279376,0.448595,0.66678,0.8721070000000001,1.0558429999999999,1.2629279999999998,1.479422,1.706988,1.936375,2.165596,2.4099489000000003,2.7434260999999998,3.0765735000000003,3.385715,3.527374,3.6813389999999995,3.848922,3.9681740000000003,4.045285000000001,4.117067,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,gas (CC),0.0449317,0.556474,0.456895,0.737706,1.015499,1.337147,1.7529839999999999,2.259158,2.8537909999999997,3.490363,4.132094,4.7829184,5.3011751,5.7875152,6.152759,6.532172999999999,6.762154000000001,6.894005,6.940335000000001,6.915934000000001,6.880929000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,gas (steam/CT),0.0446902,0.251628,0.603728,0.705983,0.836252,0.965937,1.086632,1.164007,1.195339,1.1891299999999998,1.1599736999999999,1.1223201999999999,0.9622313,0.8254775,0.6853813000000001,0.5724985,0.4748363,0.39964669999999997,0.3471685,0.3132518000000001,0.29382250000000004,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,gas cogen,0.0,0.00126484,0.00152089,0.00225978,0.00262802,0.00305352,0.00334644,0.00352144,0.00360578,0.00365085,0.00367881,0.00369191,0.00373921,0.00372496,0.0037312,0.00373812,0.00377037,0.00383344,0.00391467,0.00393271,0.00394776,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,geothermal,0.0196812,0.0356543,0.0357516,0.0604215,0.08506820000000001,0.11272570000000001,0.1441726,0.1755394,0.18044900000000003,0.195907,0.2107204,0.22420349999999997,0.2336729,0.233673,0.23367300000000005,0.233673,0.2336727,0.2336714,0.23367400000000002,0.23367310000000002,0.23367310000000002,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,hydro,0.141032,0.19957,0.254132,0.26494,0.275747,0.286555,0.297363,0.30817,0.338521,0.368871,0.399221,0.429571,0.459921,0.490271,0.520621,0.550971,0.581321,0.611671,0.642021,0.672371,0.672371,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,hydrogen cogen,0.0,0.0,0.0,0.0,9.41576E-4,0.00184451,0.00312939,0.00479537,0.00690459,0.0097198,0.0131824,0.0155974,0.0188392,0.0225357,0.0260795,0.0303358,0.0346167,0.0389093,0.0442135,0.0494605,0.0504361,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,refined liquids (CC),0.0,0.0,0.0,0.019772,0.03409349,0.05855563,0.09443396000000001,0.13582808000000002,0.18181535,0.22632073,0.26922657,0.31834594,0.3920840400000001,0.44193250000000006,0.4845218,0.5270164999999999,0.5388012,0.5341099,0.5137385,0.47314069999999997,0.44451430000000003,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,refined liquids (steam/CT),0.193341,0.11442,0.101648,0.09048629999999999,0.10111609999999999,0.1148748,0.12117349999999999,0.1218138,0.12103340000000001,0.11989849999999999,0.11930107,0.12080734,0.10449521,0.08959314000000003,0.07232609999999999,0.058405820000000004,0.04650692000000001,0.03727427,0.030758780000000003,0.025996110000000003,0.022959889999999997,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,rooftop_pv,0.0,0.0,0.0,2.19188E-4,7.01012E-4,0.00165431,0.00323388,0.00572789,0.00950228,0.0151024,0.02334,0.0350483,0.0511926,0.0702561,0.0917883,0.113915,0.134235,0.150379,0.163952,0.173953,0.187252,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,wind,0.0,8.32999E-5,2.845E-4,0.00758565,0.01957765,0.03783765,0.06483155,0.09963265,0.14204044999999998,0.1834764,0.22449760000000002,0.2655831,0.3200502,0.3699023,0.4143674,0.47010230000000003,0.5214801,0.5693616,0.5948856,0.6129104000000001,0.633014,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,wind_storage,0.0,0.0,0.0,6.58021E-5,1.9208909999999998E-4,4.125831E-4,7.821181E-4,0.0013178751,0.0020453691,0.002878922,0.003805345,0.004838091,0.006297426,0.007765269,0.009201744999999999,0.01101926,0.01278619,0.0145358,0.01576467,0.01673471,0.01774102,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,CSP,0.0,0.0,0.0,1.87402E-4,7.561800000000001E-4,0.001339275,0.0021189629999999997,0.0030631519999999995,0.004244352,0.00530302,0.005905362000000001,0.006402837000000001,0.008023029000000001,0.01008782,0.011689090000000001,0.014912810000000002,0.01866129,0.02122288,0.022399179999999998,0.022829589999999997,0.02346666,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,CSP_storage,0.0,0.0,0.0,0.0,0.0,5.66336E-4,0.001970056,0.004374476,0.0075579160000000005,0.011145816000000001,0.014740566,0.01746139,0.02329634,0.02998498,0.03526598,0.045310279999999994,0.05686643,0.06490387,0.0688753,0.07062944,0.07305049999999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,Gen_III,0.0,0.0,0.0,0.00202633,0.00426318,0.00703318,0.01097381,0.01591371,0.021361909999999998,0.0266561,0.03135115,0.03504529,0.042101570000000005,0.04991540999999999,0.056433559999999994,0.06401108,0.07161599,0.07568602,0.07809448000000001,0.07898386,0.0791146,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,Gen_II_LWR,0.118319,0.143918,0.149865,0.138496,0.132,0.122525,0.109559,0.0932843,0.074932,0.0565797,0.0403046,0.0273389,0.0178642,0.0113683,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,PV,0.0,3.60046E-6,8.28002E-5,4.668252E-4,0.0013294952,0.0020136332,0.0027741222,0.0035670202,0.004371440999999999,0.004865372,0.004785348,0.0048056620000000005,0.005587863,0.006737915,0.0076487840000000005,0.009695598,0.012210472,0.0139653,0.014872299999999998,0.01533116,0.015954680000000002,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,PV_storage,0.0,0.0,0.0,6.39973E-6,2.068143E-5,3.204513E-5,4.461743E-5,5.781263E-5,7.262033E-5,8.07881E-5,7.95559E-5,7.99377E-5,9.29978E-5,1.119816E-4,1.2717069999999999E-4,1.612916E-4,2.028153E-4,2.3227599999999998E-4,2.476559E-4,2.556462E-4,2.663433E-4,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,7.36845E-4,0.001420578,0.002196448,0.00300948,0.0037904170000000004,0.00447962,0.005056636,0.006438163,0.008026665,0.009380994,0.011592863,0.013849790999999998,0.014860607000000001,0.015746883,0.016443868,0.016970317,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,biomass (conv),0.0,0.0118311,0.0131472,0.00923329,0.013755199999999999,0.01469189,0.01733672,0.01930278,0.01986543,0.02053363,0.021173940000000002,0.021586165,0.024285066999999997,0.027266386999999996,0.02941642,0.03170309,0.03281014,0.03340282,0.0341156,0.0345947,0.03488923,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.00624453,0.013452849999999999,0.021384220000000002,0.03001498,0.03817076,0.045196730000000004,0.0510623,0.06291050000000001,0.07661546000000001,0.08839730000000001,0.10611920999999999,0.12444664000000001,0.13093343999999998,0.13563706999999997,0.13851042,0.14008005,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,coal (conv pul),0.07806,0.333201,0.340766,0.441574,0.569848,0.6263353,0.6702486,0.7014490000000001,0.7234445,0.7353794,0.7402923000000001,0.7429203000000001,0.7819699000000001,0.833877,0.8631431,0.8166001999999999,0.7551198999999998,0.7335524000000001,0.7122542,0.6920595999999999,0.6745754,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,coal cogen,0.0100818,0.11292,0.11021,0.0697294,0.0714525,0.0795799,0.0839152,0.089027,0.0947609,0.100942,0.107702,0.114463,0.120246,0.124896,0.129562,0.131573,0.132434,0.132237,0.131771,0.131656,0.133022,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,gas (CC),0.00209861,0.11464,0.124031,0.20634039999999998,0.3039877,0.3599134,0.40981239999999997,0.45213760000000003,0.4875088,0.5129392,0.5293222,0.539338,0.47990190000000005,0.41439709,0.3747387,0.36211150000000003,0.35459399999999996,0.3373708,0.32752960000000003,0.3253617,0.32998869999999997,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,gas (steam/CT),0.00162746,0.0156036,0.0805969,0.06429392,0.0653635,0.06423306,0.06099066,0.055755610000000004,0.04907112,0.042120229999999995,0.03571026,0.030317870000000004,0.024348506000000002,0.019390671,0.014267468999999998,0.013756426000000002,0.013473972999999998,0.012792749999999999,0.012500115,0.012479318,0.012679439999999998,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,gas cogen,7.51783E-4,0.00285039,0.001802,0.00159454,0.0016732,0.00183117,0.00190477,0.00194504,0.00193289,0.00190303,0.00185344,0.00176932,0.0016957,0.00162443,0.00157131,0.00152275,0.00150528,0.00151759,0.0015325,0.0015278,0.0015038,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,geothermal,1.08002E-5,0.0,0.0,0.0017586,0.0034609999999999997,0.0034610100000000005,0.0034609989999999993,0.0034609989999999998,0.003461003,0.003460985,0.0034609999999999997,0.003460999,0.003461002,0.003460995,0.0034609980000000003,0.00346099,0.0034594428,0.003460897,0.003461006,0.003458878,0.0034609969999999995,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,hydro,0.0229716,0.0143496,0.0150984,0.0154475,0.0157965,0.0161456,0.0164946,0.0168437,0.0178996,0.0189556,0.0200116,0.0210676,0.0221236,0.0231796,0.0242355,0.0252915,0.0263475,0.0274035,0.0284595,0.0295155,0.0295155,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,hydrogen cogen,0.0,0.0,0.0,0.0,2.33803E-5,4.12364E-5,6.38494E-5,9.143E-5,1.2397E-4,1.66056E-4,2.14733E-4,2.39995E-4,2.73839E-4,3.13205E-4,3.48237E-4,3.90191E-4,4.34553E-4,4.81834E-4,5.3953E-4,5.96852E-4,5.96076E-4,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,refined liquids (CC),0.0,0.0,0.0,0.00382567,0.007555640000000001,0.00933458,0.01332436,0.017993710000000003,0.02324954,0.0278198,0.0315434,0.03478708,0.04587588000000001,0.05455988,0.0599975,0.07333106,0.08342464,0.08557978999999999,0.08936518,0.09125297999999998,0.09369221,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,refined liquids (steam/CT),0.0780744,0.0395547,0.0298225,0.02461641,0.025629489999999998,0.026096369999999997,0.02585019,0.02503616,0.024044450000000002,0.022943620000000005,0.02187064,0.021032883999999998,0.016639251,0.01220697,0.008679495999999998,0.007095383,0.006016972,0.005143142,0.004729243,0.004574468,0.004605889,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,refined liquids cogen,0.00623675,0.0154824,0.00922986,0.00690975,0.00632613,0.00680239,0.00688827,0.00702477,0.0072665,0.00757376,0.00789865,0.00822581,0.00864172,0.00897891,0.00931886,0.00964923,0.00988071,0.0100978,0.0102849,0.0101421,0.00998456,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,rooftop_pv,0.0,0.0,0.0,8.8277E-6,3.50798E-5,8.7309E-5,1.67713E-4,2.89947E-4,4.59287E-4,6.81503E-4,9.62372E-4,0.00129433,0.00168273,0.00210967,0.00254792,0.00293266,0.00327512,0.00355484,0.00376514,0.00391247,0.00408103,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,wind,0.0,3.27642E-4,0.00351361,0.0061588,0.01065934,0.01445858,0.01900572,0.02409917,0.026324919999999998,0.02931456,0.02994171,0.0306402,0.03530952,0.04096637,0.04468678,0.053024550000000004,0.06210536,0.06758694,0.06812359,0.06689294,0.06692350999999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,wind_storage,0.0,0.0,0.0,2.14559E-5,6.20378E-5,9.92051E-5,1.4735170000000001E-4,2.059494E-4,2.748326E-4,3.241294E-4,3.496519E-4,3.717608E-4,4.518332E-4,5.524915E-4,6.305992999999999E-4,7.949326E-4,9.878392E-4,0.0011205660000000001,0.001182093,0.0012068489999999999,0.0012453439999999998,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,CSP,0.0023869,0.00214559,0.00316435,0.003500704,0.003908994,0.004568984999999999,0.005667144999999999,0.007256174999999999,0.006787705,0.009482781,0.012512031,0.015333490000000002,0.01944402,0.022255070000000002,0.02529808,0.029700329999999997,0.0318373,0.03335541,0.03347672,0.03397601,0.03325619,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,CSP_storage,0.0,0.0,0.0,0.0,0.0,0.00219437,0.00896344,0.02282484,0.04770944,0.07763374,0.11391374000000001,0.14833087,0.19698169999999998,0.2309984,0.27108089999999996,0.3409549,0.3918792,0.4518665,0.5144096,0.6026075,0.6997954,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,Gen_III,0.0,0.0,0.0,0.422486,0.6419239999999999,0.878883,1.179072,1.537019,1.9969839999999999,2.414988,2.813498,3.1545069999999997,3.5995110000000006,3.936152,4.340083,4.450057999999999,4.6365490000000005,4.7866670000000004,4.9073009999999995,4.973687000000001,4.969251000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,Gen_II_LWR,2.20139,2.91859,3.0201,2.791,2.66009,2.46915,2.20786,1.87988,1.51004,1.14021,0.812225,0.55094,0.360002,0.229097,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,PV,1.08004E-5,0.00188639,0.0109978,0.0228084,0.033419199999999996,0.04668699999999999,0.06503729999999999,0.08789159999999999,0.1115777,0.1363323,0.16499209999999997,0.19041949999999996,0.22858849999999997,0.25320919999999997,0.27950210000000003,0.3167048,0.3303205,0.33519109999999996,0.32313139999999996,0.31349899999999997,0.2895086,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,PV_storage,0.0,0.0,0.0,1.96841E-4,3.72529E-4,5.92961E-4,8.96476E-4,0.001277304,0.001856776,0.002268179,0.002751819,0.003186289,0.003865205,0.004332589,0.0049057070000000005,0.006081833,0.006994964999999999,0.008099663,0.009277721999999999,0.01095219,0.01283428,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,0.00463084,0.0107201,0.01913798,0.03215891,0.04539422,0.060203889999999996,0.0742034,0.09610099,0.11316844000000001,0.13722897,0.17172493,0.19731803999999997,0.2208885,0.24731488999999998,0.2732183,0.2987239,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,biomass (conv),0.0791349,0.110634,0.115436,0.0636048,0.0712617,0.0876129,0.1122814,0.1378031,0.16587860000000001,0.1899664,0.21783314999999998,0.24109742,0.28561105,0.31452741,0.36009169999999996,0.4143354,0.44725439999999994,0.4834228,0.5270613,0.5691937,0.6100113,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,biomass cogen,0.222713,0.122415,0.120684,0.113981,0.132873,0.152962,0.168111,0.179239,0.178887,0.183587,0.192401,0.200752,0.210883,0.221034,0.231627,0.240151,0.2465,0.250082,0.255612,0.261679,0.263372,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.0616368,0.1498947,0.2648429,0.4348728,0.6065946,0.7855072,0.9510396000000001,1.180402,1.3625313000000001,1.5891252999999999,1.8962510000000004,2.1345851000000002,2.3024806000000004,2.468933,2.6114990000000002,2.718984,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,coal (conv pul),6.02909,7.68047,7.10527,8.2163,8.785131,9.106373999999999,9.390298,9.60719,9.992412999999999,10.252135,10.547852,10.839158000000001,11.562962,12.141113999999998,12.662183,12.400614999999998,12.584149,12.831954,13.047229999999997,13.202876,13.205428999999999,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,coal cogen,0.0898471,0.0736722,0.07371,0.0603306,0.0612065,0.0690252,0.0733398,0.0790139,0.0847354,0.0910952,0.0989069,0.107099,0.115563,0.121841,0.128261,0.133201,0.135746,0.136477,0.138209,0.140563,0.144595,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,gas (CC),0.5903,1.90249,1.84213,2.71834,3.166117,3.58918,4.0597,4.543254,5.1600090000000005,5.65209,6.091436,6.4274130000000005,5.9317329999999995,5.761871000000001,5.618966,5.680637000000001,5.527469999999999,5.220707999999999,5.088850000000001,5.047787,5.194309,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,gas (steam/CT),0.435995,0.666933,1.54243,1.1620827,1.1078664,1.058748,0.9708816,0.8540414000000001,0.7219805,0.589021,0.47524809999999995,0.38384159999999995,0.3018424,0.24874079999999998,0.1858136,0.18728029999999998,0.1802819,0.1737339,0.1739798,0.17693289999999998,0.1865828,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,gas cogen,0.356442,0.272225,0.315357,0.286555,0.291678,0.316035,0.326499,0.333434,0.331885,0.327519,0.322495,0.311549,0.304911,0.295756,0.291837,0.29083,0.295642,0.306226,0.320498,0.332335,0.340484,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,geothermal,0.0576456,0.0604004,0.0632762,0.1168401,0.161117,0.2172017,0.29106679999999996,0.37651730000000005,0.4312638,0.4887595,0.5508637000000001,0.5901532,0.6421562000000001,0.6597114,0.6762694,0.7309833,0.7532251,0.7811117,0.7947565999999999,0.7947580000000001,0.794759,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,hydro,0.983347,0.981803,0.945313,0.954109,0.96406,0.974012,0.983963,0.993915,0.998283,1.00265,1.00702,1.01139,1.01576,1.02013,1.02449,1.02886,1.03323,1.0376,1.04197,1.04634,1.04634,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,hydrogen cogen,0.0,0.0,0.0,0.0,0.00115639,0.00206559,0.00323801,0.00472313,0.00653847,0.00894661,0.0118967,0.013658,0.0160687,0.0187864,0.0214222,0.024647,0.0280259,0.0315942,0.0362315,0.0411509,0.0421707,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,refined liquids (CC),0.0,0.0,0.0,0.0121606,0.014095,0.02328102,0.038883730000000005,0.059862649999999996,0.09437872,0.11999573999999999,0.14820342,0.17091921,0.21424265,0.23243636999999998,0.27052,0.322414,0.33672300000000005,0.3497703,0.36863460000000003,0.3770099,0.3942253,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,refined liquids (steam/CT),0.450767,0.454965,0.144545,0.0990186,0.09394889999999999,0.09829740999999999,0.09635924000000001,0.092195,0.08783368999999999,0.08152145,0.07581338,0.07112518,0.05614102,0.04726916999999999,0.03645268,0.032053679999999994,0.027395560000000003,0.02289879,0.02062631,0.019379890000000004,0.01943749,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,refined liquids cogen,0.0195925,0.053647,0.0285496,0.0243475,0.0254106,0.0280409,0.0290305,0.0303889,0.0322899,0.034609,0.0373002,0.0400658,0.0435983,0.0464287,0.0495036,0.0526956,0.0551622,0.0573738,0.0598971,0.0607014,0.0612904,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,rooftop_pv,0.0,0.0,0.0,3.69505E-4,0.00101348,0.00219236,0.00390218,0.00644547,0.00985942,0.0143598,0.0203425,0.0274603,0.0362775,0.0454237,0.0549371,0.0640607,0.0724425,0.0793929,0.0856153,0.0907383,0.0957979,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,wind,0.0110381,0.0643712,0.342527,0.456803,0.5408144,0.6505774,0.8123624,1.0284084,1.0185674,1.2525174,1.5417509999999999,1.788475,2.1382019999999997,2.348261,2.56895,2.9976449999999994,3.2595859999999997,3.543803,3.770804,4.1276660000000005,4.453752000000001,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,wind_storage,0.0,0.0,0.0,7.72404E-4,0.001352425,0.002132761,0.0033173409999999997,0.004961551,0.007516030999999999,0.009492687,0.011971176,0.01419217,0.01742445,0.01952662,0.02195444,0.02639013,0.02928893,0.03241911,0.03516341,0.03911646,0.04297114,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,CSP,0.0,0.0,0.0,1.03119E-5,4.3698899999999996E-5,1.2837839999999998E-4,1.9619499999999997E-4,3.2905499999999997E-4,5.9815E-4,0.0010292731,0.0016391501000000003,0.0024624446,0.003611698,0.004972358,0.006524843,0.008223218,0.010220414,0.011907839999999998,0.013575999999999998,0.01504765,0.016454299999999998,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,CSP_storage,0.0,0.0,0.0,0.0,0.0,2.85034E-4,0.001496244,0.005601414,0.015067104000000001,0.032530004,0.060775204,0.10127817,0.15583136,0.22183039,0.29989279999999996,0.3869249,0.4905937,0.5806567,0.6721003000000001,0.7547651,0.8354630000000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,Gen_III,0.0,0.0,0.0,8.87704E-4,0.0018407649999999998,0.010673944999999999,0.030526735,0.065395534,0.120806933,0.20206433299999998,0.313353333,0.449031333,0.6066210329999999,0.778468021,0.969755921,1.176239108,1.41296505,1.6276918,1.8440689,2.0429341,2.2343138999999996,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,PV,0.0,3.59999E-6,7.2E-6,0.0045103899999999995,0.01518369,0.03645679,0.06675239,0.09124829,0.11781759000000001,0.1466812,0.1784088,0.21336519999999998,0.2531462,0.31025139999999995,0.38217979999999996,0.46246899999999996,0.5531731,0.6410056000000001,0.733357,0.8242759000000001,0.9192130000000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,PV_storage,0.0,0.0,0.0,4.03627E-5,1.366033E-4,3.282363E-4,6.918033E-4,0.0014444853,0.0029194353000000003,0.0052514726,0.008585162,0.013271029,0.019523972,0.02709885,0.0360044,0.0461569,0.058635969999999996,0.06966627,0.08111486,0.09173390000000001,0.10238719999999998,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,9.79557E-4,0.002724443,0.005607977,0.010790076,0.019155230000000002,0.031499335999999996,0.048946935,0.072079964,0.100794062,0.13594808,0.17720053800000002,0.22844052199999998,0.27762725000000005,0.33290001999999996,0.38900991,0.44897732,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,biomass (conv),7.23594E-4,0.00113761,0.00113761,0.00288726,0.0061729160000000005,0.010686820999999999,0.017859868,0.028684329,0.04547485800000001,0.0695863,0.10221548400000001,0.145032227,0.19954136899999997,0.2639340163,0.33843238000000003,0.42261597999999995,0.5260643400000001,0.61908097,0.72800407,0.8384438,0.9555701,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,coal (IGCC),0.0,0.0,0.0,0.0,0.0,5.44842E-4,0.0014275,0.0028054679999999998,0.005224285,0.009112391,0.014979206000000002,0.023633162,0.035805888,0.051744834,0.07281989999999999,0.09977017599999999,0.135830978,0.174464348,0.22179086,0.27468218,0.33716630000000003,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,coal (conv pul),0.00125084,0.00237117,0.00341519,0.0078375,0.013275219999999999,0.019875280000000002,0.028584360000000003,0.040112709999999996,0.057693060000000004,0.08318268999999999,0.11845705200000001,0.166687723,0.230654262,0.310968074,0.41361555,0.5371088900000001,0.7009954,0.87841318,1.0933492999999999,1.3376717,1.6314371000000003,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,gas (CC),0.0,1.3375E-4,9.03294E-5,0.0016339638,0.0037689541999999998,0.007293730700000001,0.012948111,0.0221274608,0.0385791432,0.0654479672,0.10581742559999999,0.1634460899,0.2388053383,0.33302086149,0.45015764,0.59126758,0.7704336,0.9543962,1.1709748,1.4030075000000002,1.6626909,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,gas (steam/CT),0.0,5.13479E-5,1.28255E-4,0.0013230700000000002,0.002783393,0.004833749,0.0074981925000000005,0.0106934897,0.0147780549,0.0194590231,0.0244712663,0.029849586499999997,0.0344535479,0.03904277182,0.04382394,0.04897292,0.05550436,0.061105919999999994,0.06856728,0.0769853,0.08700241,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,geothermal,0.0011736,0.00361079,0.0052956,0.0145074,0.02701552,0.04301403,0.060759129999999995,0.07361701,0.07361709,0.07361712,0.07361697,0.073617,0.07361701000000001,0.07361703,0.07361701000000001,0.07361697,0.07361698,0.07361699000000001,0.07361699,0.07361704,0.07397614999999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,hydro,0.0219597,0.0353919,0.0539216,0.0712437,0.0885658,0.105888,0.12321,0.140532,0.174952,0.209372,0.243792,0.278212,0.312632,0.347051,0.381471,0.415891,0.450311,0.484731,0.519151,0.553571,0.553571,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,hydrogen cogen,0.0,0.0,0.0,0.0,9.30988E-4,0.00208406,0.00433352,0.00890939,0.0165522,0.0290871,0.0479551,0.066975,0.0936208,0.126905,0.161059,0.204662,0.271465,0.291178,0.344058,0.391932,0.389979,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,refined liquids (CC),0.0,0.0,0.0,0.0102206,0.02585958,0.05335227,0.09581279000000001,0.15862504,0.25910626000000003,0.39724026,0.57205085,0.78811088,1.0371412,1.3046037,1.5944810999999999,1.8548261,1.962252,2.23557,2.34552,2.3884630000000002,2.410311,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,refined liquids (steam/CT),0.00813914,0.0265001,0.0368684,0.0554666,0.0731728,0.0914471,0.1069411,0.1198634,0.1322746,0.1428592,0.15201098999999998,0.16120874,0.1528354,0.14558089000000002,0.1358609,0.1282015,0.11844949999999999,0.11593310000000001,0.11114129999999998,0.10746,0.10530869999999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,rooftop_pv,0.0,0.0,0.0,0.00133657,0.00394321,0.00887794,0.0157935,0.0194348,0.0255289,0.0379074,0.0581199,0.086988,0.125913,0.174453,0.231106,0.297965,0.38978,0.443902,0.511289,0.57064,0.630894,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,wind,0.0,1.11E-5,2.327E-4,0.00596267,0.01889107,0.04432387,0.08600437,0.14587537,0.23617367,0.3573727,0.5127263,0.7066245,0.933959,1.179922,1.446826,1.723018,2.001316,2.276745,2.559986,2.831468,3.11101,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,wind_storage,0.0,0.0,0.0,1.96943E-5,6.62467E-5,1.636122E-4,3.362322E-4,6.331972E-4,0.0011977812,0.0021366549,0.0035559425,0.005581717,0.008345167,0.011832052000000001,0.016040257999999998,0.020867089999999998,0.02719535,0.0322224,0.03727684,0.04173262,0.045996369999999995,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,CSP,0.0,0.0,0.0,3.83822E-6,2.5063220000000002E-5,7.969772E-5,1.8274072E-4,3.4227072000000004E-4,5.640467200000001E-4,8.349695E-4,0.0011291785,0.001420303,0.001744344,0.0021189019999999998,0.002521283,0.002954989,0.003296802,0.003196975,0.0030072420000000002,0.002725371,0.002369714,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,CSP_storage,0.0,0.0,0.0,0.0,0.0,1.81624E-4,8.16575E-4,0.0022069950000000002,0.004252655,0.006960255,0.010273885,0.013691951,0.01746546,0.02159856,0.02605862,0.0308587,0.03750431,0.04168843999999999,0.04792388,0.05456796,0.06142064,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,Gen_III,0.0,0.0,0.0,4.0566E-4,0.00114874,0.00802147,0.022375259,0.044295549000000004,0.069653047,0.097288336,0.125988724,0.15272501300000002,0.18098870099999997,0.212158288,0.24524006599999998,0.2797466,0.32138242,0.34466,0.3660608,0.379698,0.3893904,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,PV,0.0,0.0,0.0,0.00201261,0.010159969999999999,0.02645377,0.05182867,0.08601927000000001,0.12850827,0.17580066,0.2211473,0.26244329999999993,0.3068381,0.3597555,0.4208905,0.4914265,0.5964515,0.6577397,0.7185779999999999,0.746429,0.746221,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,PV_storage,0.0,0.0,0.0,1.80392E-5,9.1503E-5,2.3812199999999998E-4,4.6697099999999994E-4,7.730759999999999E-4,0.0011558139999999998,0.0015794448,0.001989137,0.002359377,0.002758587,0.0032403099999999997,0.0037839930000000003,0.004422823,0.005381847,0.006001228000000001,0.006941549000000001,0.007965671,0.00904474,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,6.56772E-4,0.001702443,0.003190728,0.005086922,0.0073333949999999995,0.009848139,0.012574121,0.016056522,0.020547365,0.025684118,0.031593461,0.0394859,0.044635033000000005,0.05184239000000001,0.05903275,0.06626533,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,biomass (conv),0.0,0.0,0.0,5.56396E-4,0.002556284,0.005164543000000001,0.009060317,0.013854881999999999,0.018699974,0.023590672,0.028560402,0.03351893,0.040244052,0.048780426,0.057621932,0.06752482100000001,0.08055665,0.08753735,0.10026614999999998,0.11293773,0.1262123,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.00147547,0.00354626,0.00616003,0.00925986,0.01269333,0.0163355,0.0201443,0.024676060000000003,0.03026668,0.03685372,0.04454558,0.054813490000000006,0.06132194999999999,0.06973241,0.07844482,0.08747859999999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,coal (conv pul),0.00796861,0.0473972,0.0399414,0.04538135,0.059852119999999995,0.07578262,0.09345104000000001,0.1116827,0.12985697,0.14784489,0.16563718000000002,0.18354036999999998,0.20491096999999997,0.23140273,0.26053822000000004,0.2886474,0.32070279999999995,0.33979070000000006,0.3673529,0.3982571,0.4334754,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,gas (CC),0.0753821,0.198188,0.0832847,0.11274250000000001,0.1959781,0.3376028,0.549214,0.8360467,1.1775457,1.5425636,1.9011563,2.2349137,2.5463957099999996,2.83577617,3.068904,3.2394950000000002,3.3963740000000002,3.3544120000000004,3.347231,3.3312769999999996,3.316816,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,gas (steam/CT),0.0604314,0.28426,0.552887,0.5585431,0.6653659000000001,0.7797801999999999,0.8743063,0.9262528999999999,0.9319504,0.9086899,0.8727431999999999,0.8352227000000001,0.7506226,0.6309994999999999,0.4898932,0.3788698,0.2917938,0.22385879999999997,0.1862165,0.16388819999999998,0.15140520000000002,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,geothermal,0.0,0.0,0.0,0.00369739,0.01423748,0.028699389999999998,0.04432064,0.058942020000000005,0.07070804,0.07266697999999999,0.072667,0.072667,0.07266700000000001,0.072667,0.07266702,0.07266704,0.07266697,0.07266703000000001,0.07266696,0.07266704,0.07267346999999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,hydro,0.0408238,0.0516204,0.0603183,0.0632959,0.0662735,0.0692511,0.0722286,0.0752062,0.0811228,0.0870394,0.092956,0.0988726,0.104789,0.110706,0.116622,0.122539,0.128456,0.134372,0.140289,0.146205,0.146205,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,hydrogen cogen,0.0,0.0,0.0,0.0,2.25146E-4,4.33591E-4,7.23625E-4,0.00108814,0.00154151,0.00215931,0.00293071,0.00345007,0.00416075,0.00495007,0.00569143,0.00660883,0.00776846,0.00852476,0.0098442,0.0112832,0.0118252,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,refined liquids (CC),0.0,0.0,0.0,0.0145645,0.04814597,0.096911,0.15362101,0.20664805,0.25377117000000005,0.29014055000000005,0.31832098,0.34433618,0.38428059999999997,0.4229743,0.454281,0.4526413,0.3776825,0.39769889999999997,0.37273179999999995,0.3441046,0.3309812,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,refined liquids (steam/CT),0.11773,0.126766,0.200053,0.1828302,0.20621060000000002,0.2224776,0.21900979999999998,0.2000408,0.1809228,0.1632869,0.14990029,0.14174821,0.1264362,0.10421201000000001,0.07752645999999999,0.05660752999999999,0.03640642,0.03090278,0.024453169999999996,0.02063721,0.01872733,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,rooftop_pv,0.0,0.0,0.0,0.00101279,0.00277366,0.00573997,0.00995318,0.0156018,0.0230111,0.0328851,0.0462299,0.0628424,0.0851467,0.109913,0.135471,0.161051,0.187973,0.201772,0.19942,0.189116,0.191035,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,wind,0.0,0.0028801,0.0082198,0.012747209999999998,0.02725541,0.05345651,0.09196361,0.14155491,0.19226471,0.2533181,0.3080676,0.3535335,0.39941909999999997,0.45221779999999995,0.5104482,0.5768924,0.6767586999999999,0.7316827,0.8041360000000001,0.8641449999999999,0.91254,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,wind_storage,0.0,0.0,0.0,1.96942E-5,8.72142E-5,2.1967419999999998E-4,4.278892E-4,7.152492E-4,0.0010757732,0.0014766900000000001,0.001872857,0.0022376939999999997,0.0026300359999999997,0.003092882,0.0036181539999999997,0.004222433,0.005112266000000001,0.005651819,0.006366012,0.006999526,0.00755023,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,CSP,0.0,0.0,0.0,1.83372E-6,6.73945E-6,1.9369950000000002E-5,4.6547050000000004E-5,9.609655E-5,1.8560345E-4,3.3684173E-4,5.740000000000001E-4,9.196925000000001E-4,0.0014137804,0.0020375529,0.0027806840000000003,0.0036888520000000003,0.004873758000000001,0.005711915,0.00672837,0.007707458,0.00845227,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,CSP_storage,0.0,0.0,0.0,0.0,0.0,4.19882E-5,2.0945420000000002E-4,6.413152E-4,0.0014669252,0.0029753552,0.0055182352,0.009206707,0.014419641,0.020949799999999998,0.02878926,0.03834563,0.05079775,0.059725690000000005,0.07072539,0.08147667,0.0898848,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,Gen_III,0.0,0.0,0.0,1.8157E-4,3.42525E-4,0.001836065,0.005406275,0.011847745,0.021543744,0.036147703999999996,0.057063994,0.083379773,0.11614564299999999,0.153464303,0.195317461,0.244032143,0.30510503,0.35201953,0.40719821,0.46135053,0.5075714,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,PV,0.0,0.0,0.0,8.55557E-4,0.002531117,0.005882797,0.011837737000000001,0.021286847,0.036545147,0.06013059,0.09498203,0.14473485,0.21454771,0.3027937,0.4103544,0.5431734,0.7214883999999999,0.8524839000000001,1.0144721,1.1779950000000001,1.3087650000000002,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,PV_storage,0.0,0.0,0.0,7.66841E-6,2.2776610000000002E-5,5.2936510000000005E-5,1.0664211000000001E-4,1.9123861E-4,3.2868361E-4,5.399552E-4,8.54755E-4,0.0013011951,0.0019295355,0.0027284989999999997,0.003688974,0.004886964,0.0064891260000000004,0.007656666000000001,0.00912221,0.0105857,0.01176848,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,1.42726E-4,4.18208E-4,8.91139E-4,0.001701174,0.003055473,0.0051534960000000005,0.008211748999999999,0.012571298,0.018186559999999997,0.0249999141,0.0336092737,0.0451839418,0.053994695999999995,0.066083796,0.078571319,0.090959,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,biomass (conv),0.0,0.0,0.0,2.49038E-4,6.73229E-4,0.00130368,0.002405515,0.004085759,0.006521546,0.010125529,0.015213948000000001,0.022021993,0.031349103999999996,0.042597924999999995,0.0551431285,0.070598235,0.09104502399999999,0.10419666999999999,0.125227643,0.14623352,0.16783284999999998,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.00459282,0.01177032,0.0221402,0.03757458,0.060250780000000004,0.09192077,0.13438357,0.19054337999999998,0.25766867000000004,0.33559646,0.42897425,0.54749004,0.63676099,0.7446208,0.8513606,0.9422492,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,coal (conv pul),0.0215065,0.0200021,0.0180461,0.0734835,0.1241876,0.1804999,0.2521581,0.33974299999999996,0.45237963000000003,0.6012692399999999,0.79172793,1.02827125,1.32324131,1.66131466,2.0404581,2.4277524,2.9332507,3.3171898,3.7783345,4.241704,4.637589,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,gas (CC),0.0,8.11349E-4,0.0,0.00510608,0.01270985,0.02802685,0.057173329999999994,0.10691184000000001,0.18678596,0.30706874,0.47178769,0.68029082,0.9300958500000001,1.2066957,1.4971151,1.8103979000000001,2.171982,2.405334,2.666377,2.8842559999999997,3.016717,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,gas (steam/CT),0.0,0.00338992,0.00619505,0.028023970000000002,0.046705159999999996,0.06882648999999999,0.09354158000000001,0.11751678000000002,0.13996095,0.16047836000000001,0.17813617699999998,0.192946676,0.18741789200000003,0.18260149299999998,0.17455730000000003,0.16524940000000002,0.1588786,0.14747470000000001,0.14257260000000002,0.1379737,0.13411969999999998,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,geothermal,0.0,0.0,0.0,0.00173777,0.0046165500000000005,0.00946926,0.01648861,0.025331680000000002,0.036151670000000004,0.04751287999999999,0.05935084,0.07015759,0.07072007,0.07071997,0.07072002,0.07072006,0.07072003,0.07072005,0.07072003,0.07072001,0.07071996,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,hydro,0.0549063,0.1228,0.143803,0.152226,0.160649,0.169072,0.177496,0.185919,0.202656,0.219393,0.236131,0.252868,0.269606,0.286343,0.30308,0.319818,0.336555,0.353293,0.37003,0.386767,0.386767,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,hydrogen cogen,0.0,0.0,0.0,0.0,4.23934E-4,8.73377E-4,0.0015168,0.00240551,0.00369727,0.00569548,0.00850961,0.0109513,0.0141628,0.0178321,0.0214044,0.0254816,0.0297552,0.033065,0.0371722,0.0406681,0.0423236,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,refined liquids (CC),0.0,0.0,0.0,0.0215672,0.043834700000000004,0.0820855,0.1381171,0.2088023,0.30441627000000004,0.42659643,0.56852434,0.72594549,0.89769182,1.0479765,1.1795668000000001,1.2467904,1.0884866999999998,1.15665,1.0555393,0.9052716,0.8296569000000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,refined liquids (steam/CT),0.00267763,0.00666428,0.00933526,0.05205519,0.0797416,0.10824196,0.13055953999999997,0.143900046,0.154178772,0.16163169600000002,0.16692110900000004,0.171661566,0.1529081574,0.1395755804,0.1253119,0.10884332999999999,0.08437491999999999,0.08044455,0.06796347,0.05664075,0.0499067,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,rooftop_pv,0.0,0.0,0.0,4.55756E-4,0.00133824,0.003005,0.00547422,0.00912388,0.0145662,0.0227471,0.0349734,0.0515559,0.0743566,0.101883,0.131964,0.164501,0.201263,0.226747,0.24972,0.266545,0.305896,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,wind,0.0,2.4E-6,3.54999E-5,7.720769E-4,0.0021233169,0.0048100469,0.0096319669,0.017324716900000002,0.029537817,0.04807074,0.0750326,0.11188887,0.16162854999999998,0.22199030000000003,0.29164660000000003,0.3741261,0.480225,0.552279,0.6391374000000001,0.7226619,0.785371,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,wind_storage,0.0,0.0,0.0,2.40157E-6,6.90019E-6,1.616765E-5,3.323705E-5,6.150305E-5,1.0819655E-4,1.8177248E-4,2.9380186000000003E-4,4.546964E-4,6.81326E-4,9.69418E-4,0.0013196895,0.0017546200000000001,0.0023371439999999998,0.002764126,0.003297624,0.003831682,0.004263264,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,CSP,0.0,0.0,0.0,2.15125E-6,1.1333979999999999E-5,4.673218E-5,1.3288577999999999E-4,3.0589577999999996E-4,6.212487799999999E-4,0.0011506385299999999,0.0019746048,0.0031900366,0.004868003,0.007071363,0.00976015,0.012602349,0.01412817,0.01456753,0.01485906,0.014702070000000001,0.01398145,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,CSP_storage,0.0,0.0,0.0,0.0,0.0,1.17675E-4,6.48552E-4,0.002156452,0.005065252,0.010303231999999999,0.019055422,0.031960146999999994,0.04964167,0.07275147,0.10166327,0.13770679,0.1910495,0.23454609999999998,0.2977515,0.3683392,0.4395106,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,Gen_III,0.0,0.0,0.0,1.80289E-4,4.3632200000000006E-4,0.004016352,0.013755612,0.033222002,0.062864501,0.106963691,0.169697271,0.24976796099999998,0.34646233899999995,0.461504319,0.595354999,0.7527778900000001,0.95904854,1.12403484,1.3282458,1.5349558,1.7294434,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,PV,0.0,1.44E-5,1.08E-5,8.46742E-4,0.003458872,0.011282192,0.027004492,0.054482792,0.099244992,0.16909435,0.27118922,0.4177599000000001,0.6156326,0.8757813000000001,1.2058483,1.6158050000000002,2.1450940000000003,2.507953,2.906466,3.2293460000000005,3.425781,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,PV_storage,0.0,0.0,0.0,7.49257E-6,3.104567E-5,1.0144306999999999E-4,2.4323607E-4,4.8924507E-4,8.9255307E-4,0.0015182475,0.0024403964,0.0037556490000000002,0.005536666,0.007892717,0.010847379,0.014617012,0.020334810000000002,0.02506318,0.03203086,0.0399353,0.04803583,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,7.52559E-4,0.0021248509999999996,0.004415851,0.007998525,0.013491099999999999,0.021492784,0.032860163,0.048055953,0.068129425,0.092937366,0.123970615,0.16760604699999998,0.20241291,0.25123535,0.303401,0.35748199,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,biomass (conv),1.692E-4,6.11997E-4,8.28003E-4,0.001459749,0.003388949,0.006686672,0.0120491725,0.0199899091,0.0303567614,0.0444112804,0.0632075717,0.08801320796,0.1201449608,0.16076323492,0.207527306,0.264736108,0.34586532000000003,0.40389773999999995,0.49569143000000004,0.59309304,0.6974055,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,coal (IGCC),0.0,0.0,0.0,0.0,0.0,5.1791E-4,0.00147818,0.003089252,0.005646906,0.009584475,0.015416128,0.023940348,0.035767376,0.051841763,0.073045274,0.101252006,0.142730618,0.179940309,0.23297659999999998,0.29447224,0.36097068,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,coal (conv pul),0.00130875,0.00250043,0.003599,0.00580396,0.00936267,0.01561405,0.025098879999999997,0.03862004,0.05721083,0.08300743000000001,0.118048125,0.165535553,0.22766752499999998,0.30865730599999996,0.41191877,0.54359038,0.7348102400000001,0.90574509,1.1467729999999998,1.4308082,1.7434899,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,gas (CC),0.00907156,0.0219692,8.15672E-4,0.009407584,0.029433001,0.089147386,0.216744093,0.455503832,0.8397741519999999,1.406969685,2.173274139,3.151345374,4.295174561900001,5.6101086607,7.032376000000001,8.567055,10.409258,11.652247,13.139489,14.469367,15.46734,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,gas (steam/CT),0.0175865,0.0425327,0.0790683,0.1063861,0.1497886,0.2278285,0.3257329,0.4288164,0.5231163999999999,0.6059584,0.6759727,0.7371125000000001,0.76446207,0.77698387,0.7617388999999999,0.7371011000000001,0.7254663,0.6876315,0.6863800999999999,0.6888259000000001,0.6933073,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,geothermal,0.0,0.0,0.0,0.00176604,0.00652002,0.01830399,0.036773639999999996,0.06093948,0.08913383,0.11855299,0.144519,0.1445189,0.1445189,0.14451889999999998,0.1445191,0.144519,0.14451899,0.144519,0.14451893,0.14451903,0.14413189999999998,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,hydro,0.0814254,0.10931,0.113792,0.139788,0.165784,0.191781,0.217777,0.243773,0.295429,0.347085,0.398742,0.450398,0.502054,0.55371,0.605366,0.657022,0.708678,0.760334,0.81199,0.863646,0.863646,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,hydrogen cogen,0.0,0.0,0.0,0.0,0.00103388,0.00228621,0.00443124,0.00780298,0.013154,0.0218243,0.0347667,0.0476511,0.0658654,0.0883081,0.113405,0.144173,0.181936,0.215751,0.259474,0.304717,0.331109,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,refined liquids (CC),0.0,0.0,0.0,0.0123254,0.03510101,0.0929487,0.18689136,0.31770984,0.48722781,0.69849307,0.94686443,1.24198759,1.56973121,1.9179225,2.271828,2.5217811,2.3917722,2.694092,2.685909,2.55084,2.5234159999999997,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,refined liquids (steam/CT),0.0179558,0.0344399,0.0455212,0.0633107,0.087762,0.1267018,0.1613368,0.185065,0.20266353000000004,0.21600515,0.22717085999999997,0.23975114,0.24172744999999998,0.24050099000000003,0.2294155,0.2103526,0.17461239999999997,0.1736546,0.1579887,0.1436115,0.13570939999999998,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,rooftop_pv,0.0,0.0,0.0,0.00117718,0.00318196,0.00702043,0.0134913,0.0239313,0.0406279,0.0671863,0.109142,0.170482,0.263191,0.385524,0.533234,0.703654,0.875255,0.982629,1.05106,1.10325,1.22137,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,wind,0.0,1.17E-5,1.769E-4,0.00153216,0.00550779,0.01718239,0.04048859,0.08069239,0.14375569,0.23835332999999997,0.3712877,0.5494021,0.7751499,1.0531120999999999,1.3796439,1.762754,2.273149,2.6301699999999997,3.092592,3.543353,3.9300560000000004,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,wind_storage,0.0,0.0,0.0,4.53677E-6,1.840097E-5,6.184167E-5,1.5348686999999998E-4,3.2242987E-4,6.058268700000001E-4,0.0010581931,0.0017418449,0.0027332242000000003,0.004080459,0.005863796,0.008122019,0.010962546,0.014992120000000001,0.0181286,0.022374230000000002,0.026803840000000002,0.03094284,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,CSP,0.0,0.0,0.0,3.48679E-6,7.8617E-6,3.0208E-5,7.00586E-5,1.273202E-4,1.997091E-4,2.8058760999999995E-4,3.6661889999999996E-4,4.4424469999999997E-4,5.567341E-4,6.397735E-4,7.610356E-4,9.013103E-4,0.0010831971,0.0011975120000000002,0.001310585,0.001403262,0.001432354,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,CSP_storage,0.0,0.0,0.0,0.0,0.0,7.4287E-5,3.1984699999999995E-4,8.18925E-4,0.001486639,0.002318005,0.00326772,0.004234233,0.0055611029999999995,0.006512715,0.007860311,0.009371464999999999,0.01129276,0.012580399999999999,0.01421248,0.016389240000000003,0.01861513,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,Gen_III,0.0,0.0,0.0,0.00270251,0.0038304899999999998,0.00735423,0.01188832,0.01710099,0.022671169999999997,0.02845851,0.03414133,0.03948692,0.0464654,0.05213347,0.05922301,0.06405706000000001,0.07143477,0.07423268999999999,0.07723125,0.07894195999999999,0.0804039,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,Gen_II_LWR,0.0262116,0.0247428,0.0258156,0.0238573,0.0227383,0.0211061,0.0188727,0.0160691,0.0129077,0.00974639,0.00694284,0.00470939,0.00307726,0.0019583,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,PV,0.0,0.0,0.0,6.05715E-4,0.00116207,0.00336996,0.006621129999999999,0.010686929999999999,0.0152816,0.019691465,0.02421456,0.02752327,0.032516840000000005,0.03603064,0.04207147,0.04944699,0.05952694,0.06561854,0.06923320000000001,0.06882005,0.06376862,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,PV_storage,0.0,0.0,0.0,5.42879E-6,1.04451E-5,3.03116E-5,5.96312E-5,9.602969999999999E-5,1.374155E-4,1.7691290999999999E-4,2.1777089999999998E-4,2.474115E-4,2.923049E-4,3.244527E-4,3.7813859999999996E-4,4.4489839999999997E-4,5.367521E-4,5.99845E-4,6.820579999999999E-4,7.924637E-4,9.08329E-4,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,5.58804E-4,0.001224015,0.001985481,0.0027483760000000003,0.003514608,0.004245326,0.004990879,0.006168063,0.007108929000000001,0.008422256000000001,0.009840047,0.011503504,0.012371867000000002,0.013550244999999999,0.014466878999999998,0.015458427,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,biomass (conv),3.85201E-4,0.0046368,0.007902,0.00745499,0.00737158,0.009101973,0.010749903,0.012250187999999999,0.013081534,0.013798305,0.014473745,0.015237368999999999,0.017240332,0.018490935,0.020365868999999998,0.021716441,0.02386795,0.02441052,0.02594274,0.026947259999999997,0.028411210000000003,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,coal (IGCC),0.0,0.0,0.0,0.0,0.0,3.38379E-4,8.07027E-4,0.001378972,0.002007628,0.0026738739999999997,0.0033447019999999997,0.004056003,0.005105697,0.006063687,0.007400045,0.008979177999999999,0.010947975,0.012216044,0.013875426000000001,0.015437412000000001,0.017173295999999998,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,coal (conv pul),0.0016128,0.00567,0.00806399,0.01155799,0.01300255,0.016724160000000002,0.02080597,0.02486828,0.02855902,0.032012519999999996,0.035214739999999994,0.038507849999999996,0.043534661,0.048022487,0.05393880999999999,0.05733640000000001,0.06479355,0.06811503000000001,0.07321927,0.07835531,0.08503562,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,gas (CC),0.0177817,0.143583,0.0614012,0.0871053,0.09915750000000001,0.1415603,0.1980244,0.26687459999999996,0.33924069999999995,0.41147300000000003,0.4779712,0.5408865,0.59455294,0.64535559,0.6777740000000001,0.7002362,0.7155231,0.7004108,0.6975515,0.6916973999999999,0.6878956999999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,gas (steam/CT),0.053761,0.0556123,0.163188,0.1793197,0.1832749,0.2079123,0.2258717,0.2327906,0.2277706,0.21653200000000003,0.20303190000000002,0.1904229,0.15554603,0.1372209,0.10328269999999999,0.07809751999999999,0.05855114,0.044590750000000005,0.03700414,0.03239703,0.029771380000000004,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,geothermal,0.0,0.0,0.0,0.00210656,0.0038387300000000003,0.01010246,0.018422639999999997,0.02778074,0.03701732,0.043981320000000004,0.050676299999999994,0.05301542000000001,0.05671184,0.05800025,0.06255778000000001,0.06833004,0.07631626999999999,0.0801757,0.08343629999999999,0.0869709,0.0882053,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,hydro,0.0643536,0.122414,0.120913,0.123868,0.126823,0.129777,0.132732,0.135687,0.140903,0.14612,0.151337,0.156554,0.16177,0.166987,0.172204,0.177421,0.182637,0.187854,0.193071,0.198288,0.198288,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,hydrogen cogen,0.0,0.0,0.0,0.0,1.06111E-4,1.81037E-4,2.72899E-4,3.75837E-4,4.91992E-4,6.38955E-4,8.09582E-4,8.94332E-4,0.00101758,0.00114943,0.00126638,0.00141711,0.00161223,0.00171233,0.00189233,0.00206692,0.00207129,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,refined liquids (CC),0.0,0.0,0.0,0.00720386,0.00839376,0.02216738,0.03541411,0.047479640000000004,0.05665869,0.06333907,0.06734956,0.07197648,0.0838133,0.08569294,0.09354458,0.09222388,0.07549656,0.07795096,0.07169289000000001,0.06373150000000001,0.06030738,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,refined liquids (steam/CT),0.0178164,0.0206892,0.0597456,0.0588863,0.05534049,0.05947128000000001,0.057160090000000004,0.05154631,0.04601107000000001,0.04079139999999999,0.03651326,0.033711849999999995,0.0267226,0.023331425000000003,0.016658687,0.011808262,0.0073601380000000004,0.006115031999999999,0.004766016999999999,0.003960278,0.003564187,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,rooftop_pv,0.0,0.0,0.0,1.14364E-4,2.52812E-4,4.92769E-4,8.10658E-4,0.00121291,0.0017192,0.00233931,0.00312819,0.00405171,0.00524197,0.00646097,0.00772866,0.00891933,0.0100803,0.0104587,0.00923135,0.00640058,0.00520327,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,wind,0.0,2.7E-4,9.0E-5,0.00200281,0.00375755,0.0111061,0.0226643,0.0379854,0.05557329999999999,0.07330978999999999,0.09187095,0.1063599,0.1272965,0.1417477,0.1650368,0.1928138,0.2303556,0.2543626,0.2798679,0.306294,0.32496149999999996,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,wind_storage,0.0,0.0,0.0,6.02309E-6,1.1560340000000001E-5,3.536304E-5,7.328804E-5,1.2467153999999998E-4,1.8496843999999999E-4,2.4656415000000006E-4,3.120184E-4,3.655497E-4,4.434727E-4,4.990642000000001E-4,5.882223E-4,6.953364999999999E-4,8.3943E-4,9.34743E-4,0.001039333,0.001147133,0.001227921,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,CSP,0.0,3.60003E-6,1.44E-5,1.877667E-5,2.938867E-5,4.979157E-5,8.773797E-5,1.4439197E-4,2.2187587E-4,3.200002E-4,4.2355219999999996E-4,5.267453E-4,6.350779E-4,7.270518999999999E-4,8.14823E-4,9.551659999999999E-4,0.001081608,0.001138187,0.0011332249999999999,0.0010675245,9.558864E-4,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,CSP_storage,0.0,0.0,0.0,0.0,0.0,6.78265E-5,3.016535E-4,7.954375E-4,0.0016429755,0.0026530655,0.0038523655,0.0050713089999999995,0.006347472,0.007390778000000001,0.008413720000000001,0.009946420000000001,0.011364260000000001,0.01228183,0.0132081,0.01404182,0.01495943,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,Gen_III,0.0,0.0,0.0,0.0,0.0,5.96369E-4,0.001927167,0.003948417,0.008642986,0.014706674999999999,0.021963734,0.028740132999999998,0.035631842,0.041833590000000004,0.048667508,0.057213106,0.065384604,0.07125944,0.07662592000000001,0.08075829,0.08277568,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,PV,0.0,2.80802E-4,9.82801E-4,0.0032028810000000003,0.007143471,0.013029761,0.022069421,0.033815421,0.049861920000000004,0.06543524,0.08022395,0.09425246,0.1083306,0.1200343,0.1318279,0.153316,0.1752952,0.1900539,0.204684,0.21710229999999997,0.2262131,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,PV_storage,0.0,0.0,0.0,1.98987E-5,5.5430199999999997E-5,1.083973E-4,1.8992260000000002E-4,2.950826E-4,4.484796E-4,5.879709E-4,7.216004E-4,8.473633000000001E-4,9.739410000000001E-4,0.0010808640000000002,0.001185133,0.001379756,0.001577208,0.001709754,0.001848919,0.001978363,0.002125612,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,3.35418E-4,7.83876E-4,0.001380895,0.002290255,0.003186876,0.004160541,0.00516953,0.006367705,0.007551491,0.008962308,0.010962735,0.012792889000000002,0.014132166000000002,0.01565512,0.016925551,0.018284811,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,biomass (conv),0.0,0.00150481,0.0014688,0.0013501326999999998,0.0022765266,0.0031317783,0.0046932803999999995,0.0064818394,0.0087761551,0.0104900128,0.01224191204,0.013847295079999999,0.01585486748,0.01764558346,0.019654341,0.022539943,0.02454414,0.025953300999999998,0.028073517,0.02969575,0.031712489999999996,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,biomass cogen,0.00399456,0.0112041,0.0107029,0.0124066,0.0136927,0.0153628,0.016329,0.0171247,0.0173187,0.017599,0.0180122,0.0182761,0.0186091,0.0189368,0.0187223,0.0185668,0.0185163,0.0181105,0.0179294,0.0176743,0.017258,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.00806918,0.01903648,0.03204998,0.04948469999999999,0.06622014,0.08269991,0.09888286,0.11631653000000002,0.13272438,0.15136533000000002,0.17515899999999998,0.19808475,0.20808560000000004,0.21585280000000004,0.21967299999999998,0.22011159999999996,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,coal (conv pul),0.439003,0.672518,0.655517,0.743751,0.8346399999999999,0.894146,0.9493240000000001,0.9905269999999999,1.040017,1.071298,1.1002770000000002,1.1343408,1.1848457,1.2392744,1.2806095000000002,1.2555523000000002,1.243995,1.2280372999999998,1.2031775,1.1702791,1.1264023,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,coal cogen,7.08817E-4,0.00236353,0.0024372,0.0030547,0.00317001,0.00361234,0.00369569,0.00375028,0.00386505,0.00400968,0.00420011,0.00434977,0.00451582,0.00463668,0.00472352,0.00481494,0.00492691,0.00480039,0.00469727,0.00456724,0.00450339,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,gas (CC),0.0392458,0.0623957,0.0181282,0.02642467,0.03677119,0.05033829,0.07085338,0.09796993,0.13621811,0.17259181999999998,0.20714647999999997,0.23873945000000002,0.26070512,0.27723038,0.292109,0.30850950000000005,0.3156037,0.30539180000000005,0.2998656,0.2939667,0.29422539999999997,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,gas (steam/CT),0.0328841,0.0559444,0.143944,0.1279989,0.1351715,0.14135979999999998,0.14225,0.1369407,0.1278556,0.11500553000000001,0.1023322,0.09070131,0.06872206,0.05210982,0.03696389,0.02827252,0.021514349999999998,0.0160581,0.013405266999999998,0.011839699,0.011282134999999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,gas cogen,6.22289E-4,0.00413685,0.00788556,0.00933545,0.00971371,0.0106596,0.0108099,0.0107444,0.0104608,0.0101727,0.00988077,0.00945747,0.00903866,0.00854789,0.00816086,0.0078784,0.00773154,0.00757201,0.00775768,0.00778791,0.00775095,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,geothermal,0.00746642,0.0111493,0.0209844,0.02850728,0.03716974,0.047316,0.060151510000000005,0.07425956,0.07263379,0.08288726,0.0912704,0.09763290000000001,0.10266109999999999,0.10574230000000001,0.1067551,0.114726,0.1224897,0.1262065,0.12981589999999998,0.1327473,0.1348928,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,hydro,0.134392,0.138895,0.133859,0.139576,0.145294,0.151011,0.156728,0.162446,0.169607,0.176768,0.18393,0.191091,0.198253,0.205414,0.212575,0.219737,0.226898,0.23406,0.241221,0.248382,0.248382,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,hydrogen cogen,0.0,0.0,0.0,0.0,1.50633E-4,2.736E-4,4.26884E-4,6.11876E-4,8.33383E-4,0.0011227,0.00146313,0.00164313,0.00187805,0.00213355,0.00235216,0.00263252,0.00294912,0.00317514,0.00350619,0.00380141,0.00373764,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,refined liquids (CC),0.0,0.0,0.0,0.0012087,0.002017067,0.003142084,0.004906724,0.00672893,0.009547194,0.010850704,0.012006494999999999,0.012979702,0.014352467,0.014985955,0.016460378,0.017724615,0.014225808,0.015321910000000001,0.01422267,0.012929401,0.012483802999999998,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,refined liquids (steam/CT),0.012816,0.0102421,0.0113868,0.00620156,0.006501390000000001,0.00681086,0.006745977,0.00637767,0.006223919,0.005789838,0.005403636,0.005100376,0.004131772000000001,0.0033303680000000002,0.0026166080000000003,0.002037732,0.0013359645999999998,0.0011765455000000001,9.441808E-4,8.028260000000001E-4,7.371426000000001E-4,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,rooftop_pv,0.0,0.0,0.0,1.90742E-4,5.36102E-4,0.00117694,0.00205596,0.00327923,0.00488972,0.00696839,0.00961779,0.0125644,0.0161452,0.0199344,0.0234444,0.0268511,0.0301328,0.0326575,0.034472,0.0352642,0.03487,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,wind,0.0,0.00539644,0.0231552,0.03165261,0.04298541,0.05820621,0.08050591,0.10862671,0.12520351000000002,0.1571459,0.187707,0.21562969999999998,0.242407,0.2632394,0.2821041,0.32013990000000003,0.358239,0.3817315,0.40489109999999995,0.42497080000000004,0.44381440000000005,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,wind_storage,0.0,0.0,0.0,3.05869E-5,7.20009E-5,1.293004E-4,2.150219E-4,3.265079E-4,4.868799E-4,6.22672E-4,7.57636E-4,8.858775E-4,0.001013548,0.001117534,0.001218975,0.00140846,0.0015988130000000001,0.001723062,0.001848825,0.001959213,0.002067119,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,CSP,0.0,0.0,0.0,1.58238E-5,6.11428E-5,2.0768080000000002E-4,4.3690480000000006E-4,7.456328E-4,0.0011588758,0.0016607529999999998,0.002221294,0.0027752949999999997,0.0035587109999999996,0.004385053,0.00549032,0.006848549000000001,0.008617459,0.009782349999999999,0.01112699,0.01231652,0.01301488,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,CSP_storage,0.0,0.0,0.0,0.0,0.0,4.87125E-4,0.0018995449999999999,0.004590235,0.008401825,0.013503214999999999,0.019867465,0.026673230000000003,0.03571261,0.04475782,0.05674823,0.07120494,0.08979298999999999,0.10223259999999999,0.1168815,0.1300408,0.1381807,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,Gen_III,0.0,0.0,0.0,3.94153E-4,0.002921963,0.008897113,0.016591362999999998,0.025755523000000002,0.036318002,0.048295582,0.061319772,0.07414095200000001,0.090032121,0.10574378000000001,0.12477743999999999,0.14592504,0.16875860999999998,0.18152347,0.19618329,0.20811600000000002,0.2169534,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,Gen_II_LWR,0.00805313,0.0354779,0.0522827,0.0483166,0.0460504,0.042745,0.0382217,0.0325438,0.0261413,0.0197388,0.0140609,0.00953766,0.00623222,0.00396604,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,PV,0.0,0.0,0.0,8.41185E-4,0.002604795,0.007035405,0.012758185,0.019466365,0.027493015,0.036070370000000004,0.04472366,0.052122749999999995,0.06317127,0.07522859,0.09272384,0.1149798,0.1453005,0.16617300000000002,0.1909189,0.21399089999999998,0.2289974,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,PV_storage,0.0,0.0,0.0,7.53934E-6,2.344094E-5,6.330804E-5,1.1491794000000001E-4,1.7497304E-4,2.4727324E-4,3.2410049999999997E-4,4.0227949999999997E-4,4.685764E-4,5.679325E-4,6.775864E-4,8.334252E-4,0.0010344376,0.0013066920000000001,0.001492565,0.001716584,0.00192274,0.002059022,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,0.0109619,0.022428919999999998,0.034362779999999996,0.046379699999999996,0.05832522,0.06957042999999999,0.0798272,0.09235162,0.10351125,0.11540824000000001,0.12702908000000002,0.13863653,0.13706759999999998,0.13485406,0.12953062,0.12298262999999998,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,biomass (conv),0.0138923,0.0489274,0.113382,0.1451885,0.17144130000000002,0.20985789999999999,0.241964,0.26762600000000003,0.28269880000000003,0.29276869999999994,0.2997124,0.3038632,0.3163109,0.32564294000000005,0.3288892,0.3231532,0.3173211,0.292496,0.27220720000000004,0.2483359,0.22824619999999998,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.00449671,0.01015529,0.01675719,0.024308629999999998,0.03269717,0.041636610000000004,0.051069859999999995,0.06357499999999999,0.07665401,0.09320832,0.11263153000000001,0.13609485000000002,0.14921384999999998,0.1651191,0.17897122999999998,0.19030427000000003,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,coal (conv pul),0.0171142,0.0386711,0.0408167,0.0741503,0.10828090000000001,0.1619522,0.2161467,0.268723,0.3199149,0.370813,0.4206943,0.47005879,0.53341339,0.59766728,0.6754036999999999,0.7313495999999999,0.8057196,0.8323061999999999,0.8747476999999999,0.9143091,0.9488315999999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,gas (CC),8.08283E-4,0.0445118,0.0777075,0.1954856,0.312859,0.5236351,0.7390812,0.9492563,1.1500919,1.3417977,1.5202369,1.6854517999999998,1.7591944,1.8243020799999998,1.8214469999999998,1.8328859999999998,1.8747829999999999,1.8471150000000003,1.861996,1.8689230000000001,1.8646489999999998,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,gas (steam/CT),3.65337E-4,0.0232112,0.0536022,0.05359891,0.056802790000000006,0.06388765,0.06995427,0.07433172,0.07726187,0.07956556,0.08155760000000001,0.0835659,0.08286226999999999,0.08187206999999998,0.07757739999999999,0.07636343,0.07656211000000002,0.07304054,0.07272046,0.071229,0.0696477,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,geothermal,0.0,0.0,0.0,0.00260392,0.00754656,0.02007116,0.036223149999999996,0.054870619999999995,0.07530313,0.09470521000000001,0.1125919,0.12400530000000001,0.1390827,0.1528246,0.17217920000000003,0.1948808,0.2229639,0.23706639999999998,0.2515714,0.2627648,0.265016,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,hydro,0.744149,1.21485,1.45184,1.4758,1.49977,1.52373,1.5477,1.57166,1.61397,1.65628,1.69859,1.7409,1.78321,1.82552,1.86783,1.91014,1.95245,1.99476,2.03707,2.07938,2.07938,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,hydrogen cogen,0.0,0.0,0.0,0.0,8.59156E-4,0.00149832,0.00228331,0.00318848,0.00422329,0.00550447,0.00688243,0.00740502,0.0081339,0.008811,0.00927834,0.00989478,0.0106258,0.0107236,0.0111139,0.0113181,0.010815,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,refined liquids (CC),0.0,0.0,0.0,0.0223794,0.0471995,0.11275960000000002,0.1797234,0.246042,0.31284811,0.37340414,0.42145418,0.46251891,0.5213424000000001,0.550143,0.580615,0.5712695000000001,0.4728255,0.46785619999999994,0.40551970000000004,0.33515410000000007,0.29598030000000003,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,refined liquids (steam/CT),0.017773,0.0420406,0.0578339,0.09506890000000001,0.1222403,0.1667966,0.1885982,0.19504,0.196136,0.1927418,0.18678201000000003,0.18148864,0.15333103000000003,0.12864499,0.09351804,0.06635429,0.04340168,0.03512306,0.02664817,0.02093645,0.017795440000000003,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,rooftop_pv,0.0,0.0,0.0,0.00100756,0.00245722,0.00498394,0.00846114,0.0131012,0.0190265,0.0262598,0.0348796,0.0441411,0.0550449,0.0651068,0.0739727,0.0816376,0.0891662,0.0903751,0.0895091,0.0868639,0.0894468,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,wind,0.0,3.34799E-4,0.00783718,0.015298879999999999,0.02470332,0.04531692,0.07096221999999999,0.10080022,0.12708064,0.15823824,0.19063249999999998,0.2149695,0.2503273,0.28605559999999997,0.336379,0.3984987,0.480864,0.5314673,0.5888002,0.6387839000000001,0.6639018999999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,wind_storage,0.0,0.0,0.0,2.53097E-5,5.77867E-5,1.320507E-4,2.270716E-4,3.416456E-4,4.761036E-4,6.062259E-4,7.464739E-4,8.619969E-4,0.001028921,0.0012015279999999999,0.001447507,0.001757194,0.002172646,0.002445578,0.002767778,0.0030584419999999998,0.0032328369999999997,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,CSP,0.0,0.0,0.0,3.88959E-4,0.00129463,0.0023837800000000003,0.0039026,0.0056437499999999995,0.008323279999999999,0.010744740999999999,0.012799969999999997,0.014712620000000001,0.01674183,0.018583080000000002,0.020063530000000003,0.0225759,0.02541219,0.027069700000000002,0.028819050000000002,0.0302435,0.03195296,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,CSP_storage,0.0,0.0,0.0,0.0,0.0,0.00245123,0.00878731,0.019061210000000002,0.03579401,0.054543610000000006,0.07560131,0.09430738000000001,0.1127646,0.1275679,0.14014390000000002,0.1589661,0.17914839999999999,0.1913598,0.2047563,0.21598209999999998,0.2295899,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,Gen_III,0.0,0.0,0.0,0.0554074,0.10871990000000001,0.1621274,0.23481770000000002,0.3174927,0.4174944,0.5046790999999999,0.5837633999999999,0.6511283,0.7195367999999999,0.7803364,0.8438654999999999,0.8622613000000001,0.8819922000000001,0.8822074999999999,0.8654746,0.8321293999999999,0.7865965000000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,Gen_II_LWR,0.262681,0.331344,0.326372,0.301614,0.287467,0.266833,0.238597,0.203153,0.163186,0.123218,0.0877746,0.0595382,0.0389042,0.0247578,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,PV,0.0,6.11999E-5,5.68799E-4,7.673280000000001E-4,0.001105735,0.0014219270000000001,0.0017860190000000002,0.002149288,0.002080241,0.002372668,0.002523045,0.002693285,0.0028918330000000003,0.003092987,0.0032561200000000004,0.0035709810000000004,0.0037241559999999997,0.003549789,0.0031472519999999997,0.0026688495000000002,0.0020773487,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,PV_storage,0.0,0.0,0.0,1.77913E-6,4.82996E-6,7.67468E-6,1.09577E-5,1.4209370000000001E-5,1.8710190000000002E-5,2.1328140000000003E-5,2.269155E-5,2.4214330000000005E-5,2.6009590000000002E-5,2.79003E-5,2.9399929999999998E-5,3.2777040000000004E-5,3.69487E-5,3.958434E-5,4.2596580000000003E-5,4.52267E-5,4.84897E-5,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,8.48764E-4,0.002044045,0.003510494,0.005684814,0.007820279,0.010051655,0.012155972,0.014591801000000001,0.016959328,0.019569895999999996,0.02290153,0.026247136999999997,0.028261983,0.03042652,0.03206578,0.033682069999999995,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,biomass (conv),0.0137844,0.0300024,0.0279072,0.02822217,0.03097726,0.0320665,0.03425237,0.036080129999999995,0.03845121,0.03967604,0.041184990000000005,0.04250159,0.04519041,0.047948389999999994,0.04986362,0.05331476,0.05595587,0.05763459,0.060105599999999995,0.06161223,0.0634034,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,biomass cogen,4.21048E-4,4.20829E-4,4.24375E-4,4.67594E-4,4.9378E-4,5.37624E-4,5.47346E-4,5.49056E-4,5.18695E-4,4.98279E-4,4.88099E-4,4.8087E-4,4.78289E-4,4.77871E-4,4.64792E-4,4.53065E-4,4.43528E-4,4.3419E-4,4.26823E-4,4.19322E-4,4.06378E-4,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.00399592,0.009744490000000001,0.016523080000000002,0.02604157,0.03536087,0.04471487,0.05346963,0.06306704,0.07219,0.08227868,0.09461421,0.1073636,0.11307611999999999,0.11797307,0.12088876000000001,0.12245884,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,coal (conv pul),0.295991,0.395942,0.316566,0.36033230000000005,0.4135388,0.44351050000000003,0.4747665,0.49892349999999996,0.5309854999999999,0.5543202,0.5767784,0.5984858,0.6290785999999999,0.6614121000000001,0.6866655,0.6775253000000001,0.6705195,0.6661875999999999,0.656995,0.6442288,0.6266664,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,gas (CC),0.0338351,0.0585332,0.016694,0.0267533,0.0413898,0.058683299999999994,0.08705210000000001,0.12487759999999999,0.18128793999999998,0.23680548,0.29099242999999997,0.33847074,0.37548846999999996,0.40290863,0.4281028,0.450054,0.46128959999999997,0.44148190000000004,0.426404,0.4087453,0.40260239999999997,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,gas (steam/CT),0.00100203,0.0677619,0.173231,0.1759197,0.19340770000000002,0.2032561,0.2093368,0.2068672,0.1993409,0.1856125,0.17090001,0.15710658000000005,0.12391445000000001,0.09555435,0.0700015,0.0535593,0.04079248,0.029439250000000004,0.023169850000000006,0.019210220000000004,0.01729457,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,geothermal,0.0,0.0,0.0,0.0040695,0.008724909999999999,0.01250509,0.01325824,0.013231,0.013231,0.013231,0.01323099,0.013231,0.013230990000000001,0.013231,0.013230990000000001,0.01323099,0.013230989999999998,0.013231,0.013231,0.013231,0.01323101,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,hydro,1.06835,1.30916,1.26543,1.30693,1.34854,1.39015,1.43175,1.47336,1.49957,1.52578,1.55199,1.5782,1.60441,1.63062,1.65683,1.68304,1.70925,1.73547,1.76168,1.78789,1.78789,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,hydrogen cogen,0.0,0.0,0.0,0.0,3.15312E-4,5.58436E-4,8.4701E-4,0.00117927,0.00153686,0.00199636,0.00252848,0.00279137,0.00315097,0.00354591,0.00387452,0.00429102,0.0047436,0.00512056,0.0056184,0.00606929,0.00589566,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,refined liquids (CC),0.0,0.0,0.0,0.00249601,0.00510431,0.00784148,0.01275277,0.018085541,0.026321113,0.031493426,0.035979294999999994,0.039147493,0.04324654,0.04531362,0.04862434,0.05059519,0.04436149,0.044029330000000005,0.04052927,0.03648742,0.034884219999999994,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,refined liquids (steam/CT),0.0592847,0.0551952,0.0266292,0.02152903,0.02308893,0.02361485,0.023342210000000002,0.022142510000000004,0.02095691,0.019175940000000002,0.017510508,0.016212054,0.012963832,0.010115358000000001,0.007649567999999999,0.005901001000000001,0.004197236,0.00333162,0.002614858,0.002169837,0.001962458,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,rooftop_pv,0.0,0.0,0.0,4.54106E-6,1.24182E-5,2.64801E-5,4.47524E-5,6.86849E-5,9.64061E-5,1.29559E-4,1.69708E-4,2.14805E-4,2.67677E-4,3.19562E-4,3.71097E-4,4.03664E-4,3.59156E-4,2.6728E-4,1.53573E-4,9.95116E-5,7.59544E-5,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,wind,0.0,0.00529559,0.0344051,0.047733,0.0679246,0.0917287,0.1283281,0.1737671,0.2059417,0.2608952,0.3119236,0.35712740000000004,0.3992954,0.4319966,0.4550457,0.4997473,0.5494343,0.5755304,0.602962,0.6247263,0.6518705,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,wind_storage,0.0,0.0,0.0,4.78209E-5,1.217174E-4,2.1170960000000002E-4,3.5366360000000003E-4,5.362876000000001E-4,8.101096E-4,0.0010501166999999998,0.0012847272,0.001501059,0.001713556,0.001887617,0.002029102,0.002272367,0.002539058,0.002691369,0.0028541909999999994,0.002986577,0.0031499959999999995,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,CSP,0.0,0.0,0.0,5.56983E-5,1.8302329999999998E-4,4.6244229999999997E-4,9.249953E-4,0.0015960263,0.0026173463,0.003890658,0.005241562999999999,0.006685174,0.008558241000000001,0.01036415,0.01206027,0.0137468,0.015504450000000001,0.01636059,0.017364610000000003,0.01818606,0.018917,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,CSP_storage,0.0,0.0,0.0,0.0,0.0,9.28868E-4,0.0037796080000000003,0.009718768,0.020182767999999997,0.036124368,0.055588868,0.0759597,0.10210686,0.1267495,0.1515424,0.177273,0.2130708,0.23227129999999996,0.2538291,0.27123790000000003,0.28490340000000003,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,Gen_III,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.010547,0.0322275,0.0625329,0.0924938,0.1274191,0.1601003,0.19292189999999998,0.2272491,0.2664909,0.29415850000000004,0.3272644,0.3579482,0.3780872,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,PV,0.0,0.0,4.32E-5,0.00646034,0.01719914,0.03550894,0.06047404000000001,0.08477424,0.09809424000000001,0.10305829999999999,0.1034267,0.099476,0.0926813,0.0878502,0.0935763,0.10113520000000001,0.10831480000000002,0.1088873,0.1104716,0.1115526,0.1151034,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,PV_storage,0.0,0.0,0.0,5.75156E-5,1.543425E-4,3.190975E-4,5.448525E-4,8.321425000000001E-4,0.0012623105000000002,0.0017761698999999998,0.002302937,0.0028101639999999995,0.0034921400000000003,0.0041632710000000005,0.004836253,0.005582668,0.006717404,0.007344442,0.008073531,0.00868539,0.009196059999999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,0.00269431,0.00624186,0.01045646,0.01535324,0.02125787,0.027536369999999998,0.03430764,0.04305437,0.05196978000000001,0.061445730000000004,0.07190299,0.0845578,0.09107898,0.09931662999999999,0.10617403000000002,0.11252059,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,biomass (conv),0.00762288,0.008862,0.0143049,0.01886169,0.030123650000000002,0.04169916,0.05528798,0.06984898,0.08409398,0.099231665,0.113900221,0.128517833,0.147488383,0.1656863813,0.18333908999999998,0.19353718999999997,0.20897666,0.2144952,0.2251302,0.23317179999999996,0.2411467,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,coal (IGCC),0.0,0.0,0.0,0.0,0.0,6.35102E-4,0.0015376830000000002,0.002693211,0.004146485,0.006038356999999999,0.008245669,0.010876262000000001,0.014610457,0.018823381,0.023862335000000002,0.030085432000000002,0.038385931000000005,0.04449557,0.05295435,0.06161364000000001,0.07119447000000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,coal (conv pul),1.548E-4,0.007992,0.0111816,0.01858878,0.025203970000000003,0.03244211,0.040682420000000004,0.0494464,0.058890979999999996,0.07012785,0.08232465,0.09610808000000001,0.11509007999999998,0.13587280499999999,0.15962927999999998,0.18097093,0.21288038999999997,0.23665232,0.27092934,0.30729,0.34947900000000004,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,gas (CC),0.0,0.0,0.0,0.00488508,0.01130579,0.02331944,0.042530639999999995,0.06933581,0.10287362,0.14413674999999998,0.1877069,0.23305123,0.28340160000000003,0.3310969,0.37519060000000004,0.4167619,0.4622334,0.48243630000000004,0.510818,0.5359923999999999,0.5624439,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,gas (steam/CT),0.0129143,0.042021,0.0577774,0.0745258,0.08822759999999999,0.1024381,0.1143618,0.12185549999999998,0.1251707,0.12595989,0.12499121,0.12369046,0.10298773,0.08763499,0.06945277999999999,0.05595122,0.0461023,0.03823489000000001,0.03365656,0.031230340000000002,0.03024042,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,geothermal,0.002898,0.0094176,0.0117864,0.02106448,0.02967866,0.03379197,0.03379202,0.033792,0.033792,0.03379201,0.03379204,0.03379196,0.033792,0.033791970000000005,0.03379195,0.03379196,0.033792050000000004,0.033791970000000005,0.03379205,0.03379202,0.03380836,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,hydro,0.0486099,0.0767999,0.0855111,0.0891228,0.0927345,0.0963461,0.0999578,0.103569,0.109946,0.116323,0.1227,0.129076,0.135453,0.14183,0.148206,0.154583,0.16096,0.167337,0.173713,0.18009,0.18009,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,hydrogen cogen,0.0,0.0,0.0,0.0,6.32593E-4,0.00112513,0.00175561,0.00259335,0.00371143,0.0051178,0.00680364,0.00781333,0.00918513,0.010677,0.0120533,0.0139381,0.0167474,0.0178433,0.0201472,0.0222688,0.0217519,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,refined liquids (CC),0.0,0.0,0.0,0.0200856,0.0421403,0.0779488,0.1243652,0.1761701,0.2336406,0.2960038,0.3534156,0.4111185,0.4751116,0.5253869,0.5692234999999999,0.5921164999999999,0.5585571,0.5808928999999999,0.5622545,0.5329280000000001,0.5065548,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,refined liquids (steam/CT),0.119832,0.219264,0.220659,0.2432137,0.2601451,0.27195790000000003,0.27104459999999997,0.25834499999999994,0.24064420000000003,0.21990614,0.20022837,0.18488152000000002,0.14163786,0.11142743,0.07543124,0.05685840000000001,0.04226952999999999,0.035236390000000006,0.029328969999999996,0.025674810000000003,0.023400249999999997,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,rooftop_pv,0.0,0.0,0.0,0.00121063,0.00283476,0.00533244,0.00858074,0.0114591,0.00963568,0.0102019,0.0130695,0.0193867,0.0242578,0.030604,0.0329457,0.0343723,0.0329753,0.0370645,0.0406743,0.0441309,0.0474262,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,wind,0.0,9.144E-4,0.00207,0.0158623,0.0365821,0.0712167,0.11836179999999999,0.17410379999999998,0.2350469,0.2955696,0.3526802,0.40115,0.45927589999999996,0.5100219,0.5604468,0.6108927999999999,0.6806523999999999,0.70629,0.7360289999999999,0.758788,0.77771,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,wind_storage,0.0,0.0,0.0,5.94052E-5,1.590203E-4,3.477353E-4,6.336792999999999E-4,0.0010089583,0.0014735223,0.0020039400999999997,0.002565103,0.003122311,0.00383084,0.004508811,0.005218327,0.005970274,0.006970506,0.0074775729999999995,0.00807387,0.008567149999999999,0.00900506,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,CSP,0.0,0.0,0.0,5.01303E-5,1.269405E-4,2.379905E-4,3.923495E-4,5.715805E-4,8.111845E-4,0.0010170552,0.0011663849999999998,0.001256502,0.0015389790000000002,0.001712764,0.0018433780000000001,0.002378963,0.0028428570000000003,0.003151278,0.003396578,0.0036405499999999998,0.003898884,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,CSP_storage,0.0,0.0,0.0,0.0,0.0,3.69158E-4,0.00132029,0.00288238,0.00509242,0.00761507,0.00999059,0.011715692,0.01527336,0.01736128,0.019003890000000002,0.02473429,0.029609240000000002,0.032905500000000004,0.03566031,0.0384038,0.04133951,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,Gen_III,0.0,0.0,0.0,0.0677829,0.1029415,0.14303870000000002,0.19120710000000002,0.24234630000000001,0.293151,0.33639729999999995,0.36812169999999994,0.391621,0.4351724,0.46603439999999996,0.49513120000000005,0.4838564000000001,0.4940298,0.48502850000000003,0.47557109999999997,0.4562780000000001,0.4371256,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,Gen_II_LWR,0.0,0.00977756,0.00896395,0.00828395,0.00789541,0.00732868,0.00655316,0.00557968,0.00448196,0.00338424,0.00241076,0.00163524,0.00106852,6.7998E-4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,PV,0.0,0.0,0.0,0.00177343,0.0037626200000000004,0.00599704,0.0085616,0.01115325,0.01425038,0.01557638,0.0161747,0.01620094,0.01845107,0.019743339999999998,0.020787089999999998,0.026582349999999998,0.03187226,0.03555667,0.03873712,0.04200339,0.04550934,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,PV_storage,0.0,0.0,0.0,1.58943E-5,3.3829200000000005E-5,5.3934E-5,7.70611E-5,1.002619E-4,1.281581E-4,1.400258E-4,1.45459E-4,1.4564129999999998E-4,1.6585120000000002E-4,1.777736E-4,1.8689070000000002E-4,2.3926349999999998E-4,2.8673E-4,3.195309E-4,3.4840299999999995E-4,3.77514E-4,4.0925849999999997E-4,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,2.55024E-4,5.72582E-4,9.515960000000001E-4,0.001445057,0.0019516339999999998,0.00238113,0.002757584,0.0037739619999999996,0.004486354,0.005251635,0.007127389,0.008537140999999998,0.009429817,0.010780176999999998,0.011801311000000002,0.012852871000000002,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,biomass (conv),0.0,0.0,0.0,0.00118043,0.0019197099999999998,0.002651202,0.003748557,0.004860701,0.005976802,0.006894573,0.007519565,0.008009692,0.010171564000000001,0.011270060999999998,0.012420502,0.015690161,0.017360787000000003,0.018384469,0.020625896,0.022101733,0.023811966,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.00328298,0.0070384,0.01087984,0.015294549999999999,0.01949857,0.02289665,0.02565911,0.031169580000000002,0.03533082,0.03946671,0.04788272,0.05489794,0.05657968000000001,0.05927945,0.06088825,0.06204759,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,coal (conv pul),0.257637,0.202024,0.264001,0.35102,0.39637069999999996,0.42074350000000005,0.43620980000000004,0.4407141,0.44124019999999997,0.43694349999999993,0.42894669999999996,0.42162360000000004,0.4340118,0.4435914999999999,0.4437898,0.3766492000000001,0.3528054000000001,0.3350859,0.3267594,0.3193187,0.313243,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,gas (CC),0.0,0.0,0.0,0.0381261,0.0707955,0.1133641,0.1721379,0.242259,0.32781129999999997,0.4097219,0.4730626,0.5203852999999999,0.5720745,0.5997248,0.6125564,0.659639,0.669563,0.6380948,0.6241994,0.6139973999999999,0.6168567,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,gas (steam/CT),0.270924,0.259231,0.289064,0.308789,0.34865399999999996,0.38584989999999997,0.405197,0.405468,0.3896511,0.36885889999999993,0.34673503,0.3264535099999999,0.21293756,0.15289152,0.10725647999999999,0.07695966,0.055152880000000015,0.03906453,0.030976490000000002,0.02681698,0.025058820000000002,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,gas cogen,0.0,6.27014E-4,0.0015317,0.00126435,0.00127087,0.00137106,0.00136955,0.00132932,0.00122178,0.00113592,0.00106622,0.00100437,9.60313E-4,9.06663E-4,8.60668E-4,8.17185E-4,7.7669E-4,7.35426E-4,7.14828E-4,6.83239E-4,6.44228E-4,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,geothermal,0.0,0.0,0.0,0.00710471,0.01338808,0.01995517,0.02691582,0.03342231,0.0400252,0.039726519999999994,0.03924478,0.0377688,0.04057257,0.0415393,0.04243136,0.04934293000000001,0.054041000000000006,0.05634048,0.05692628000000001,0.058025280000000005,0.05935071,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,hydro,0.183715,0.211439,0.217472,0.23678,0.256088,0.275396,0.294704,0.314012,0.33546,0.356908,0.378356,0.399804,0.421252,0.4427,0.464148,0.485596,0.507045,0.528493,0.549941,0.571389,0.571389,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,hydrogen cogen,0.0,0.0,0.0,0.0,3.33538E-4,6.02629E-4,9.30494E-4,0.00130684,0.00169863,0.00219259,0.0027501,0.00301099,0.00340093,0.00383206,0.00420813,0.00468276,0.00518738,0.00558747,0.00612359,0.00665255,0.00656126,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,refined liquids (CC),0.0,0.0,0.0,0.00183235,0.002230682,0.003012505,0.0039056089999999996,0.004564754,0.005419051,0.005865955,0.005925013,0.006027723,0.007580880999999999,0.007504930999999999,0.007837606,0.009578545,0.007685157,0.008246861,0.008236441,0.007708762000000001,0.007670594,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,refined liquids (steam/CT),0.162338,0.0429694,0.00578517,0.005586300000000001,0.0054827,0.00572187,0.005549474,0.0051182499999999995,0.004753808,0.004430036,0.004192006,0.0040807697,0.0026912496,0.0019766511000000003,0.0014339364,0.0010654278000000001,6.916399E-4,5.985901E-4,5.004832E-4,4.4838080000000007E-4,4.358294E-4,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,refined liquids cogen,0.0,0.0,4.6779E-5,4.29092E-5,4.03432E-5,4.10456E-5,3.91849E-5,3.70218E-5,3.58276E-5,3.50768E-5,3.47189E-5,3.48605E-5,3.58408E-5,3.63321E-5,3.68981E-5,3.60078E-5,2.94436E-5,3.31327E-5,3.11256E-5,2.93764E-5,2.79844E-5,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,rooftop_pv,0.0,0.0,0.0,4.83841E-5,1.40178E-4,3.20594E-4,5.82837E-4,9.46592E-4,0.00137507,0.00191335,0.00259591,0.00341177,0.00448314,0.00565957,0.00690059,0.00819689,0.00970902,0.0106762,0.0116088,0.0125099,0.013683,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,wind,0.0,0.0,2.87998E-5,0.0066081698,0.0140312998,0.0237838198,0.036771719800000005,0.051626519800000006,0.07009212000000001,0.08272865000000001,0.09200782,0.09674450000000001,0.1144436,0.124249,0.1316033,0.1671288,0.19829799999999997,0.21920479999999998,0.23601759999999997,0.2533019,0.2718659,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,wind_storage,0.0,0.0,0.0,2.20165E-5,4.73287E-5,8.15732E-5,1.279523E-4,1.8232269999999997E-4,2.5147609999999997E-4,3.019769E-4,3.405374E-4,3.623067E-4,4.356796E-4,4.783676E-4,5.120982E-4,6.614449E-4,7.937662000000001E-4,8.849334000000001E-4,9.644334E-4,0.0010442230000000002,0.001130818,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,CSP,0.0,0.0,0.0,2.39376E-4,8.31831E-4,0.002031501,0.0038746809999999996,0.005973981,0.008449650999999999,0.010735375,0.012329989999999999,0.013099979999999999,0.012860129999999999,0.011753801,0.010751491,0.014103191,0.017259721,0.019862751,0.023161091,0.02585238,0.028039590000000003,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,CSP_storage,0.0,0.0,0.0,0.0,0.0,0.00398807,0.01534567,0.03364247,0.05647777,0.08136077,0.10433566999999999,0.12085330000000001,0.12604479999999998,0.118015,0.1105124,0.1469021,0.1800759,0.2079421,0.243589,0.2727816,0.29699909999999996,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,Gen_III,0.0,0.0,0.0,0.206769,0.465038,0.827335,1.264134,1.687154,2.130624,2.548951,2.890485,3.1474480000000002,3.3260109999999994,3.4230903999999995,3.5528623,3.8171440999999997,3.9540759,3.906946599999999,3.7852483,3.5858109,3.3529483,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,Gen_II_LWR,0.0,0.191117,0.265967,0.245791,0.234263,0.217448,0.194437,0.165553,0.132983,0.100413,0.0715293,0.0485189,0.0317038,0.0201756,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,PV,7.19999E-6,2.74E-4,0.00338849,0.036761590000000004,0.09722769,0.19235489,0.31303789,0.43266589,0.5553874000000001,0.6424922999999999,0.6806442,0.6727455999999999,0.6217031,0.5451276,0.4839602,0.6237132,0.7654942,0.8884956,1.0452571000000002,1.1760636,1.2862500000000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,PV_storage,0.0,0.0,0.0,2.99113E-4,8.44303E-4,0.0017002599999999999,0.00278861,0.0038595699999999997,0.0049955,0.0057755670000000005,0.006121041000000001,0.006047899000000001,0.005586405,0.0049047940000000005,0.004349377,0.0056147869999999996,0.0068859030000000005,0.007980468,0.009398491999999998,0.010571473000000001,0.01156965,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,0.00813681,0.01786131,0.028356970000000002,0.04014882,0.051720230000000006,0.06129319999999999,0.06929762,0.07517655000000001,0.07815937,0.08324576,0.11171308999999999,0.13358948999999998,0.14825232,0.16301956,0.16979898000000002,0.1746594,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,biomass (conv),1.49641E-6,0.00866158,0.0410615,0.0394107,0.061188400000000004,0.0871975,0.12142820000000001,0.1521428,0.17865459,0.20012107999999998,0.21461281,0.22298712999999998,0.22678454000000003,0.22516318500000002,0.22586206,0.27138952,0.28976513000000004,0.30368457000000004,0.3211148,0.32213338999999996,0.32165221,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.21082,0.457995,0.691429,0.922568,1.128329,1.288097,1.418606,1.5153224,1.5707680000000002,1.6479566,1.9374227,2.1856549,2.1752823,2.1329316000000005,2.0450456999999997,1.9511359,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,coal (conv pul),1.69735,7.20575,11.8677,14.30142,16.63943,18.526909999999997,20.02219,20.74966,21.0168,20.93507,20.617434,20.322776,20.082619,19.848212000000004,19.325167,17.363773000000002,15.678241,13.983702,12.413511,11.084862,10.024113,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,gas (CC),0.00682159,0.0496339,0.0453922,0.0712792,0.10171519999999999,0.1459241,0.199698,0.2515246,0.2995479,0.33732280000000003,0.35975989,0.37112851,0.34836131,0.31753222000000003,0.28850590000000004,0.3105249,0.3210778,0.3361958,0.38137200000000004,0.43524,0.5396936,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,gas (steam/CT),0.00312522,0.03391,0.254969,0.1612411,0.1616969,0.17342200000000002,0.1673792,0.1479171,0.12287079999999999,0.09934743,0.07946682,0.06304317,0.041050120999999995,0.026975904,0.016564614999999998,0.013020319,0.010017525,0.008878559999999999,0.01028242,0.012882834999999999,0.020235061999999998,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,geothermal,0.0,4.13999E-4,5.83199E-4,0.051467608000000005,0.098014464,0.11579912,0.11579907,0.11579903200000001,0.11579890000000001,0.11579910000000002,0.115799,0.11579900000000001,0.11579900000000001,0.1157991,0.11579879999999998,0.11579908,0.11579901,0.11579903999999999,0.11579891,0.11579893999999999,0.11579900000000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,hydro,0.45643,1.4296,2.60038,2.6427,2.68502,2.72734,2.76966,2.81198,2.90904,3.00611,3.10317,3.20023,3.29729,3.39435,3.49142,3.58848,3.68554,3.7826,3.87966,3.97673,3.97673,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,hydrogen cogen,0.0,0.0,0.0,0.0,0.00178622,0.00340332,0.00536815,0.007601,0.0100182,0.0128505,0.0157388,0.0163156,0.0171478,0.0180394,0.0186095,0.0195651,0.0206059,0.0214486,0.0228568,0.0240736,0.0228322,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,refined liquids (CC),0.0,0.0,0.0,0.00595275,0.00992376,0.01694783,0.02438689,0.029476449999999998,0.03520172,0.03899346,0.04039679,0.04118065,0.03971717,0.036268070000000006,0.034624150000000006,0.041323059999999995,0.032220878,0.03440283,0.0320719,0.028039131000000002,0.025748277,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,refined liquids (steam/CT),0.177202,0.221325,0.0483861,0.033910800000000005,0.03625004,0.04022266,0.03955004000000001,0.036824630000000004,0.034756959999999996,0.03222412,0.029723516,0.027443430000000005,0.020307145999999995,0.014681102999999997,0.009009451299999999,0.005784091200000001,0.003302469,0.0025974803,0.0019586097000000003,0.0016098773999999997,0.0014346164,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,rooftop_pv,0.0,0.0,0.0,8.74586E-4,0.00322988,0.00928431,0.0192731,0.0343471,0.0551844,0.0814767,0.113023,0.143125,0.175522,0.205723,0.231024,0.253912,0.278645,0.293571,0.305242,0.307959,0.297961,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,wind,7.19999E-6,0.00730149,0.160644,0.281059,0.453957,0.711144,1.033549,1.354057,1.527142,1.721208,1.806915,1.774678,1.632869,1.4256929999999999,1.2630139999999999,1.6007449999999999,1.9193440000000002,2.177672,2.501621,2.763199,2.961642,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,wind_storage,0.0,0.0,0.0,5.43645E-4,0.0013776040000000002,0.002725984,0.004537744,0.006461984,0.008544603999999999,0.010030479,0.010908059999999999,0.011066639999999999,0.01045272,0.009267408,0.008287088,0.010683318,0.013049298,0.015082137999999998,0.017716678,0.01989788,0.02174282,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,CSP,0.0,0.0,0.0,1.1125E-5,4.39961E-5,1.0107E-4,1.9958280000000002E-4,3.4212680000000005E-4,5.288058000000001E-4,7.550378E-4,0.0010062577,0.0012934198,0.001693154,0.002134507,0.002595727,0.003170211,0.0038799719999999998,0.004394146,0.004901419,0.005320442,0.005739573,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,CSP_storage,0.0,0.0,0.0,0.0,0.0,1.89724E-4,7.9673E-4,0.00203905,0.0037608800000000003,0.006099760000000001,0.00908396,0.012477826000000001,0.017013340000000002,0.02180805,0.02682834,0.03295345,0.04041175,0.04590834,0.051472620000000004,0.05617609,0.06095757,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,Gen_III,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00132984,0.00403744,0.00809181,0.01227621,0.01747162,0.02284216,0.02823673,0.03442851,0.0414754,0.04719803,0.05352489,0.05956123000000001,0.06442176999999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,PV,0.0,0.0,0.0,2.03199E-4,6.42721E-4,0.001235639,0.002080697,0.0031449069999999997,0.004390787,0.005671328,0.006910126000000001,0.008314538,0.01030485,0.012557500000000001,0.015053219999999999,0.018279459999999997,0.02245917,0.02563254,0.028882199999999997,0.03176746,0.034728629999999996,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,PV_storage,0.0,0.0,0.0,1.82116E-6,5.78399E-6,1.111895E-5,1.87397E-5,2.8266689999999998E-5,3.948849E-5,5.0957429999999996E-5,6.215180000000001E-5,7.474094E-5,9.264148999999999E-5,1.131099E-4,1.3533270000000002E-4,1.644765E-4,2.0199570000000003E-4,2.3024489999999998E-4,2.596814E-4,2.854028E-4,3.122249E-4,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,2.44355E-4,5.35455E-4,9.09502E-4,0.0013172980000000002,0.001799783,0.002347386,0.0029649240000000003,0.003862239,0.004853556,0.005872523,0.007135406,0.008622597,0.009692091,0.010923333,0.012028673,0.013178301,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,biomass (conv),9.86411E-4,0.00181081,0.00179639,0.00236758,0.00302504,0.003433753,0.004271625,0.005179624,0.005863373999999999,0.006651126,0.00755322,0.008547308,0.010267364,0.0120617929,0.013673037999999998,0.015523904,0.017624647,0.019120269999999998,0.021121365,0.022889852000000002,0.02489779,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,coal (IGCC),0.0,0.0,0.0,0.0,0.0,9.69068E-4,0.002390535,0.004245438,0.006349108000000001,0.008747816,0.011389273,0.014313382,0.018199235,0.022451714,0.026918556,0.032239128,0.038459390999999996,0.042629759999999996,0.047047259999999994,0.05080056,0.05448114,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,coal (conv pul),0.0133489,0.00888839,0.0135144,0.025373,0.0381044,0.049369800000000005,0.0627015,0.07725139,0.09125093,0.10558110999999999,0.12016412,0.13539324,0.15502911,0.17591138,0.19669910000000002,0.2091145,0.22503060000000003,0.2370769,0.2496983,0.2601578,0.2722889,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,gas (CC),0.00176041,0.0144738,0.0156616,0.0329787,0.0529304,0.0759268,0.1076752,0.14869026,0.1937764,0.24374664000000001,0.29628561,0.35039569,0.39868066999999996,0.44536798999999994,0.4855543,0.5242895000000001,0.5595597,0.5735458,0.5885225000000001,0.5957003000000001,0.5996842,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,gas (steam/CT),0.014436,0.0121625,0.0260878,0.036833500000000005,0.049053200000000005,0.060436500000000004,0.0723819,0.0818806,0.08725653,0.09025239,0.09150043,0.09163519,0.08167814000000001,0.07152729,0.061305250000000006,0.051653990000000004,0.04315782,0.03641633,0.03232259,0.029512590000000002,0.02772903,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,geothermal,0.0,0.0,0.0,9.54453E-4,0.0027851209999999998,0.005405706,0.009168338,0.013753942000000002,0.01848338,0.02256889,0.026010310000000002,0.02897793,0.03230624,0.03522305,0.0381104,0.041659999999999996,0.0457606,0.047860969999999996,0.04955202,0.05066578,0.051996480000000005,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,hydro,0.0989892,0.143291,0.145444,0.15207,0.158696,0.165322,0.171948,0.178574,0.190273,0.201972,0.213671,0.22537,0.237068,0.248767,0.260466,0.272165,0.283864,0.295563,0.307262,0.318961,0.318961,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,hydrogen cogen,0.0,0.0,0.0,0.0,3.00843E-5,5.68357E-5,9.50905E-5,1.45699E-4,2.14619E-4,3.11286E-4,4.35612E-4,5.24475E-4,6.46711E-4,7.88137E-4,9.32641E-4,0.00111248,0.00132926,0.00150035,0.00172681,0.00195742,0.00200626,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,refined liquids (CC),0.0,0.0,0.0,0.00115986,0.002229788,0.0036507680000000004,0.005992222,0.008643975,0.011006431,0.013622911000000001,0.016233056000000003,0.01915224,0.024368286000000003,0.028603418,0.03282406,0.03680585,0.03456496,0.03938979,0.04003129,0.03949894999999999,0.040008289999999995,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,refined liquids (steam/CT),0.00136439,4.10394E-4,0.00180719,0.003041479,0.0040344890000000005,0.004779989,0.005354424,0.005493557,0.005549401,0.0056141994,0.0057007483,0.0058563853,0.005382806899999999,0.0048238571000000004,0.004271953,0.0036117049999999998,0.002737232,0.002655598,0.002399118,0.0022430199999999996,0.002191594,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,rooftop_pv,0.0,0.0,0.0,1.79981E-5,5.38189E-5,1.17145E-4,2.15335E-4,3.59946E-4,5.83779E-4,9.03955E-4,0.00136122,0.00195409,0.00279637,0.00380513,0.00501224,0.00634653,0.00789675,0.00920466,0.0103529,0.0114657,0.0128651,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,wind,0.0,1.764E-4,1.404E-4,6.23091E-4,0.001483505,0.002741445,0.004676945,0.0072583149999999996,0.010070844999999998,0.013030704,0.01602533,0.01909152,0.0229757,0.026872800000000002,0.030816839999999998,0.03566238,0.04159963999999999,0.045538869999999995,0.049204990000000004,0.052105330000000005,0.055089080000000006,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,wind_storage,0.0,0.0,0.0,2.57136E-6,7.75215E-6,1.625657E-5,3.076537E-5,5.219997E-5,7.885307E-5,1.0953341E-4,1.4401132E-4,1.8262050000000002E-4,2.3491080000000001E-4,2.915929E-4,3.520686E-4,4.282369E-4,5.236982E-4,5.944796000000001E-4,6.667505000000001E-4,7.288298E-4,7.928210000000001E-4,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,CSP,0.0,0.0,0.0,6.10928E-5,2.094808E-4,4.098578E-4,7.166228E-4,0.0010965338,0.0015826148,0.002032696,0.002392932,0.002679065,0.002890022,0.002987541,0.003060943,0.0035074019999999997,0.004097208,0.0044823,0.004981698,0.005509808000000001,0.005982175,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,CSP_storage,0.0,0.0,0.0,0.0,0.0,6.66118E-4,0.002556388,0.005867568,0.010351128000000001,0.015388368000000001,0.020731398,0.025130230000000003,0.028583739999999996,0.03020905,0.03154784,0.03649508,0.04269395,0.04684919,0.052336310000000004,0.05816892,0.06349086999999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,Gen_III,0.0,0.0,0.0,0.0614416,0.12690859999999998,0.1865549,0.2554057,0.3247612,0.3928879,0.4514071,0.5007479,0.5405781999999999,0.5770809,0.60682,0.6383482,0.6262081000000002,0.6130590999999999,0.5921648,0.5655881999999999,0.5357109999999999,0.5060051999999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,Gen_II_LWR,0.268826,0.348192,0.3271,0.302287,0.288109,0.267428,0.239129,0.203606,0.16355,0.123493,0.0879704,0.0596711,0.038991,0.024813,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,PV,0.0,3.60007E-6,0.00240838,0.003348676,0.005020596,0.006774706,0.008992146,0.011382205999999999,0.011707446,0.01345977,0.014319859999999998,0.01494444,0.015209639999999998,0.015104929999999999,0.01509395,0.017083,0.02000672,0.02205211,0.02475599,0.0277079,0.03042465,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,PV_storage,0.0,0.0,0.0,8.42687E-6,2.350037E-5,3.928247E-5,5.9277969999999995E-5,8.067276999999999E-5,1.0529316999999998E-4,1.209827E-4,1.287745E-4,1.3433709999999998E-4,1.366862E-4,1.359569E-4,1.356711E-4,1.5373010000000001E-4,1.799197E-4,1.9807819999999998E-4,2.2257499999999998E-4,2.489786E-4,2.737502E-4,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,0.00125748,0.00282375,0.0046458,0.006708561,0.008667892,0.0104987,0.012079661,0.013688394999999999,0.01508049,0.01659299,0.019438865,0.022409567999999998,0.02387794,0.02554458,0.026806479999999997,0.027815959999999997,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,biomass (conv),1.65607E-4,0.009839,0.0341529,0.03518969,0.039287539999999996,0.04086406,0.043733589999999996,0.04585244,0.04660542,0.04629997,0.04590934,0.045325519999999994,0.045664039999999996,0.046080010000000005,0.045325569999999996,0.04749737,0.04871275,0.04915532,0.05061098,0.05133954,0.051954209999999994,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,biomass cogen,8.85281E-4,0.00496363,0.00829689,0.00836835,0.00899482,0.00976552,0.0099587,0.00997033,0.00951134,0.00908534,0.00875666,0.00842757,0.0081607,0.00792241,0.00747861,0.00707465,0.00670236,0.00640209,0.00617525,0.00596334,0.00570492,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.0134188,0.0319192,0.053337999999999997,0.07757019999999999,0.1007373,0.12213180000000001,0.1408944,0.1592359,0.1749971,0.1924005,0.2205196,0.2510297,0.2604979,0.26753000000000005,0.27000440000000003,0.26906050000000004,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,coal (conv pul),0.859385,0.892792,0.885689,1.014084,1.1888619999999999,1.300721,1.412828,1.501604,1.5734650000000001,1.6193870000000001,1.6532040000000001,1.681799,1.7225226,1.7636988000000002,1.7815079999999999,1.7195731,1.6498081,1.5895769,1.5194477000000002,1.4472964000000001,1.3788486999999998,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,coal cogen,0.0571659,0.0509867,0.0372456,0.0358306,0.0348465,0.0379696,0.03642,0.0345734,0.0330072,0.031644,0.0307873,0.0301147,0.0296475,0.0289385,0.0281118,0.0272969,0.0265327,0.0251195,0.0237999,0.0224796,0.0214845,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,gas (CC),0.0,0.0,0.0,0.00642285,0.01777517,0.0337638,0.0603202,0.09607096,0.13877620000000002,0.17969098,0.21596863,0.24530785000000002,0.2651458,0.27461030000000003,0.2808067,0.2902387,0.2932327,0.2812384,0.2769095,0.27668499999999996,0.2844567,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,gas (steam/CT),0.140306,0.12755,0.123565,0.1379088,0.15592889999999998,0.16684529999999997,0.17436010000000002,0.17349779999999998,0.16490679999999996,0.15109924,0.13593362000000003,0.12144919000000001,0.09306271,0.06809757000000001,0.04512557600000001,0.032236098000000005,0.022817383,0.016341633,0.013290396000000001,0.01185331,0.011625359999999998,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,gas cogen,0.0112803,0.0180645,0.0206726,0.0203524,0.0202656,0.0212099,0.0204165,0.0191579,0.0173705,0.0156798,0.0141734,0.0127593,0.0115083,0.0103355,0.00942489,0.00871201,0.00818536,0.00793549,0.00807243,0.00811665,0.00813481,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,geothermal,0.0,0.0,0.0,0.00528655,0.013995299999999999,0.023060320000000002,0.033447,0.043213409999999994,0.05174796,0.054768149999999995,0.054917890000000004,0.05430770000000001,0.05304018,0.05141626999999999,0.05115284,0.05550835,0.05723695,0.057236959999999996,0.05723704,0.05723705,0.057236999999999996,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,hydro,0.092826,0.14841,0.159804,0.159292,0.158992,0.158692,0.158392,0.158092,0.163653,0.169214,0.174776,0.180337,0.185898,0.191459,0.19702,0.202581,0.208143,0.213704,0.219265,0.224826,0.224826,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,hydrogen cogen,0.0,0.0,0.0,0.0,5.89833E-5,1.03911E-4,1.56677E-4,2.15822E-4,2.79891E-4,3.5735E-4,4.41264E-4,4.72366E-4,5.15959E-4,5.62126E-4,5.96114E-4,6.41531E-4,6.88481E-4,7.28861E-4,7.89758E-4,8.44734E-4,8.16542E-4,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,refined liquids (CC),0.0,0.0,0.0,0.00524199,0.011104610000000001,0.01697394,0.02583285,0.03394109,0.04217705,0.047117860000000004,0.050432540000000005,0.05251176,0.05419413000000001,0.05313033,0.053088659999999996,0.05347169,0.041775160000000006,0.042392530000000005,0.03753907,0.03273924,0.029915280000000002,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,refined liquids (steam/CT),0.0841881,0.0370123,0.0384476,0.0375724,0.04238588,0.04401511,0.043402609999999994,0.04042717,0.03744115,0.0340563,0.03106899,0.02883999499999999,0.022494347999999997,0.016526081,0.01121257,0.007655810000000001,0.004517845,0.0034844590000000005,0.0025230649999999997,0.0019830219999999996,0.0017134189999999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,refined liquids cogen,0.0149473,0.012935,0.0093774,0.0105612,0.0106724,0.0106412,0.0100239,0.00940686,0.00915872,0.00892832,0.00873944,0.00862773,0.00863174,0.00850362,0.00835385,0.00790055,0.00632323,0.00693156,0.00642292,0.00596402,0.00556833,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,rooftop_pv,0.0,0.0,0.0,2.11187E-5,6.30819E-5,1.44569E-4,2.58784E-4,4.15988E-4,6.1468E-4,8.49859E-4,0.00113116,0.00144109,0.00180098,0.00214875,0.00247108,0.00275053,0.00300241,0.00316626,0.0032653,0.00330554,0.00336086,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,wind,0.0,0.00100802,0.0147851,0.02203066,0.03517136,0.05206366,0.07733026,0.10838845999999999,0.13059926,0.1607568,0.1839781,0.2006095,0.2101296,0.21099849999999998,0.2114142,0.23721739999999997,0.2727741,0.2959885,0.32682620000000007,0.3595929,0.3883379,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,wind_storage,0.0,0.0,0.0,2.9019E-5,8.38153E-5,1.580071E-4,2.7411410000000003E-4,4.245141E-4,6.099351000000001E-4,7.746100999999999E-4,9.139108E-4,0.0010231580000000001,0.001099411,0.001126979,0.001152318,0.0013224150000000002,0.0015518910000000001,0.0017098360000000002,0.0019206629999999998,0.002147123,0.002358385,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,CSP,0.0,0.0,0.00249109,0.003199166,0.004543576,0.006417526,0.009285186,0.013068896,0.017096326000000002,0.02222392,0.02685954,0.031710010000000004,0.03789373,0.04384784,0.04987062,0.057964449999999994,0.06793652,0.07484419999999999,0.08053041999999999,0.0850792,0.0898414,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,CSP_storage,0.0,0.0,0.0,0.0,0.0,0.00622954,0.023899740000000003,0.05687694,0.11700244,0.17450804,0.23732724,0.301105,0.3768658,0.44458359999999997,0.5149831,0.6027385,0.7076363,0.782016,0.8458950000000001,0.898911,0.956976,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,Gen_III,0.0,0.0,0.0,0.29403,0.587061,0.8818650000000001,1.233924,1.618224,2.184486,2.639225,3.063899,3.4511190000000003,3.8557069999999998,4.2226870000000005,4.651821999999999,4.768571,4.895745999999999,4.9343069999999996,4.92004,4.845720999999999,4.637785,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,Gen_II_LWR,2.59272,3.24344,2.97257,2.74707,2.61822,2.43029,2.17312,1.8503,1.48628,1.12226,0.799443,0.54227,0.354337,0.225492,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,PV,4.32005E-5,0.00524505,0.0781778,0.09135030000000001,0.10965930000000002,0.12948730000000003,0.15454120000000002,0.183289,0.1494117,0.1731891,0.18853980000000004,0.19645900000000002,0.1898608,0.17432069999999997,0.1466746,0.12007150000000001,0.09382418,0.07168060999999999,0.05896216,0.051212419999999995,0.04111317,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,PV_storage,0.0,0.0,0.0,1.18053E-4,2.83124E-4,4.6152499999999996E-4,6.874569999999999E-4,9.450099999999999E-4,0.00134409,0.001558818,0.0017186929999999999,0.001896898,0.002143186,0.0023951579999999997,0.002655478,0.003064366,0.003601033,0.003992164,0.004342286,0.004644823,0.0049898830000000005,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,0.00799418,0.01891607,0.0330902,0.0561209,0.07454195,0.09289433,0.11128224,0.13254437,0.15328128,0.17879853,0.20366038000000003,0.22990273000000006,0.24577171999999997,0.2604702,0.2706273,0.27839400000000003,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,biomass (conv),0.028465,0.159297,0.259185,0.1719638,0.1993594,0.2175273,0.2454848,0.2750044,0.3188698,0.34016899999999994,0.363245,0.38603489999999996,0.41853009999999996,0.44979008,0.48246690000000003,0.5013232999999999,0.5182198,0.5289492,0.5395298,0.5412237,0.5393428999999998,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,biomass cogen,0.0378044,0.076501,0.1013,0.107346,0.112345,0.117614,0.120058,0.121232,0.117676,0.115319,0.113945,0.112696,0.112178,0.111655,0.107701,0.103996,0.100856,0.0967986,0.0930994,0.0891217,0.083957,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.0194701,0.0479925,0.08477190000000001,0.1430276,0.1919881,0.23940749999999997,0.2870663,0.3410991,0.3938218,0.45949870000000004,0.526147,0.5979182999999999,0.6380226,0.6735289999999999,0.6980487999999999,0.7139601000000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,coal (conv pul),2.83949,2.63263,2.14461,2.248265,2.428223,2.536194,2.641629,2.7263390000000003,2.897215,2.9608689999999998,3.016107,3.097833,3.247162,3.4203659999999996,3.578403,3.628848,3.693234,3.729818,3.736267,3.7080759999999997,3.6308640000000003,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,coal cogen,0.0231679,0.0224157,0.027054,0.0310187,0.0297973,0.0304449,0.0293113,0.0280737,0.027376,0.0272607,0.0275117,0.0277129,0.0281245,0.028099,0.0277044,0.0271492,0.0267176,0.0249016,0.0228678,0.0207529,0.0187744,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,gas (CC),0.280897,1.64617,1.12349,1.2135420000000001,1.355645,1.49109,1.661823,1.8619780000000001,2.194768,2.419949,2.619052,2.8095489999999996,2.850901,2.8693423000000005,2.8843129999999997,2.908911,2.8985849999999997,2.705124,2.6519980000000003,2.644092,2.760832,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,gas (steam/CT),0.182548,0.279272,1.15728,1.052192,1.0844576,1.0943062,1.0812804,1.0311155,0.9673070999999999,0.8614708000000001,0.7581467000000001,0.6672899,0.5283621,0.4152312,0.30580130000000005,0.24409069999999997,0.1946132,0.14457450000000002,0.12473463,0.11600748000000002,0.11939900000000002,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,gas cogen,0.0770739,0.369884,0.424487,0.446306,0.427736,0.422894,0.401717,0.374835,0.34137,0.312736,0.28651,0.262126,0.240241,0.219412,0.205527,0.196162,0.192834,0.194547,0.207261,0.218917,0.232338,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,geothermal,0.0116137,0.0194286,0.0201663,0.0484025,0.0900301,0.1369177,0.19106130000000002,0.2430056,0.254926,0.2549261,0.254926,0.25492600000000004,0.254926,0.2549259,0.254926,0.254926,0.254926,0.254926,0.254926,0.2549261,0.254926,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,hydro,0.939621,0.95855,1.17152,1.14714,1.13525,1.12336,1.11147,1.09957,1.10415,1.10873,1.11331,1.11789,1.12247,1.12705,1.13163,1.13621,1.14078,1.14536,1.14994,1.15452,1.15452,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,hydrogen cogen,0.0,0.0,0.0,0.0,0.0165555,0.0282841,0.0426135,0.0591554,0.0780017,0.102175,0.129434,0.14265,0.160635,0.180167,0.196523,0.217357,0.240594,0.257714,0.280596,0.299735,0.286768,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,refined liquids (CC),0.0,0.0,0.0,0.0130271,0.02808511,0.048254889999999995,0.08061267,0.12038033000000001,0.19130219999999998,0.22312713,0.25709306,0.28997141,0.32791745,0.3526074,0.3908239,0.3947212,0.3313015,0.3492459,0.3208359,0.29137399999999997,0.27771389999999996,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,refined liquids (steam/CT),0.625719,0.358867,0.20094,0.1559556,0.16353199999999998,0.1650693,0.1604065,0.1509639,0.1454634,0.13344384,0.12305094999999999,0.11500396999999998,0.09495337000000001,0.07690836999999999,0.05832964000000001,0.04536672,0.03141918,0.024878039999999997,0.01966653,0.016590050000000002,0.015043460000000002,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,refined liquids cogen,0.0730513,0.0956435,0.064278,0.0710412,0.0689645,0.0665405,0.0624881,0.0594942,0.0591084,0.0588571,0.0588019,0.059468,0.0611301,0.0616711,0.0620578,0.0599056,0.0486519,0.05407,0.0499908,0.0461115,0.0425742,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,rooftop_pv,0.0,0.0,0.0,2.35952E-4,6.47066E-4,0.00132328,0.00226437,0.00354847,0.0052268,0.00735602,0.00968549,0.0104818,0.00852824,0.00783369,0.00892607,0.00658506,0.00507515,0.00479689,0.0046741,0.00451677,0.00433904,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,wind,0.00280083,0.25258,0.521819,0.6152662,0.7468532,0.9199522,1.1778172,1.5136412,1.5383372,1.910994,2.2363109999999997,2.527505,2.805599,3.0052149999999997,3.138814,3.3716169999999996,3.677546,3.8550510000000004,4.009155,4.143838,4.278079,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,wind_storage,0.0,0.0,0.0,3.59542E-4,8.775100000000001E-4,0.001585826,0.002677886,0.004169716,0.006630236,0.008450624,0.010151276,0.01177443,0.013435430000000002,0.01475033,0.01592319,0.01754965,0.01957114,0.020875499999999998,0.02208575,0.02316263,0.024317859999999997,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,CSP,0.0,0.0,0.0,4.35297E-5,2.514427E-4,5.657577000000001E-4,0.0010184197,0.0015813447,0.0023775147,0.003211109,0.0038874820000000003,0.004478351,0.005039369,0.005576014000000001,0.006192104,0.006602220000000001,0.007378914000000001,0.008033720000000001,0.008879709999999999,0.00976832,0.01052412,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,CSP_storage,0.0,0.0,0.0,0.0,0.0,9.79413E-4,0.0035939329999999997,0.008192782999999999,0.015076422999999999,0.023178253,0.031885493,0.039739250000000004,0.04693199,0.05298994,0.0598823,0.06436056999999999,0.07201263,0.07864766,0.08740229999999999,0.09670429999999999,0.1048765,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,Gen_III,0.0,0.0,0.0,0.0151346,0.0406827,0.0743363,0.12192800000000001,0.18165340000000002,0.2464455,0.3047815,0.3547425,0.3973895,0.4382119,0.47705129999999996,0.5218405999999999,0.5437666,0.5621729999999999,0.5667922000000001,0.5616164,0.5444007,0.5231367,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,Gen_II_LWR,0.274249,0.319511,0.32094,0.296594,0.282683,0.262392,0.234626,0.199772,0.16047,0.121167,0.0863137,0.0585474,0.0382568,0.0243457,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,PV,0.0,0.0,0.0,1.20205E-4,5.4051E-4,0.0010341859999999999,0.0016212559999999997,0.0022566619999999996,0.0030600209999999996,0.0037687949999999997,0.004138331,0.004438728,0.004723817,0.005032785,0.005462526,0.005762667,0.006452996,0.0070794230000000005,0.007907003999999999,0.00880672,0.00954304,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,PV_storage,0.0,0.0,0.0,1.07727E-6,4.86659E-6,9.30828E-6,1.4602110000000001E-5,2.028996E-5,2.752541E-5,3.3872859999999996E-5,3.721617E-5,3.9899940000000003E-5,4.245582E-5,4.530754E-5,4.9093390000000006E-5,5.1840570000000004E-5,5.801724E-5,6.357758E-5,7.109437E-5,7.92532E-5,8.67446E-5,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,2.29345E-4,5.85917E-4,0.001093163,0.0018154859999999998,0.002617624,0.003446523,0.004283559,0.005223345999999999,0.006257999000000001,0.0075820079999999995,0.008725167,0.010251205,0.011532789,0.013026877,0.014514448999999999,0.015981653,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,biomass (conv),0.0,0.0,2.62796E-4,5.65917E-4,0.001494918,0.002323665,0.0036953859999999997,0.005416483,0.007434716,0.0093263589,0.0110879482,0.012713862000000003,0.0145570728,0.0165269992,0.01888095,0.020571750000000003,0.02270506,0.024604027,0.02701654,0.02940667,0.03178192999999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,biomass cogen,0.0,1.04308E-4,0.00147812,0.00130535,0.00137118,0.0015457,0.00160596,0.0016236,0.00152645,0.00145382,0.00140768,0.00137326,0.00135959,0.00135165,0.00130684,0.00126224,0.00121827,0.00118303,0.00115477,0.00113043,0.00109222,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.00181751,0.00427111,0.007246529999999999,0.01099974,0.01480185,0.01841281,0.02181448,0.025341119999999998,0.02894329,0.03335879,0.03722298,0.04203586,0.04459231,0.04726784,0.04964328,0.05161379000000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,coal (conv pul),0.428483,0.180041,0.245558,0.2425703,0.25911300000000004,0.2663292,0.27011909999999995,0.26914879999999997,0.2670089,0.262278,0.2575559,0.25539140000000005,0.2584658,0.2660094,0.26894830000000003,0.27163970000000004,0.2670741,0.26490650000000004,0.2637016,0.26327059999999997,0.262837,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,coal cogen,0.0,1.43898E-5,0.0049572,0.00405374,0.00396986,0.00477793,0.00487954,0.00477513,0.00442907,0.00421774,0.00413825,0.00414848,0.00424472,0.00430855,0.00436318,0.00438039,0.0043859,0.00425598,0.00409427,0.00394741,0.003843,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,gas (CC),0.0754138,0.0,0.0,0.00254813,0.00976513,0.02058786,0.03824996,0.06329502,0.09694298000000001,0.13139343999999997,0.16304044,0.19079489,0.21454319,0.23213089999999997,0.2493672,0.2543375,0.25597169999999997,0.24590810000000002,0.23843789999999995,0.2340697,0.23407059999999996,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,gas (steam/CT),0.173775,0.224147,0.177037,0.1663716,0.17540611,0.17899285,0.17789492,0.17010608,0.15681992,0.14004113,0.12331786,0.10894511999999999,0.08969614999999999,0.06855048,0.04500486,0.03352056999999999,0.024574849999999995,0.017572753,0.013590099999999997,0.011453257,0.010406303,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,gas cogen,0.0292656,0.0203419,0.0138646,0.0120635,0.0120233,0.0135009,0.0135834,0.0131294,0.0119079,0.0108896,0.010045,0.00929642,0.00868409,0.00801825,0.00742901,0.00687551,0.00637474,0.00597953,0.00577624,0.00546871,0.00506111,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,geothermal,0.0,0.0,0.0,0.00145061,0.00445535,0.0072596100000000005,0.00984315,0.00983599,0.009835993,0.009836000000000001,0.00983601,0.00983601,0.00983599,0.009836000000000001,0.009836000000000001,0.00983601,0.009835990000000001,0.00983601,0.00983599,0.009836000000000001,0.009835994,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,hydro,0.0388476,0.0448632,0.0479592,0.0480941,0.0483945,0.048695,0.0489954,0.0492959,0.0496296,0.0499634,0.0502971,0.0506309,0.0509646,0.0512984,0.0516321,0.0519659,0.0522996,0.0526334,0.0529671,0.0533009,0.0533009,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,hydrogen cogen,0.0,0.0,0.0,0.0,6.95679E-5,1.2625E-4,1.93469E-4,2.69834E-4,3.48653E-4,4.47858E-4,5.59734E-4,6.11187E-4,6.86731E-4,7.69754E-4,8.37287E-4,9.20662E-4,0.00100623,0.00108037,0.00118119,0.00127578,0.00123379,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,refined liquids (CC),0.0,0.0,0.0,2.14723E-4,6.63437E-4,9.729381E-4,0.0015544689000000001,0.0021964925,0.0029902888,0.0035978916,0.0040856875,0.0045340575,0.005016805,0.005365667,0.00591048,0.005777452,0.004935661,0.005412779999999999,0.005174364000000001,0.004962349,0.004869937999999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,refined liquids (steam/CT),0.255453,0.00542502,0.0047411,0.0045617669999999996,0.0048313850000000005,0.004520084,0.0043590650000000005,0.003991959,0.003569226,0.0031151160000000002,0.0027127580000000004,0.0024078272,0.0019487731999999998,0.0014380729999999998,9.344523E-4,6.954033E-4,4.694893E-4,3.896714E-4,3.1063470000000003E-4,2.698338E-4,2.518678E-4,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,refined liquids cogen,2.52062E-4,0.0,3.27453E-4,4.04836E-4,3.36054E-4,2.57497E-4,2.48669E-4,2.33762E-4,2.24898E-4,2.18736E-4,2.15246E-4,2.15242E-4,2.20035E-4,2.21533E-4,2.22572E-4,2.14351E-4,1.72472E-4,1.93488E-4,1.8082E-4,1.69379E-4,1.59046E-4,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,rooftop_pv,0.0,0.0,0.0,7.23356E-6,2.07616E-5,5.00365E-5,9.30356E-5,1.53563E-4,2.26293E-4,3.17337E-4,4.32707E-4,5.72047E-4,7.50272E-4,9.42051E-4,0.00114281,0.00133554,0.00153398,0.00168238,0.00180099,0.00189176,0.00196137,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,wind,0.0,1.40396E-4,1.87196E-4,0.001297766,0.005224906,0.011041656,0.019968546,0.031813646,0.04748755,0.06354428,0.07684753999999999,0.08805629000000001,0.09770289999999998,0.10579659999999999,0.11534040000000001,0.12128180000000001,0.1339412,0.14492760000000002,0.15965849999999998,0.1753762,0.18876779999999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,wind_storage,0.0,0.0,0.0,4.17794E-6,1.986684E-5,4.440314E-5,8.358044E-5,1.3793044E-4,2.1362014000000001E-4,2.936513E-4,3.647628E-4,4.280146E-4,4.8575970000000007E-4,5.368917000000001E-4,5.97984E-4,6.392559E-4,7.164175000000001E-4,7.846934000000001E-4,8.75877E-4,9.738380000000001E-4,0.0010615660000000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,CSP,0.0,0.0,0.0,1.40484E-5,5.85525E-5,1.499494E-4,2.974134E-4,4.982734E-4,7.527794E-4,0.00103623,0.0013250379000000001,0.001607933,0.001995985,0.0023758449999999997,0.002805668,0.0033909149999999996,0.00404125,0.004569284999999999,0.005029967999999999,0.005431786,0.005751387,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,CSP_storage,0.0,0.0,0.0,0.0,0.0,3.03827E-4,0.001212477,0.0029630769999999997,0.005310577,0.008242157,0.011743497,0.01533626,0.01995495,0.02420871,0.02898265,0.03525458,0.04208884,0.04773727999999999,0.052817840000000005,0.057336080000000005,0.06105704,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,Gen_III,0.0,0.0,0.0,0.0234542,0.048461699999999996,0.07697459999999999,0.1075569,0.138467,0.1694038,0.199921,0.2298955,0.2580183,0.29238119999999995,0.32508729999999997,0.3597781,0.3770247,0.3938285,0.40101729999999997,0.40718249999999995,0.4104456,0.4125906,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,PV,0.0,0.0,0.0,6.31037E-4,0.002094467,0.004429497,0.007540367,0.011228197,0.015405317000000002,0.01934769,0.02272674,0.02573245,0.03011595,0.03454061,0.04008228,0.04810337,0.05751909,0.06554475,0.07287608,0.07970598999999999,0.0854959,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,PV_storage,0.0,0.0,0.0,5.65566E-6,1.8850260000000002E-5,3.9860460000000006E-5,6.791436E-5,1.0092856E-4,1.3855266E-4,1.738618E-4,2.0440059999999997E-4,2.313184E-4,2.7072170000000005E-4,3.110712E-4,3.603194E-4,4.328226E-4,5.173012E-4,5.887322000000001E-4,6.55176E-4,7.160473E-4,7.68619E-4,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,2.58272E-4,5.968340000000001E-4,0.001071312,0.001649601,0.002334093,0.003118721,0.003991617,0.005315494,0.006714403,0.008346332000000001,0.010499879,0.012817061000000001,0.014812885,0.017038354999999998,0.019107258,0.021164957,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,biomass (conv),0.0,3.23995E-4,5.00385E-4,6.82732E-4,0.001349663,0.002074464,0.0032307810000000003,0.004650367,0.006006607000000001,0.0074301694000000005,0.0089602453,0.010528845,0.013154330300000001,0.0156469339,0.018353318,0.02194146,0.025385569,0.02832204,0.03194815,0.035269499999999995,0.03868551,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,biomass cogen,0.0,2.1581E-5,8.991E-5,1.16999E-4,1.3541E-4,1.58096E-4,1.77468E-4,1.95649E-4,2.0784E-4,2.19035E-4,2.29914E-4,2.37871E-4,2.46333E-4,2.53972E-4,2.54493E-4,2.54551E-4,2.54813E-4,2.53614E-4,2.54097E-4,2.54883E-4,2.53262E-4,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.00773811,0.017847719999999997,0.02982224,0.04277035,0.05615928,0.06977331,0.08364521000000001,0.10172435,0.11987186,0.13991736999999999,0.16421407,0.18973057999999998,0.2040521,0.21715600000000002,0.2268067,0.23481730000000003,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,coal (conv pul),0.231522,0.307824,0.36616,0.42639459999999996,0.5067661,0.5804153000000001,0.6518907,0.7155627,0.7671192,0.8115428,0.854537,0.9006763000000001,0.9728767,1.0486330000000001,1.1187655,1.146032,1.1697035,1.1766477,1.1813358,1.1800269,1.1843521000000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,coal cogen,0.00156515,0.00241029,0.0029088,0.00437919,0.00480155,0.00563193,0.00623072,0.00684801,0.00770195,0.00858125,0.0094998,0.0103262,0.0112498,0.0120288,0.01278,0.0134579,0.0141713,0.0143057,0.0143609,0.0144081,0.0146346,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,gas (CC),0.0370173,0.233934,0.247603,0.3100157,0.3895349,0.4779603,0.5680851,0.6529581,0.7245154,0.7853239999999999,0.8395409,0.8903368,0.8765293000000001,0.8529572,0.8102516999999999,0.7885678,0.7658004999999999,0.7390694,0.7265495,0.7174802,0.7125843999999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,gas (steam/CT),0.0103584,0.024693,0.1046,0.09284821,0.09207706,0.09045500000000001,0.08665231,0.08050684,0.07240033,0.06386428,0.05617860000000001,0.05006967999999999,0.04397191,0.03888412,0.0310723,0.03001196,0.028883839999999994,0.0277562,0.02760276,0.02737671,0.02718443,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,gas cogen,7.66171E-4,0.0136033,0.0129492,0.0177869,0.0196845,0.0226413,0.0247174,0.0263984,0.027702,0.0286136,0.0291203,0.0289693,0.0286834,0.0278383,0.0270209,0.0261784,0.0254609,0.0247443,0.0247706,0.0243184,0.0234671,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,geothermal,2.87998E-4,3.38395E-4,0.00240475,0.0053888700000000005,0.010595509999999999,0.01797769,0.0266807,0.0357737,0.042316620000000006,0.04796485,0.05140417,0.053028149999999996,0.055932199999999994,0.05843836,0.06195687,0.06733345,0.07253118,0.0756124,0.077501,0.078888,0.0797427,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,hydro,0.154156,0.263261,0.335171,0.322883,0.311124,0.299366,0.287607,0.275848,0.291875,0.307902,0.323929,0.339956,0.355983,0.37201,0.388037,0.404064,0.420091,0.436118,0.452145,0.468172,0.468172,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,hydrogen cogen,0.0,0.0,0.0,0.0,3.96227E-5,7.51036E-5,1.23608E-4,1.86075E-4,2.65824E-4,3.71569E-4,4.9766E-4,5.71249E-4,6.66355E-4,7.69315E-4,8.60108E-4,9.7144E-4,0.00109278,0.00119661,0.00133641,0.0014729,0.00146665,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,refined liquids (CC),0.0,0.0,0.0,9.07584E-4,0.001796784,0.0031783029999999995,0.004868376,0.006612417,0.008243855000000001,0.009752631000000001,0.011175823,0.012636715,0.015541221999999999,0.017256904,0.019484971,0.02135628,0.01843664,0.02135277,0.021072590000000002,0.020370689999999997,0.02004295,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,refined liquids (steam/CT),0.0262079,0.0251024,0.00900702,0.0060104500000000005,0.006465089,0.006821083,0.006633559999999999,0.00618293,0.0058763339999999996,0.005559466,0.0052802579999999995,0.005094418999999999,0.004452184999999999,0.003732464,0.0028709880000000005,0.002259879,0.001553949,0.001485986,0.0012965930000000002,0.0011863849999999999,0.001135362,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,refined liquids cogen,0.0107523,0.00468467,0.00174882,0.00184779,0.00201255,0.00217914,0.0022505,0.0023112,0.00247421,0.0026285,0.00277149,0.00291422,0.0030972,0.00321751,0.00333193,0.00330987,0.002771,0.00316213,0.00302842,0.00290634,0.00280045,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,rooftop_pv,0.0,0.0,0.0,4.77475E-5,1.41021E-4,3.23346E-4,6.10124E-4,0.00105165,0.00171552,0.00263375,0.00387071,0.00537048,0.00731209,0.00947829,0.0117713,0.0141231,0.0166373,0.0187743,0.0206643,0.0223965,0.0243949,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,wind,0.0,2.48396E-4,0.0110014,0.01518622,0.02197066,0.03242116,0.04666695999999999,0.06408425999999999,0.07264135999999999,0.08946774000000002,0.1047994,0.1176835,0.1349972,0.1506301,0.1688829,0.19511289999999998,0.2244993,0.24752689999999997,0.26641869999999995,0.2828771,0.2954543,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,wind_storage,0.0,0.0,0.0,1.77962E-5,4.78698E-5,9.70803E-5,1.67691E-4,2.592105E-4,3.652775E-4,4.659113E-4,5.653336999999999E-4,6.573031999999999E-4,7.830895E-4,9.030160000000001E-4,0.0010466680000000002,0.0012504740000000001,0.0014828990000000002,0.0016769110000000001,0.001852813,0.002012097,0.0021460290000000003,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,Gen_III,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0091176,0.029533789999999997,0.05567168,0.08675388,0.12746657,0.15852625,0.18127014,0.20389601999999998,0.2241318,0.23740368000000003,0.25499444,0.26785430000000005,0.2703809,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,Gen_II_LWR,0.0850906,0.0840297,0.094822,0.0876289,0.0835189,0.077524,0.0693204,0.0590228,0.0474109,0.0357991,0.0255015,0.0172979,0.011303,0.00719298,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,PV,3.60004E-6,6.84017E-5,2.98805E-4,0.001393555,0.002498095,0.003877495,0.004412292,0.004883982,0.004827301,0.0040473969999999995,0.003248197,0.002277215,0.002330665,0.002350459,0.0024977289999999997,0.002596838,0.0026872569999999998,0.002558687,0.002368863,0.002190679,0.002102692,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,PV_storage,0.0,0.0,0.0,9.81046E-6,1.976802E-5,3.614902E-5,9.025502E-5,1.4458321999999998E-4,1.7492491999999998E-4,2.0689236E-4,2.398086E-4,2.832031E-4,3.2009340000000005E-4,3.4541490000000003E-4,3.805929E-4,4.1148970000000004E-4,4.4016100000000006E-4,4.3124280000000003E-4,4.129699E-4,3.900065E-4,3.790921E-4,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,0.00142476,0.00320214,0.0048457,0.00566729,0.006896902,0.008085888999999999,0.009708979,0.012145608,0.014089968,0.015477952999999997,0.016989642,0.018307634,0.018218872,0.018361029999999997,0.018043945,0.018271439999999996,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,biomass (conv),0.00161282,0.00203765,0.00243364,0.010285459,0.015483909,0.020800667,0.027070030000000002,0.032032827,0.033512429999999996,0.036030405,0.037948697,0.04028406600000001,0.044362383299999995,0.046870488700000004,0.047513799999999995,0.044764559999999995,0.042313939999999994,0.039490529999999996,0.037641530000000006,0.035170480000000004,0.03462997,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,biomass cogen,0.00186413,0.00639876,0.00725394,0.00678189,0.00702888,0.00697791,0.0064819,0.00630025,0.00633094,0.00617819,0.00597134,0.00562766,0.00533284,0.00508767,0.00476479,0.00446211,0.00418474,0.0039579,0.00373912,0.0035277,0.00331183,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,coal (IGCC),0.0,0.0,0.0,0.0,0.0,3.29534E-4,7.92793E-4,0.001264648,0.0015414699999999999,0.0019447830000000003,0.002386196,0.003051439,0.0041390360000000005,0.005163235,0.006077134999999999,0.007175517,0.008348679,0.008927752,0.009897942,0.010645094,0.011647677999999998,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,coal (conv pul),3.38404E-4,4.7522E-4,3.81601E-4,0.00591749,0.009944524,0.014042645999999999,0.018735523,0.022768609999999998,0.024781802999999998,0.027422501000000002,0.030062913,0.0337600322,0.0394702861,0.04462381909999999,0.049057170000000004,0.04871684,0.05018685,0.05033728,0.05226997,0.05395071,0.05803659,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,coal cogen,1.00746E-4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,gas (CC),0.0,0.00174519,0.0180938,0.0536793,0.0764754,0.0997412,0.1232094,0.1404254,0.14662197999999999,0.15394649000000002,0.16013295000000002,0.16829167999999997,0.14377123000000003,0.12982586999999998,0.11217034000000001,0.09577572,0.08483244000000001,0.08231102,0.08204774,0.08146547999999999,0.07944694,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,gas (steam/CT),2.69998E-4,1.05273E-4,1.08859E-5,0.00188179137,0.00294985832,0.00408683709,0.00522762959,0.00602440184,0.006305055699999999,0.00663168994,0.00683204041,0.007020099609999999,0.005888972730999999,0.005158387239000001,0.004378242,0.003658368,0.003191601,0.0030606490000000004,0.003121403,0.003121818,0.00309689,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,gas cogen,0.00120861,0.00317471,0.0040509,0.00355992,0.00341719,0.00317373,0.00267083,0.00239536,0.00232276,0.00214418,0.00192745,0.00166396,0.00143926,0.00124546,0.00111202,0.00100342,9.20864E-4,8.72584E-4,8.57201E-4,8.27355E-4,7.96328E-4,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,geothermal,0.00108001,0.00596895,0.0160743,0.034984600000000005,0.03547391,0.03547404,0.03548607,0.035473990000000004,0.03547397,0.03547399,0.035474,0.03547399,0.03547399,0.03547399,0.03547399,0.03547401,0.03547401,0.035473979999999995,0.03547401,0.03547401,0.03547398,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,hydro,0.558752,0.626339,0.598385,0.583929,0.569578,0.555226,0.540875,0.526524,0.53205,0.537576,0.543103,0.548629,0.554155,0.559681,0.565207,0.570734,0.57626,0.581786,0.587312,0.592839,0.592839,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,hydrogen cogen,0.0,0.0,0.0,0.0,0.00200862,0.00330311,0.00462039,0.00623165,0.00851381,0.0111768,0.0139585,0.0147842,0.0159508,0.0171934,0.0181603,0.0193949,0.0206255,0.021616,0.0229157,0.0238755,0.022523,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,refined liquids (CC),0.0,0.0,0.0,6.34026E-5,1.041998E-4,1.684751E-4,2.420773E-4,2.910038E-4,2.9868749999999996E-4,3.393238E-4,3.6396160000000004E-4,3.9982700000000006E-4,4.344088E-4,4.295831E-4,4.0476549999999997E-4,3.6205700000000005E-4,2.6658549999999996E-4,2.772157E-4,2.51487E-4,2.1436220000000002E-4,1.8220629999999996E-4,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,refined liquids (steam/CT),0.0010152,2.62806E-4,1.83584E-4,3.01575E-4,3.4496550000000004E-4,3.799378E-4,3.8753349999999997E-4,3.7174269999999996E-4,3.5191537000000005E-4,3.3141695999999997E-4,3.0902508E-4,2.8719653000000003E-4,1.9255011E-4,1.3562769E-4,8.08819E-5,4.6089750000000004E-5,2.4368940000000003E-5,2.1054970000000002E-5,1.6471354E-5,1.3421548E-5,1.0928898999999999E-5,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,refined liquids cogen,4.21305E-4,6.08071E-4,1.87116E-4,1.44699E-4,1.39841E-4,1.28715E-4,1.11464E-4,1.02504E-4,1.04437E-4,1.03437E-4,1.01411E-4,9.87157E-5,9.75844E-5,9.50154E-5,9.32489E-5,8.75823E-5,6.86656E-5,7.55679E-5,6.86493E-5,6.23616E-5,5.72335E-5,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,rooftop_pv,0.0,0.0,0.0,4.94831E-7,1.39051E-6,2.24585E-6,6.84413E-7,9.25312E-7,1.35983E-6,1.83301E-6,2.33223E-6,2.71028E-6,3.04897E-6,3.32006E-6,3.55317E-6,3.70668E-6,3.83721E-6,3.87102E-6,3.84457E-6,3.74447E-6,3.63008E-6,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,wind,0.0,0.00182524,0.00335526,0.025362859999999997,0.05050056,0.08812065999999999,0.13898616,0.18752286,0.21047319999999997,0.2241644,0.23492329999999997,0.24655939999999998,0.26894450000000003,0.2833362,0.3076689,0.3270018,0.3446947,0.3335228,0.3150061,0.29527760000000003,0.2863585,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,wind_storage,0.0,0.0,0.0,7.49836E-5,1.63387E-4,3.0200699999999997E-4,4.96286E-4,6.8887E-4,7.952969999999999E-4,8.660044E-4,9.26124E-4,9.94284E-4,0.001110716,0.0011879019999999998,0.001302673,0.001399904,0.001489546,0.001452371,0.001384241,0.0013042099999999999,0.001266601,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,CSP,0.0,0.0,0.0,1.57652E-4,8.41756E-4,0.0022800760000000002,0.004942576000000001,0.008944416,0.014650366000000001,0.021595014,0.02904448,0.03663556,0.04404466,0.05058512,0.05593387,0.06422307,0.0759494,0.0820675,0.09074,0.09864250000000001,0.1060373,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,CSP_storage,0.0,0.0,0.0,0.0,0.0,0.00478134,0.021187240000000003,0.056065340000000005,0.10869554000000001,0.17868224,0.26412263999999996,0.3533424,0.44089049999999996,0.5150144,0.5774241999999999,0.6679085,0.7911451,0.857377,0.953017,1.041552,1.125767,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,Gen_III,0.0,0.0,0.0,0.0638817,0.15663339999999998,0.2598313,0.38206829999999997,0.5144712,0.668114,0.833695,1.0035958,1.1662705999999998,1.3222503,1.4667459999999997,1.6045505999999998,1.7173175000000003,1.8378200000000002,1.888724,1.9479459999999997,1.988091,2.002695,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,Gen_II_LWR,0.0221076,0.0623663,0.0945575,0.0873845,0.0832859,0.0773077,0.069127,0.0588581,0.0472786,0.0356992,0.0254303,0.0172496,0.0112714,0.00717288,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,PV,0.0,6.83999E-5,8.27999E-5,0.0141584999,0.0588715999,0.1319107999,0.24355179989999998,0.38959279989999995,0.575652,0.7785913,0.9687512000000001,1.1517979999999999,1.320309,1.466991,1.5929010000000001,1.81236,2.1496720000000002,2.339574,2.613878,2.878696,3.1331290000000003,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,PV_storage,0.0,0.0,0.0,1.26157E-4,5.29314E-4,0.001186528,0.0021933480000000003,0.0035007880000000003,0.005177468,0.006995231,0.008713344,0.01035434,0.01186929,0.01320914,0.014321879999999999,0.016310480000000002,0.01933461,0.021019160000000002,0.02350526,0.025866880000000002,0.02817114,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,0.00684374,0.01722725,0.031954250000000003,0.05128433,0.0742141,0.09966082,0.12676272,0.15611123999999998,0.18666275,0.21676599000000002,0.26080454,0.31669088,0.35264826,0.39991370000000004,0.4415348,0.48045990000000005,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,biomass (conv),0.0,0.00692279,0.00740519,0.014547393,0.038880812,0.062719283,0.101387806,0.149516582,0.200543963,0.2522976765,0.3039324617,0.353258852,0.4055065743,0.45727568449999995,0.50013701,0.5679579,0.6480367,0.6912907,0.7658654,0.8272742,0.8875645999999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.155148,0.379031,0.663213,1.005595,1.37954,1.7653849999999998,2.153906,2.548501,2.930831,3.3067360000000003,3.7985949999999997,4.396941,4.672083,4.955803,5.143643000000001,5.249261000000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,coal (conv pul),0.68977,1.69899,2.35082,3.5033499999999997,5.37933,7.17152,9.25208,11.450830000000002,13.710740000000001,15.914778000000002,18.003995,19.979384,21.911475999999997,23.739689,25.397119999999997,26.4041,27.23843,27.321140000000003,27.395129999999998,27.16971,26.77402,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,gas (CC),0.0,0.247169,0.0386551,0.08939939999999999,0.19672040000000002,0.3654577,0.6429012000000001,1.0455553,1.563754,2.1456222,2.7406133,3.3147480099999997,3.81066633,4.21020873,4.514188,4.8423940000000005,5.164141000000001,5.171991,5.235675,5.259435999999999,5.284079,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,gas (steam/CT),0.0358488,0.0245121,0.385385,0.466432,0.638717,0.812279,0.984112,1.118299,1.2018039999999999,1.2385669999999998,1.2429513,1.2280871999999998,1.0979687,0.9252953,0.7439249999999997,0.585641,0.45691210000000004,0.3542757999999999,0.294508,0.25725329999999996,0.2360583,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,geothermal,0.0,0.0,0.0,0.0220306,0.0521072,0.05658250000000001,0.05658204,0.05658203,0.05658193,0.05658197,0.056582,0.05658203,0.05658204,0.05658203,0.05658198,0.056582,0.056582046999999996,0.05658362,0.056582028,0.05658199,0.05658195,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,hydro,0.257962,0.366228,0.411926,0.447853,0.48378,0.519707,0.555634,0.591561,0.654843,0.718125,0.781406,0.844688,0.90797,0.971252,1.03453,1.09782,1.1611,1.22438,1.28766,1.35094,1.35094,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,hydrogen cogen,0.0,0.0,0.0,0.0,4.58834E-4,0.00100454,0.00178928,0.00283749,0.00415665,0.00588426,0.00791021,0.00906864,0.0104637,0.0118962,0.0130282,0.0143421,0.0157304,0.0169063,0.0184225,0.0197725,0.0192816,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,refined liquids (CC),0.0,0.0,0.0,0.0824936,0.22263499999999997,0.40029149999999997,0.6425124,0.8896166000000001,1.1387555,1.3354252,1.4819995,1.5978609,1.6870193000000002,1.7130295,1.7039520000000001,1.637321,1.2539988999999998,1.267126,1.0686048,0.8680532,0.7429640000000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,refined liquids (steam/CT),0.0361728,0.0836639,0.0951875,0.18992098000000002,0.3598054,0.48911702,0.5767393700000001,0.6095834,0.62509091,0.62262857,0.613968569,0.60669917,0.5272104900000001,0.422431948,0.32443301999999996,0.22902365000000002,0.13793069,0.11057633000000001,0.07816347999999998,0.05770939,0.04585658,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,rooftop_pv,0.0,0.0,0.0,0.00168302,0.00653328,0.0177797,0.0359579,0.0634633,0.101353,0.149584,0.20939,0.276249,0.353477,0.43006,0.498107,0.553961,0.606311,0.64035,0.655673,0.660433,0.67874,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,wind,1.152E-4,0.0237708,0.0716795,0.11844659999999999,0.20965209999999998,0.3348521,0.5089621,0.7222951,0.9020406,1.1269495,1.3157459999999999,1.474087,1.5945200000000002,1.6763649999999999,1.725927,1.8578999999999997,2.078812,2.169952,2.326237,2.4671,2.595421,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,wind_storage,0.0,0.0,0.0,2.99881E-4,9.58228E-4,0.001978988,0.0035634580000000003,0.005726018,0.008482828000000001,0.011394676999999999,0.01426076,0.01700084,0.01946179,0.021473979999999997,0.02307758,0.02589941,0.030169300000000003,0.03238058,0.035730990000000004,0.038875200000000006,0.04189765,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,CSP,0.0,0.0,0.0,5.1626E-5,2.1767599999999998E-4,6.062E-4,0.0012647029999999998,0.0021933609999999996,0.0035249209999999994,0.005057625,0.006625725,0.008100231,0.009644708,0.011042139999999999,0.01231298,0.01435503,0.01751364,0.019231079999999998,0.021808639999999997,0.024195840000000003,0.025912619999999997,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,CSP_storage,0.0,0.0,0.0,0.0,0.0,0.0011502,0.0047637,0.01197159,0.02290929,0.03681259,0.05303539,0.06915758999999999,0.08579349,0.1000039,0.1131838,0.132951,0.1625116,0.1789687,0.2040526,0.22758699999999998,0.24501099999999998,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,Gen_III,0.0,0.0,0.0,0.00224903,0.00471018,0.01139981,0.023061190000000002,0.03969409,0.060427980000000006,0.08293308,0.10598157,0.12707094,0.14846162999999998,0.16838401,0.18856219000000002,0.21206896000000003,0.24191603,0.25745670000000004,0.2738104,0.2836002,0.2862064,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,PV,0.0,0.0,0.0,0.00112401,0.0037706,0.008581829999999999,0.01531519,0.02357961,0.03417261,0.044854,0.05441931,0.06249338,0.07070362,0.0781898,0.0855112,0.0987843,0.120949,0.133772,0.1533133,0.1723065,0.1867333,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,PV_storage,0.0,0.0,0.0,1.00741E-5,3.39367E-5,7.72278E-5,1.379503E-4,2.119361E-4,3.07351E-4,4.0302090000000006E-4,4.894483000000001E-4,5.617922E-4,6.355807000000001E-4,7.040349E-4,7.68753E-4,8.88954E-4,0.00108779,0.001201729,0.001378679,0.001548366,0.001679029,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,5.27512E-4,0.001389201,0.002637295,0.004362665999999999,0.006369420999999999,0.008547573,0.010818451,0.013505401,0.016325101,0.019386019,0.023827828,0.029805539000000002,0.033390552,0.038725775999999996,0.043441160000000006,0.04755313,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,biomass (conv),0.0,7.91916E-5,3.42008E-4,9.85849E-4,0.0024417592,0.0046218681,0.0079172018,0.012098624799999999,0.0168422441,0.0214870464,0.0259693537,0.030146335969999997,0.03516949307,0.04009550969,0.044872916000000006,0.05218985600000001,0.06174613000000001,0.06598046,0.07478742999999999,0.08192714000000001,0.08848981,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.0150857,0.0364449,0.0632204,0.0962238,0.13116640000000002,0.1660623,0.20008939999999997,0.2367508,0.2725837,0.3101522,0.3593384,0.4218692,0.4498913,0.48339170000000004,0.5076865,0.5190655000000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,coal (conv pul),0.0351648,0.186455,0.24521,0.367303,0.514124,0.687331,0.88401,1.088587,1.304137,1.5069445,1.6923379,1.8619325,2.0397353,2.2099945,2.3748469999999995,2.468057,2.6044940000000003,2.6184990000000004,2.6554369999999996,2.665345,2.6329589999999996,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,gas (CC),1.566E-5,0.0351839,0.0227519,0.0462217,0.0809497,0.1437712,0.2396606,0.37131139999999996,0.5387379,0.71538767,0.88518657,1.03914432,1.16657536,1.26832513,1.3367783999999998,1.4047,1.470235,1.4320330000000001,1.421561,1.4009680000000002,1.3718090000000003,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,gas (steam/CT),0.00262674,0.0335258,0.121385,0.15158549999999998,0.1927932,0.24586370000000002,0.29447629999999997,0.3288746,0.347643,0.35063300000000003,0.3438198,0.331895,0.2871485100000001,0.24169677999999997,0.18897066,0.14488138,0.11045496999999999,0.08172764,0.06636569,0.056495790000000004,0.05053902,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,geothermal,0.00405,0.0237744,0.0336852,0.0502987,0.0672837,0.08797200000000001,0.10915369999999999,0.1287148,0.12165840000000001,0.1288125,0.13386550000000003,0.1346911,0.1360092,0.137124,0.1359565,0.1412647,0.1520883,0.15408639999999998,0.154894,0.1548941,0.154894,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,hydro,0.0205488,0.03861,0.0636336,0.0643101,0.0649865,0.065663,0.0663395,0.0670159,0.0690624,0.071109,0.0731555,0.075202,0.0772485,0.079295,0.0813415,0.083388,0.0854345,0.0874811,0.0895276,0.0915741,0.0915741,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,hydrogen cogen,0.0,0.0,0.0,0.0,4.08205E-4,8.40096E-4,0.00141802,0.00212409,0.00295487,0.00399123,0.00514226,0.00569018,0.00641283,0.00716078,0.00777278,0.00855956,0.00950079,0.00997684,0.0108065,0.0115306,0.0113951,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,refined liquids (CC),0.0,0.0,0.0,0.0232984,0.0527936,0.10650880000000001,0.17198229999999998,0.2368315,0.30397786,0.34977461,0.37954915999999994,0.40182294,0.425197,0.43066670000000007,0.4280491,0.4077704999999999,0.3139593,0.3033904,0.24983770000000002,0.1957547,0.16595283,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,refined liquids (steam/CT),0.0551952,0.140904,0.124218,0.13759939999999998,0.1661957,0.1967869,0.20861369999999999,0.20427410000000001,0.1966745,0.18514609999999995,0.17403712999999996,0.16614793000000003,0.13923397,0.11311184,0.08294488,0.05785934,0.034848170000000005,0.02658736,0.018298269999999995,0.013161869999999999,0.010399337000000002,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,rooftop_pv,0.0,0.0,0.0,2.08113E-4,6.54813E-4,0.0016425,0.00313596,0.00525844,0.00811766,0.0117442,0.016273,0.0214715,0.027752,0.0340666,0.0401574,0.0458875,0.0520686,0.054993,0.0573151,0.0585934,0.0631592,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,wind,0.0,0.0,0.0,0.00168005,0.00510872,0.01159827,0.02106901,0.03303951,0.04762541,0.06156976,0.07397509000000001,0.08327764,0.09139230000000001,0.0973446,0.1023227,0.11295680000000001,0.1309846,0.1394588,0.1532401,0.1655952,0.1734557,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,wind_storage,0.0,0.0,0.0,1.03717E-5,3.58273E-5,9.32001E-5,1.8955909999999999E-4,3.2777109999999996E-4,5.158151E-4,7.244944000000001E-4,9.372117999999999E-4,0.001130611,0.001324786,0.0014928250000000001,0.001649372,0.0019112,0.002325768,0.002557175,0.002913389,0.0032502430000000003,0.003502075,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,CSP,0.0,0.0,0.0,0.00141335,0.002305982,0.0030085629999999997,0.004089852999999999,0.005407112999999999,0.007444002999999999,0.008272883,0.009480091,0.010566520000000001,0.014352280000000002,0.015581380000000002,0.01639906,0.01853706,0.019610759999999998,0.019537009999999997,0.01792207,0.018167859999999997,0.01817888,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,CSP_storage,0.0,0.0,0.0,0.0,0.0,8.87898E-4,0.0034208579999999997,0.007785418,0.014927908,0.023327778,0.031713598,0.03790622,0.05447126000000001,0.0601159,0.06426671,0.07322854,0.07751981999999999,0.0773373,0.0714045,0.0727635,0.0732359,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,Gen_III,0.0,0.0,0.0,0.0,0.0,0.0141741,0.0504697,0.1081499,0.18104520000000002,0.2497549,0.30637559999999997,0.34818309999999997,0.4485914,0.4959295,0.5447017,0.6140176,0.6609865,0.6707161,0.6771177000000002,0.6542495999999999,0.6153972999999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,Gen_II_LWR,0.728178,1.09712,1.03763,0.958912,0.913936,0.848335,0.758563,0.645878,0.518811,0.391744,0.279059,0.189288,0.123687,0.0787115,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,PV,3.6E-6,0.00537479,0.0136764,0.01755498,0.019348240000000003,0.020444870000000004,0.021838500000000004,0.023316120000000003,0.011682210000000002,0.0099096,0.00998024,0.01044326,0.01321115,0.0139069,0.014341350000000003,0.01605368,0.017000380000000002,0.01699316,0.01578873,0.01620977,0.01643752,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,PV_storage,0.0,0.0,0.0,3.47605E-5,5.09284E-5,6.079531E-5,7.336261E-5,8.659001E-5,1.0498640999999999E-4,8.908861000000001E-5,8.975321E-5,9.3882E-5,1.187711E-4,1.251972E-4,1.289401E-4,1.444762E-4,1.529159E-4,1.527824E-4,1.4203209999999998E-4,1.456845E-4,1.478627E-4,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,6.45175E-4,0.001464455,0.002467573,0.003941382,0.005400659,0.006665684,0.0076187799999999995,0.010789474,0.011877012,0.013266947,0.01553214,0.016749024,0.016924226000000004,0.017893677,0.018304496,0.01842116,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,biomass (conv),0.037872,0.0795455,0.0844343,0.08770800000000001,0.08093751,0.07704686000000001,0.07395307000000001,0.06887044,0.062072100000000005,0.05464417,0.04771862999999999,0.041719740000000005,0.04346208000000001,0.04065019,0.03624341,0.03531778,0.03423201,0.03318512,0.03429541,0.0341017,0.033646569999999994,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.0057324,0.01467027,0.02576269,0.0419271,0.058902350000000006,0.07423761000000001,0.08657509,0.11818186,0.13389446000000002,0.15075608,0.1755169,0.19267291999999997,0.19578354,0.20300479000000002,0.20512106000000002,0.20190337000000003,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,coal (conv pul),0.420141,1.09279,1.09618,1.35819,1.442843,1.4452661,1.4416422,1.4184165,1.4044731000000001,1.3833657999999998,1.3575135999999999,1.3318726999999997,1.4292347,1.4610478,1.4602423999999998,1.2327441000000001,1.181121,1.1510005,1.1348792,1.101454,1.0433636000000002,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,gas (CC),0.550414,0.734881,0.709121,1.108413,1.245821,1.309381,1.3870460000000002,1.455549,1.5459800000000001,1.6195589999999997,1.668633,1.6948926000000002,1.4072440000000002,1.2948126999999998,1.2256726000000002,1.2128883,1.1482685,1.0113218,0.9246645,0.8554825,0.8201298,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,gas (steam/CT),0.0510872,0.125658,0.387131,0.3111057,0.29670492,0.28718218,0.2681307499999999,0.24044564,0.20500405000000002,0.17002033,0.13891933,0.11385247000000001,0.08668862,0.06917111999999999,0.048904180000000005,0.047845849999999995,0.044054659999999995,0.0380735,0.03526656,0.03247551,0.030947109999999996,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,geothermal,0.00626759,0.0116136,0.00947519,0.0175043,0.021903149999999996,0.0253347,0.030258600000000004,0.03570573,0.034930749999999997,0.03600678,0.03926369,0.041725319999999996,0.04942656,0.05024745,0.04989905,0.052099620000000006,0.052439269999999996,0.05123482,0.048414809999999996,0.049400400000000004,0.04994568,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,hydro,0.321498,0.275292,0.295963,0.294981,0.293999,0.293016,0.292034,0.291052,0.294216,0.29738,0.300544,0.303708,0.306872,0.310036,0.3132,0.316365,0.319529,0.322693,0.325857,0.329021,0.329021,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,hydrogen cogen,0.0,0.0,0.0,0.0,1.27873E-4,2.24887E-4,3.46409E-4,4.8992E-4,6.28344E-4,7.97821E-4,9.79996E-4,0.00104628,0.00114846,0.0012498,0.00132293,0.00142435,0.00154412,0.00160813,0.00172153,0.00182808,0.00176634,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,refined liquids (CC),0.0,0.0,0.0,0.0257452,0.02186502,0.02417192,0.03522505,0.04603905,0.06347839,0.07375934,0.07853708000000001,0.07995071000000001,0.11260601,0.09962264,0.10505738,0.11139341,0.08126143000000001,0.08106487,0.07449223,0.06371098,0.05879907999999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,refined liquids (steam/CT),0.892385,0.495089,0.350827,0.3242944,0.2870715,0.27019096,0.24546905000000002,0.21350126,0.1786921,0.14467101999999998,0.11533018999999999,0.09289923,0.05779649599999999,0.039548596000000005,0.017386642,0.013418112,0.008636872,0.007021951,0.005256385000000001,0.0041901460000000005,0.003714557,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,rooftop_pv,0.0,0.0,0.0,4.13277E-5,1.0616E-4,2.34867E-4,4.24308E-4,6.92148E-4,9.77E-4,0.00131216,0.00170165,0.00212008,0.00262196,0.00307795,0.00349895,0.00386543,0.00423136,0.00437837,0.00443312,0.00445695,0.00455693,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,wind,0.0,0.00631439,0.0142632,0.0257154,0.03292431,0.03929347,0.05000317,0.06397067000000001,0.07109346999999999,0.08320637,0.09801765999999999,0.11000000000000001,0.1463439,0.1569196,0.16318409999999997,0.1815563,0.19021390000000002,0.1887327,0.1747959,0.1790528,0.1813422,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,wind_storage,0.0,0.0,0.0,5.22544E-5,8.65851E-5,1.1840320000000001E-4,1.745599E-4,2.524196E-4,3.758886E-4,4.652552E-4,5.698455E-4,6.585534E-4,9.348646999999999E-4,0.0010352480000000001,0.001117129,0.0012979649999999999,0.0013988759999999999,0.001411234,0.001335804,0.001383148,0.0014149540000000002,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,CSP,0.0,0.0,0.0,6.63735E-6,2.195865E-5,5.704575E-5,1.2237325E-4,2.2424325E-4,3.7418825E-4,5.580699E-4,7.760856E-4,0.0010126825000000002,0.001412866,0.001821873,0.0022815500000000002,0.002839711,0.003564351,0.004056243,0.004554934,0.005014688,0.005299284,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,CSP_storage,0.0,0.0,0.0,0.0,0.0,1.1664E-4,5.191849999999999E-4,0.0014070509999999999,0.002790131,0.004667551,0.007118731,0.009830531,0.014232856000000002,0.01862731,0.02358836,0.029516900000000002,0.03713302,0.04238737,0.047875799999999996,0.053080779999999994,0.05659959,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,Gen_III,0.0,0.0,0.0,0.00517164,0.00917483,0.01469241,0.021975840000000003,0.03091248,0.04195973,0.05440411,0.06829529,0.08205205,0.10224151000000001,0.12178404,0.14292738,0.16155715,0.18591257,0.20170351000000003,0.21986386,0.235612,0.24674089999999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,Gen_II_LWR,0.0105732,0.038898,0.0211644,0.0195589,0.0186415,0.0173034,0.0154724,0.0131739,0.0105821,0.00799037,0.00569194,0.00386089,0.00252283,0.00160547,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,PV,3.6E-6,3.24E-5,1.116E-4,0.00193728,0.00502235,0.01051147,0.01895033,0.03040313,0.04536103,0.06146935,0.07914217999999999,0.09739065999999999,0.1288427,0.16109009999999999,0.1990341,0.2465066,0.3107802,0.3563224,0.40440299999999996,0.45150049999999997,0.4840293,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,PV_storage,0.0,0.0,0.0,1.63635E-5,4.41808E-5,9.35737E-5,1.696802E-4,2.722152E-4,4.079582E-4,5.522437E-4,7.119084E-4,8.755525E-4,0.001158531,0.0014512190000000001,0.001789377,0.002218045,0.002795296,0.00320119,0.00363773,0.004061742,0.0043645839999999995,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,8.72428E-4,0.0019008200000000001,0.003204566,0.0047990160000000006,0.00657078,0.008547584,0.010647216000000001,0.014262488,0.017850041,0.021881778,0.026630613999999997,0.032509507,0.036157737,0.04100065000000001,0.04540514,0.04929,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,biomass (conv),0.0,0.0109656,0.00929879,0.00698613,0.008955349999999999,0.01120202,0.01453081,0.018242340000000003,0.021761953,0.025191748,0.028848152000000002,0.032414947,0.039740451,0.046086532,0.05259097,0.058818789999999996,0.06708375999999999,0.07127553,0.07883201,0.08540323,0.09161796,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.00259906,0.00619804,0.010750570000000001,0.01635077,0.02255025,0.029357480000000002,0.036615089999999996,0.04806375,0.05985322,0.07326701000000001,0.08903738000000001,0.10847829,0.12086121,0.13581142000000002,0.14955302,0.16065867,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,coal (conv pul),0.0279864,0.118998,0.117129,0.1484897,0.1753808,0.200484,0.22706549999999998,0.25365899999999997,0.28099,0.3079599,0.3366026,0.3671685,0.420131,0.47457004,0.5311861,0.5659284,0.6253247000000001,0.6632663,0.7127137,0.7597727999999999,0.7983496999999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,gas (CC),0.0269085,0.312594,0.31265,0.49484399999999995,0.6429860000000001,0.8105910000000001,0.995663,1.1873710000000002,1.381875,1.564684,1.7415812000000002,1.9097153,1.9581000999999998,2.0332965,2.079953,2.1425090000000004,2.228129,2.219503,2.264698,2.302203,2.3180470000000004,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,gas (steam/CT),0.0251475,0.0299315,0.195244,0.1704349,0.16837054999999998,0.16485780000000003,0.15845251000000002,0.1487019,0.13674681,0.12467707,0.11465444999999999,0.10756439000000001,0.10049606,0.09611851,0.08780829000000001,0.08912381,0.09162179,0.08949971999999998,0.09140992,0.09229498,0.09243881,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,geothermal,0.0184464,0.0262764,0.0238248,0.0329436,0.04051001,0.04935898,0.05914376,0.06907133,0.060111069999999996,0.06513732,0.07140110000000001,0.07614891,0.084828,0.09142969999999999,0.09622910000000001,0.0969661,0.096966,0.096966,0.096966,0.0969661,0.0969661,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,hydro,0.0845208,0.0995724,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,hydrogen cogen,0.0,0.0,0.0,0.0,2.21845E-4,4.0389E-4,6.51556E-4,9.6607E-4,0.00135743,0.00187552,0.00249234,0.00285197,0.00332909,0.00383424,0.00428291,0.00484307,0.00550193,0.00592888,0.00653368,0.00711796,0.00722817,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,refined liquids (CC),0.0,0.0,0.0,0.0215104,0.03520554,0.059533699999999995,0.09057048,0.12346158,0.15971268,0.18996306,0.21837873000000002,0.24406021,0.30392394999999994,0.33087029999999995,0.361359,0.3715768,0.3199894,0.33394009999999996,0.3088766,0.2750217,0.2566232,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,refined liquids (steam/CT),0.223423,0.240426,0.157964,0.1446316,0.1521218,0.1559501,0.151003,0.14009059999999998,0.1311046,0.121535,0.11329003000000001,0.10745665,0.08721625,0.07128651,0.05345854,0.04102657,0.028326000000000004,0.0246492,0.02003241,0.01688509,0.015204529999999997,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,rooftop_pv,0.0,0.0,0.0,3.42468E-4,9.80074E-4,0.00210072,0.0038549,0.00650222,0.0102645,0.015411,0.0223096,0.0307103,0.0415987,0.0535007,0.0656827,0.0780144,0.0918595,0.100465,0.107674,0.113581,0.124777,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,wind,3.6E-6,6.83999E-5,0.00446039,0.00906929,0.01538626,0.02583496,0.04131716,0.06171006,0.08296647,0.10774357,0.1344011,0.1597887,0.2013512,0.2406219,0.2833488,0.3347419,0.4016122,0.4438043,0.48357,0.5210423,0.5427418,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,wind_storage,0.0,0.0,0.0,1.98524E-5,4.87227E-5,1.0039160000000001E-4,1.8252030000000003E-4,2.9930530000000003E-4,4.560623E-4,6.254099E-4,8.209516E-4,0.0010253537000000001,0.001373128,0.001727999,0.002139096,0.002650856,0.003334869,0.003813477,0.004320891,0.004810929,0.005152342,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,CSP,0.0,0.0,0.0,1.59391E-5,5.94317E-5,1.620727E-4,3.559057E-4,6.618437000000001E-4,0.0010843717,0.0015880066,0.002132157,0.002673262,0.003454024,0.004288726,0.005249258,0.006436614,0.008303681,0.009468174999999999,0.01080173,0.011437260000000001,0.011051580000000002,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,CSP_storage,0.0,0.0,0.0,0.0,0.0,3.41213E-4,0.001535613,0.0042020930000000005,0.008099483000000001,0.013219553000000002,0.019392713000000002,0.025753449999999997,0.03461865,0.04374617,0.05424208,0.06691950999999999,0.08656805,0.0991418,0.1153694,0.1309674,0.1401357,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,Gen_III,0.0,0.0,0.0,0.00761429,0.02143238,0.04821058,0.09049938,0.14863318,0.21240317,0.27892227,0.34503816,0.40619475000000005,0.48533574,0.56687003,0.6563455199999999,0.7497024999999999,0.8708445,0.9380444000000001,1.0151511,1.073697,1.1035335,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,PV,0.0,0.0,2.52E-4,0.007329499999999999,0.021467,0.0473886,0.0878092,0.14333390000000001,0.21163160000000003,0.2835075,0.3537612,0.41863670000000003,0.5130351,0.6150173999999999,0.7406247,0.9024023,1.1700661,1.345906,1.572666,1.7909320000000002,1.908967,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,PV_storage,0.0,0.0,0.0,6.34359E-5,1.909109E-4,4.241639E-4,7.887028999999999E-4,0.0012858059,0.0019032909,0.002547107,0.0031818429999999997,0.003763469,0.00461254,0.005539927,0.006658072,0.00811984,0.010523999,0.01209184,0.014158279999999999,0.016188,0.01744778,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,0.00112856,0.00304281,0.005866100000000001,0.009488062,0.013765785999999999,0.01845428,0.023494586999999997,0.031389421,0.040551231,0.05157202,0.06517658999999999,0.08523132600000001,0.09785941000000001,0.11630667,0.1340199,0.14878351,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,biomass (conv),0.0,0.0,4.32068E-5,0.0021213281,0.0058918653,0.0109060024,0.01845318777,0.028196387080000003,0.03830963909,0.04849101734,0.05843958998,0.06815416764,0.08455656931200001,0.10219671426100001,0.121897031,0.14533377,0.18033346000000003,0.19757808000000002,0.2291743,0.25815178,0.28362065,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.00210961,0.00510735,0.0090092,0.013649230000000002,0.01879926,0.024235430000000002,0.02996751,0.038404259999999996,0.0482354,0.06035129,0.07566225,0.09844665,0.11389701,0.13591706999999997,0.15893473000000002,0.17808422999999998,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,coal (conv pul),0.0379187,0.132671,0.124711,0.1415256,0.1611181,0.1796235,0.1994138,0.21956219999999999,0.2388154,0.25785939999999996,0.27734450000000005,0.2986971,0.3352969,0.37951995999999993,0.4292209,0.4757668,0.5578485,0.6140340999999999,0.6996656,0.7930674999999999,0.8728165,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,gas (CC),0.0,0.0,0.0,0.0728474,0.18380580000000002,0.3888157,0.7311694,1.2365005,1.8551332,2.5225401,3.1732880999999997,3.7794317,4.4778839999999995,5.141579,5.7520430000000005,6.29136,6.91768,7.054876,7.345816,7.599028000000001,7.685923,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,gas (steam/CT),0.38072,1.3344,1.95927,2.098721,2.283629,2.447161,2.55624,2.5716020000000004,2.484057,2.3382780000000003,2.1769084,2.0307406,1.6686121,1.3700332000000002,1.0260383000000002,0.7999756000000001,0.6273323,0.48950479999999996,0.4191194,0.38050379999999995,0.3583126,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,geothermal,0.0,0.0,0.0,0.010829,0.0243035,0.0400505,0.05578519999999999,0.05658204,0.056582009999999995,0.05658199,0.05658198,0.056581950000000006,0.05658197,0.056581969999999995,0.05658204,0.056581950000000006,0.056582030000000005,0.056582020000000004,0.05658199,0.056582030000000005,0.056481130000000004,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,hydro,0.04293,0.0992016,0.064242,0.0855464,0.106966,0.128386,0.149805,0.171225,0.202866,0.234507,0.266148,0.297789,0.329429,0.36107,0.392711,0.424352,0.455993,0.487634,0.519275,0.550916,0.550916,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,hydrogen cogen,0.0,0.0,0.0,0.0,0.00196585,0.00323064,0.00472966,0.00640313,0.00834368,0.0109284,0.0140142,0.0157377,0.0182677,0.0210638,0.0235913,0.0268831,0.0310727,0.0332095,0.0365977,0.0398734,0.0415431,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,refined liquids (CC),0.0,0.0,0.0,0.159924,0.340863,0.6094839999999999,0.9397169000000001,1.2704895,1.5578551999999999,1.7751795,1.9265511000000002,2.0524679999999997,2.2907354,2.420312,2.52825,2.474914,2.058372,2.0617189999999996,1.8129020000000002,1.536619,1.4003937000000004,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,refined liquids (steam/CT),0.402345,0.720668,1.02737,1.096114,1.211517,1.2901150000000001,1.2838859999999999,1.209845,1.1284960000000002,1.0483544999999999,0.9815801999999999,0.9361516,0.7367631,0.5824347999999999,0.430672,0.3058114,0.1947298,0.15580349999999998,0.11749559000000001,0.09361128999999999,0.08177179,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,rooftop_pv,0.0,0.0,0.0,0.00937626,0.0210734,0.0350424,0.0507862,0.0686134,0.089175,0.11431,0.145654,0.181631,0.227755,0.2752,0.319351,0.361966,0.409037,0.428463,0.439451,0.443146,0.480338,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,wind,3.59999E-6,3.05999E-4,6.26399E-4,0.009686539,0.026411939000000002,0.055833839,0.100523439,0.160343739,0.23084324,0.3012072,0.3677138,0.4246987,0.5042841,0.5853998,0.6809299000000001,0.8018107999999999,0.9993658,1.118426,1.266848,1.403454,1.468918,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,wind_storage,0.0,0.0,0.0,4.09338E-5,1.236184E-4,2.8323840000000003E-4,5.445854E-4,9.219314E-4,0.0014000934,0.0019193686,0.00245072,0.002953176,0.003676822,0.004455286,0.005395394,0.006598855000000001,0.008562409,0.009843013000000001,0.011511229999999999,0.013116179999999998,0.014046499999999998,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,CSP,0.0,0.0,0.0,3.76261E-5,1.436381E-4,3.6036710000000003E-4,7.630721000000001E-4,0.0014218951,0.0024630951,0.0038368689999999997,0.005460747,0.007323708,0.009553683,0.01194881,0.01435302,0.016701999999999998,0.0190128,0.020735899999999998,0.02259006,0.024313389999999997,0.02591225,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,CSP_storage,0.0,0.0,0.0,0.0,0.0,7.20469E-4,0.0032019690000000003,0.008968929,0.019737328999999998,0.038864129,0.06763712899999999,0.10359995999999999,0.15321916,0.2099512,0.2725028,0.33963139999999997,0.41958439999999997,0.4810623,0.5439516,0.6003206,0.6476306000000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,Gen_III,0.0,0.0,0.0,0.00788758,0.01528299,0.02430191,0.03618319,0.051514189999999994,0.07075508999999999,0.09443768999999999,0.12235969,0.15355187,0.19034386,0.22919456,0.27025153,0.30617238,0.34837249,0.38274250000000004,0.4200665000000001,0.45517890000000005,0.48742830000000004,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,Gen_II_LWR,0.0010548,0.0089424,0.012312,0.011378,0.0108444,0.010066,0.00900079,0.00766371,0.00615599,0.00464828,0.0033112,0.00224602,0.00146762,9.33963E-4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,PV,0.0,0.0,0.0,0.0061165,0.0187321,0.0387703,0.0695119,0.1126975,0.1567037,0.18749099999999996,0.2105498,0.2297382,0.24313289999999999,0.2497246,0.261187,0.2826237,0.3071308,0.3258347,0.350327,0.3754396,0.4013616,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,PV_storage,0.0,0.0,0.0,5.48215E-5,1.685725E-4,3.4888050000000004E-4,6.261545E-4,0.0010197555,0.0016443625,0.0025568039999999998,0.0037436929999999998,0.005196305,0.007220201,0.00959023,0.012202512999999998,0.01508381,0.018664260000000002,0.021473660000000002,0.02442545,0.027149600000000003,0.02952728,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,0.00108349,0.0029886900000000004,0.00605527,0.010688759,0.017314392,0.026084357000000002,0.036948216000000006,0.051636689,0.069129735,0.089214034,0.11211758100000001,0.139536674,0.16334749,0.19092746,0.21857544,0.24564239999999998,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,biomass (conv),0.0,0.0,0.0,0.00216369,0.00621177,0.01110388,0.01889824,0.03012605,0.04467541,0.06325726000000001,0.08578645,0.111633,0.14573814,0.18427290000000002,0.22589937,0.27103921000000003,0.3230577,0.36686694000000003,0.41918784000000003,0.4712183,0.5217904000000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,coal (IGCC),0.0,0.0,0.0,0.0,0.0,4.14803E-4,0.001098907,0.0021798340000000003,0.0038368589999999998,0.0062698860000000006,0.009666223000000002,0.014185561,0.02077918,0.029266049,0.040015737,0.053586225,0.07146782500000001,0.08896219999999999,0.11158124999999999,0.13712370000000002,0.16544825999999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,coal (conv pul),1.36804E-4,4.64397E-4,3.16794E-4,0.004568493,0.009354694,0.014523534000000001,0.021474883,0.030774544,0.043066063,0.05923986,0.0798411843,0.1051558358,0.13990192880000002,0.1827313975,0.23519729,0.29546044,0.37469715000000003,0.45372537,0.5549932900000001,0.6713565,0.8030442,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,gas (CC),0.00153787,0.0520253,0.0,0.00794269,0.020575290000000003,0.04181588,0.07853967,0.13757340999999998,0.22175886,0.33137232000000005,0.46169161000000003,0.6045440499999999,0.7657048,0.932185,1.0975063999999999,1.2571089,1.4176429000000002,1.526016,1.6400379999999999,1.7406899999999998,1.8301880000000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,gas (steam/CT),0.0440705,0.0966043,0.0931644,0.1177685,0.1439302,0.16770390000000002,0.19022489999999997,0.2085396,0.22165510000000002,0.2304814,0.23590720000000004,0.2395511,0.21356634,0.19021906999999996,0.1647484,0.1443239,0.12664250000000002,0.11081541000000002,0.10114996999999999,0.09550437999999999,0.09281693999999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,geothermal,0.0,0.0,0.0,0.0120567,0.0283335,0.0465492,0.06637459999999999,0.0807259,0.08072599000000001,0.08072589999999999,0.08072589999999999,0.08072604000000001,0.08072598,0.08072596,0.08072589,0.08072599,0.08072597,0.08072605999999999,0.08072603,0.08072605,0.08072602,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,hydro,0.06093,0.111103,0.11452,0.117706,0.120892,0.124078,0.127264,0.13045,0.140089,0.149728,0.159367,0.169006,0.178645,0.188284,0.197923,0.207562,0.217201,0.22684,0.23648,0.246118,0.246118,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,hydrogen cogen,0.0,0.0,0.0,0.0,1.90887E-4,3.84913E-4,6.96324E-4,0.00116226,0.00189412,0.00305419,0.00466236,0.00608053,0.00806235,0.0104067,0.0128332,0.0158238,0.0193389,0.0218756,0.0250541,0.0280137,0.027761,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,refined liquids (CC),0.0,0.0,0.0,0.0173758,0.0380546,0.0661375,0.1049272,0.1530999,0.21286940000000001,0.28141158,0.35296334999999995,0.4250377,0.5021439000000001,0.5682619000000001,0.6254471,0.6517211,0.5971256,0.6254363,0.5810653,0.5250071999999999,0.4764979,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,refined liquids (steam/CT),0.0278928,0.0686556,0.119718,0.1412569,0.15985280000000002,0.1719425,0.17625749999999998,0.1731236,0.1689456,0.1637572,0.15817262999999998,0.15413781999999998,0.12443979999999999,0.10104328,0.07733543,0.061376139999999996,0.04628459,0.0387861,0.0313738,0.026015609999999998,0.022373360000000002,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,rooftop_pv,0.0,0.0,0.0,8.78339E-4,0.00238456,0.00485505,0.0086688,0.0142999,0.0184722,0.0206346,0.0260283,0.0352024,0.0445094,0.059174,0.0753304,0.0893529,0.098672,0.117271,0.132449,0.148777,0.170065,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,wind,0.0,0.0,0.0,0.00928075,0.02649965,0.05307625,0.09315495,0.14885805,0.22180814999999998,0.30496140000000005,0.3981845,0.4971559,0.6139302,0.7323971,0.8497939999999999,0.9657,1.094608,1.1814399999999998,1.2672329999999998,1.3419439999999998,1.403507,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,wind_storage,0.0,0.0,0.0,4.19216E-5,1.302842E-4,2.842452E-4,5.425002E-4,9.431062E-4,0.0015247302,0.0022878126,0.00324611,0.004376109,0.005835923999999999,0.007467068,0.009238624,0.011138400000000001,0.0133555,0.015067289999999999,0.01687645,0.018546310000000003,0.02002589,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,CSP,0.0,0.0,0.0,6.63531E-4,0.002159581,0.004840051,0.008306351,0.012027701,0.016780701000000002,0.02088921,0.02373266,0.02532028,0.02801063,0.03029729,0.03368848,0.03759676,0.04215989,0.047142550000000005,0.05174310000000001,0.055816290000000005,0.059142600000000004,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,CSP_storage,0.0,0.0,0.0,0.0,0.0,0.00388345,0.01319219,0.02732759,0.046434489999999995,0.06692888999999999,0.08679619,0.10227804,0.12066450000000001,0.1336028,0.1514334,0.17038209999999998,0.191284,0.2145676,0.23679509999999998,0.2567763,0.2738301,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,Gen_III,0.0,0.0,0.0,0.0916599,0.166272,0.29133980000000004,0.4565547,0.6388536,0.8190985,0.9677064,1.0829171999999998,1.1775235,1.2943155000000002,1.3942918999999998,1.5158473999999997,1.5417642,1.5778787,1.5593183,1.5091116999999998,1.4271751,1.3527244999999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,Gen_II_LWR,0.425914,0.537994,0.613461,0.566925,0.540334,0.50155,0.448475,0.381854,0.30673,0.231606,0.164984,0.11191,0.0731257,0.0465356,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,PV,0.0,0.0,0.0,2.22443E-4,5.89602E-4,0.0011007130000000001,0.001646487,0.002156443,0.002738689,0.003063795,0.003167206,0.00311066,0.00320799,0.0033244950000000002,0.003605566,0.003982383999999999,0.004474785,0.00504019,0.005563805999999999,0.005909195999999999,0.005754907,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,PV_storage,0.0,0.0,0.0,1.99344E-6,5.30348E-6,9.90185E-6,1.482309E-5,1.938778E-5,2.463154E-5,2.754198E-5,2.8481220000000002E-5,2.7961609999999997E-5,2.8828229999999998E-5,2.992808E-5,3.240018E-5,3.5823450000000003E-5,4.023443E-5,4.528823E-5,5.029127E-5,5.490583E-5,5.9080569999999996E-5,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,7.8489E-4,0.00190596,0.003292196,0.0050866309999999994,0.006876933,0.008539531999999999,0.010191331000000001,0.012813299,0.015293594,0.018765469,0.022343060999999997,0.025940818,0.029400501000000002,0.033244789999999996,0.03643018,0.03989549,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,biomass (conv),0.0,0.0,0.0,0.00157149,0.00365352,0.006594776,0.010708532,0.015062686999999998,0.019560389,0.023147041999999996,0.02606799,0.028826684999999998,0.034098513999999996,0.038504447000000004,0.044668001,0.050096430000000004,0.0548145,0.059964840000000005,0.06600505000000001,0.07069265,0.07639908,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,biomass cogen,1.33152E-4,0.00948844,0.00997641,0.0098204,0.00955888,0.00965832,0.00949056,0.0092437,0.00856263,0.00809538,0.00782113,0.00765328,0.00763816,0.00764607,0.00750042,0.00735543,0.00722344,0.00707529,0.00695081,0.00685694,0.00672557,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.00425937,0.00965491,0.0154382,0.02212799,0.028377760000000002,0.03379464,0.03874923,0.045444170000000006,0.05166967000000001,0.05982198000000001,0.06828405,0.0767865,0.08121158,0.0859216,0.08949678999999999,0.09332215,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,coal (conv pul),0.54613,0.551288,0.556386,0.5736498999999999,0.5993997999999999,0.6175025999999999,0.6244089,0.6139257,0.5955686000000001,0.5690782,0.5415675999999999,0.5212145,0.5213406,0.528652,0.5262548,0.5070314,0.4971253,0.484683,0.47658160000000005,0.4708243,0.47155420000000003,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,coal cogen,0.0191956,0.0442918,0.0415224,0.0406849,0.0337409,0.0324587,0.0294015,0.026667,0.023818,0.022285,0.0217696,0.0219975,0.0230132,0.0238652,0.0249718,0.0259021,0.026898,0.0267485,0.0262273,0.0258437,0.025944,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,gas (CC),0.0,0.0,0.0,0.0474613,0.1117116,0.23427779999999998,0.41952330000000004,0.6483083000000001,0.9253954,1.1816018000000001,1.3912636,1.5654141000000001,1.7319864,1.8440670000000001,1.9319889999999997,1.942302,1.89082,1.7836039999999997,1.7093610000000001,1.6514769999999999,1.629811,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,gas (steam/CT),1.69041,1.4949,1.7391,1.6834,1.724806,1.765157,1.740589,1.633969,1.4658481999999997,1.2729647000000002,1.0910590000000002,0.9410022,0.7118964,0.5389893,0.32751020999999997,0.22815464999999996,0.15817615000000002,0.10951362999999997,0.08402765,0.07048046999999999,0.06383043,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,gas cogen,0.153428,0.0866757,0.134862,0.133479,0.120877,0.118496,0.111211,0.102928,0.091688,0.0833294,0.0770499,0.0720134,0.068452,0.0642322,0.0607555,0.0573435,0.0542675,0.0513744,0.0498468,0.0474971,0.0445288,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,geothermal,1.00804E-4,0.00147597,0.0018179,0.0122161,0.026944080000000002,0.04882209999999999,0.07331017999999999,0.09630814,0.1174608,0.1275521,0.1308525,0.12683329999999998,0.1267623,0.12676050000000003,0.1326405,0.1405242,0.14958249999999998,0.1583721,0.16398079999999998,0.16796619999999998,0.16950910000000002,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,hydro,0.597301,0.621637,0.599339,0.636624,0.673909,0.711195,0.74848,0.785765,0.827183,0.868601,0.910019,0.951437,0.992855,1.03427,1.07569,1.11711,1.15853,1.19994,1.24136,1.28278,1.28278,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,hydrogen cogen,0.0,0.0,0.0,0.0,0.00141047,0.00233551,0.00339697,0.00455717,0.00573924,0.00724217,0.00895522,0.00973953,0.0109682,0.0123222,0.0135411,0.0150544,0.0166845,0.0180345,0.019799,0.0215209,0.0211414,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,refined liquids (CC),0.0,0.0,0.0,0.00271014,0.00471924,0.00864766,0.01299905,0.016491310000000002,0.020441337,0.022493533,0.023625533999999997,0.02511324,0.028996612999999997,0.030541569999999997,0.034052389999999995,0.03399923,0.02747086,0.031224840000000004,0.03004463,0.028279170000000003,0.02815687,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,refined liquids (steam/CT),0.463118,0.0644098,0.025717,0.02351167,0.02358059,0.024453420000000003,0.023391029999999997,0.02102751,0.018785879999999998,0.01663539,0.014947959999999998,0.013884754,0.010994384999999999,0.008763947999999997,0.006051821999999999,0.0042720480000000005,0.0027037619999999997,0.0022807829999999998,0.001837362,0.001611951,0.001536483,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,refined liquids cogen,0.0,0.0119671,0.0078013,0.00840462,0.00714733,0.00665303,0.00597341,0.00538629,0.00504867,0.00482965,0.00471054,0.00469586,0.0048093,0.00485337,0.00491763,0.00477994,0.00388899,0.00438446,0.00411127,0.00386854,0.00366924,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,rooftop_pv,0.0,0.0,0.0,5.26837E-6,1.33531E-5,2.9827E-5,5.31296E-5,8.3499E-5,9.91037E-5,1.3314E-4,1.74473E-4,2.24667E-4,2.92294E-4,3.62732E-4,4.41565E-4,5.16236E-4,5.91811E-4,6.47859E-4,6.77832E-4,6.47105E-4,5.00129E-4,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,wind,0.0,2.51994E-5,1.43992E-5,0.009684459199999999,0.0264228592,0.057850259200000004,0.10275065920000001,0.1550558592,0.21878756,0.2723914,0.31322130000000004,0.3367281,0.36908509999999994,0.39146590000000003,0.4278538,0.4704419,0.5212926000000001,0.5780524,0.629987,0.675744,0.710607,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,wind_storage,0.0,0.0,0.0,3.47916E-5,9.801720000000001E-5,2.241972E-4,4.127082E-4,6.428782E-4,9.352512000000001E-4,0.0011983936,0.0014132180000000002,0.0015575100000000002,0.001754218,0.001901289,0.0021248760000000004,0.002380661,0.0026773499999999998,0.003011583,0.0033366999999999997,0.003628445,0.003872531,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,CSP,0.0,0.0,0.0,1.03512E-6,8.09658E-6,3.193418E-5,7.585628E-5,1.4124428000000002E-4,2.2969118E-4,3.3215405999999996E-4,4.361536E-4,5.29377E-4,6.034499E-4,6.492619E-4,6.92504E-4,7.04044E-4,7.520579999999999E-4,8.20572E-4,8.569649999999999E-4,8.040651999999999E-4,7.225327E-4,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,CSP_storage,0.0,0.0,0.0,0.0,0.0,7.92451E-5,3.498961E-4,9.198071E-4,0.0017356480999999998,0.0027555781,0.0039223781,0.005062283,0.006010472,0.006591240999999999,0.00714729,0.00732776,0.00783657,0.008624119999999999,0.00960559,0.01063925,0.01173898,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,Gen_III,0.0,0.0,0.0,1.57771E-4,5.14982E-4,0.004819381,0.013535331000000001,0.026234900999999998,0.04048109,0.055102580000000005,0.069255459,0.08193454800000001,0.092874017,0.101963935,0.111732654,0.11939635400000001,0.1291306,0.13614585,0.1390172,0.13710306000000003,0.13389184,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,Gen_II_LWR,0.0304164,0.0406546,0.0435562,0.040252,0.0383641,0.0356104,0.0318421,0.0271119,0.021778,0.0164442,0.011714,0.0079457,0.00519198,0.00330405,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,PV,0.0,7.55997E-5,7.55997E-5,8.307577E-4,0.0046019777,0.0144928377,0.0295411377,0.0490386377,0.072538538,0.09762308,0.12005826000000001,0.13730350000000002,0.1490921,0.1548415,0.1616696,0.1625055,0.1738354,0.19232090000000002,0.21529730000000002,0.2390814,0.2568034,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,PV_storage,0.0,0.0,0.0,6.76853E-6,4.077303E-5,1.2977523E-4,2.6549123E-4,4.4004923000000003E-4,6.5241423E-4,8.771147E-4,0.0010798052000000002,0.0012343450000000002,0.0013402139999999997,0.001393995,0.001453425,0.0014623110000000002,0.0015631940000000002,0.001727189,0.0019366720000000002,0.002160884,0.002405335,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,4.43777E-4,0.001066869,0.001929095,0.003008189,0.004209185,0.005452333,0.006721583,0.007949718,0.009102170000000001,0.010450079000000001,0.011499526999999999,0.013150284,0.015049708000000002,0.016964481,0.018604061999999998,0.02031362,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,biomass (conv),0.0,9.54006E-4,0.00101159,5.40137E-4,0.001558343,0.00322795,0.0054706749999999995,0.008186563,0.01090122,0.013455274,0.0158185145,0.0179603938,0.0199003037,0.021597597500000003,0.023431882000000005,0.024439933,0.026506796,0.029248960000000004,0.03203203,0.03427253,0.03695448,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.0132365,0.030756199999999997,0.05119800000000001,0.0738731,0.09657389999999999,0.1180008,0.1384574,0.15720499999999998,0.17355310000000002,0.1917407,0.2066755,0.2262065,0.2349235,0.240095,0.24049979999999999,0.23880819999999997,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,coal (conv pul),0.561333,0.824519,0.870765,0.8535106,0.9300598,1.0406840000000002,1.1441301,1.2261419,1.2882894,1.3329768,1.3686502,1.4080644,1.4518933,1.4966987,1.5194980999999996,1.5411734,1.518718,1.4563856000000002,1.3830600000000002,1.3049581000000001,1.2370266,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,gas (CC),0.0,0.0,0.0,5.6627E-5,3.179048E-4,0.0011338693000000001,0.0026936721,0.0052389927,0.0088332369,0.013178349199999998,0.017910525599999998,0.022921722000000002,0.027834898,0.032307288,0.03726417,0.04086702,0.04591264,0.05210636,0.059374020000000007,0.0668713,0.07574568,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,gas (steam/CT),0.0,0.0,0.0,2.48375E-4,8.65424E-4,0.001990978,0.00322164,0.004368787,0.005289712,0.005925234000000001,0.006315054,0.0065247249999999994,0.006417539000000001,0.005942295999999999,0.005171974000000001,0.004269050999999999,0.0035813829999999996,0.0031756710000000006,0.003049187,0.0030736049999999997,0.003267598,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,geothermal,0.0,0.0,0.0,0.00134717,0.00532779,0.01099779,0.01554203,0.015539008,0.015539005000000002,0.015539,0.01553899,0.015538990000000003,0.015538999999999997,0.015539,0.015538989999999999,0.015538989999999999,0.015539,0.015539,0.015538989999999999,0.015539,0.015539,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,hydro,0.003636,0.0047952,0.0076968,0.007887,0.0080772,0.0082674,0.0084576,0.0086478,0.0090258,0.0094037,0.0097816,0.0101596,0.0105375,0.0109155,0.0112934,0.0116714,0.0120493,0.0124272,0.0128052,0.0131831,0.0131831,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,hydrogen cogen,0.0,0.0,0.0,0.0,5.79515E-5,1.11937E-4,1.8143E-4,2.67231E-4,3.67438E-4,4.92859E-4,6.34922E-4,7.0134E-4,7.8614E-4,8.76461E-4,9.45838E-4,0.0010327,0.00111558,0.00119726,0.00131017,0.00141086,0.00138447,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,refined liquids (CC),0.0,0.0,0.0,2.92679E-5,1.1162168E-4,2.8474115E-4,4.6993777999999994E-4,6.5531015E-4,8.3983092E-4,9.8152931E-4,0.0010869643999999999,0.00118134956,0.0012490447999999998,0.001273463,0.0013264737,0.001209586,9.645252E-4,0.0011269118,0.0010511815000000002,9.643907999999999E-4,9.290003E-4,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,refined liquids (steam/CT),0.0,0.0,7.09205E-4,3.790807E-4,4.369978E-4,5.487936000000001E-4,5.726855E-4,5.556105000000001E-4,5.326205E-4,4.999976E-4,4.6955740000000003E-4,4.4540620000000004E-4,4.0401910000000007E-4,3.4023440999999996E-4,2.4795739E-4,1.7277411000000002E-4,1.0381717E-4,8.968694000000002E-5,6.95898E-5,5.807222E-5,5.269915E-5,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,rooftop_pv,0.0,0.0,0.0,1.28607E-4,3.96398E-4,0.00112924,0.00235527,0.00428029,0.00691247,0.0102846,0.0145322,0.0191506,0.0245039,0.0299873,0.0347929,0.0392714,0.043487,0.0466975,0.0494822,0.0508551,0.0502134,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,wind,0.0,1.15199E-4,1.152E-4,0.00131125,0.0068143,0.0203926,0.040301199999999995,0.0652508,0.0941659,0.12376374999999999,0.14888389999999999,0.1661165,0.1762646,0.1793699,0.183479,0.1817176,0.1914795,0.20846389999999998,0.229709,0.2513908,0.2708214,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,wind_storage,0.0,0.0,0.0,4.46512E-6,2.7118120000000002E-5,8.920662E-5,1.8734542E-4,3.1952342E-4,4.8289142E-4,6.599073E-4,8.252883E-4,9.583758E-4,0.001053511,0.001103877,0.001159404,0.00117047,0.001253273,0.001386077,0.001552589,0.0017251480000000001,0.001889835,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,CSP,0.0,0.0,0.0,2.25203E-5,2.10564E-5,1.255413E-4,3.6182330000000004E-4,6.963073000000001E-4,0.0010992363,0.0015652630000000001,0.002038694,0.0025284599999999997,0.00309816,0.0034806510000000004,0.003937802,0.004448508,0.005260087,0.005642460000000001,0.006063708,0.006388523,0.006680663,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,CSP_storage,0.0,0.0,0.0,0.0,0.0,3.42468E-4,0.001798398,0.004713608,0.008430118,0.013244328,0.018217818,0.024047730000000003,0.030916280000000004,0.035420450000000006,0.0406698,0.046310489999999996,0.054957599999999995,0.05919121999999999,0.06404824,0.06788176,0.07146549999999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,Gen_III,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00641667,0.01867706,0.03332276,0.04890796,0.06695846,0.08108635,0.09623155,0.11191815,0.12939773999999998,0.14186894,0.15669943,0.16875692,0.1752091,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,PV,0.0,0.0,0.0,0.0018418,0.00172207,0.00663385,0.01570916,0.026890360000000002,0.038930660000000006,0.05076096,0.06325956,0.07373220999999999,0.084422,0.0905909,0.0984302,0.1051408,0.11139610000000001,0.1106442,0.10931290000000002,0.10802370000000001,0.10626350000000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,PV_storage,0.0,0.0,0.0,1.65075E-5,1.54344E-5,5.9626699999999996E-5,1.414705E-4,2.415695E-4,3.500225E-4,4.55999E-4,5.69105E-4,6.642158E-4,7.67348E-4,8.32304E-4,9.22988E-4,0.00103519,0.0012297190000000002,0.0013284120000000002,0.001446382,0.001542694,0.001637422,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,3.42495E-4,0.001114693,0.002211355,0.00348994,0.005043873,0.006540892,0.008421992,0.010947618000000001,0.013158984000000002,0.015802707,0.018801663,0.022472648,0.024839138,0.027661525,0.029596199999999996,0.031722190000000004,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,biomass (conv),1.28437E-4,1.46781E-4,1.53303E-4,8.989592E-4,7.100078000000001E-4,0.0024756485,0.005695828,0.009726068300000001,0.01366001,0.01788423792,0.021524755209999996,0.025844730530000002,0.03152945333,0.036067799910000004,0.041258645000000004,0.046621420000000004,0.053984109999999995,0.05749214,0.061935170000000005,0.06431968,0.06744674,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,coal (IGCC),0.0,0.0,0.0,0.0,0.0,1.21238E-4,3.79467E-4,7.46734E-4,0.001190175,0.0017493629999999999,0.002327418,0.0031025280000000002,0.004228989,0.00532086,0.006748974999999999,0.008534554,0.01090394,0.012768831000000001,0.015301348999999999,0.017547778,0.020297681,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,coal (conv pul),0.0,0.0,0.0,0.00146892,0.00137338,0.0029855899999999998,0.00561995,0.00879142,0.01209109,0.01581717,0.01932925,0.023675589999999996,0.02961499,0.035126910000000004,0.042100139999999994,0.049123509999999995,0.06025867,0.06808184,0.07841097,0.08757967000000001,0.09961916999999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,gas (CC),0.0,0.0,0.0,0.00292974,0.00273481,0.00947583,0.02403297,0.04505567,0.06867629,0.0951164,0.1184129,0.14420797000000002,0.17175863,0.19605522,0.2157918,0.22878820000000002,0.23899399999999996,0.23829740000000002,0.24077769999999998,0.241977,0.2430941,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,gas (steam/CT),0.0559019,0.0568119,0.0896734,0.0931954,0.0823383,0.0922141,0.09753711,0.09871387000000001,0.09500089999999999,0.08927743,0.08272352999999999,0.07746195,0.061975169999999996,0.05935275000000001,0.045744879999999995,0.034788629999999994,0.02603406,0.01989662,0.01625087,0.014362330000000001,0.01316544,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,geothermal,0.0,0.0,0.0,0.0051516,0.00481671,0.01502092,0.02900798,0.042415060000000004,0.05361568,0.05955755,0.06765343,0.06821057999999999,0.06793355000000001,0.06660579,0.06837506,0.06837499999999999,0.06837504999999999,0.06837486999999999,0.06837509,0.06837496,0.06833540999999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,hydro,0.135365,0.280561,0.279418,0.282905,0.267775,0.289879,0.293366,0.296853,0.303009,0.309166,0.315323,0.321479,0.327636,0.333792,0.339949,0.346105,0.352262,0.358418,0.364575,0.370731,0.370731,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,hydrogen cogen,0.0,0.0,0.0,0.0,7.56853E-4,0.00134125,0.00214144,0.00308349,0.00412833,0.00546746,0.00706637,0.00787977,0.00900526,0.0101441,0.0111078,0.0125914,0.0151016,0.0155797,0.0171093,0.0183606,0.0174838,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,refined liquids (CC),0.0,0.0,0.0,0.00647661,0.00465725,0.016737420000000003,0.03712802,0.059915350000000006,0.08098532,0.10256115999999998,0.11824951,0.13810859,0.16030858,0.17611831999999997,0.1907577,0.19492009999999996,0.18028799999999998,0.1834887,0.17469059999999997,0.16272270000000003,0.15341510000000003,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,refined liquids (steam/CT),0.0549622,0.0959904,0.110144,0.1116347,0.0965693,0.10419300000000001,0.10319105,0.09680149000000002,0.08718841,0.07679911,0.06707049999999999,0.05969534000000001,0.044771240000000004,0.04133826,0.028516830000000003,0.020896927,0.014625561000000002,0.011622362999999998,0.009327222,0.008067863,0.007221549,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,rooftop_pv,0.0,0.0,0.0,5.9248E-4,9.12802E-4,0.00188245,0.0034072,0.00555445,0.00830895,0.0118787,0.0166597,0.0221488,0.0286328,0.0354186,0.0409504,0.0451504,0.0454301,0.048107,0.0508485,0.0525402,0.0542882,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,wind,0.0,0.0,0.0,0.00345569,0.00323105,0.012194070000000001,0.02855587,0.04875167,0.06971907,0.08942268,0.11021588,0.1258548,0.1407204,0.1476211,0.1580513,0.1696802,0.18967979999999998,0.19607549999999999,0.20334959999999996,0.20902849999999998,0.2139551,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,wind_storage,0.0,0.0,0.0,1.57197E-5,1.46978E-5,6.3373E-5,1.65953E-4,3.08117E-4,4.6940700000000003E-4,6.440473E-4,8.263493E-4,0.001003167,0.001198791,0.0013217530000000002,0.001477299,0.0016473680000000002,0.0019025110000000002,0.002014442,0.002144246,0.0022476360000000003,0.002345218,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,CSP,0.0,0.0,0.0,3.66545E-6,1.435965E-5,4.389575E-5,9.712385E-5,1.7508355E-4,2.7412355E-4,3.915811E-4,5.180918999999999E-4,6.461117999999999E-4,8.005317E-4,9.530559999999999E-4,0.001124206,0.001344203,0.001644425,0.00180555,0.001992062,0.00213666,0.0022658189999999996,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,CSP_storage,0.0,0.0,0.0,0.0,0.0,9.81879E-5,4.261799E-4,0.0011056559,0.0020191969,0.0032127869,0.0046541169,0.006196219,0.008011527000000001,0.009715201,0.011613459999999999,0.01397649,0.01713153,0.01886242,0.0209164,0.02255036,0.024051669999999997,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,Gen_III,0.0,0.0,0.0,0.0,0.0,8.64642E-4,0.0027855709999999997,0.0057304899999999995,0.01072139,0.017654019,0.026049988,0.034251747,0.04351226500000001,0.052578083,0.062210141,0.0733548,0.08665624699999999,0.0949183,0.10365492000000001,0.11042816000000001,0.11542198999999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,PV,0.0,0.0,1.08005E-5,7.081995E-4,0.0021977095,0.0053939195,0.010150079499999999,0.0162127595,0.023086969000000002,0.03027629,0.037229830000000005,0.04355584,0.05110808,0.058683,0.06805069,0.08077797,0.09919092,0.10966340000000001,0.1222006,0.1327234,0.14260029999999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,PV_storage,0.0,0.0,0.0,6.25058E-6,1.968068E-5,4.844028E-5,9.133258E-5,1.4560838E-4,2.0762468E-4,2.720188E-4,3.348418E-4,3.915375E-4,4.5943720000000005E-4,5.284944E-4,6.117591000000001E-4,7.268394E-4,8.920873E-4,9.85187E-4,0.0010988,0.00119252,0.001282187,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,9.82069E-4,0.002175357,0.0035316339999999996,0.004867326999999999,0.006247483,0.007602543999999999,0.008982624,0.010708546999999999,0.012461327000000001,0.014311497000000001,0.016555681,0.019295461,0.020344999000000002,0.021764784,0.02272166,0.023971450000000002,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,biomass (conv),7.38011E-4,0.00187928,0.00589348,0.00803125,0.01098588,0.01434842,0.018017850000000002,0.02145943,0.02363358,0.02553992,0.027252529999999997,0.028899931,0.031543825,0.034068050999999995,0.03625168,0.03814867,0.040748660000000006,0.0405354,0.04175916999999999,0.04210503,0.04382406999999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,biomass cogen,0.0036131,0.00638438,0.0103109,0.0121454,0.0119189,0.0120743,0.0116298,0.0110204,0.0101523,0.00951359,0.00906965,0.00874368,0.00852984,0.0083068,0.00791744,0.00754891,0.00728091,0.00684875,0.0065149,0.0062054,0.00610916,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.00376633,0.008872350000000001,0.01500024,0.021514979999999996,0.028456040000000002,0.03549811,0.04285805,0.05172596,0.06088554,0.0710225,0.08313983,0.09792032,0.10441283999999999,0.11153788,0.11655625,0.12146789,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,coal (conv pul),0.0234905,0.0288587,0.0638058,0.097061,0.132297,0.17537699999999998,0.22194440000000001,0.26792910000000003,0.3085897,0.34702559999999993,0.382881,0.4186297,0.46135251,0.50482388,0.549481,0.5690212999999998,0.600488,0.6016166,0.6063443,0.6060541,0.6124651999999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,gas (CC),9.89479E-4,0.0455515,0.0115326,0.029202,0.053140099999999996,0.09951343,0.1691943,0.26253992,0.36602144,0.47685902,0.58556804,0.69160409,0.79061084,0.8779743210000002,0.9444622,1.0006759,1.0510599999999999,1.0413423000000002,1.0404390000000001,1.0276669999999999,1.0162494,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,gas (steam/CT),0.00377338,0.0350843,0.0949676,0.1302727,0.1665223,0.21370850000000002,0.2559132,0.2848573,0.29676860000000005,0.2984787,0.29372570000000003,0.2861007,0.24521212000000003,0.20712324000000001,0.16006132,0.12086177,0.09099085999999999,0.06940241,0.05713003999999999,0.049191599999999995,0.04484451,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,gas cogen,0.0,0.0,2.55884E-4,3.34878E-4,2.93162E-4,2.77536E-4,2.46642E-4,2.16137E-4,1.90162E-4,1.70549E-4,1.55145E-4,1.42495E-4,1.32252E-4,1.20691E-4,1.11264E-4,1.02632E-4,9.60474E-5,8.77212E-5,8.28575E-5,7.66921E-5,7.33258E-5,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,geothermal,0.0,0.0,0.0,0.00219054,0.0063293099999999995,0.01445804,0.02541716,0.03801371,0.050551120000000005,0.06118282,0.06972922,0.0748379,0.07989569999999999,0.084071,0.0900705,0.09886210000000001,0.1112548,0.1157246,0.1208518,0.12392500000000001,0.1264638,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,hydro,0.215035,0.400529,0.415487,0.446642,0.478199,0.509757,0.541315,0.572873,0.628591,0.684309,0.740027,0.795745,0.851463,0.907181,0.962899,1.01862,1.07434,1.13005,1.18577,1.24149,1.24149,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,hydrogen cogen,0.0,0.0,0.0,0.0,0.00297215,0.00519959,0.0077846,0.0105833,0.0137147,0.017652,0.0220487,0.0240987,0.0269535,0.0298446,0.0321677,0.0350514,0.0383856,0.0400353,0.042712,0.0449177,0.0446478,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,refined liquids (CC),0.0,0.0,0.0,0.0174073,0.0369967,0.0751095,0.11815429,0.158252,0.18845239,0.21336571,0.23045819,0.24671652,0.26887256000000004,0.27798,0.2837366,0.2737825,0.21760820000000003,0.21466709999999997,0.18391249999999998,0.15136840000000001,0.13663034999999998,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,refined liquids (steam/CT),0.0240485,0.0371498,0.0619949,0.0827103,0.1017342,0.1241144,0.1327561,0.13029469999999999,0.1241699,0.11709203000000001,0.1105112,0.10580380000000002,0.08719110000000001,0.07098104,0.05204177999999999,0.03604293,0.021934759999999998,0.01757827,0.01290325,0.009931886000000001,0.008409465,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,refined liquids cogen,0.0,0.0,0.00306942,0.00328852,0.00304237,0.00301777,0.0027988,0.00259199,0.0025257,0.00248016,0.00245212,0.00246731,0.00252067,0.00251993,0.00252492,0.00243048,0.0019971,0.00217365,0.00200585,0.00185284,0.00177978,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,rooftop_pv,0.0,0.0,0.0,2.73816E-4,6.88239E-4,0.00136385,0.0022145,0.00326859,0.00459341,0.00624699,0.00833313,0.0106967,0.0136309,0.0165799,0.019461,0.0221252,0.024861,0.0261439,0.0267897,0.0269651,0.0288776,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,wind,0.0,2.88011E-5,0.00145447,0.00408978,0.00870079,0.01821981,0.03242461,0.05070671,0.06970754,0.09020323,0.11024402,0.1276999,0.14761549999999998,0.1663847,0.18859950000000003,0.2183179,0.26047180000000003,0.2818788,0.30708589999999997,0.32663620000000004,0.3442772,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,wind_storage,0.0,0.0,0.0,9.01827E-6,2.537887E-5,6.101447E-5,1.1645167E-4,1.9137067E-4,2.7854487000000003E-4,3.7117460000000004E-4,4.6679599999999995E-4,5.572114E-4,6.644732E-4,7.701052000000001E-4,8.96605E-4,0.0010663769999999999,0.001307356,0.001442337,0.00160578,0.001740017,0.001867171,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,CSP,0.0,0.0,0.0,1.72579E-5,7.06092E-5,1.898592E-4,3.991152E-4,7.105372E-4,0.0011565472,0.0017286143,0.002406221,0.003224017,0.004308591,0.005596479,0.007069048999999999,0.008817854,0.011106846,0.01309946,0.015586450000000002,0.018093210000000002,0.02055139,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,CSP_storage,0.0,0.0,0.0,0.0,0.0,3.9642E-4,0.00168583,0.00440004,0.00851393,0.014321219999999999,0.02199973,0.031358540000000004,0.04342363,0.05724632,0.07310333,0.09171684,0.11623112999999999,0.13861619999999997,0.16835179999999997,0.2000694,0.23260019999999998,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,Gen_III,0.0,0.0,0.0,0.00243011,0.00516214,0.01170214,0.02270793,0.03838142,0.0575899,0.0804324,0.10660278999999999,0.13522687,0.16917085,0.20624142999999998,0.24657361,0.28908571,0.33875331000000003,0.3779404,0.4202797999999999,0.4588479,0.4949680000000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,PV,0.0,5.012E-4,5.476E-4,0.00264255,0.007383560000000001,0.015616860000000002,0.027546460000000002,0.04299816,0.062232659999999995,0.08462031,0.10857750000000002,0.1364763,0.1734748,0.2183761,0.2720374,0.3358708,0.4053105,0.4434851,0.4650882,0.4689584,0.45943310000000004,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,PV_storage,0.0,0.0,0.0,1.87767E-5,6.152459999999999E-5,1.356094E-4,2.431954E-4,3.8152840000000004E-4,5.597174000000001E-4,7.602457000000001E-4,9.766908E-4,0.001226877,0.0015597500000000002,0.001967471,0.002447663,0.0030420259999999998,0.003862073,0.0046239620000000006,0.005653432999999999,0.006770969,0.007937358,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,4.58316E-4,0.001197609,0.0022765010000000002,0.0037475990000000003,0.005672587,0.008067984,0.011167336,0.015526402999999998,0.020970526,0.027428017,0.035295557000000005,0.045275487,0.054098605999999994,0.065300293,0.07685801,0.08925302,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,biomass (conv),5.77679E-5,7.19828E-6,0.0,6.66619E-4,0.002086667,0.0039242439999999995,0.006680332000000001,0.010179747,0.014049393,0.018482557,0.023569019,0.029825596000000003,0.038784133,0.049398549,0.061049181999999994,0.07492779899999999,0.092228782,0.10676227,0.12686884,0.14741764000000002,0.17026371,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,coal (IGCC),0.0,0.0,0.0,0.0,0.0,4.2147E-4,0.001038638,0.0018719320000000002,0.00296884,0.004360525,0.006072494,0.008283726,0.011388512,0.015376425,0.020434074,0.026970002,0.035732475,0.044025579,0.05510833,0.06767067,0.08191262,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,coal (conv pul),0.0,0.00107293,0.00306896,0.00669796,0.01125862,0.016336459999999997,0.02236652,0.02922854,0.03701464,0.04591224000000001,0.05598062300000001,0.068114802,0.084291376,0.10429016000000002,0.1287537,0.15597635,0.19246354999999998,0.22817146,0.27622347999999997,0.33227315,0.39779201999999997,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,gas (CC),0.00718272,0.0264569,0.0,0.0210076,0.0604184,0.1349621,0.2576731,0.4366608,0.66674,0.9358839,1.2261254,1.5413068,1.8841488,2.2293969000000002,2.5555149999999998,2.860554,3.1622259999999995,3.342378,3.555303,3.7431250000000005,3.898848,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,gas (steam/CT),0.0162713,0.059822,0.139214,0.2067688,0.2882593,0.37331119999999995,0.44770129999999997,0.4979617,0.5223687,0.5296694,0.5264179999999999,0.5195994,0.458539,0.39374229000000005,0.3260719,0.2674686,0.2238178,0.19058909999999998,0.174524,0.165971,0.16272889999999998,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,geothermal,0.0,0.0,0.0,0.00447888,0.01314396,0.02572343,0.04057346,0.05617825,0.07151309,0.08244639000000001,0.0898648,0.0955953,0.099719,0.099719,0.0997189,0.0997191,0.099719,0.099719,0.099719,0.09971899999999999,0.099719,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,hydro,0.0268079,0.0463089,0.0710383,0.0749133,0.0787882,0.0826631,0.0865381,0.090413,0.102136,0.113859,0.125581,0.137304,0.149027,0.16075,0.172473,0.184196,0.195918,0.207641,0.219364,0.231087,0.231087,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,hydrogen cogen,0.0,0.0,0.0,0.0,0.00157706,0.00323016,0.00563447,0.00879905,0.013096,0.0192965,0.0274803,0.0343467,0.0438949,0.055134,0.0670142,0.0815536,0.0993306,0.114813,0.133648,0.151843,0.158485,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,refined liquids (CC),0.0,0.0,0.0,0.0143374,0.0327248,0.05946373,0.09022516,0.11943825999999999,0.14842634,0.17510745,0.19934374,0.22810805,0.26496114,0.2941508,0.31918329999999995,0.3230199,0.26855019999999996,0.29243379999999997,0.2640025,0.2292372,0.2105398,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,refined liquids (steam/CT),0.00879918,0.0428959,0.0412827,0.05889,0.07721,0.09201050000000001,0.09733,0.09455455,0.09105513999999999,0.0874983,0.08497187000000002,0.08439698,0.07280365999999999,0.06093748599999999,0.04840015,0.03670135,0.02484705,0.021976370000000002,0.01744183,0.014243830000000002,0.012323949,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,rooftop_pv,0.0,0.0,0.0,1.45393E-4,4.18165E-4,8.62637E-4,0.00149144,0.00235406,0.00360865,0.00541657,0.00806516,0.0117166,0.0170171,0.0235246,0.0313514,0.0398942,0.0458769,0.0463875,0.0434157,0.0427023,0.0469342,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,wind,0.0,4.92E-5,1.312E-4,0.00411994,0.013788809999999999,0.03218911,0.06117691,0.10123381000000001,0.15298141,0.21346457,0.2797948,0.35399949999999997,0.4468147,0.5522168000000001,0.669434,0.8039621000000001,0.9702929999999999,1.09734,1.2400539999999998,1.371288,1.490626,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,wind_storage,0.0,0.0,0.0,1.25619E-5,4.36377E-5,1.050859E-4,2.048604E-4,3.487424E-4,5.429614E-4,7.805085E-4,0.0010567327,0.0013857844999999999,0.001819229,0.0023398850000000003,0.002955714,0.003701495,0.004665165,0.005475305,0.006446826,0.007407568,0.00834963,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,CSP,0.0,0.0,0.0,8.51203E-5,3.213753E-4,5.809332999999999E-4,9.604053E-4,0.0014085872999999999,0.0020027663,0.002540117,0.0028645840000000003,0.003040335,0.003192538,0.0032109980000000005,0.0032786890000000004,0.003902108,0.004903805999999999,0.005425271,0.006087985999999999,0.006749994,0.007263414,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,CSP_storage,0.0,0.0,0.0,0.0,0.0,6.91452E-4,0.0025652519999999996,0.005695502,0.010087432,0.015002922,0.019723142,0.022663329999999995,0.02518718,0.0259234,0.027051060000000002,0.03254507,0.04098095,0.04545992,0.05125427,0.057074230000000004,0.061726539999999996,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,Gen_III,0.0,0.0,0.0,0.0943028,0.18521130000000002,0.2551899,0.3354691,0.4156588,0.49442909999999995,0.5594593,0.6073322999999999,0.6384943000000001,0.6711893,0.6964733,0.7288238,0.6899928999999999,0.6632322000000002,0.6297875,0.5919718999999999,0.5495109,0.5078248000000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,Gen_II_LWR,0.1904,0.528419,0.534944,0.494364,0.471177,0.437356,0.391075,0.33298,0.267471,0.201962,0.143868,0.0975869,0.0637665,0.0405795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,PV,3.60012E-6,5.40015E-5,0.00277919,0.003681907,0.005516097,0.007081737,0.008971787,0.010914597,0.010437887,0.01179448,0.01188368,0.011784580000000001,0.0116513,0.01124763,0.011164509999999999,0.01310213,0.01652601,0.01840579,0.02084586,0.02335935,0.025426729999999998,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,PV_storage,0.0,0.0,0.0,8.09049E-6,2.4627789999999998E-5,3.871489E-5,5.575918999999999E-5,7.315138999999999E-5,9.388999E-5,1.060362E-4,1.068692E-4,1.059427E-4,1.047109E-4,1.0123740000000001E-4,1.003364E-4,1.179108E-4,1.486233E-4,1.6534430000000002E-4,1.874356E-4,2.099232E-4,2.2862850000000002E-4,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,2.19504E-4,5.3694E-4,9.469249999999999E-4,0.0014954629999999998,0.002067031,0.0025798410000000003,0.0029549330000000003,0.003457841,0.0038848090000000004,0.004514705,0.005788031,0.0073275729999999996,0.008021801,0.008996206999999999,0.009789397000000002,0.010523573,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,biomass (conv),0.0,1.62005E-4,0.0012456,0.001529754,0.002518559,0.003035001,0.004140981,0.005368121,0.006676359999999999,0.007785930999999999,0.008620267000000001,0.009068897,0.009919987,0.010545602900000001,0.011470377,0.013602776000000002,0.015740280000000002,0.016363968,0.017856399,0.018936901000000003,0.019979891,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,biomass cogen,0.0,4.28023E-4,8.23576E-4,8.96423E-4,8.91978E-4,9.67819E-4,0.00100722,0.0010321,9.83685E-4,9.33292E-4,8.85551E-4,8.46722E-4,8.12287E-4,7.80566E-4,7.30179E-4,6.85043E-4,6.48002E-4,6.13048E-4,5.88173E-4,5.6563E-4,5.3872E-4,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.00652999,0.01506734,0.02445518,0.035425979999999996,0.04584846,0.054546040000000004,0.06072451,0.06764656,0.07329933,0.08084367999999999,0.09423416,0.11010187999999999,0.11274805,0.11515309000000001,0.11554534999999999,0.11424777,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,coal (conv pul),0.0423734,0.482673,0.721766,0.774161,0.872089,0.9081462,0.9328080000000001,0.9355082000000001,0.9287738,0.9098567000000001,0.8843349999999999,0.8565552000000001,0.8474359,0.8446958,0.8268006999999998,0.7832082,0.7285537999999999,0.6900198,0.6537534,0.6188602999999999,0.5836912,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,coal cogen,0.0211961,0.0529509,0.067626,0.0780908,0.0669305,0.0739333,0.0757977,0.0771854,0.0754918,0.073349,0.0711978,0.070419,0.0699087,0.0686112,0.067032,0.0652948,0.0641961,0.0605605,0.0574052,0.0543948,0.0521616,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,gas (CC),0.0269822,0.20285,0.255413,0.2971098,0.36023819999999995,0.3976805,0.4332325,0.45907370000000003,0.4804385,0.49228340000000004,0.4958582000000001,0.4929479,0.43457060000000003,0.364276,0.3104451,0.28433800000000004,0.2664282,0.2341666,0.21575799999999998,0.20644909999999997,0.20882240000000002,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,gas (steam/CT),0.0075934,0.0102148,0.110062,0.09242717,0.08953997,0.08607034,0.08003084999999999,0.07151587999999999,0.06107657,0.050520050000000004,0.04103401,0.033377029999999995,0.025745232,0.019393188999999998,0.012286838999999999,0.011200734,0.010466221000000001,0.00911547,0.008585829,0.008308314,0.008458453,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,gas cogen,0.0,0.0111745,0.00791079,0.00874281,0.00803201,0.00853712,0.00857062,0.00841625,0.00778334,0.00710744,0.00642114,0.0058229,0.00526458,0.00470334,0.00424071,0.00384976,0.00354952,0.00330544,0.00321217,0.00306726,0.00288859,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,hydro,0.0228996,0.0132228,0.0139644,0.0151472,0.0170392,0.0189311,0.0208231,0.0227151,0.0258792,0.0290433,0.0322074,0.0353714,0.0385355,0.0416996,0.0448637,0.0480278,0.0511919,0.054356,0.0575201,0.0606842,0.0606842,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,hydrogen cogen,0.0,0.0,0.0,0.0,0.00260634,0.00456859,0.00698499,0.00979063,0.0126869,0.0161124,0.0196311,0.0209057,0.0226489,0.0244284,0.025639,0.0273338,0.029239,0.0305671,0.0328296,0.0348275,0.0333233,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,refined liquids (CC),0.0,0.0,0.0,0.00263192,0.006083,0.008250861,0.012383207,0.016334403,0.021165003,0.024240847000000003,0.025652068,0.025902670000000003,0.027778019999999994,0.02742274,0.029241999999999997,0.03240647000000001,0.02849534,0.028583900000000002,0.02722274,0.02532491,0.02481224,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,refined liquids (steam/CT),0.0678875,0.0757497,0.0538667,0.042687,0.042822660000000005,0.04126167,0.03827733,0.03412933,0.029887759999999992,0.02545035,0.021493609000000004,0.018564382,0.014178399,0.009908421999999998,0.005828344000000001,0.00417171,0.0026843579999999995,0.002129388,0.001648826,0.001410008,0.0013424939,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,refined liquids cogen,0.0,0.017814,0.0142928,0.0141252,0.0133953,0.013333,0.0127383,0.0121707,0.0117969,0.011322,0.0107996,0.0104759,0.0103297,0.0100244,0.00977929,0.00916451,0.00724442,0.00787457,0.00721075,0.00663796,0.00615276,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,rooftop_pv,0.0,0.0,0.0,5.19536E-5,1.3622E-4,3.02501E-4,5.38983E-4,8.64764E-4,0.00124,0.0016668,0.00214306,0.00264956,0.00320649,0.00370692,0.00412729,0.00446651,0.00479667,0.00491353,0.0049633,0.00494611,0.00494926,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,wind,0.0,4.68013E-4,0.00294119,0.00423253,0.00683257,0.00950841,0.01326588,0.017605910000000002,0.01997993,0.023971000000000003,0.026000270000000002,0.026789050000000002,0.027152690000000004,0.026415760000000003,0.026196380000000002,0.03025352,0.036994410000000005,0.040397890000000006,0.04470733,0.04899506000000001,0.05207424000000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,wind_storage,0.0,0.0,0.0,7.09212E-6,2.264732E-5,3.9895320000000005E-5,6.577002E-5,9.778052000000001E-5,1.3869242E-4,1.7417019999999998E-4,1.972086E-4,2.0952769999999998E-4,2.1922870000000002E-4,2.18531E-4,2.2246940000000002E-4,2.649363E-4,3.344307E-4,3.7197770000000003E-4,4.2106009999999994E-4,4.7079899999999994E-4,5.116875E-4,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,CSP,0.0,0.0,0.0,5.16548E-5,2.020058E-4,5.084128E-4,0.0010233668,0.0017527768,0.0027779368000000002,0.003977692,0.005239051,0.006503014,0.008303379999999999,0.01015446,0.01211099,0.01461807,0.01773231,0.01998505,0.022199220000000002,0.02397622,0.025293369999999996,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,CSP_storage,0.0,0.0,0.0,0.0,0.0,0.00101858,0.00419165,0.010548829999999999,0.02000463,0.03233613,0.047165729999999996,0.06249565,0.08322018,0.1035439,0.1251169,0.1519714,0.18469799999999997,0.20879119999999998,0.23312529999999998,0.2531115,0.26851030000000004,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,Gen_III,0.0,0.0,0.0,0.00787274,0.01689218,0.03412606,0.06094076,0.09690144,0.14082562,0.1896775,0.24112228,0.28961295000000004,0.35086420999999995,0.41101857,0.47388514,0.53849371,0.610488,0.6574738999999999,0.7022668999999999,0.7320053,0.7503181,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,PV,0.0,2.509E-4,3.334E-4,0.0039242899999999995,0.01157565,0.023690549999999998,0.04050275,0.06122845,0.08693435,0.11311576000000001,0.1372054,0.15976839999999998,0.19310159999999998,0.2281647,0.2676596,0.32087530000000003,0.3906643,0.44363070000000004,0.49780730000000006,0.5445755,0.5818143,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,PV_storage,0.0,0.0,0.0,3.2184E-5,1.011719E-4,2.1018190000000002E-4,3.6179790000000006E-4,5.473429E-4,7.818889E-4,0.0010163869,0.001234065,0.0014362629999999997,0.00173602,0.0020550029999999997,0.002406255,0.0028872609999999995,0.003513591,0.003985051,0.004475902,0.004892718000000001,0.0052310130000000005,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,0.00405599,0.00829652,0.01328054,0.0190037,0.025010859999999996,0.031120000000000002,0.037297659999999996,0.04664844,0.05615887,0.06624418,0.07856756,0.09249883,0.10116116,0.11131077999999998,0.11953404000000001,0.12682745,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,biomass (conv),0.00220873,0.00903599,0.0205776,0.021556182,0.032809637,0.042061433999999995,0.055469613,0.06890790299999999,0.08030186,0.09038285200000001,0.10000078300000001,0.1091518139,0.126903319,0.14327825619999998,0.1587154,0.17325980000000002,0.18863913000000002,0.19764071,0.2119662,0.22272219999999998,0.23362790000000003,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.0158529,0.0370097,0.0626974,0.0934358,0.12659120000000001,0.16052840000000002,0.1949371,0.2413857,0.2895953,0.3421823,0.4049695000000001,0.4768933,0.5189082,0.5638846,0.5991152000000001,0.626259,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,coal (conv pul),0.104596,0.279376,0.448595,0.614718,0.798826,0.968742,1.145759,1.318865,1.4926730000000001,1.658696,1.816212,1.9703784999999998,2.1869590999999997,2.4109032999999997,2.6336899999999996,2.731991,2.866461,2.9402880000000002,3.0316479999999997,3.097435,3.146744,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,gas (CC),0.0449317,0.556474,0.456895,0.6723049999999999,0.923608,1.224967,1.5895860000000002,2.014754,2.501625,3.00615,3.4975060000000004,3.9627499,4.3125059,4.6206935,4.858935000000001,5.120141,5.356122000000001,5.359444000000001,5.406838,5.403175,5.381213000000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,gas (steam/CT),0.0446902,0.251628,0.603728,0.658702,0.779398,0.901443,1.003385,1.063552,1.082516,1.0695350000000001,1.0391671,1.0039784,0.867115,0.7357333,0.5957658,0.4875844,0.3990489,0.32446230000000004,0.2809174,0.2522723,0.2349654,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,gas cogen,0.0,0.00126484,0.00152089,0.00213067,0.00246135,0.00285458,0.003104,0.00324443,0.00330359,0.00333703,0.00335256,0.00334215,0.00335815,0.00331245,0.00328866,0.00325226,0.00324747,0.00316756,0.0031875,0.00314715,0.00309169,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,geothermal,0.0196812,0.0356543,0.0357516,0.0559746,0.0792256,0.106244,0.1355041,0.16401770000000002,0.1645459,0.17866459999999998,0.18896510000000002,0.1956633,0.20845370000000002,0.2196744,0.22906300000000002,0.233673,0.2336729,0.23367300000000002,0.23367300000000002,0.2336731,0.23368060000000002,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,hydro,0.141032,0.19957,0.254132,0.26494,0.275747,0.286555,0.297363,0.30817,0.338521,0.368871,0.399221,0.429571,0.459921,0.490271,0.520621,0.550971,0.581321,0.611671,0.642021,0.672371,0.672371,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,hydrogen cogen,0.0,0.0,0.0,0.0,8.85608E-4,0.00173023,0.00290295,0.00438359,0.00622224,0.00864641,0.0115421,0.0133179,0.0157413,0.0184493,0.0210965,0.0243607,0.0282263,0.0311903,0.0352486,0.0393605,0.0401499,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,refined liquids (CC),0.0,0.0,0.0,0.0163517,0.030608089999999998,0.05085436,0.07481081,0.09695903,0.11963076,0.13569527999999997,0.14715774,0.15861226,0.18647718000000002,0.19954504,0.2129069,0.21549430000000003,0.17478540000000004,0.1853865,0.16607960000000002,0.14429150000000002,0.13302317,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,refined liquids (steam/CT),0.193341,0.11442,0.101648,0.0854003,0.0943118,0.10027860000000001,0.0978363,0.0897364,0.08339369,0.07723284,0.07250780000000001,0.07022833,0.05910775,0.04815118000000001,0.036474110000000004,0.02697899,0.01732253,0.014859085999999999,0.011442123,0.009272097000000002,0.008103324,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,rooftop_pv,0.0,0.0,0.0,2.03832E-4,6.415E-4,0.0014958,0.00284151,0.00481464,0.0076494,0.0115515,0.0169012,0.0237826,0.033256,0.0442071,0.056769,0.0700449,0.0850227,0.0965723,0.106476,0.115642,0.128656,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,wind,0.0,8.32999E-5,2.845E-4,0.00630074,0.01752474,0.03511464,0.059613440000000004,0.08983974,0.12554354,0.15897830000000002,0.1888039,0.21364,0.2472603,0.2786261,0.31091810000000003,0.35365290000000005,0.40748100000000004,0.44307959999999996,0.4752726,0.4996968,0.5158379,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,wind_storage,0.0,0.0,0.0,3.32989E-5,1.070161E-4,2.418241E-4,4.552491E-4,7.518901E-4,0.0011438290999999999,0.0015754332,0.002019163,0.002449442,0.003052574,0.0036646789999999997,0.00432892,0.005198077,0.00630024,0.0071172729999999995,0.007949316000000001,0.00864443,0.00919263,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,CSP,0.0,0.0,0.0,2.52877E-4,5.99495E-4,9.890020000000001E-4,0.001515916,0.002173514,0.003016329,0.0036485050000000007,0.0040810199999999994,0.004332818,0.006284034,0.007530466,0.008716241,0.012678797999999998,0.015391835,0.017042719999999997,0.017379739999999998,0.017928339999999997,0.01823498,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,CSP_storage,0.0,0.0,0.0,0.0,0.0,3.78301E-4,0.001326893,0.003001383,0.005272663,0.007820783000000001,0.010212053000000002,0.011784382000000001,0.01830893,0.0223863,0.02628286,0.03850144,0.04683097,0.0519647,0.05324988,0.05517239,0.05637326,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,Gen_III,0.0,0.0,0.0,0.00300779,0.00449336,0.00649753,0.00934625,0.012996669999999998,0.01710351,0.021061609999999998,0.024337949999999997,0.02663878,0.034277789999999995,0.039457,0.04444933,0.05236905,0.05819656,0.06070117,0.0630777,0.06377738999999999,0.06365973,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,Gen_II_LWR,0.118319,0.143918,0.149865,0.138496,0.132,0.122525,0.109559,0.0932843,0.074932,0.0565797,0.0403045,0.0273389,0.0178641,0.0113683,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,PV,0.0,3.60046E-6,8.28002E-5,8.278062E-4,0.0015753732,0.0022280672,0.0029571441999999997,0.0037490602,0.004573569,0.004720987,0.004715889,0.0046634120000000005,0.006209124999999999,0.007161889,0.0081443,0.011788475999999999,0.014366317,0.0159933,0.01646659,0.0171685,0.01764504,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,PV_storage,0.0,0.0,0.0,6.67696E-6,1.341704E-5,1.928971E-5,2.586437E-5,3.295357E-5,4.112566E-5,4.2442080000000003E-5,4.240719E-5,4.192074E-5,5.5820980000000005E-5,6.450898E-5,7.322779E-5,1.0610501000000002E-4,1.2925572E-4,1.437574E-4,1.481015E-4,1.543026E-4,1.5868679999999998E-4,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,5.26273E-4,9.760610000000001E-4,0.0015063719999999997,0.002095328,0.002641936,0.003071917,0.003377544,0.004877454,0.005761549,0.006677281,0.009082574,0.010415248,0.010969389,0.011775575,0.012293811,0.012677108,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,biomass (conv),0.0,0.0118311,0.0131472,0.012087569999999999,0.01135149,0.011515210000000001,0.012717599999999999,0.013815570000000003,0.01427478,0.014521540000000001,0.014558406999999999,0.014374349,0.01735837,0.018423474,0.019300275000000002,0.021292252,0.021399472000000003,0.021508568999999998,0.022537275,0.022999902000000003,0.023356591,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.00451957,0.0097363,0.01561191,0.02214839,0.028293520000000003,0.03325372,0.03696589,0.05005939,0.059374659999999996,0.0686699,0.08953899999999998,0.10369281,0.10791714999999999,0.11293218,0.11546444,0.11651292,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,coal (conv pul),0.07806,0.333201,0.340766,0.502993,0.5832096,0.6181992,0.6419486,0.6556949999999999,0.6626244,0.6618639,0.6550134999999999,0.6463631000000001,0.6938684000000002,0.7261292,0.7456811,0.6567638,0.6282591000000001,0.6128436,0.6071486,0.5961046000000001,0.5839000000000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,coal cogen,0.0100818,0.11292,0.11021,0.0715114,0.0721461,0.0788714,0.0818944,0.0852642,0.0892867,0.0936586,0.0982953,0.102619,0.106681,0.111606,0.116404,0.119544,0.126338,0.128749,0.13052,0.132975,0.136639,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,gas (CC),0.00209861,0.11464,0.124031,0.2519,0.3142714,0.3532737,0.3872184,0.41647300000000004,0.4414101,0.45889519999999995,0.46839869999999995,0.47243770000000007,0.3784794,0.33644882000000004,0.30996359999999995,0.32788090000000003,0.32463910000000007,0.3081808,0.303155,0.3021814,0.30622829999999995,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,gas (steam/CT),0.00162746,0.0156036,0.0805969,0.06676699,0.06561677,0.0639358,0.06008239,0.05455086,0.04769282,0.04068695,0.03423938,0.028903001999999997,0.021868446,0.017572086,0.012745226,0.013634311000000001,0.013167061,0.012311088,0.012176483999999998,0.012053623,0.012055336,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,gas cogen,7.51783E-4,0.00285039,0.001802,0.00166997,0.00172432,0.00186381,0.00192145,0.00195721,0.00193976,0.00190913,0.00186133,0.00178917,0.00170965,0.00163587,0.00156857,0.00149496,0.00145295,0.00141508,0.00141841,0.00139673,0.00134598,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,geothermal,1.08002E-5,0.0,0.0,0.0021916,0.00333693,0.003461025,0.0034622470000000003,0.0034610019999999995,0.0034609989999999998,0.003461004,0.0034609999999999997,0.0034610010000000004,0.003461005,0.003461001,0.003460998,0.0034609973,0.0034610049999999996,0.003461004,0.003460998,0.003461003,0.003460996,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,hydro,0.0229716,0.0143496,0.0150984,0.0154475,0.0157965,0.0161456,0.0164946,0.0168437,0.0178996,0.0189556,0.0200116,0.0210676,0.0221236,0.0231796,0.0242355,0.0252915,0.0263475,0.0274035,0.0284595,0.0295155,0.0295155,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,hydrogen cogen,0.0,0.0,0.0,0.0,2.37329E-5,4.13566E-5,6.3399E-5,9.00047E-5,1.20788E-4,1.60166E-4,2.05023E-4,2.26997E-4,2.56033E-4,2.90461E-4,3.20555E-4,3.57717E-4,4.03306E-4,4.45433E-4,5.02363E-4,5.612E-4,5.64577E-4,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,refined liquids (CC),0.0,0.0,0.0,0.00568061,0.00602967,0.00716534,0.00934264,0.011707410000000001,0.014426910000000001,0.0161811,0.016891260999999998,0.017230181,0.02766095,0.02769265,0.03038556,0.04263716,0.03379235,0.03628413,0.03629016,0.03461159,0.03396892,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,refined liquids (steam/CT),0.0780744,0.0395547,0.0298225,0.028768299999999997,0.025423249999999998,0.024286250000000002,0.022327200000000002,0.02001344,0.018284325,0.016600951,0.015136032,0.014066455,0.00920604,0.006604151999999999,0.004449038000000001,0.003750353,0.0026210960000000003,0.002427197,0.00216163,0.002019153,0.0019809719999999997,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,refined liquids cogen,0.00623675,0.0154824,0.00922986,0.00709939,0.00661075,0.00652124,0.00621445,0.00594595,0.00590812,0.00590454,0.00592883,0.00599396,0.00612875,0.00623618,0.00635526,0.00622505,0.00521711,0.00596009,0.00576004,0.00558768,0.00543754,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,rooftop_pv,0.0,0.0,0.0,1.11676E-5,3.54646E-5,8.2034E-5,1.48197E-4,2.4205E-4,3.66442E-4,5.19052E-4,6.98669E-4,8.90673E-4,0.00110854,0.0013662,0.00163058,0.00185939,0.00213342,0.00234327,0.00249684,0.00263245,0.00279842,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,wind,0.0,3.27642E-4,0.00351361,0.00738211,0.010420229999999999,0.01325459,0.016689700000000002,0.02066722,0.02178441,0.02253823,0.02341799,0.02366855,0.03087724,0.03463373,0.03788941,0.049953990000000004,0.057299010000000004,0.0613275,0.05954584,0.059565709999999994,0.05911664999999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,wind_storage,0.0,0.0,0.0,2.01946E-5,3.7336500000000004E-5,5.4602300000000004E-5,7.70197E-5,1.050756E-4,1.388869E-4,1.5324419999999999E-4,1.66245E-4,1.732087E-4,2.424939E-4,2.846215E-4,3.2580969999999995E-4,4.705858E-4,5.704260999999999E-4,6.321444E-4,6.467128E-4,6.699507E-4,6.849902E-4,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,CSP,0.0023869,0.00214559,0.00316435,0.003430464,0.003822904,0.004443784,0.005447404,0.006822694000000001,0.005890734,0.00807028,0.010271510000000001,0.01233689,0.015404109999999999,0.017654760000000002,0.01999853,0.024299260000000003,0.027592639999999995,0.030182209999999998,0.03200112,0.03409739,0.03596807999999999,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,CSP_storage,0.0,0.0,0.0,0.0,0.0,0.002064,0.0082483,0.0202349,0.0408262,0.0649264,0.0921726,0.1180747,0.1539085,0.1794131,0.20644440000000003,0.2526835,0.2872965,0.3151407,0.3358402,0.35963320000000004,0.3816387,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,Gen_III,0.0,0.0,0.0,0.40138,0.647928,0.9006539999999998,1.204392,1.5429309999999998,1.956508,2.320503,2.6428149999999997,2.923986,3.290249,3.578134,3.9066560000000004,3.94749,4.0578769999999995,4.103775,4.111625,4.059157,3.9515320000000003,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,Gen_II_LWR,2.20139,2.91859,3.0201,2.791,2.66009,2.46915,2.20786,1.87988,1.51004,1.1402,0.812225,0.550939,0.360001,0.229097,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,PV,1.08004E-5,0.00188639,0.0109978,0.0244326,0.0389363,0.056764300000000004,0.0805601,0.1089395,0.1391212,0.1679418,0.1957892,0.2210409,0.2612745,0.2898251,0.3216891,0.3876137,0.4411696,0.4859218,0.5203955,0.5612392,0.6000247000000001,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,PV_storage,0.0,0.0,0.0,1.20406E-4,2.51172E-4,4.1158099999999995E-4,6.26167E-4,8.802179999999999E-4,0.0012511199999999999,0.0015091929999999998,0.001760897,0.001987076,0.002348805,0.002609574,0.002891558,0.003487688,0.003967617,0.004365369,0.0046787750000000005,0.005042576,0.00539608,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,0.00487681,0.01061376,0.01803631,0.02928922,0.04019683,0.05133952,0.06217283,0.07933704,0.09296038000000001,0.11016118000000001,0.13608323999999997,0.15526547999999998,0.17046450000000002,0.18708261,0.20107735000000002,0.21491764000000002,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,biomass (conv),0.0791349,0.110634,0.115436,0.0625796,0.0680536,0.0782143,0.0965451,0.11652250000000001,0.1405923,0.15811051999999998,0.17537662999999998,0.19063064999999998,0.22241267999999997,0.24237654,0.26700109,0.29963626,0.31498850999999994,0.332308,0.35518550000000004,0.3729931000000001,0.3921555,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,biomass cogen,0.222713,0.122415,0.120684,0.114828,0.124927,0.138671,0.149115,0.159043,0.162202,0.165383,0.169372,0.173167,0.178334,0.18372,0.184054,0.184455,0.184903,0.183871,0.183567,0.183188,0.18094,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.0657602,0.15515980000000001,0.264146,0.4177477,0.5684487,0.7148406999999999,0.8535319,1.0462334,1.2059654000000002,1.3957973000000001,1.6597762999999999,1.8775971999999999,1.99635,2.1037850000000002,2.175831,2.216069,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,coal (conv pul),6.02909,7.68047,7.10527,8.13377,8.811249,9.184735,9.482215,9.651988,9.925113,10.059501,10.177610999999999,10.340826,10.907841,11.406333,11.794483000000001,11.480542,11.518590000000001,11.563659000000001,11.565945000000001,11.479516,11.267668,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,coal cogen,0.0898471,0.0736722,0.07371,0.0607265,0.0623375,0.0707816,0.0754617,0.0806033,0.0856095,0.0907575,0.0964572,0.102515,0.1097,0.115661,0.120962,0.125823,0.130458,0.129583,0.127624,0.125237,0.123903,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,gas (CC),0.5903,1.90249,1.84213,2.661175,3.172466,3.6259300000000003,4.098321,4.54433,5.078339000000001,5.485698,5.815537,6.086855999999999,5.5636,5.291697,5.046887,5.023149999999999,4.855084,4.517983999999999,4.345151,4.2434,4.2768440000000005,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,gas (steam/CT),0.435995,0.666933,1.54243,1.1375202,1.08471,1.0359861,0.948125,0.8329145,0.6994997000000001,0.5671742,0.4534489,0.3655575000000001,0.28457099999999996,0.2297686,0.164613,0.16348310000000002,0.1549157,0.14567309999999997,0.14540809999999998,0.14612290000000003,0.15204320000000002,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,gas cogen,0.356442,0.272225,0.315357,0.285502,0.29323,0.318349,0.329416,0.336156,0.331526,0.324477,0.315809,0.305354,0.295762,0.28362,0.275012,0.268916,0.266152,0.26625,0.276622,0.282864,0.286411,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,geothermal,0.0576456,0.0604004,0.0632762,0.1144269,0.1638751,0.22298230000000002,0.296878,0.37756539999999994,0.4224029,0.4714446,0.5149515,0.5428581,0.5854299000000001,0.6028607,0.6164269,0.6710087,0.7026236,0.7236149,0.7314908999999999,0.747132,0.758406,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,hydro,0.983347,0.981803,0.945313,0.954109,0.96406,0.974012,0.983963,0.993915,0.998283,1.00265,1.00702,1.01139,1.01576,1.02013,1.02449,1.02886,1.03323,1.0376,1.04197,1.04634,1.04634,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,hydrogen cogen,0.0,0.0,0.0,0.0,0.00120355,0.00216293,0.00340414,0.00495001,0.00679058,0.00918051,0.0119828,0.0135753,0.0157282,0.0181419,0.0203453,0.0231129,0.0261497,0.0287434,0.0321427,0.0354159,0.0352192,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,refined liquids (CC),0.0,0.0,0.0,0.0122495,0.01570116,0.023603649999999997,0.03636097,0.05085519,0.07503076,0.08851808,0.10016731000000001,0.10998493999999999,0.13455371,0.13962263,0.15726939,0.17844538,0.1473846,0.1592895,0.1522368,0.14235593,0.1397737,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,refined liquids (steam/CT),0.450767,0.454965,0.144545,0.1002424,0.09453210000000001,0.09260277000000001,0.08666575000000001,0.0789177,0.07297239,0.06517112,0.05812814000000001,0.052788180000000004,0.0403604,0.03203448,0.023100640000000002,0.018853467,0.013320539999999999,0.011616508,0.009642384,0.008464025,0.007980033,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,refined liquids cogen,0.0195925,0.053647,0.0285496,0.0262083,0.0266333,0.0273588,0.0272552,0.0273833,0.0284087,0.0293679,0.0302842,0.0314077,0.0331951,0.0344504,0.0356996,0.035699,0.0308608,0.0341671,0.0327411,0.0313608,0.0301386,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,rooftop_pv,0.0,0.0,0.0,3.743E-4,0.00103651,0.00224632,0.00397301,0.00643794,0.00959918,0.0135445,0.0184094,0.023956,0.0307219,0.0376403,0.0443585,0.0507439,0.0569005,0.0615357,0.0647824,0.0671077,0.0695095,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,wind,0.0110381,0.0643712,0.342527,0.452259,0.5475268,0.6656177999999999,0.8308267999999999,1.0374298,0.9983638,1.1972728,1.4110319999999998,1.5949769999999999,1.863979,2.033718,2.1958900000000003,2.555738,2.824413,3.034679,3.1687900000000004,3.344132,3.4988369999999995,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,wind_storage,0.0,0.0,0.0,4.57929E-4,8.64656E-4,0.001387607,0.002140506,0.003119495,0.004568945,0.005624545999999999,0.006781519,0.007829638,0.009389699,0.01045376,0.01158563,0.01387683,0.015656009999999998,0.0171077,0.018186989999999997,0.01946966,0.02068199,EJ, CO2 Emissions by enduse scenario,region,sector,1990,2005,2010,2015,2020,2025,2030,2035,2040,2045,2050,2055,2060,2065,2070,2075,2080,2085,2090,2095,2100,Units, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,buildings,0.9247522024623241,1.3620398450345408,1.5379896261438053,2.4940743507358514,2.967977340586589,3.7664942547893303,4.582632158532795,5.617743868645874,6.991498966696008,8.751255864650009,10.865633413248203,13.377242625363003,16.25173377010326,19.387741255950868,22.713975785833185,25.948780663663207,28.855314294213798,31.462010942814047,33.59955337669855,35.08615247747842,36.72241032262682,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,cement,0.4387037636025637,0.9901044425243268,1.5356968208571085,2.444275226441882,3.0460292662696813,3.7506712990956306,4.570877233264852,5.583811337833788,6.849108462805599,8.493440702572848,10.599962277478031,13.4095039212033,16.865415222733237,20.266025066578884,23.1477138917422,25.79675614781307,27.995593021148398,29.81747547223114,31.284730840093566,32.40174826990379,33.484805531422964,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,electricity,0.5631629062879409,1.80606634015401,2.3549117229570515,5.800806718214761,7.200233243050781,8.907372758128512,10.761332601419955,12.956212930610302,15.568091797828643,19.27706244674347,23.498590796755344,28.880469253442154,33.21205564057582,39.798800505537756,47.408869358033016,55.61058879277431,64.30563192722566,73.5642691100639,83.36919247670733,93.4469387666723,105.61474626418799,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,industry,0.7826569436408363,1.160872854025749,1.7423402139122857,3.661214588990111,4.6319767877875675,6.1417359923771,7.9140533435187415,10.26069831588565,13.409291434561023,17.39429191804795,22.338433471666644,28.14580252499698,34.99905246388855,42.71949903425668,51.15815556655359,59.27899544267691,66.50118200976003,72.61297397930097,79.04330678936952,84.19492485397912,89.17284205743924,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,transportation,4.196635183294658,5.982520968912315,8.480164644129749,11.494664561386761,13.355863836270986,15.800822089124038,18.445461630374687,21.652852752562044,25.443321827183386,30.24471602081195,35.82195625147597,43.27787957060973,52.36208463897323,63.384016472804596,76.80227602198148,92.4154799447027,109.96296061363444,129.24435697813288,150.71876243405907,174.28268727149853,198.69594778568924,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,buildings,7.6000604917571115,12.176718221298513,12.597506970437482,15.34997265801415,15.94355829172392,17.098977050634097,17.59876402227022,18.039871321021412,18.391807723598554,18.97257626201729,19.48264691262702,20.167364672432953,20.91027802982106,21.539075041539146,22.05855636624799,22.397358973534082,22.4669996128035,22.39974528386875,22.245834452798068,21.947745917384548,22.090790624915275,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,cement,6.542649176818745,13.764552362559801,17.571027592462876,18.02978187871289,18.528022334146936,19.114691617147088,19.444458654403824,19.837616967837825,19.988915951648266,20.1943440215203,20.132221422559923,20.26221674113996,20.16179110776486,20.058862971971905,19.68600847059594,19.33570115008036,18.897634668998016,18.481292433439492,17.981580027948066,17.419920319694548,17.05170477547164,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,electricity,14.158230115545193,30.68328227613693,38.12190972783518,47.09627272700101,53.78989270019729,59.795474962178254,64.37424448778238,67.84637802872179,70.09569755912383,72.31312418586276,74.32936573971294,77.36487750762278,76.56230968158113,77.35368943527092,77.76324090743688,78.35907784487871,78.50365825472217,78.74447528387898,79.96483241865619,81.66857652575305,84.46044166953243,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,industry,17.99554428061964,24.815104471462398,24.253142752332096,30.785668422392305,33.989980603186346,37.87262247724122,40.97304562066186,44.03127249323598,46.76628716972748,49.95118037666079,53.0890318195934,56.97898419356666,61.18319021427149,65.67669604884449,70.1270629920925,74.4545403653505,78.36028917846355,82.03910265699344,85.2645625590741,89.65805199344844,105.25010595605724,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,transportation,16.00128000774066,24.153193759267463,34.10603934199757,41.11391011483524,44.7083783516104,49.50549453569327,53.44906976555346,57.703636212052864,61.755445320434156,66.46955187292019,70.72686766191755,76.49135273982654,82.67509139490768,89.20760789916976,96.3073543666757,103.30715649146754,109.88808558341697,116.13253134632023,122.7057531838784,129.6236580487466,136.07397004775004,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,buildings,0.9234862459264772,0.9201976582183695,1.8021507121611529,1.776942792920884,1.994963520452103,2.3024237648493493,2.5067551134315362,2.7550289259994454,3.14356127593239,3.7076976920455413,4.437560733155025,5.387195467319907,6.550792434950456,7.898067336124843,9.455067193985963,11.113054768822783,12.769962348283947,14.375381917802983,15.886757435815673,17.113938806710486,18.665504154571252,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,cement,0.43132765945552465,0.867862721100886,1.0812635696093253,1.3383534671575847,1.6340741856566452,1.8972454636219287,2.1532233090400816,2.442394955746261,2.8194938012189263,3.3467792291282477,4.049416796169245,5.002953229377404,6.240705845090482,7.819857744268196,9.820980642303057,11.767784654056491,13.432990764099744,14.875726103406446,16.12871365457793,17.159825849911925,18.07275146237054,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,electricity,2.7256676796989217,2.9985855533681796,3.2058135064994864,7.995614374327307,11.521907775986165,14.429052565223484,17.442510290298646,20.84002726120143,25.046700017178225,30.696489562010246,37.877953328603084,47.20467733567551,57.647812330711886,70.45663149139313,85.30814532474277,100.47254882631943,116.9647404528698,134.26550958920689,151.65553902040787,168.7830558654162,184.99394243228173,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,industry,2.7815126677571658,2.2719158605624488,2.2403852862469007,3.0763075405803892,3.796204383233117,4.628675100261193,5.503324095289043,6.557593898538,7.872659066357995,9.579365326994486,11.727472848376314,14.400592191403256,17.575712484439048,21.289050766120646,25.174781009023803,29.055931350688798,32.82196076599102,36.36385242598491,39.43768964898327,42.634978992108344,49.50223875673545,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,transportation,3.2493196351619096,4.3045174467501175,6.3367132454831365,7.000877164179208,8.015357529307868,9.072121414170319,10.020528448852769,11.125599260627839,12.544875222826505,14.468091413036863,16.749802882224838,19.86703970833445,23.65066325159816,28.202669829904806,33.694878106994985,40.057246625102096,47.22904352749329,55.16028691913176,64.1104159850516,74.0805761412732,84.55178343269986,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,buildings,2.825282376081831,3.5628828666698924,3.9996967458547363,5.410206695826947,6.626685848721252,8.991898477189377,11.580753932281723,14.805193398631403,18.958261701809608,24.288649270156068,30.892780757091558,39.37462642637277,49.72142955111234,61.675967663601774,75.4075353671663,90.55342823554406,105.7010863678756,120.42932947022246,134.5233073699582,146.90442201808207,160.8786484953249,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,cement,1.6010295936951575,2.3867089445349756,3.1142224054399907,4.148612517735314,5.155086380823251,6.51509768538397,8.102519975900279,10.00499202683159,12.260136257495207,15.10881417819985,18.729200296014042,23.550451392916194,29.74348992014335,36.53502463231068,42.786938865932186,48.33931768285268,53.23370724647988,57.47557460405794,60.90941242802123,63.819047485470016,66.64787426890265,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,electricity,2.4221801513416183,5.022121483556042,6.281404622861688,8.696085764760708,11.377679938128802,15.516124923972171,20.366069863785466,26.163787433646206,32.47391387809789,40.27649930561636,49.70647596737151,61.907171396278265,75.82553872966265,92.97314488343298,112.64118646678784,135.17725725900937,158.87708237969377,183.5891770957179,209.30840029601657,235.93058468721617,264.68800509512204,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,industry,1.6878337251983042,4.581515724730275,3.6006930217370905,5.400208843687079,6.796565396901865,9.089944109119456,11.871887015346998,15.473099732330292,20.19848186030339,26.238287926274577,33.792088860224666,43.085934657726824,54.4812031621237,67.89750120908607,83.45484846545364,100.22468912295513,117.56437620561954,134.8835511510581,151.50861125467938,168.4553329531576,194.24847629776642,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,transportation,8.797349518560411,16.204325095245235,15.597039847321941,18.594935796671134,21.428812010846485,25.90761563292058,30.698614751138273,36.31409854344604,42.660880479423504,50.36095796277091,59.12975279205178,70.92553260859567,85.18655408516105,102.25074545516696,122.66634094411215,146.03250237064123,171.7897571203485,199.52778556346,229.9831803504159,262.96303186953526,296.81003847013477,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,buildings,4.955944201927817,5.5291940520784335,6.677272283457923,8.301903774068562,8.67240973954407,9.017066236239348,9.283049313539765,9.447365973518464,9.668093047262742,9.848693235400978,10.116045805055823,10.314095694629016,10.645867174032905,10.962923827475324,11.398697123812216,11.7975144114822,12.141737074382135,12.406988631950693,12.577247751920885,12.611623813191793,12.949951394654722,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,cement,0.7362726220344245,1.533110587694457,1.9918202415540087,2.389646706404051,2.599638799532825,2.8074290219890994,3.013694720381853,3.210125704366196,3.4316883557442845,3.6341913824894356,3.846939245434034,4.029768007206705,4.225081170044156,4.412160148664849,4.612230031050232,4.79900685421866,4.975026476331386,5.1311381692492315,5.262926911079388,5.3550210630851645,5.475549890680006,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,electricity,5.221505586984803,8.603107567430875,12.07815092848231,17.57130807422952,20.248554572184993,22.8374265033089,25.388274430500754,27.562185864989946,29.709171721997663,31.669334992350937,33.82154617248396,35.83444121240814,36.11538338119892,37.47458877126131,39.31215685535166,41.12096194757637,43.01853495655181,44.62986570465487,46.82902978104799,48.55801783227998,51.457981586965005,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,industry,7.830404507247202,14.311359057400898,13.399854405158582,16.5424292782319,17.883230902255033,19.343704070678136,20.773487954525695,22.25788557979199,24.03250946859913,25.91133281430341,27.972240685488586,29.963398983088478,32.27213641403485,34.76584879913687,37.70995609759595,40.802470145345474,44.055821060966196,47.407446778150614,50.51134144019411,54.75031130756481,69.65700484306942,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,transportation,9.896735190805753,12.014996346395334,14.270203711347175,18.66248285717346,20.380442747482636,22.245972343155238,24.287003638846375,26.409252746115314,29.090731904862757,31.81834039744412,34.79142875415233,37.353799226869185,40.39650911631112,43.564125855751584,47.58904338040726,51.86521002337849,56.435277135245244,60.9849101985716,65.47073990728286,69.41260045128077,74.06131995083564,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,buildings,2.691319178362951,3.4315004962752242,3.6689468294952516,3.90490354619743,4.115383428101719,4.383007122527031,4.558481971461598,4.726826489208678,4.923807487843375,5.088772084647872,5.192562435704073,5.228070292374455,5.243901352762076,5.21288807732532,5.185949073992954,5.137984283904984,5.085967602783904,5.032152189766027,4.974851150235103,4.929157399287654,4.898204857366149,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,cement,1.7912610098568358,2.102609582917616,2.1068766782480584,2.383590666337608,2.513710276640476,2.6390479216773928,2.7593575089595257,2.8752490018716963,2.9812760767944164,3.0745033403674267,3.149314050866424,3.2150552035589834,3.2605144162965134,3.2874142962581816,3.2935241825618995,3.2836253166110723,3.260087657038069,3.227964664513734,3.1947649432545924,3.1712710787391094,3.1467795308954054,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,electricity,36.75460034540421,57.769528432598996,58.42714740378888,61.69347377289056,65.1703154007186,66.83923108821317,68.42261756705177,68.93198486883786,70.08884402502666,69.37840881291986,68.43543601636905,68.02221255679954,68.10329399861915,68.59665797972283,68.02899211788014,64.51353448007393,62.207971971105614,60.027846959605284,57.22110629777776,54.38680831307248,51.26023677267963,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,industry,17.313638383754633,22.362027569393142,23.781068486308257,25.36688557427334,26.704522396393067,28.4143358318983,30.003942810457087,31.906273390905362,34.12196227068813,36.30261209035923,38.086837952127624,39.627625021347264,41.113750779125006,42.538158093462286,44.104656399913864,45.78727809235783,47.628786894167995,49.7285312469385,51.791048310531835,55.73303755782878,72.53254027846978,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,transportation,22.99139753607017,30.216106885766735,32.22653480405994,33.534833508693815,34.9603946974254,36.29592741685895,38.427855216697935,41.52347941639493,46.33288386600918,50.88053077371995,54.57988649345117,56.805372753063736,58.567132063002916,59.45861778392065,60.17417588595285,60.361918988618214,60.43976193336241,60.27889478994748,60.18206318480312,60.492638465245854,60.66269168944601,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,buildings,5.0973257508338286,5.866168061635344,5.676045822984193,6.686695815016225,7.588147926215608,8.50922142071111,9.175027622804144,9.800500864116026,10.840485455379342,11.9102985540612,13.056613151146323,13.915959338648488,14.965662306946946,15.850307337406704,16.93838667218495,17.92313544255787,18.73088528984053,19.234998852781686,19.302767307664517,18.74144261673127,18.559975296900678,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,cement,3.5725569969701656,5.359773684261608,7.166038549249887,8.107045971479604,8.926121423833067,9.642919138261227,10.302815109298027,10.856798951878378,11.423694221653605,11.93702058830263,12.477015120078685,12.920507793120647,13.409505072213555,13.86483797597057,14.350634244955005,14.786658332524336,15.173550966033583,15.474510018010742,15.68660377618033,15.773734095536112,15.90104640570007,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,electricity,2.792255795008857,7.9529507677413775,10.59594304040434,23.684890283514164,35.035621896109724,45.508721354532135,55.7843585600033,65.01842759525537,76.11492868364105,86.63280982365764,98.25582550081114,108.51581344611498,117.82122526426954,127.47202993161721,140.0219171138269,151.84706543166817,165.24504480944103,178.04850284006307,191.29379962954226,202.17713415095406,217.1450450887052,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,industry,20.12553584362152,30.658292315616677,33.90596985407236,42.38971548708755,46.868386519054205,51.61621508935253,55.79630074419089,60.32328868581529,66.89735508539908,73.49249357672534,79.90450328574741,84.88723557254237,90.00588868192612,94.44000652311897,99.51248030293107,104.37717406508786,109.13696655591491,113.45016924763105,116.79735730372838,120.53656985320978,136.8157610842715,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,transportation,27.344821908634387,47.490992298869195,58.670761927336734,70.146622471684,78.06301944377657,86.09816085038179,94.2055457643409,102.44561958936075,114.15090409163948,125.84958042865208,137.69630317442332,146.55771855026205,156.980263872729,167.38195342856406,180.87803510961163,195.81443989302443,212.06399795824834,228.41684385789532,244.74394321041913,259.3716377097442,276.41643465386187,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,buildings,20.235504703169774,25.29535163390601,18.871942922908215,19.338786468226083,19.498272261022233,19.814528141122175,19.64785345981108,19.434761807461307,19.095617319460924,18.792774538088388,18.405485862297247,17.984831855606288,17.58490678759805,17.175208887221423,16.81182487311136,16.523847045517197,16.251629181694312,16.023250006131875,15.808669260478027,15.588934558379034,15.506699593677364,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,cement,2.511004891791049,2.8865900235566047,2.226841780223616,2.3971509175800345,2.4976955531383496,2.5928818013400097,2.6717487777546243,2.7553604395890963,2.8397438680401397,2.9158928584665165,2.9834552423536644,3.0502693114732877,3.1121626470523145,3.169430512319026,3.2252222639917014,3.28346352772639,3.3422502734350776,3.4051366967443952,3.4701627380144418,3.539111263205955,3.6115334260818788,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,electricity,28.593929308899366,36.21645304760911,32.1139262080015,34.35290555214866,36.60439372741403,37.15313100925244,37.6976891723912,37.84800308113978,38.66642277619414,38.53689098569366,38.21672461853478,38.0738021528012,37.462398830309844,37.3977031395963,37.03399578324989,35.212262623490325,33.918413860472874,32.8626715920594,31.84655770119555,30.859961964117755,30.37967895561078,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,industry,32.36771158117736,42.97690572317124,43.30991525049393,37.6777041060877,37.07570994396302,37.832623115058816,38.39703750459374,39.501497902016155,40.96033545828096,42.63105299932082,43.68971900974262,44.92126635328484,46.09131416643756,47.25643762127451,48.678862464975346,50.41692667633556,52.45281985278705,54.85822182212874,57.212457812333014,61.23558227529199,77.61812251187315,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,transportation,37.03487312560513,46.0544200749342,49.86742246921064,52.232662161694485,53.95362013502885,55.135449824411964,56.327197552221605,58.36848266497066,62.29143293370654,66.20670751316952,68.81653044707026,70.90697887021764,72.9344453715945,74.35700885079383,75.96754154848617,77.58719351326677,79.21640105392919,80.95089345568373,82.98459092166493,85.49524900965142,88.29266651622636,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,buildings,4.172148246853835,3.792555048342619,3.0626264626130872,2.7504230353997237,3.003391394169737,3.398310026396822,3.7939767313381036,4.2130497469896095,4.864744940946382,5.589384287180392,6.4345357907220055,7.23376693089418,8.190723277440213,9.163261133774638,10.318334133747433,11.456591715390879,12.545385763912634,13.482045110979683,14.103567152993682,14.257349270445813,14.458555174304756,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,cement,2.2501840616596214,3.1541129131648047,3.2502993923477614,3.5575320729449103,4.041712678530112,4.571198267433293,5.117854790369334,5.6599561946071955,6.29080020421987,6.8985528975173835,7.5198509566533565,8.059986203453086,8.627420036031678,9.175492431610115,9.755308719313518,10.301175970997164,10.821459783285622,11.267612508061397,11.632796649125785,11.890338399029247,12.201547119881877,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,electricity,6.495820966369745,12.331099610142962,14.359070086035459,16.29765907844559,18.657309907168894,21.13047796291032,23.996549706557566,26.84768725688957,30.155748452432636,33.50918773685338,37.212894325580734,40.902484492421465,43.66619982737012,47.09571744692565,51.18474022998332,56.115849446293176,61.70401382940591,67.31691337453333,73.38803086911432,78.8431255464463,86.37994957112257,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,industry,7.243535782577636,12.685427006157768,15.011697478336984,15.96075541248969,17.89691698007359,20.263980141340117,22.888716408733096,25.56421270093476,28.761252422821087,32.06273513752832,35.76144259143053,39.38323741323481,43.515368227093056,47.90935247405654,52.86587287754027,57.97549664642132,62.9966693401964,67.49964565584625,71.48221757704758,75.6438687764941,85.42680875446037,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,transportation,9.467396114839165,16.57391137962032,18.990311469867653,19.392085564575552,21.096912866430415,23.310935713608735,26.016574221391277,29.12280061757143,33.44813099069418,38.04246965796534,43.02492115760374,47.87218748954231,53.64580175114713,59.917758640547056,67.75415024678203,76.50136974272061,86.33347014038922,96.68556155879322,107.17143925022975,117.04458059165617,128.40332400365483,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,buildings,41.874196317346424,20.83637580558682,31.266660636342003,38.59864565887901,43.15915023792134,48.28854237217063,52.3039169062495,55.5554542734546,58.88293199605664,61.80529460380385,64.40453494465287,66.20618724328521,67.75298633836465,68.95041162915571,70.34627552673707,71.39811665153135,72.07857727138564,72.49084410735244,72.96583730825407,73.63430744966254,74.78861088430412,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,cement,4.4076217915239075,2.607251557926931,3.1971117566889538,4.142675696338744,4.691583770943426,5.17158493425244,5.590109288851574,5.940979374673795,6.280188615481644,6.550742451839345,6.7670892659477495,6.878854607682799,6.9418147201481055,6.963943138883906,6.973403279756456,6.952593094628142,6.923561760220327,6.893908304416715,6.8937513275094355,6.945535448766509,6.9702303073892775,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,electricity,60.432203307387354,41.56857866557468,40.12942693426759,47.408315934100514,52.69733654047026,55.53303116206466,57.649083579627735,58.46224941298398,59.24097858603749,59.679985528017866,59.93316207387797,60.04472648043466,57.43419118428656,56.758492800202056,56.09476266918386,52.12369212026375,50.58976496633918,49.794874184199045,50.102671106990115,51.2620334241626,53.109563224861695,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,industry,37.879300562683,32.146637519182605,42.50025577430586,48.2078020054083,52.27632840192172,56.804348830313344,60.45978981915428,63.56267245667064,66.56324971276759,69.4052807405229,72.2707730285648,74.70970767663708,77.20328831663605,79.74114864013536,82.74303085031876,85.80185361589915,89.04237988634894,92.55737887674024,96.37181259767506,102.59612725229373,120.8786642350548,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,transportation,14.163925932059321,9.506576393728968,12.47027368627233,16.725805112487144,19.733316617522473,23.55122752587781,27.390019772263987,31.393565967651465,36.337342945430485,41.69073754950863,47.28902455997641,52.69488599362622,58.14713489221283,63.667058593053326,69.63974427361543,75.6409964766889,81.82366549808519,88.31232809929453,95.18144030117298,102.7838455404151,110.48945151967449,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,buildings,122.68690772835726,145.098483763432,166.15794783669128,203.85087619021004,244.31083143330764,290.98573698107054,332.733377797193,371.57548667494274,409.9544481069084,442.8716410927398,467.34064812592044,483.8434333168028,493.97303618249504,497.5037149722259,497.62878119335005,494.79044218790574,488.04778304174835,478.27061325469515,462.92497762373944,440.21751737627375,425.8062662077572,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,cement,54.61801319858847,249.78098003547836,385.1235779617183,398.725662301791,376.14536032390697,354.11670134121124,333.8519405070608,314.2312318522636,295.02097936272844,276.78583582032763,259.1271875363023,243.66877716210504,228.77726599039613,215.37921593571082,202.3775097990104,192.20107465881756,183.6299166840954,176.51333656973935,169.76900325372156,162.94867285036614,157.47544960716,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,electricity,168.93036559729404,624.7561863218116,928.071729586142,1063.9789761376276,1211.87760551255,1313.5535371725682,1418.248435562969,1496.303293287823,1551.7443585878664,1585.577741875332,1608.6096474611059,1639.62758545065,1675.0818317159255,1715.0001369889865,1732.2696644646974,1670.2241161979994,1613.295276420156,1567.2707888593488,1495.7482083375053,1409.5885014223347,1347.6163634615023,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,industry,322.63859392623215,613.0214725027153,714.5097482588768,837.655347668657,933.4606177641696,1030.217531985687,1101.5681221596906,1159.8401751068188,1207.5810304781687,1245.3825234733624,1269.678448256355,1283.5424034852183,1289.9288073404398,1292.2562347564376,1291.958421706274,1293.6207912274958,1296.0763608962525,1297.0968531738545,1288.7920949641582,1268.1754050305537,1274.8758659011191,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,transportation,39.31515205052568,132.23168114006626,191.470013059584,219.40689755190587,269.66566204800984,330.19328603387794,394.2176094033836,464.94312537528873,540.1325229327242,616.9661796134243,688.7121707965464,757.3543871758795,823.0557774726167,885.0093191425149,949.4464082989103,1016.4717867594321,1084.2855203920976,1150.0212644007668,1204.419344181555,1231.3118207129564,1273.3671835081252,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,buildings,1.3820211938939009,1.3631644968132814,1.4761908495014109,2.122558559851721,2.3726358024753367,2.5998050393889764,2.859250448657539,3.130023745857891,3.529091834999496,3.967392068627681,4.512415630467191,5.0337556816208995,5.696903145084536,6.408017585845522,7.2848305439312995,8.181365764244743,9.073735097150088,9.864747463562129,10.507772518954747,10.887458347663223,11.405062034828392,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,cement,1.3539187289472765,2.1119443955230426,2.146221142337323,2.8367139289376233,3.149701016920767,3.4277473365277795,3.7386063771178613,4.045867418597264,4.395237211765145,4.73318654401298,5.086599965331134,5.401396628285944,5.732178234136725,6.0439703148935635,6.36803092921678,6.662578758326443,6.927480735149551,7.145041846312507,7.313248410022963,7.417648180465814,7.552113023790087,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,electricity,2.022821141409963,1.7285469043048491,2.702587863937432,5.826596079828942,7.5782630261123245,8.880142697238776,10.670235361298479,12.518302365150971,14.541632532096171,16.606535212814453,19.094263274694622,21.616564683433154,24.476966386629687,27.957185684673306,32.37756269410164,36.41364245997844,41.239436287492964,46.219487999476755,51.03379005168365,55.130399270077476,60.273617938760346,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,industry,4.255513435136117,4.8496042771700765,4.886774538388162,7.39953568098587,8.602687304823414,9.766985422334834,11.225751223203902,12.85583319638964,14.832898381204746,16.954134162153352,19.435550402182525,22.032795327359118,25.103765745333597,28.488188235842475,32.39686135794664,36.42229163992081,40.47725025639135,44.343631053009375,47.70275641969141,51.603513543279234,62.7530823571836,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,transportation,6.030984902612743,7.5377602331887505,8.922067622835673,11.09920299812112,12.247938828539443,13.233225099469905,14.54966830161687,16.000443574621112,17.958285389469737,20.090119179428527,22.538285542728747,24.92302638605325,27.780174333151965,30.907650504391732,34.8094314054421,39.08197502072115,43.748334529234256,48.47344069300241,53.13058972661736,57.31555069384927,62.08349813264349,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,buildings,48.67944548826476,29.03529428140074,30.195104895393076,33.490887365357054,35.527807412526045,37.530811731252946,39.18100222314595,40.37880898036201,42.44635977923671,43.57017412371113,44.50168358527437,44.14129928518741,43.51647677396304,41.99360812970824,40.859590052955475,38.83522364834938,36.768923148996365,34.79607319427905,33.26306256098426,32.265543396052685,31.275734689763105,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,cement,9.692162696459913,8.066744349640956,8.364039608842594,8.864498709642366,8.988384684672477,9.049338099744082,9.076802427443123,9.065298247193013,9.116643486400271,9.094184673777832,9.030592095999625,8.833629346341946,8.61333818529883,8.32041276217183,8.050601800361406,7.753337578320478,7.483490192833207,7.241075026503235,7.079208787306466,7.023745484871926,6.88751784080795,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,electricity,99.17790358205552,85.3005588232249,83.70171152400894,94.70287576711542,105.45876706485903,111.2344292270322,117.79310012567579,122.0282612276875,127.78773241852066,131.07167239556776,134.5944858089133,135.34333049691665,136.1718789204484,135.77126977841692,134.292893745474,127.08420784372947,121.00474170575418,115.79460960010466,110.67112577975915,106.7984806354647,101.71022025071758,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,industry,98.66780726672741,50.080594748071725,38.500573143630234,40.89287717834291,43.04849893176714,45.46563001393623,47.015314194192754,48.477517309789135,50.83516343534172,52.93387222084509,55.12072810532932,56.39285891856952,57.77537236271808,58.71933950462605,60.400051572639974,61.484357982756016,62.7527880944451,64.13908993097155,65.97135998798358,69.76850181860112,80.04826896872231,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,transportation,23.5391255653289,33.98531048655746,41.30151387736378,43.85453463203324,46.39780319401573,48.300812222545886,50.61694037185581,52.90800958996443,57.53486655952761,61.85276056298227,66.34007667115694,69.59505229658626,73.46293876164239,76.11147863152931,79.49486054539531,82.05357068701504,84.55010816496288,86.85970138766635,90.19632305654164,95.15757392909364,99.38586524121807,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,buildings,161.57597349384946,160.47015214337702,146.99241485883687,147.17283477188462,146.69352277144378,147.19784564268335,145.47034420282793,143.92912217252658,143.2357321236006,142.5949165418562,140.76693551053654,138.28648989556442,135.7734231250003,132.69075866679884,129.87583299325786,127.23216278900765,124.87547768491618,123.04483965096567,121.92581955508943,121.65077403903116,121.34210026244892,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,cement,40.71799347582459,42.18353260672721,36.967769569578344,40.40460937106759,40.25337849200358,40.234094257591636,40.017034467613904,40.020162674474044,39.95829031170399,39.90716146508841,39.47369320641924,39.087232773499736,38.46239236725575,37.770829971035994,36.886802168006426,36.078762467378986,35.28726832829844,34.656836105342286,34.13901402222462,33.847016148098476,33.396680489720225,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,electricity,268.8485269196535,269.9974674805772,237.86501292934773,241.9722822488401,250.16296301787742,254.93522934939367,258.1933812432144,258.49029781431557,266.7156894378374,262.8592866519485,257.8099687877509,256.12334697994334,252.36970287397665,252.41337051385025,250.769949073416,244.29823992742786,239.95304860788463,233.0997686841624,229.34897207438664,227.38436849252886,224.87256702827338,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,industry,195.45547405041762,175.5762442122021,149.26769910757588,152.61420297501738,152.44769819732923,154.14997911491025,153.81409088205814,155.26468611213494,158.74084232445497,163.19087169321776,165.80082375388557,166.4030652446057,166.61114598751863,165.89128971805576,165.9899612009381,166.660793839988,168.11755052378325,170.90743158617792,174.66911426156258,181.84599226125425,200.3407240264994,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,transportation,247.15611168493672,324.92260697370995,307.5107183666469,313.5534740104148,315.51237039998574,315.4480662463146,315.66458586823137,319.31213578627006,331.12210812297496,342.79083688054527,348.41346769874457,351.7709205786732,354.4817592835601,354.3692546389691,354.46824420197885,353.5792514064585,352.5214316065982,351.4009525640464,352.1167483683279,355.7615402977235,356.2163332939716,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,buildings,38.90957795617494,20.507849034369286,18.553434951028763,20.699938051482924,20.800872981691498,21.207095471744868,21.48173012677496,21.689288446980715,22.11262158684675,22.51622177711681,22.94984026100454,23.222422800724836,23.452343161842037,23.46648622965209,23.55045255622623,23.325500554166876,22.976078514731547,22.5204989517318,22.09997769281159,21.753479276525137,21.567356787139875,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,cement,6.283842252590034,3.2714535739907395,2.900425532670977,3.383772292080521,3.4907856457305257,3.5738911345914417,3.6657455133362555,3.7431369200644564,3.835762487685183,3.9044800895945144,3.9557334206912986,3.9660308842226923,3.9653102346212394,3.9378996056482647,3.905818431084921,3.8598102953534816,3.811991564958584,3.765498293161514,3.73720440921912,3.7377869238908725,3.7178623772533737,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,electricity,70.62067013227752,28.31228671248787,29.83024884735496,34.39925856018486,36.08980986277116,36.096767671997604,36.42040870282039,36.24613101168214,36.27700297902689,36.158777499293336,36.22480965039585,36.42131871082227,35.813627966337556,36.070873676458305,35.95869831138165,34.058980214602705,33.561473380551924,33.40473130766522,33.383185550486246,33.70758609246286,34.11639810947068,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,industry,102.48691097345507,50.699202799466825,39.00737684352964,41.67031058444322,42.24489144265249,43.56634110207943,44.82068803637416,46.164012150821634,47.72921331232,49.4022589887376,51.25128722720207,53.097830411184844,55.12434215216387,57.143375212746804,59.56853356767505,61.78712775426271,64.2113275139438,66.84240636611612,69.62900362445345,74.56323434633346,90.87808961194341,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,transportation,15.502941235412019,9.445075656425056,9.2568608646968,11.112984621894537,11.97805564711821,12.924144409672886,14.134278412555116,15.616119879596473,17.77438175616792,20.145960527960632,22.595817832678705,25.053224577207246,27.5904994499646,29.97242569085671,32.43082450550525,34.7749766018186,37.071839058185134,39.419373189835326,41.915882507618605,44.82809186374048,47.655444295827216,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,buildings,11.46020956136063,12.271110311290064,15.446234877920812,24.940954248868188,26.75591939187951,28.722300362641295,29.907497686390077,30.676604365709572,31.318437311685425,31.704043016191644,31.832620342659887,31.66599293750456,31.34570458686026,30.693267360741,30.070930563563387,29.3178908957218,28.438736854389678,27.55880568980044,26.826721838546735,26.308094945475453,25.780279735588458,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,cement,6.859426886341226,10.7729165615515,13.050706222220558,12.953890712001606,13.122586440248647,13.305145262432655,13.377841977659934,13.454091398088675,13.461362629387157,13.44391615829948,13.301388598824925,13.10795865168189,12.803837136171985,12.46414654187701,12.05758834579656,11.646756993596629,11.233291929039558,10.866260712511597,10.560745037550918,10.354681790921106,10.11365472770234,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,electricity,23.229208792031834,33.61480134077934,41.24968748147071,69.47600642887461,79.42027362473252,87.04853434328425,93.53421618716662,98.15628322728273,100.83381172994346,102.86663313024445,104.28449479790294,105.92271087904523,107.59664547936322,108.96478720518076,109.20051233214271,98.95765943274206,95.38507202410099,92.3552542553904,91.13771595217351,90.16932266928241,89.02691522907993,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,industry,20.89905310288333,23.311518257075377,22.419381094779986,33.21917086686152,36.34675585257946,39.59240741909309,42.01394573390251,44.271483178582606,46.527322269221905,48.89541791502584,50.93880173880237,52.55258238542193,53.861884022156495,54.80892594827733,55.63480054539907,55.83514780131727,55.76406750614049,55.57472710507826,55.455581477117576,56.40381693878974,60.86643356376825,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,transportation,12.490269112074992,18.312108633240157,19.806399792843536,32.69663221769741,36.84181155147032,40.72737554049325,43.860264860613945,46.618143026733,49.53356505128384,52.84908626738267,55.62388033007958,57.74372627042314,59.407035748197444,60.36076414183715,61.28548945522651,61.7810399516259,62.02789198811076,62.05700647445899,62.443881538825856,63.44633052267755,63.6396378887304,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,buildings,5.841380748341974,5.3961950902662625,5.070196704590263,3.9375056279740304,4.106882365224259,4.186186274251543,4.164986136738932,4.204982323175697,4.397424657874753,4.565654047039824,4.658065558109506,4.660400986453345,4.627746875240523,4.534757996790621,4.43598100691696,4.308571086949751,4.168399411103266,4.030410143322007,3.896726697805986,3.759858987297386,3.613631970257956,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,cement,1.3655511476375541,1.1984037970184995,1.2584095586615462,1.2901562994532276,1.3166584909460277,1.3477099104182706,1.3722868094007237,1.4050737635028847,1.433324454690207,1.4622758367881281,1.4786108141100929,1.496643727271746,1.5047016802567796,1.506077633472815,1.4967898459912743,1.4864755055027539,1.4740282138173808,1.4650124555809758,1.4580472008228722,1.4578978853638103,1.4471570884198164,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,electricity,0.1524739558961436,0.09851755353039893,0.4919188752462473,0.5761454795514662,0.9512729183333437,1.4031193996303315,1.9128747578372143,2.3821740300268854,2.503262352577824,2.603976774745405,2.747343597121172,2.9920725386973976,3.184732426221755,3.2178453725938057,3.0829945400602936,2.8654330711783778,2.612220681346861,2.603172136341795,2.6338923444367954,2.7274537097774196,2.8243522360711917,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,industry,4.87984571222269,6.578828351725942,6.299794625634101,6.153533812871851,6.7459642258406,7.224491277784161,7.7251547417938555,8.387673586961522,9.196932290305885,10.023496991500988,10.83046976207555,11.624950352517002,12.581820440069375,13.786752592078864,15.301152495354524,17.062449057873163,19.04619968139394,21.296234602906434,23.494505700051185,27.373451568125617,42.75789654251741,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,transportation,8.958717979691226,10.706656663969532,11.173942766501204,10.09879838697744,10.305578422891136,10.332020527187067,10.368230708786772,10.638305381676588,11.233228403451402,11.799668913053116,12.14967169671828,12.436567076304863,12.682222849967417,12.809606710985406,12.933837302066161,13.010979981226983,13.064002978849814,13.095976918651896,13.172524582902906,13.334451152525261,13.359305016287747,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,buildings,21.725606651941188,29.771724543809942,36.708668546182466,48.77242180924554,63.05996424493833,81.91538343771677,98.55867853850089,114.98193321543157,131.27240134342722,146.5753531819124,159.79859609086037,170.49838919647357,177.80328618970447,181.0171101643457,181.8796056096434,179.37075321336224,174.92681747560934,169.06278054504784,162.4964452952588,154.5789687778285,148.26714218204864,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,cement,12.858769085987028,31.14423840415659,44.016760754891806,61.50795662197287,74.0429742106488,85.85587737697253,95.70031738438283,104.61679368146008,112.09545505964942,118.43044497216766,123.53766681916409,127.03788943083416,129.11976301750332,129.70055765136306,129.43707920298962,127.9405061232222,125.71207089304235,122.71599229564913,119.63414805024405,116.84579399695346,113.7301366540063,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,electricity,68.6754277313975,188.58103820404284,256.01275344755624,337.8592047143646,444.05207501871024,560.9819739034501,701.0991111695363,853.9887807170636,1013.1715783162645,1168.7445514509993,1317.5808677453708,1460.4834177051903,1587.862540654175,1703.4466097565303,1804.397349626476,1857.3776118510077,1890.736874725408,1906.5775522360489,1908.2185145001768,1903.3149527381076,1889.4383359622798,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,industry,50.738713569962385,78.72157175887386,108.91340727664817,146.64362026991986,189.55246744447263,243.66189840836697,296.60947748710237,351.22518100595653,406.5449044148177,458.7748198319576,505.1928634837594,543.2468319530742,572.174199945593,594.414628215782,612.5675613091481,623.4901895693697,630.5607074481006,632.8348938970443,634.9333736143425,641.0491096461473,664.4983486904334,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,transportation,25.646325260711887,33.36841999696868,55.92370239216845,68.37824216868947,85.8499793881842,108.91683449184984,133.38489698284923,161.1546654929725,192.544957498124,227.85719342184484,266.24115406619944,310.55901772508344,358.0623986779971,408.6911825031678,463.12789560071434,519.3428383554796,576.8472036937443,634.8852215183659,697.8287407429281,766.2152094127996,834.8659624209698,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,buildings,6.170137451478503,9.459019459713971,6.5437414438025785,11.172075851444674,16.978688313529595,24.958753666301767,33.04334656856666,41.34153299814015,50.14075975235005,59.01048320541846,66.96550761619226,74.13180666809205,79.87543134201252,83.8773048389451,86.13480383985491,87.00511406852713,86.19865388654183,84.34456278937571,81.4343057437251,77.37464841904867,74.52799480594044,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,cement,3.1634462746452763,7.486984612749113,8.775698472619943,12.697244263821599,15.423070642894626,17.722829384426248,19.736777917084734,21.43073978798158,22.828727062692856,23.873714372921892,24.552680140253273,24.920699913372616,25.01105998042103,24.845847255997143,24.4739727347189,23.92576273974516,23.248824093828887,22.477082167217738,21.65952398863785,20.836555030793896,20.09982969812661,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,electricity,6.418096286345373,26.002063364787322,34.35078917957099,56.90309489185595,78.16028543992215,101.62689209151094,127.15369750832393,152.64033922914064,179.09000685440512,204.4615187112715,227.588357061584,249.97491693725195,267.71180006141986,283.14887345886154,293.7837742349692,294.92544830058995,293.06998519846485,288.81143481999385,281.85571052893437,273.949448930744,265.80294817427153,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,industry,15.591059753096868,32.59495598351519,39.1954379427874,58.41566086913521,75.32418771163886,93.88573421695715,109.97586484419523,123.95618800447934,136.47737503422394,148.05441880867792,157.93746679514283,166.46581614076175,173.32690551515802,178.76277671666895,182.91744757885607,186.1881218445904,188.36584632602694,189.80596295472924,190.52614939531455,192.7390770192422,209.48293760543478,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,transportation,10.882226474433976,23.03903343603441,31.979508162219084,43.622331870294744,56.28929677831911,72.57109784375687,89.62110336388753,108.33999400270393,129.05610063397882,151.83024813669823,174.8154466258827,200.8082557081655,226.35982235499608,251.25741385958517,273.4344166150196,295.0786532303412,314.0099599311381,332.3235002538935,349.45277318531004,366.6949932820287,384.1188042217113,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,buildings,38.92807620768755,49.221546032413436,42.469620713193585,38.09076620134822,36.817623272343354,37.58218852697329,37.64748422941156,38.10139586959016,38.735954640624605,39.35203991019737,39.49322779131558,39.06204348504823,38.54727026928858,37.56961497035051,36.51590891149698,35.27432861020628,33.925796265262576,32.589932769498155,31.37599681456792,30.33588496954746,29.284610478561973,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,cement,18.578827886411677,15.186880621119094,11.979316355083629,13.913239918595561,13.883513874380672,13.696291344191257,13.545887789668523,13.382623958164954,13.264407357023034,13.103940672184837,12.911477167399681,12.660812953448506,12.38361811457208,12.074947729837923,11.744813336904796,11.400189312324155,11.060614604034118,10.750160987322722,10.493632473098382,10.334810880739502,10.107967722006183,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,electricity,91.90040276964494,121.32242319729187,117.81061228856305,144.96524937876137,152.56492270676551,152.11598949707016,152.84322261611024,152.51112881096512,154.60105426460498,155.17517158596021,154.9146040293885,154.01622759379717,152.00026533701705,150.641528517985,148.94912929065381,133.6946297296712,127.06851421806445,123.48454944427444,121.07793977538009,118.92654463436111,115.70888284188764,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,industry,95.84187029477974,88.20188993845649,81.69939907453995,75.74844593066727,74.11110092897363,75.04737014125739,75.51474531210738,77.38070324165837,80.1863435450532,83.02626711373027,84.89696661996257,85.76383751225913,86.47412970023875,86.49356011780375,86.492617219279,86.24962191856284,86.00256392984247,85.97291813138854,86.09321364763198,87.61111118631389,96.0947549038793,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,transportation,67.8833838082187,81.94735232011975,72.60117947411551,72.41235960723643,70.791299861924,68.5665547456579,67.57487076407247,68.68394174472603,73.03638008839953,77.15836285574758,80.5449151077003,81.57393168541293,82.38577924492306,82.57489432565754,82.75766404476464,82.61598892356908,82.52169253507671,82.33822682478949,82.52226144034395,83.28227579046073,84.16829782281243,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,buildings,7.120390340420943,8.780928399374087,8.333591478279342,8.034473649802802,7.919263341612799,8.778671308258618,9.670900424242976,10.60451442114709,11.91178947825305,13.316006706744076,15.036875307597912,16.656995096373276,18.7038490024516,20.897444633805165,23.586758599771105,26.287164703821947,28.94986652554946,31.309406986104747,33.14563330257792,34.0456094700871,35.56646859839307,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,cement,5.029846899659627,7.350758492755691,6.941021040988251,7.21691536899275,7.782504046643567,8.439126025998364,9.126091557219748,9.784767806192686,10.525335276957989,11.212781800594708,11.947395960607661,12.60021354493772,13.294257528087737,13.975422653334501,14.723932724267318,15.451536696653598,16.153687541308102,16.77007304051945,17.284451572228328,17.668444703305127,18.1445179110575,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,electricity,18.225043494879667,34.99805915612144,33.50673009551097,31.6351784681361,36.372606532425905,40.29361514129854,44.779116118320594,48.87607208855226,54.41025731946864,59.12582246540758,65.48484052763777,71.97974228763412,79.89318083254851,88.56528162766705,99.43680486035385,112.18612977697452,125.66231358187439,139.36483770922874,153.33961564885482,166.58261913450264,181.88009808028227,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,industry,20.621711036865808,21.458711133455644,24.20215263695439,24.091634773950023,25.623138288055152,28.440534632019368,31.522740418074473,34.62496453915255,38.27496800791474,41.999858223448314,46.28852693743136,50.51473111947123,55.544602411987476,61.06346296049211,67.58682049513101,74.28501711948208,81.19174522649556,88.19283837333957,94.92199132147623,102.9060855376646,125.11829493472456,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,transportation,28.794123327348554,47.05429327257721,52.97721431403638,50.68604651806684,52.73460419900744,55.86227809463754,60.18850078288994,64.8906225249019,71.66745543638135,78.28555275314045,85.9343417153673,93.22554936565311,102.44778685953861,112.7724968256717,126.05162639145948,140.91983482371668,157.47579847841573,174.58450958907238,192.07478131906777,208.5360174820785,227.86426389111008,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,buildings,19.456221672673344,44.57997245717037,45.31904114493335,50.484495852920084,53.55831158171487,57.53340798753206,60.67210325958529,63.435248202213266,67.14058026021044,70.95636910150131,75.00457451089521,78.40484475804288,82.18338187636897,85.20276726511214,88.63619715483671,91.10581226936395,92.93584883087001,93.64662633840554,93.94994303752915,93.5787787445706,95.6212614764957,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,cement,10.521567753501667,20.0173261236735,30.399099759497375,33.0629113222283,35.2324408985414,37.76112076553234,40.182720821965326,42.64588202576631,45.076707179214694,47.46474571100856,49.54178031268425,51.39932884699729,52.89289182967868,54.09356947107204,54.882441870256116,55.38748907537195,55.57182216321339,55.57707098505395,55.41541877306087,55.22437433465184,55.16108762016724,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,electricity,49.34903049567292,118.15243285177729,162.7862877249624,177.30784312578456,197.5769343295841,219.35213172789523,239.14463894193207,256.8288399368118,275.2167800426261,292.1908982789727,309.0362246723964,324.4693154448394,326.90443628694436,330.74550245807023,334.5259736923001,339.39593103403763,344.71828180033935,348.64310635426096,355.9190331425564,364.6743778905686,378.69615179780146,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,industry,38.357193477345504,77.49455575199896,105.64178993749576,118.76039723252443,129.5914463451527,141.90044509996218,153.41204155596918,164.76142737631827,177.49488693836602,190.54941279803955,203.45921496222473,215.22177760913922,227.2231413743573,238.4805164796339,250.461132858537,261.4955913281881,271.9817207827322,281.33519846996785,290.4148626655309,301.5706351420459,331.00893401849567,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,transportation,68.10099796632404,115.03600984814504,148.53452805915686,166.3021520560921,182.73505607442155,202.99634876444543,223.6287809060551,245.33056028749485,271.6134607533252,298.23649157022777,324.02674872905857,351.17783704454115,379.48132637217327,404.8091710953888,433.53148548526354,460.08179957245727,487.53408672268426,512.6293393965688,538.4468441228976,564.0464369270785,593.1486305014375,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,buildings,2.3156624986092536,3.493604068536907,4.903428665093427,7.741655230342746,9.069497960207087,11.074538312429777,13.55553179450561,16.47165838589602,20.014806430554096,24.30468903765525,29.19837690607136,34.85949903332239,41.06486317916159,47.6968866294665,54.495796907444735,61.379561017937476,67.45232111499148,72.84249311480274,77.15541947585871,80.43341032908441,83.95430517230413,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,cement,1.7668200648293517,3.9719785619807073,7.424320021806025,10.86033492031831,12.703032872104654,14.729189386091072,16.886615379359625,19.078429640622446,21.24028347629213,23.28095270540238,25.08724071692399,26.559154614123074,27.714394412843774,28.57190481990886,29.171343973699045,29.538283167047535,29.68838950575052,29.653607419249,29.46027806265956,29.174898486327038,28.950393125855122,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,electricity,4.015509274563699,9.312654089730598,10.75838287997774,21.849221227668284,26.63953740226484,33.36953981980239,41.679133277425606,51.89815711668352,63.456825974892254,76.82051331304945,90.40397316305148,104.60432916148356,111.729543346643,122.80974707541816,133.29158186783795,143.9063190510882,152.58688742490875,160.61892483470737,169.0209716315875,177.51621120737857,188.7363930869886,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,industry,5.40326185453439,10.257395538425792,9.613087167938383,16.998638426381763,21.082886994991956,26.961359649922212,34.392183518987515,43.330548193021976,53.877473837038835,65.97230818361328,78.97752338953502,92.46866987238384,105.44113124196465,117.56155193001423,129.40948074685966,141.04873385130185,151.73321283300731,161.4753191872996,170.53267932128801,179.55905237339414,190.79880269461162,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,transportation,4.3462030274633054,8.280361541325993,10.866291965184425,16.52027930210676,19.478787956222583,24.004877902036256,29.491281677354444,36.09775155766322,44.079246277971606,53.63491578152964,64.3377064111266,78.00687112327971,93.89992617840232,112.48965490634768,132.92880928938354,155.33346089920846,177.45667201432687,199.9912927073108,222.08245336988216,244.02331912944962,266.0736189989356,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,buildings,144.5313040002987,72.41630292685022,69.2067993817392,71.46160012117144,71.48626265385218,72.54227459513756,73.8228140309285,75.00668848324942,77.09116402490353,78.84560401123774,80.50278741660341,81.48478624210719,82.2396376559983,82.09289995877603,82.74583098315101,81.66369174570264,80.18886085588667,78.44685581484441,77.03936170257427,76.11236722536445,75.79382734076977,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,cement,16.788014486444844,9.697567325530951,8.935887869474875,9.98141516742802,10.36524190506057,10.665081437795738,10.964723226413119,11.206517762403136,11.50047093088314,11.728533598767225,11.932838261557858,12.032785713124976,12.122199203111986,12.145005442687118,12.167783990059448,12.152787528743406,12.13158262002532,12.109485360183104,12.138572587983074,12.25494438995042,12.29443648770502,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,electricity,215.87361132894497,150.60379486563298,142.70777988049338,142.23546724055828,151.23776015774072,152.82094210077958,153.16811116079774,149.74245105351585,145.71331125419945,140.26706491346715,135.72985685081662,132.04455973179054,125.78491675009771,120.74379560297041,114.75023423223797,111.9620638628318,108.74317024369194,105.18520269642003,103.7183726658817,104.3888443633608,107.33306030123161,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,industry,211.8273970168466,150.79567377248574,166.75049975534853,170.9521893542541,170.17111423707692,172.39531943786125,174.62823707241526,177.46777709011116,181.8264419526539,186.56501464300663,191.53410317111383,195.4705263875942,199.60013649360508,202.48226321642093,206.96385785593515,209.07494860076721,211.28987094585278,213.73746588003945,217.23054729502658,224.55690891879513,244.95806033918336,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,transportation,84.71892442746488,68.23153484601006,77.63455806686333,82.99649956565591,88.603900697335,94.82589693678091,102.39660988384813,110.84232665073097,122.52026992463121,134.23713221731526,145.9335247418227,157.07266968382197,169.18792250056032,180.2574034676859,191.75481937562017,202.58015381063407,213.13597452204735,224.06277827320255,235.8619128077802,249.84234265666052,263.17112170069237,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,buildings,3.6025441968970555,6.921567924987641,5.165938002738671,3.9889096014259473,4.320120253544125,4.73680824766905,4.828519427711827,4.830039451232755,4.729222261095743,4.633286613354585,4.555718606135082,4.501358509464911,4.4803301460463585,4.4573673590261995,4.414814833362471,4.345844457445963,4.2318370951742885,4.102492888192579,3.9606078667319946,3.7947196680901336,3.6891387419843302,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,cement,1.9701203538296275,2.672266298249099,2.654824575031592,2.1344170506944433,2.297461841446031,2.448973439529426,2.541296398890191,2.6206385607210034,2.665449740597647,2.7171339419941756,2.7619831325336044,2.8439876556538914,2.9286609767331253,3.0161651525890294,3.0778335326430533,3.1251804088971222,3.141565019191571,3.14079053269109,3.1207758542762454,3.086104002179165,3.058908867552927,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,electricity,41.3205,60.67550014122839,70.0210860226097,57.55166382717279,62.302766942592456,62.139102743416906,60.902348455798425,58.65747038324115,55.439743812241446,52.03899761029743,48.899798490806646,47.318660687202055,46.702878562530735,46.950313253434594,45.87681718381283,47.583194109483614,48.45584864326925,47.378427545196125,45.8783477531146,44.05647884018348,42.56236899131653,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,industry,29.74042685957933,30.311671832923818,28.549756497651785,26.646214307021374,27.456639951439307,28.799478539609087,29.04754932677458,29.344885559510136,29.25256646772973,29.27115978824457,29.194047831505774,29.450099160923152,29.65158356807658,29.85720501005039,29.76990326279482,29.608365515463333,29.2287314880648,28.77902268632006,28.205724994406715,27.59399058620181,27.27940908623911,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,transportation,18.280960519693984,20.769116745979357,19.793618399583963,17.45319721511941,17.835532244503653,18.573351696490615,18.627725790696,18.509812493045697,18.3062035431453,18.442189706977317,18.705507381399073,19.374211664312124,20.224145102982945,21.13187241048827,22.100995423577658,23.040658272947415,23.869105418338876,24.597554309882565,25.351793294123926,26.13602348718928,26.783439663395175,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,buildings,2.4669871754306905,2.6324350123786417,2.259745392860088,2.389748986820133,2.4409907016858945,2.5857265717380926,2.711346744364526,2.830792151909516,3.007628549609742,3.1934666578959003,3.4466762605922123,3.677217771866521,3.977505314397375,4.244107393504391,4.541794925535161,4.797463525146135,5.013889411235293,5.1692764985329465,5.234430442455258,5.1825583084012585,5.188486286459779,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,cement,1.1136625107080749,1.1364444249812156,1.9321536591824313,2.2053523020621126,2.3930493322070943,2.612463668029241,2.8398319790847193,3.061878981464843,3.3098470014035657,3.553159129391484,3.814433383646721,4.052293101990632,4.304083416544195,4.54056785280757,4.781033517776037,4.997613106123387,5.194199742276016,5.355691117604758,5.477195284616709,5.545360212986687,5.633767315969527,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,electricity,5.853774644861451,7.293430096112092,10.809899140537878,14.659783517981733,16.50839359164815,18.35251990100301,20.13186284706416,21.572035833137306,22.958538897003496,24.678338069234957,26.471010564667164,28.325283204031553,27.881974760033412,28.907979744426807,30.10752747297266,31.62611220677207,33.391404991696724,35.10261083698569,37.079493826024084,38.54628244197118,41.12378032145695,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,industry,10.857206234600493,19.67538351895353,23.26852244044687,22.339568101392167,22.973938503157182,24.25528878171699,25.626505649309777,27.004361926543723,28.622790107848193,30.409689198427166,32.59400970099092,35.0106918994989,37.82734418364179,40.80703868470338,44.2388372283307,47.79821001546821,51.53374177454926,55.3357308519313,58.79689374108863,63.5566103561495,81.19832207841431,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,transportation,11.161298282926722,16.151888135575067,21.23841939884337,22.47165019388534,23.48354950051596,24.797122694167207,26.498043220779586,28.321725788378693,30.88953569115595,33.74267497463676,37.251784271287164,40.724587336465085,44.99578566166106,49.59605090809322,55.260479981984055,61.41428297584628,68.16430240196644,75.0423840128986,81.87808417765395,88.04132254999665,95.15851835760732,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,buildings,2.9104903247498277,3.570299322894379,4.017232506703221,5.031397200493641,5.63867641684784,6.348247757222806,6.874795330474883,7.31924415534281,7.96646041723854,8.636374857459648,9.359778046380557,9.88262952340949,10.471388735648631,10.953473108920857,11.489416574761405,11.904482709525022,12.19738510773025,12.33484141896786,12.262927839853894,11.91688111302925,11.904127140348045,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,cement,1.6434999128898646,3.127252677936146,3.912523434939505,4.799927125331107,5.370038496103603,5.92343287778629,6.447752517202652,6.9271338057024625,7.46120277084114,7.954491052806777,8.452094931174,8.869437133083622,9.294286433032132,9.688969536848251,10.10169215051511,10.470464964404123,10.802422762327463,11.076532179634235,11.28929992959614,11.421547949658263,11.61180080211085,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,electricity,3.7525873086898964,7.869784368180201,12.472525936825123,22.420883312521717,29.473414418628387,36.66212655129738,44.25475869079363,51.03969974888217,57.81519999089205,64.13768016271568,71.01386899002627,77.46461857646166,82.93943458560076,89.25605049347365,96.83528611160449,102.24742175043116,108.66525143994001,114.62256794408513,120.08812562811904,123.99212841712385,131.00374491988606,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,industry,5.1174737541531155,8.823260126650908,9.043013947508012,12.05221708031166,14.097493715166936,16.334131072024604,18.48571781348181,20.67531714615462,23.373133987976022,26.26315002328349,29.531082976119517,32.36665703029785,35.56587630433211,38.8688148185674,42.76184179327167,46.81627641057676,51.06277114231192,55.30344124479405,59.18805226969909,64.04987845673169,77.86344562019869,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,transportation,9.172222535189839,17.494119156467956,23.89573080777282,29.30896771189317,33.208615381029645,37.55406590414843,42.08204886999187,46.62273714028542,52.54533704272539,58.83353968484596,65.77631740184465,72.077889816575,79.45726990937085,87.3123421679921,97.17138886265552,107.88725593170587,119.54974748429342,131.36450812033334,143.12698248525427,153.8652794966047,166.41369891781636,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,buildings,1.408018704134606,2.3944278191156108,2.6536057413689784,5.267549682326058,7.305144403126687,9.971232792371033,12.905501359635807,16.078284300774946,19.721929167359843,23.932292049068113,28.547492093806824,33.70546547978043,39.124333631171226,44.568865075368784,49.870470093976,55.09377803708399,59.625241434222204,63.75073225005609,67.35171801987218,70.44058884643054,74.58915394508335,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,cement,0.22997457290645212,1.648143935894937,1.7114481788421507,3.6399144171961915,5.331840193041982,7.559255201053167,10.448019385729012,13.965671981165269,17.392892611805557,20.46037902547755,23.329603502209785,25.903325508288553,28.094579459330745,29.968598888396052,31.444297430136707,32.59237931422686,33.35083409272617,33.74782340917169,33.85278995820073,33.760001459710644,33.64454666088662,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,electricity,1.5422769996496668,6.20444938364497,8.967275502649644,20.725621351073958,30.35306507443873,42.13261248388876,55.21347700224299,68.77136380110497,83.17829805716744,98.92278489919468,115.53648651535437,134.2435489067042,148.96069203132745,164.51053694685058,178.73550241476252,192.41114859837015,204.51649869812252,215.77325135349287,226.80023252134484,238.00755094963426,252.04663334159116,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,industry,1.9501270177875065,3.90186185911119,4.308650672352807,9.281937137491354,13.574733208296015,19.291500434326892,25.91312761424768,33.329184129193685,41.94696479318555,52.117097031284196,63.582668558573424,75.29369287995269,87.17529601543288,98.53359015062792,109.28529129118495,119.24489111640008,128.4546563527329,136.82024295495052,144.2353052646673,150.76701715348696,158.03427243481445,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,transportation,2.203396248521768,5.091363343743192,7.13869331722802,11.615832219969194,15.094879348833967,19.689108672278227,24.677505615268043,30.140662528128438,36.426905039199895,43.72623082678559,51.79115386272969,61.886959684145154,73.35300511626747,86.42180698721826,100.41578555623285,115.9466317027464,131.58783397780977,147.94211024354172,164.4354512119391,181.45594026062716,199.15139797479142,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,buildings,18.606504115214864,16.98363291843897,15.087717358197294,15.323827481148735,15.39006874112336,15.737905000590176,15.895435811280665,16.142443698331082,16.47909807997317,16.789810650321648,16.883027141275434,16.89728995800973,16.80333865177462,16.568258073477327,16.179316675060036,15.731378055978158,15.180928976721876,14.641309596351489,14.108646026060828,13.619977098610853,13.206606291090756,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,cement,8.20461763711427,11.68448649948451,11.428527727964756,11.062356111353548,10.830757052368542,10.49898480293679,10.193556117077446,9.89791472243774,9.568416927859628,9.251292251873927,8.883759267788724,8.587844886094432,8.239576772360888,7.924529393599393,7.533563669722328,7.180797330311947,6.818294816148008,6.512359042986024,6.229736771935994,6.005691901128946,5.789013647169126,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,electricity,9.438295461018294,47.58484205872999,67.09282482760823,68.0456741194842,71.79960267196775,71.59063379096104,71.66521633804092,70.9534840092065,70.4146080523939,69.42608658256769,68.24646349001428,67.62075282102188,66.93334647315137,66.54921161086462,64.89879220400812,63.191764905057326,60.873875547001816,59.420617915083064,57.65470978619136,56.24337874658673,54.83740697462701,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,industry,22.80620608522141,32.7762008227436,39.11729415509091,40.09253038685039,38.75276770303775,39.87855186607454,40.45396111291545,41.858202786419014,43.695011734244346,45.63175706079522,46.74153395110406,47.49243397322573,47.78622477492733,47.537326662142405,46.87713328729748,46.08164778119523,45.070268077932944,44.122560039165435,43.281232876236,42.74546728577977,42.30516535961769,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,transportation,13.600476501981202,35.56078618484026,36.73506447331888,37.742383403996776,38.72480468699898,39.532518694494094,40.6353996231482,42.44799176379868,45.40465694005126,48.46470774362172,50.63613658315475,52.58677751549339,54.31691302492328,55.51613167050534,56.37950269225324,57.00597778382664,57.39702534965813,57.69450671640097,58.1156612960131,58.96374395637719,59.83384334471719,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,buildings,8.131860083883435,12.01507611370286,13.005993957725462,16.055182734765488,19.8802870986448,24.738220931588923,29.90735148554301,35.800342593115985,42.93800796314286,51.18285487085775,59.88518717296462,69.37951985057782,78.85213053352382,87.50927258408535,95.01864224842512,101.28669428790627,105.28524433134031,107.48006384578095,107.62082950858176,105.06493230238124,103.49946729236655,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,cement,12.029617063664126,24.970301024067254,27.983837298105065,33.45986021395801,37.56608204694872,41.40071450113322,45.00088905414111,48.23312736625144,51.05434179279425,53.3317857829496,55.079948157079336,56.408480343379296,57.31144529003272,57.83560666400795,57.972293391192906,57.81210932360754,57.38358452764467,56.73630129404381,55.85782447997501,54.77381096513292,53.8783170890591,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,electricity,25.88923524358908,58.03430520801665,77.83722430766714,103.32616588653265,129.66517724455701,156.63260429975367,186.6096083324672,217.41933747904056,249.54963417680466,281.66714544619225,313.61034538874884,348.053650402168,380.2014439933793,412.96585922376954,441.16242052202904,460.5603843205227,476.385295780086,488.96852213812974,497.3251373501735,502.1362093201303,509.8246746920955,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,industry,37.07504905936008,54.54197552027483,57.32476897348379,74.5508853663782,91.87382527256841,112.16600788098538,132.43274630238358,153.46474053187984,175.71840720446997,197.26164674279613,216.80795341736456,235.1767398396182,251.86845359547118,266.22137208903035,278.6871505694232,289.9287485106421,299.50936173200694,307.8621933052488,314.4844416229815,321.0723735816221,343.33823163461193,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,transportation,35.95599707908586,80.59637287123601,108.45667624613066,125.70583288357673,148.7727404231315,176.6544235275692,207.0586192957453,241.44875711785522,280.60059209486013,323.88138749661357,367.65241659070614,417.59654126691703,468.82263125952403,521.259768866915,572.6950883378955,626.3434025462694,677.8163570153217,729.5644259339216,778.6522946042475,824.0968778054457,872.8250546123375,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,buildings,2.2121201729212823,2.6842312517696416,2.44283171340402,2.2462915531209,3.3513405702879187,4.055099065781162,4.529010618555243,4.945688932050455,5.348174591744208,5.669972397317803,5.831592081986846,5.895850867700936,5.91093950482554,5.9414572071548735,5.918044355158728,5.837690432098695,5.690493587819537,5.5228111861386004,5.33349905665221,5.123616112585405,5.011299831368699,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,cement,4.639270312235661,4.508006353369607,3.6065587913135024,3.69566588983281,3.696138398469256,3.6943084259847208,3.6991307765604757,3.7017376031061837,3.7049238616141964,3.7040365077061903,3.703356156999276,3.6948227516508267,3.6843296051587573,3.6617146219005647,3.636402019459213,3.602500967479773,3.5642130712858595,3.52001912837058,3.4749011986646643,3.430827129525549,3.404627491907868,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,electricity,10.295084376695389,31.33327791724596,33.36603799016547,41.4788937471332,52.53381611704069,57.77741862289944,61.842771762734095,64.71350125725202,66.74891725154357,67.84943728900504,68.30069824923909,68.6015095294441,69.50604303186692,71.04537255505497,71.6144990569901,68.34851694764417,64.34066767468268,62.159126659486205,60.41077643444821,59.00503431756983,58.175202658349825,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,industry,10.874953437727386,24.807816737621682,23.9561828981187,19.904282752305946,20.354885192610823,21.85835363033546,22.89721707519105,24.278361965617854,25.94442182673708,27.525816234848595,29.032552898442937,30.12855825639346,31.000158325245618,31.51218946605877,31.938677167258987,31.964581710729004,31.810869547712294,31.52117890167154,31.162518010163996,30.810739554216863,30.892855221031162,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,transportation,7.961403690420283,15.752641739993111,14.805734006998305,14.613991194683546,15.793194446669307,16.96944433859981,18.10630573744624,19.563285673806472,21.341238786294916,23.051276936208524,24.261921602647536,25.35469546840089,26.326601122611628,27.5813227625487,28.69187686993189,29.746792073838282,30.564941985143733,31.31570763493121,31.956241917574243,32.553956668993344,33.16273147095703,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,buildings,154.80250091868194,151.9445775172298,143.81653428723982,146.50010436493073,151.53152290996812,158.7031243861751,163.41547238337927,168.3598297454867,173.98817824134701,179.286170710458,184.71435245025822,188.29971289806207,192.6052480531666,195.8511558903167,200.05110512325322,203.82217622424741,207.2887331380833,209.81287907857111,212.7456405045255,216.42058527543506,221.3409786297705,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,cement,17.606229746023097,24.892306532439935,16.05566669765195,17.99041817127997,19.60820096803761,21.265577148449054,22.879418002770272,24.531624009390484,26.384786133967793,28.22221974239735,30.25126023413315,31.979518528639943,33.83175954107612,35.50085332381704,37.31558835836851,38.96868233678513,40.58752353103781,42.056138938264596,43.700882080058676,45.49772176508985,47.26134623860044,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,electricity,512.7668625616876,679.6513210553087,638.8710040671475,718.6168339194448,763.2497360423018,792.9535911361501,817.9450372313623,836.2950073023158,868.4351039763706,888.4766491503034,911.2245731974036,933.7839975405006,963.9458152911504,995.8612291621088,1022.9746273625381,1007.0948864947022,1016.7714215783102,1022.4454054367311,1031.6571351093178,1039.7436681297336,1045.175819565708,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,industry,234.53353492552944,186.50604037092322,175.24354919228438,174.97893029365375,182.05712928399424,194.39476678836564,204.77947108105334,218.76398564962028,237.57630353890258,257.57630485175815,276.52438741507837,291.4647007053214,306.877294583038,319.81996371508063,334.954457379284,349.57194110904294,364.8083945367808,380.017512014749,396.92770316397986,417.37402825964926,455.7165782664022,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,transportation,460.92732059125797,570.6213526132813,530.4807186483166,552.816887780837,570.6308074912704,588.9490098485368,610.7824928227923,642.7065198902017,698.5822056040062,755.4559158544815,807.9455274899486,848.9885000221825,891.9380930623092,927.542601732684,968.0249285874056,1005.2480223910779,1041.7529470917666,1074.1516154825192,1112.2267185950498,1155.0286661523671,1207.4381511683464,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,buildings,0.924752142376955,1.3620397830459638,1.5379796261438057,1.8457268295085667,2.5704660852183903,3.6205558361574717,4.9470876942166,6.687234363422322,9.057394287233253,12.031361038759885,15.716080959147385,20.159700911985915,25.312622754388375,30.936295449221355,36.82809672095147,41.95993974525806,43.902137213696555,50.50098983918618,53.19864233737223,55.239819332097895,57.45559601608763,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,cement,0.438703765840629,0.9901044438022726,1.5356968208571085,1.9741020282139499,2.7290526938482187,3.797026262712787,5.2242926149382445,7.056539506299553,9.595351795636564,13.044162554183757,17.629575665844904,22.22338286200554,26.34414530814739,30.242861852402527,33.81306059299629,36.97103998075529,39.646480144286464,42.3351470522098,44.43053946545868,46.17969000403765,47.56716858882301,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,electricity,0.5631617797092451,1.8060664182155455,2.3549118229570514,4.1854820289584,6.191858631387452,8.74767366703646,11.819920683889803,15.678999705092039,21.31955786789733,28.82302455320101,38.35876645610418,50.462663985646195,63.991861195578,79.64481454729514,97.8488566384161,117.13898022417743,135.14018690154714,159.5713482011505,181.68948292202958,203.90622181405973,229.25722465509307,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,industry,0.7826568274507671,1.1608727224884576,1.7423402139122857,2.983994840707918,4.208644504623254,5.932148081848603,8.178112072746394,11.154673144720947,15.378907282852575,20.807546389334863,27.633763276601716,35.5684021900741,44.83344948865735,54.88322083941121,65.98133888871232,76.32331856963367,84.07813246195887,96.76973592037892,105.07999457473642,112.9700683552806,119.77518504108406,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,transportation,4.196635183294659,5.982520968912315,8.480164644129749,9.95701808876807,12.397132153353208,15.616707058634972,19.658720227760536,24.63516662343457,30.94666969660583,38.98921823915983,48.98566287498861,62.335726296355574,78.81101154799515,98.64778315164747,122.16634919580935,148.5498825972994,175.7213244764136,209.23785034449566,241.9463487156072,275.82900756103095,310.25932209286805,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,buildings,7.6000604917571115,12.176718221298513,12.597506970437513,13.027804748922895,14.868848885983226,17.31106830076683,19.364132401981735,20.998276338642636,22.53244387097692,23.958748187256326,25.316705326362673,26.63332466979396,27.961695498413018,29.07518460207243,30.023250770600605,30.310490118360395,28.954379977099805,30.26004375163866,29.891605345142125,29.49685803001318,29.596847974089773,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,cement,6.542649176818745,13.764552362559801,17.571027592463963,18.31085550774074,19.401007702134347,20.396592249726123,21.244322558168196,21.98719658341185,22.66670665090951,23.235604619373717,23.66607335070104,23.972544179904624,24.144785638693353,24.20955624232781,24.194456770901418,24.068151276353994,23.820846814287815,23.666365392193008,23.397234987290794,23.094840831807506,22.771567934570413,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,electricity,14.158230115545193,30.68328227613693,38.12190972785374,38.9808862038614,48.472150730635235,59.68712052878961,70.82985514980125,81.00210432200267,90.4031985071642,98.96922801573943,106.92105575741121,114.56388187338182,120.10270847234437,123.67925096315325,124.82823128389339,124.96892754614095,123.57370279211045,121.42036664683836,120.01395718116989,119.3516211436432,120.19155720843442,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,industry,17.99554428061964,24.815104471462398,24.25314275234382,26.131652298987436,31.11949065297163,37.3955720929521,43.65875356748511,49.63043741159259,55.3850248472355,60.9971248703968,66.43673452743863,71.686559811464,76.6983696552961,81.25524521442264,85.34622484874649,89.3279463904298,103.10504060635216,110.53579359562043,110.20680429219229,108.5141099553266,105.83359848461133,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,transportation,16.001279349946323,24.15319338989895,34.10603893083889,35.195422036845414,40.76079817150345,48.30960018104471,56.30775090458272,64.51893795635159,72.77031903798193,81.17697094668473,89.6503336475077,99.46462811870794,109.59290724000833,120.03581491232433,130.98391411138834,141.53771024197673,150.65824597700896,161.73516088716957,171.41012449064917,180.77422621288335,189.29891500526918,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,buildings,0.9234862459264772,0.9201976582183695,1.8021507121611529,2.089882000763344,2.5822504238333583,3.246454045646209,3.891349642369605,4.578838017418523,5.572315525588943,6.9002954131605225,8.613161685601208,10.736123364731391,13.254944615204714,16.045785555392165,19.067277506573436,21.6814728154298,22.195526535390282,26.233780139869104,27.598570019282953,28.545786632037874,30.259844510844356,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,cement,0.43132765945552465,0.867862721100886,1.0812635696093253,1.5218956231180503,1.9961989383729624,2.611441617456518,3.34397041767794,4.213468270632871,5.392285949410721,7.004409528573085,9.175739351331764,11.785282391535056,14.343337888084932,16.711510735480655,18.975337151567658,21.04172338877819,22.95187551524674,24.64010502337556,26.169781426968235,27.505782810481193,28.617095812254618,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,electricity,2.7256676796989217,2.9985855533681796,3.2058135064994864,10.9048540343749,17.3974283322698,25.270338004836752,34.72211231509377,45.575525208224846,59.30459907638945,76.90573062178963,98.58301924830658,124.59230739490548,153.61963823490063,185.5987819012459,219.68816083292225,252.28940732941504,285.95787370766436,316.9897418363911,347.28691043751513,374.92786903875196,398.96351793392074,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,industry,2.7815126677571658,2.2719158605624488,2.2403852862469007,3.624185798471091,4.789077980947508,6.273101336594228,7.909142453968568,9.765853314785089,12.080835259099667,14.937341244012243,18.360963875048856,22.091842957963696,26.130713755532348,30.21961152027066,34.13472778145909,37.49142221441987,42.37697993170993,46.435308493935345,48.11695441684996,50.13612010137067,53.26826819798091,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,transportation,3.2493196351619096,4.3045174467501175,6.3367132454831365,7.8368734378064095,9.466633948355044,11.467527735319367,13.678257837558395,16.168782242256228,19.311030520697578,23.384671318175766,28.49214801356737,35.36146513766309,43.74553551188406,53.70223364948669,65.40003215995507,78.41192271392524,91.84061833108062,107.9594314108871,123.84926095244,140.14223564176672,156.54965398594067,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,buildings,2.825282376081831,3.562882866671666,3.999696745854866,5.4344268722834865,7.249221440575915,10.923796239947151,15.6533909321322,21.492741572331827,29.42988655474253,39.64636676002429,52.575101412065735,68.68410185885557,88.23523074942739,110.80598233870617,135.8374724454614,158.97842190006475,169.38704904803552,202.8119305896129,218.66448237115355,231.96963037660873,249.300241301377,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,cement,1.6010295936951575,2.3867089446309806,3.11422240544821,4.1401993823531695,5.430251430632072,7.728264154864085,10.816533034279807,14.82854075727532,20.222163042493513,27.41303418264833,36.143772479833146,44.82011675707,52.933741311431234,60.77025730765608,68.02008361884015,74.69640271865163,80.98276272227024,86.41429389800663,91.29079454965395,95.55306493224273,99.12743184927629,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,electricity,2.422182151341618,5.022120454360134,6.281404622969402,9.143304463036936,13.696688401942708,22.66227253669257,35.05006098837518,51.025211332509386,71.25695968177335,96.82792136076203,128.13029741995027,166.33808022346665,208.4047884835874,255.47953428570253,305.1094859902073,355.14967233026584,403.59871270968284,452.05585321958154,500.18374689865186,543.7245845900852,586.1380469947084,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,industry,1.6878337251983042,4.581515726047565,3.6006930218018707,5.5770710811729085,7.611993982110621,11.360839254362535,16.381868010703496,22.867524198790978,31.46016855056322,42.334124852397636,55.81752200617039,71.17536597042512,88.46286394662617,106.79033411691812,126.87357344861644,146.72902685107033,173.0502153471225,198.01200930948784,211.72370279254915,224.74329681634535,240.05664740546226,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,transportation,8.79733672629665,16.204311493718873,15.597033879255447,18.809046857251126,22.553895330409517,28.927663427611005,36.89132738674705,46.5755409849438,58.48606278067831,73.24958311727545,91.15487223161544,114.35910345162432,141.94743992830914,173.77639642359986,210.14522610578848,249.46413852038,288.84019337521556,334.6322326641356,378.635038497408,422.83506730794505,466.3382721310987,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,buildings,4.9558833137413,5.529147291389708,6.677223099235845,7.188575187150808,6.774425808719421,7.383677165525522,7.837286469622846,8.14649836366333,8.327029414213827,8.408696744849282,8.431857802919254,8.400985018618705,8.334280012934508,8.199503952450646,8.036559241302767,7.798255917702091,7.443859886333069,7.268494840839882,6.982008283014192,6.674840551587338,6.458033767643346,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,cement,0.7362726220344245,1.533110587694457,1.9918202415540087,2.134255761431412,2.148974996182707,2.3979756150436717,2.6233125448462316,2.825111197274256,3.0027109605383098,3.151452337306755,3.279175850083634,3.389789729478814,3.4819637024955368,3.559747124342228,3.623240209689774,3.668645579710165,3.695458563194835,3.7214262739262516,3.7326473543470358,3.7363411699806024,3.7338987357582503,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,electricity,5.221505586984803,8.603107567430875,12.07815092848231,13.829918530343644,14.183692231992897,17.043901520337432,19.548597291644807,21.647833659842973,23.2338208862095,24.50437144863797,25.530352173097448,26.64638892601238,26.717874521917416,27.315544506941393,26.932706254222616,26.341613525779103,25.59804458908712,24.90475280438017,24.51420927285157,24.186277117995484,24.293521214667248,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,industry,7.830404507247202,14.311359057400898,13.399854405158582,15.066903197845303,15.14368469116887,16.500997779848785,17.730832844470484,18.89407408732195,19.949865483319627,20.986382330389826,22.102691870032732,23.30912052521598,24.600974459585927,25.900304569063216,27.180700441096974,29.04015993121284,41.00676449733958,45.567441028988476,43.70061685856676,38.75123787489625,35.50380192069756,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,transportation,9.896735190805753,12.014996346395336,14.270203711347175,15.502198449867109,15.130691827530299,16.4419226940406,17.75148359116053,18.978224847726626,20.160355126646497,21.183938465439,22.148343910362872,23.05533786074836,24.0121858346203,25.013331435724005,26.0914843779125,27.11221323763396,27.91271482688949,29.005837055546777,29.876361647819564,30.711189973777294,31.529233937699956,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,buildings,2.6913200013178535,3.431484406096846,3.6689277716502464,4.005851312546461,4.365834936791215,4.764336890953135,5.012455334232352,5.199844210314388,5.367773448513149,5.512723023454339,5.610612858360517,5.668084762608729,5.7120595842344954,5.726883112013707,5.757698231885814,5.730991052622002,5.559631768029863,5.663736592116697,5.619281987907076,5.5510130414347545,5.474772474366531,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,cement,1.7912610259588588,2.1026095352388854,2.1068766782499306,2.4493049677558534,2.6633499714852897,2.87312102460765,3.0718523318672846,3.26279482106135,3.4556419901629356,3.6479494448554783,3.8336310600093233,4.0125510452662665,4.185820062566527,4.3406636636362865,4.475972065989019,4.588849003677135,4.67837779780481,4.7367252948246,4.764479044530251,4.766379308160178,4.745667155201835,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,electricity,36.75460034540421,57.76951791956505,58.42714729626969,63.26872897552956,69.50514779047144,73.83582397094285,77.5675061370998,80.02603884827586,83.03502168558849,84.51175199082074,85.85128816182726,87.64586103622635,90.04347155430685,92.91220642414447,94.6630209331471,92.50280439403697,91.22346435331696,89.21447277712839,86.7630759911216,83.86238799046858,80.42187031662075,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,industry,17.31363972316759,22.362022355912558,23.781068486403885,26.162194975475305,28.150931393056382,30.375905334088053,32.31576819770868,34.25290174024295,36.29627757776145,38.47552761933643,40.74290615552512,43.048053696716714,45.56267410915357,48.155106500222246,50.96153204047951,54.94246763028442,76.99471040164089,90.32092224497076,92.1249517493265,92.97102479695421,93.25817384490647,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,transportation,22.991396899526585,30.21610060943695,32.226527407909884,34.07181016249862,35.84328979696625,37.19967294335315,38.61825445443781,40.048580525499766,42.20346623880374,44.240909376014685,46.21068696923662,47.976910171498304,49.99284665513797,52.112454832974535,54.422592596110185,56.63001156474924,58.6455166758916,60.915718749377746,62.54020862287067,63.94205123125544,65.33486929242797,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,buildings,5.0973257508338286,5.866168061635566,5.6760458229848325,7.010528116516713,7.1251212402965445,8.128895423161696,8.790526300725007,9.293017572875165,9.905954069561695,10.449504401898526,10.874100327153082,11.27332706332213,11.641365958973465,11.832258985594635,11.949455826562035,11.748143230969518,10.620751608764117,11.02057625876701,10.378952158175638,9.732317933404177,9.324273713552154,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,cement,3.572558383793471,5.359780685223876,7.166064354331167,7.896882586563204,8.405745336599665,9.15256854536683,9.770152698688465,10.287883198061452,10.726638654838617,11.09307798122961,11.37983824632219,11.591460309676506,11.735913396514679,11.816788464316915,11.825931168624646,11.78212949728476,11.673298020841337,11.570664205396206,11.424836336099759,11.260538470565908,11.067057869375457,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,electricity,2.792255795008857,7.952950767749888,10.595943040446866,19.16596817615371,26.89501777023227,40.82298675401465,53.425722131858045,64.69899548022289,75.23686473537325,85.00283141382573,93.76948257366779,101.99530295422956,107.75903708603059,112.6473063866776,115.94303621106005,117.42703628457613,118.2827412716974,118.14378006512207,118.06964771082458,117.55928301787517,117.79742021225496,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,industry,20.12553584362152,30.6582923156379,33.90596985414936,42.83939232842646,44.57768648428946,48.80770778300946,51.86337818167375,54.48527918730649,57.35539464814265,59.93914285381489,62.07850259069006,63.877881412107946,65.56017264531293,66.79772727383815,68.07116086785909,69.61772638605622,81.85222101483066,87.54607089569222,84.56026941103873,81.61703313166521,76.65237989755168,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,transportation,27.344821908634387,47.49099229887107,58.670761927343676,68.25315965920761,70.48436332323422,76.13403253622234,81.05918010919385,85.29954282974877,89.93943154061037,94.02219553011574,97.46438319821851,100.60565760938661,104.10911659431385,107.68493156675451,111.70058100304331,115.85548458222462,119.19816483987601,123.9888158712832,127.82154232391755,131.54720246535018,134.79090198246337,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,buildings,20.23549588965047,25.295363803827556,18.871953528372664,19.601875447958978,20.14084661787229,20.81979627803926,21.0644901726465,21.166976151034046,21.03602329432164,20.82780102978383,20.54006628878312,20.198888714500264,19.83447489021355,19.40236957120054,18.974672822945482,18.447691661075822,17.66837040009714,17.2906385497519,16.684954510521923,16.003944071711217,15.289764366925501,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,cement,2.5110047784685667,2.886587877604436,2.226839609276788,2.4159718651248925,2.58927606000222,2.761824966710413,2.927891009345072,3.094925712212611,3.271131822980265,3.442935957688319,3.60747627601242,3.767026390767124,3.9262988452743732,4.078501156645916,4.22817393849811,4.363924728369005,4.485551156120132,4.576183693481557,4.645107983317869,4.688884713841269,4.710573336662021,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,electricity,28.593919308899366,36.21645304775608,32.11392620841336,35.14184983749195,39.78141012182129,42.67704794599423,45.701789313140054,48.017372334262056,51.13948511461677,53.25185615650165,55.22026107348813,57.03295706609585,58.36167674914503,59.776253050474324,60.75629254229904,59.715488942027605,58.572133089209586,57.03758505209878,55.361358810843896,53.510369872179254,51.756141021392985,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,industry,32.36771158117736,42.97690750768501,43.30991525156254,38.50964580230092,38.513346380709194,39.645778030415926,40.59272814650758,41.5234937595286,42.317797773374046,43.22203746531337,44.1524983442829,45.72656475029765,47.48231806365667,49.30763086126091,51.37206742427261,54.36338677024289,72.17118839091987,82.35518356527797,82.71950984570123,82.35455241598044,81.63249917201814,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,transportation,37.03481780495049,46.05434586351028,49.86735720176967,52.16818692129135,53.739262101633216,54.4157533915734,54.87038935808198,55.14288585612602,56.2163716660677,57.05959148955472,57.38656337344063,58.61388324964781,60.43867073253482,62.72402900853789,65.4331504726187,68.24407560338184,70.87640698720219,73.65096858848504,75.91835161683088,78.05978218289052,80.2668349537532,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,buildings,4.172147799145947,3.792556166857829,3.0626267893387698,3.1066418498418478,3.3616654132298036,3.728816064048476,4.023305755182868,4.3299010557645214,4.7488348922214705,5.156780738717507,5.577168845278878,6.021711636905946,6.456205929159158,6.836643519044486,7.179639071742232,7.311078902468616,6.8375121924870985,7.35505444499109,7.1722956699504135,6.951437847406595,6.761026118263749,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,cement,2.2501840594858784,3.1541150425689883,3.2503000204654207,3.788606788731964,4.304646117742983,4.864426194835621,5.397647527514251,5.8883151879742375,6.346684653837745,6.7583938971158695,7.123264792348607,7.44083942819412,7.703429855266023,7.924813833381852,8.113269971473327,8.25873219404481,8.357180027294895,8.435789649907361,8.46610011605408,8.467474752791212,8.451705034064727,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,electricity,6.495820966369745,12.331099610142962,14.359070086035388,17.79069351903425,20.683994639552417,23.922625822201976,26.926403362043523,29.47621352249708,31.97970465142434,34.67137573690261,37.296905463845114,40.29068102234003,41.515441272579324,43.300811783775885,44.59525767749949,46.09867801190016,46.937635476569476,49.01666624461639,50.69366838643152,52.272351429443994,54.49960574626397,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,industry,7.24353570073176,12.68542750849897,15.011699507957413,17.27315095917407,19.551205571983264,22.351757942113448,25.127081267038374,27.952758801445416,30.834857597826367,33.57726938761958,36.1519013349264,38.439172478223945,40.44214938684146,42.140279395315474,43.72899454921262,45.44293572545738,50.37328229095937,50.7412799866403,49.09079540403812,48.05103592626164,47.337696306495026,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,transportation,9.467396145766667,16.57391067039059,18.99031129312112,20.640932458752232,22.449054852827675,24.696593597569418,27.116087409647726,29.622475779026416,32.46873872751809,35.47582679183117,38.55940025768105,41.8230503797713,45.28181217013271,48.91942080138169,52.84103082047933,56.78929643874118,60.37438677344721,65.05199842836808,69.12714878384335,73.14548984652772,77.18645113436776,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,buildings,41.874216317346416,20.83637581039597,31.26666062451254,36.329576982502566,40.967934725244724,46.97246296006011,51.204822618573246,54.04323410050003,55.76679910975662,56.58346679711185,56.59672924728795,56.29849865536554,55.93404210049381,55.497319829374476,55.04078141464906,54.10830368803347,52.2085280991729,51.85672844707848,50.520532357796526,49.18303645499909,48.34603711827144,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,cement,4.4076217915239075,2.607251557926931,3.1971117566889538,3.9878214526537046,4.569594897759276,5.155212240258996,5.588302863159249,5.929859664982829,6.199786328962089,6.395505851277276,6.515489377987643,6.582454537026086,6.616448806943978,6.637803901965954,6.636590998063992,6.604445345995096,6.54327477596601,6.487552617297498,6.418826591862853,6.347065022359865,6.269354532260494,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,electricity,60.432203307387354,41.56857866557468,40.12942693426759,45.35700008260552,50.2488261161725,53.951135658500526,56.41117302281422,57.434656160822264,57.801701748967766,57.61600155095062,56.83637570753585,56.0111842406282,52.866690345674186,51.34785412919424,49.231634336384886,44.3355734695493,41.92477707258047,39.137483584280375,37.668946321392525,36.5675252832309,36.0254664473453,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,industry,37.879300562683,32.146637519182605,42.50025577430586,46.815088734417124,50.647760250144366,55.24313268990728,58.55173303455583,61.1361450397064,62.91536223756012,64.3877131346174,65.58441139716913,66.67006206438028,67.9157118700122,69.25591160331294,70.62339419210775,72.83552836065142,89.56284748836376,96.87768405244239,95.33811156184241,93.56666870223053,91.99159601542911,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,transportation,14.163877190421605,9.50654860332366,12.47023010098049,15.08592890677079,17.416281284002764,20.583423344477175,23.392424121088062,25.75739065305967,27.736123451409966,29.242328827118,30.30667885322198,31.46912755097328,32.79524907769435,34.312375860780406,35.81078157919186,37.05519432103996,37.82228963469296,39.33379258562352,40.36717612148486,41.39291086541339,42.53510389795215,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,buildings,122.686903946491,145.09849797559798,166.15793916114083,213.2826419890364,253.27392784380297,302.82772003535473,333.9490902207593,349.78116359590706,360.0597992659363,362.95355873301213,358.19486531970836,348.30098534593105,336.05298757988214,321.0190691594131,305.7575019708415,288.1154105877962,265.28961973507216,253.66389360769438,235.89307260795815,218.94156999375974,203.83010089908697,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,cement,54.61801319865077,249.7809800353594,385.123577961721,389.64349173378355,365.06473046146374,339.22980333182176,319.2572496392014,302.0660869782307,285.2647334508978,268.64988520774517,252.53747631999096,237.05337230273986,221.67744007529296,206.8263632948106,192.7430631707968,179.53633943851477,167.10219259348912,154.98869179239958,144.07436060948487,134.2531260305144,125.4997774321669,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,electricity,168.93036525796947,624.7561863600757,928.0717293376746,1084.350481953745,1235.6481281954625,1363.4582307083733,1458.9419077448351,1497.6263847661196,1502.4325854907631,1482.7118359511794,1447.9567510107738,1417.0244892278922,1391.023963097071,1367.9994810457906,1321.6916355654694,1181.317136089421,1065.7402354625062,942.1277341256837,829.4920586682983,735.8515837408498,662.404744751194,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,industry,322.63859670463256,613.0214576084759,714.509755665514,841.5057632265459,924.0069595502513,1010.3227918249036,1056.6519239767663,1077.7757055771992,1083.1883922695592,1076.7687746409642,1058.0096211116374,1028.4271907764369,994.6850865563708,957.4205384143485,919.2019605422736,882.4470454920926,868.4051329944283,842.002421297645,805.940865827322,771.0789018066117,738.223361313992,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,transportation,39.31515205196738,132.23168113695786,191.47001305964898,224.67511627208503,265.5220951484163,314.8690650609269,354.22144264762665,383.26426866352824,405.835157701365,423.0543070132762,434.00180006128977,441.6131556380064,447.5534695857793,450.8776706386543,452.98876965795614,451.84902139037905,445.69072168565935,448.5121038577199,444.2926217499917,439.90424335070117,436.2391418360119,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,buildings,1.3820199761880563,1.3631648050723562,1.4761926159389671,1.8873828273751314,2.1413134920480186,2.3920951785908064,2.653366264754757,2.9094660201755014,3.203359389953798,3.5072272906287987,3.823819978611703,4.144153722364418,4.471469556999646,4.774874138907113,5.061912278570935,5.2497250021408925,5.190773791180634,5.485965791209739,5.4917506567599945,5.459848677611165,5.451380835409362,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,cement,1.3539187200084815,2.1119445415977545,2.146220968256931,2.6837011379069065,3.0017523007717504,3.301235965948437,3.6008656322362276,3.8792601631401644,4.138990189870752,4.378029288038661,4.593207504895341,4.784165125245691,4.947092069118105,5.082107352392309,5.192350498082147,5.271655072139273,5.315717596966035,5.344468019056187,5.3411316023928865,5.318980570236873,5.281573347710303,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,electricity,2.0228212635965432,1.7285469043048491,2.702587863937432,4.441633999281149,6.311399469289401,8.133834050914588,10.306973516528428,12.638155754473805,14.831536158378375,17.06470836253585,19.304611984569117,21.59989591609797,23.656635979466575,25.727936229407767,27.640756219401997,28.95496422146658,30.266108698023093,31.15631478664771,32.020285975591015,32.59702266288147,33.3173035950222,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,industry,4.255513229594176,4.849606013836817,4.886772879158369,6.671421384117644,7.865582575901408,9.117881477052283,10.542035889670906,12.114105407001665,13.751802064725053,15.479811285186468,17.302151424961416,19.176752572714914,21.098300537351182,22.96967141044366,24.746617678011845,26.960689849721312,37.520061275098435,40.88195309585921,35.96203574988097,33.30815955070956,31.772498014052086,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,transportation,6.030984902612742,7.537760142188223,8.9220674897083,10.176955060780607,11.136946604729932,12.014948627470687,13.029461822112602,14.040583264564578,15.116067434157141,16.22256834293804,17.416226042170486,18.698910897501957,20.073320992392198,21.532641778424818,23.07650815980778,24.602990884182706,25.969566797033977,27.573396316446743,28.94586768331428,30.24154213921775,31.47109638059957,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,buildings,48.67944886609547,29.03529414653,30.195102831728228,32.90144285058914,35.96990270374785,38.975756612875436,40.979980815524165,42.353642193710336,43.2792684526974,43.560625449684906,43.39088597095586,42.93794607362412,42.15986762611321,40.944965641596184,39.901897266667945,38.04559527992259,35.97041788247548,34.15630036776642,32.190164628352136,30.282651050884997,28.58068551502504,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,cement,9.692163381332305,8.06674442810181,8.364039311830512,8.892462721413832,9.095998873960674,9.211075125960916,9.252982263557715,9.227240536790951,9.170440709682188,9.08618096062101,8.986454910250153,8.871655873336833,8.735044015674353,8.565146996811306,8.374142188589754,8.165271897538167,7.952683017628958,7.75975345363573,7.5665351524215385,7.38568569737585,7.215073448972876,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,electricity,99.17790346488276,85.30055882328232,83.70171817458272,92.12423995247433,104.46358662292258,112.41044483675981,119.92922956045928,125.12245461586245,128.73403226047256,130.15814558750859,130.76911562627632,131.2652395714361,131.89102884636475,132.68117606066411,131.36480828198245,126.04924764920239,120.13871460817765,114.59805045313745,108.51855245489644,102.55695679272829,97.18871492469131,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,industry,98.66781142591827,50.08059228720655,38.50057238198221,40.814812384484554,43.10090340708579,45.728391819251186,47.17304336562967,48.29152130392626,49.233354951266875,50.14210810794384,51.05221665902183,51.9897737260912,52.89862530908832,53.61190795161294,54.40821516110058,55.24191580175551,64.772828065529,67.10206203526504,60.79759329776411,56.90486878854833,54.35545343296658,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,transportation,23.539125565218583,33.98531048656106,41.301513874633,43.34789420458064,45.427042092541875,46.795257488949986,47.79449515864309,48.2071269256417,48.52377167355331,48.47945352592849,48.27501744588963,48.72346075365303,49.473189060686394,50.378330648504914,51.20099017683378,51.81022647200335,51.99441009885683,52.8070499663701,53.05132211457442,53.35586309391596,53.82337992806569,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,buildings,161.5760166929457,160.47015124337278,146.992462184269,149.14088302979445,151.41768446345927,152.43580453226588,151.72480889631527,150.47455169773679,149.42076382898176,148.03915583544088,146.07469101933702,143.68579483729914,141.0459264400829,138.11643156720308,135.83820009120913,132.6480943745384,126.45869900127413,127.93832800205628,126.05929314907296,124.38713376342228,123.7329354424101,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,cement,40.717991788277914,42.18353260672427,36.967769039543356,41.069479260575974,41.71003220087064,42.265117652330275,42.74614310353404,43.19009561092013,43.657048825278,44.05718170339905,44.374939536940964,44.623030643728995,44.798894136390146,44.876379796819975,44.9465382571041,44.96280149436576,44.908351154231056,44.83318397445804,44.59216328189025,44.26434774688741,43.85318729630716,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,electricity,268.8485268797375,269.9974667737377,237.8648592857743,240.2637701782735,256.75851856909554,267.58401587277393,277.5660618659994,284.7911977289744,300.90065611857034,304.0779147838353,306.4258933574696,311.18142782170275,314.9230442602061,320.8946269719544,326.11244722425386,326.0536904789518,325.1383433420342,321.1533299758639,317.8975138253619,314.04435133152657,310.79600296990077,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,industry,195.45546553930328,175.57624421047794,149.26769722230515,155.32651222560185,158.41679682225322,161.36457931926304,162.60950464219758,163.6636996752965,165.08557623931287,167.27434564911576,170.18477578534896,171.72417424231452,173.62554121652497,175.46645229054914,179.07573404503947,183.82591809411417,203.47028311387297,217.9699890185207,220.61614966560052,223.17757740298615,226.29409213229215,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,transportation,247.15611168494,324.92260697368886,307.51071856121297,315.85316355165395,320.21849738310436,318.83260003107966,316.833871819107,313.56146300056287,313.948726748471,313.64158647920897,312.748762349892,315.3396747165169,319.7037368569154,325.30785533620656,332.20673501569934,339.0164220170601,343.9230479127593,352.95145908599784,358.180972518117,363.32988787602545,370.72859538839185,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,buildings,38.90953988592747,20.507849658256685,18.55342552615339,17.238299923927467,17.348140275412177,17.996569621834972,18.467927882558055,18.652492652546474,18.6425547535029,18.48584069662854,18.20793556749142,17.920268300420844,17.627975249803555,17.254724277878946,16.93609286354237,16.351567750672086,15.523246562073158,15.099570379867988,14.441226731590657,13.775726257911863,13.233832957945486,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,cement,6.283842237821634,3.2714535936065947,2.900425545776665,2.912563126391004,3.065257246039818,3.2396445516507932,3.3708992154903217,3.465699081666088,3.5366960206054507,3.582626721944367,3.6084634899255166,3.625823602046898,3.6398724214663014,3.6417076105869084,3.628110245983098,3.597392990305794,3.550423831713216,3.5047367871484463,3.448255375255122,3.387256274242186,3.319769025537241,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,electricity,70.62067013227752,28.31228671248787,29.830248949746643,28.720463242352793,30.137944917136483,30.716429292108213,30.8959005177733,30.512983254113315,29.94714917582414,29.072111541709074,28.205827658353627,27.644338502504013,27.25567905086147,27.03743120079579,26.207663883502427,25.955945772385622,25.223581717727836,24.40070974963573,23.781940205043334,23.367913783375535,23.10664581882173,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,industry,102.48691096213697,50.699202604878934,39.0073797126955,37.51992074144691,38.10555945751555,39.80399637728013,41.05739862116548,42.25112261551068,43.28709145782766,44.431872733298604,45.62935524451615,47.05164903925247,48.70285099334008,50.34348998805817,52.02931868674086,54.33944991747742,70.32493153369533,76.80018742485349,75.11540223033523,73.22283455665298,71.3690031481517,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,transportation,15.502941235412019,9.445075656425056,9.256854552823539,8.473454799263937,8.81818840027541,9.390558307850316,10.106138494985013,10.762941095194995,11.432872310135423,11.931928471192816,12.342246410443241,12.885610541667749,13.572981732736393,14.313813775001556,15.018443647276406,15.599124448092555,15.956292760952387,16.54385649198874,16.902361546493065,17.227856415958403,17.604233040474732,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,buildings,11.460183295756831,12.271127908023152,15.446224480688127,17.439460539670073,18.778506732836888,20.536885964730914,21.893845044750513,23.01212767408745,24.0869065725559,24.931847200193953,25.54117694418254,25.97392392808024,26.236406042238077,26.252422454410407,26.20715679596158,25.87993264487431,25.10849120588152,24.89214357293715,24.268605799051375,23.574310959229877,22.97310000050639,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,cement,6.859426637660141,10.772917556034333,13.050706562457265,13.372114997584935,13.740551760795533,14.053696128996991,14.314590980057089,14.522627521859253,14.692907899396875,14.804633780007762,14.856895053045493,14.849901207407889,14.784799892631618,14.666378099359614,14.51173107633684,14.310487266787012,14.075455532993013,13.807754511134533,13.524271519251142,13.23717058082346,12.950073597298196,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,electricity,23.229208795312182,33.61480145775393,41.249697634256165,45.94596392537951,53.00843817135533,59.94046555614994,66.39484819625399,71.85912059515408,75.95341382275619,79.23276822211837,82.33065967601415,85.74131392811663,89.33587472537371,93.06713288238223,95.65083586603991,96.37592308111428,96.85128155306096,96.069161488939,95.40138916218089,94.45942191731208,94.06785110431862,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,industry,20.89905270113645,23.311518605215863,22.419385331262163,26.695608261204157,29.96231673482107,33.82039249564063,37.21699606208751,40.29766595340076,43.22822921738774,45.88680774115857,48.24268109954973,50.29562223075711,52.127830613796554,53.5871797539755,54.82645037501988,55.32112732023896,58.47947308089498,58.76915465186608,57.51747808006398,56.69921872042756,56.44019657453114,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,transportation,12.490269016842825,18.312107772162307,19.8063295770831,21.97823320099895,23.96917755443603,26.0277399053165,27.827665019082097,29.314624391248085,30.797784757951142,32.06141955778022,33.09936178348942,34.437394515116345,35.84154136050789,37.25300876124492,38.62922568726275,39.847648907751584,40.73735923809363,41.93704503106204,42.73863461005734,43.47175879082549,44.366433958829354,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,buildings,5.841381974512447,5.396198018566723,5.070198071605867,4.885194195823498,4.990909375982813,5.002766963726574,4.89937615763476,4.8412336443260955,4.907583417776472,4.933850665914533,4.9326895529175445,4.887562496695309,4.828919684650666,4.743820426710046,4.670678532449712,4.517850670842325,4.135582240580316,4.205710218448831,4.002931827330041,3.8021323792886648,3.6310447171606017,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,cement,1.3655511476611637,1.198403853727387,1.258409775007471,1.3494761329113163,1.4015474657120217,1.4561311490298046,1.5103264713217799,1.560970010837074,1.6101279207332264,1.6586573793750696,1.7064755566271466,1.7537236706994057,1.7977060687517215,1.8348112284002402,1.8678104871517556,1.8956730221136326,1.9190429221806338,1.9360792244447873,1.943702470737793,1.9433581238042452,1.9363054016404084,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,electricity,0.15247380525728205,0.0985175433962995,0.4919178556738685,1.8339091030827122,2.6939456920597644,3.57115789930604,4.49074308621816,5.186042563742281,5.456367123898937,5.786143344328,6.08159682848389,6.487234299128056,6.172373234205373,6.116581846130312,5.948653531273901,5.491143937911297,5.306724525297551,5.239464518535552,5.3371016836680045,5.42046467109489,5.638653973067028,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,industry,4.879845717795138,6.578829615381896,6.299798650295288,6.756737809473477,7.376441020434171,7.91652738000836,8.490806823359502,9.316879560112042,10.34139099750694,11.490433226210117,12.79695674623481,14.012684525187314,15.402800785884011,16.923125229280714,18.610203882194178,21.323705974360383,38.44015719218352,46.36096895108524,45.55784503118664,44.44625966613117,43.14569282118132,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,transportation,8.958717747778259,10.706657117199882,11.173942141405714,11.487888590805303,11.658336885698379,11.684423428339112,11.685127098052849,11.635016427501125,11.74597953572701,11.848731522058998,11.941370365944117,12.179254548077944,12.47019048168509,12.785780639868484,13.140203301743252,13.481439725763238,13.740756404367778,14.1374464763981,14.364830137424706,14.56211397464331,14.823047717516484,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,buildings,21.725606651941188,29.771724543809942,36.708668546182466,51.58617287584113,71.55958273403998,90.58505727980383,105.5239142524855,117.48943354588613,128.55768617164003,137.2498191260838,143.7492637303195,148.84448631907253,152.09334514362297,152.96225247386522,152.43969192215084,147.64098343548636,133.18236340388881,135.34546972381668,126.95246709331147,118.84308411273375,112.91772806052116,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,cement,12.858769085987028,31.144238404156624,44.01676075489185,61.64245479823771,76.87492403135636,89.24235686977924,99.89668276156874,109.53784820338262,118.25644849624749,125.90377324075571,132.32013326014004,137.45986648084684,141.12240709458473,143.43989446237865,144.62050990836207,144.74193313386695,143.90932014541636,142.08813616437038,139.69061257239278,136.72728609179043,133.38187093302642,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,electricity,68.6754277313975,188.5810381944295,256.012753430102,338.8234072239815,484.11526958228245,628.1740243871493,790.5258383301408,956.2957825431495,1123.6393312139214,1282.963351535049,1431.6921181179193,1571.7685310219215,1698.8683671578158,1812.606964627531,1908.8715278341804,1962.137280952684,1995.3279617624469,1983.7742531370131,1965.6054695259272,1928.2540329736278,1883.494236609622,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,industry,50.738713569962385,78.72157175888012,108.91340727665524,148.4680246647992,201.91139371988797,256.000875120674,306.3152542568616,353.96358218037204,400.6477663058388,443.14715658072026,480.56265380036774,512.6151589797555,538.8411767224973,558.4047417089091,573.02928336381,583.1243871292012,606.3653630455419,622.677483578823,620.1965139919292,615.2137617365088,612.958647621349,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,transportation,25.646325260711887,33.36841999696868,55.92370239216845,69.51886499325234,88.65848470828213,107.42808196384661,126.67918725523452,146.64555066495652,167.73389167769224,189.76505892682894,212.48451641284777,238.71531625823047,266.35311173986366,295.2536996736656,325.19105840789047,354.05195457871446,377.8790703024181,410.9666428576481,437.75729934778036,463.5006813200896,488.0776714146737,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,buildings,6.170137451478503,9.459019459713971,6.5437414438025785,8.449336021581775,11.86439798267271,16.654125092033237,21.173067246298835,25.1781730475449,29.1999546627145,32.6818638536686,35.536843071859366,38.16767671199729,40.29122358277444,41.67682622963488,42.56972540193102,42.19770597245847,38.82393127639388,40.43220022782035,38.84067832136944,37.17392195800757,36.191563242705975,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,cement,3.1634462746452763,7.486984612749113,8.775698472619943,11.366943092135266,14.041469235268131,16.58984732910521,18.629462611351357,20.229404990126397,21.55326856243167,22.561933026038727,23.254001034890585,23.693040880750182,23.898577334988715,23.88763983981088,23.693335473557415,23.371043249994308,22.98523359668889,22.443072087557105,21.8854751802843,21.288706381011366,20.648708690559104,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,electricity,6.418096286345373,26.002063364787322,34.35078917957099,45.79778439136864,60.60349215140642,79.64300135920311,99.90114009828338,119.71197336257731,140.17735789881175,158.3393494379433,174.26412027010952,188.67174588187493,200.5617263391996,210.8320647748521,218.89885746488414,222.1039146251991,226.31629178117174,223.10745821828854,220.9809311125432,217.25179961057754,211.76368463020117,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,industry,15.591059753096868,32.59495598351519,39.1954379427874,49.02366429355572,60.6491951420425,74.86205089021878,87.31836384737959,97.89407475002284,107.09319366212219,114.44000002179455,119.95258680763673,124.37861150870397,127.97099996023981,130.65804316298056,132.86383366352283,135.40390710003254,154.14583602085457,163.96396539211585,162.67161092697347,160.45932284297803,158.61646028972007,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,transportation,10.882226474433976,23.03903343603441,31.979508162219084,36.79762559559759,43.30614895991745,51.46278083448525,59.46687977405411,67.1717684645861,74.94840332011901,82.46777817604696,89.64350707315668,97.80097248662682,105.69954830990903,113.19681475487384,120.26852476915894,126.65268059210999,132.10103662538407,139.04162362219924,145.05664568946716,150.64138482544635,155.44288978941282,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,buildings,38.928078057782656,49.22154931195596,42.46962105398382,37.64128148556673,36.38456656914939,36.646176359680894,36.07341121687463,34.98803023488401,33.442337737968955,31.98100300123213,30.52518035403226,29.153340990146397,27.888780788564592,26.49916110643049,25.204440479234187,23.708828991945577,21.43804983138843,20.89429861248674,19.407882915199952,18.04164268797675,16.853976168902715,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,cement,18.578827886411684,15.186880621119098,11.979316355083636,13.914580988053732,13.818353171207054,13.613070529522222,13.36110495746284,13.060333253614463,12.731334348821019,12.384531014099714,12.027868242466536,11.668868128940343,11.304279416949441,10.918411104887774,10.516172318872272,10.124807988480125,9.778128292106755,9.346302567402994,8.958425948041612,8.576067556489468,8.199435105954539,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,electricity,91.90039813801965,121.32242319658071,117.81061228746441,143.8802648572172,150.49067931147275,151.50149534507068,152.03967775458733,150.3106511685986,149.44520129280258,147.42619848853977,144.6183634881045,141.69454042565772,138.58751561308446,135.80674376608093,132.3836388934245,115.72965479695985,109.21293260305124,103.41921108607322,99.41580218877101,94.6930572788825,89.42547360998039,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,industry,95.84186738237779,88.20188765878848,81.69939907432985,75.90195387892248,74.42714100001209,74.90017374659469,74.5606447812251,73.93836985080436,72.6224191191312,71.4869973408882,70.48219217113319,69.67122873466435,69.10370412014525,68.32546996514988,67.61003797471047,67.43694735586213,75.4007693269541,76.26808532535173,69.25450515121537,64.57909996067237,61.52779233871627,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,transportation,67.88338366782962,81.94735217649865,72.60117855927169,71.86099008277634,69.69640545273623,67.30480395993543,65.53133109068294,63.64280428826362,62.86218922424641,61.951955709392124,61.432797553161905,60.446115444270895,59.76533938071047,59.25548317616722,59.06320232918021,59.029799538922035,59.12025120861357,59.14765831436851,58.898046085079415,58.55140824126714,58.64219556017925,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,buildings,7.120390340420943,8.780928399373927,8.333591478279297,9.088580880969317,10.232538339005174,11.285347022576955,12.188184788525218,12.953924967680717,13.711611778907079,14.462269350106045,15.28345791626662,16.16262042062798,17.02771689783669,17.80976293258356,18.512166753633213,18.804592958286847,17.89023335107506,18.94904558476112,18.587055483318693,18.195544010806852,18.15408398374128,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,cement,5.029846899659627,7.3507584927551255,6.941021040988123,7.792189802467999,8.49970820579794,9.17475529552142,9.794382958843933,10.348325587295946,10.842268898394124,11.275220545335372,11.657971262301496,11.984115724007987,12.232087915450007,12.442210209216842,12.62236780366204,12.75976027438763,12.8413747252898,12.911104181368842,12.919599258810706,12.907524089963218,12.876658369953155,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,electricity,18.22504344570507,34.99805908842994,33.5067300849718,39.29020259547262,45.462335329119306,52.063586800899714,58.585993428054515,64.62694158151548,70.72551915240264,76.21837934387894,81.83166589085619,87.63497734065677,91.92281153983613,96.49082893250097,100.40289597928029,103.28289730572828,106.43565015238916,108.5548409966282,111.31419266626932,113.5993406542319,115.6134351953656,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,industry,20.621711036865808,21.458711133443185,24.20215263695034,26.60290225433683,29.68619944557874,32.80636585087269,35.78018552041324,38.51489433243235,40.937075907394714,43.27789849333759,45.73527716991064,48.25532242675403,50.78285835854274,53.37961305892509,56.12646357886467,59.93862068093551,80.64062267436157,92.83733736313096,93.90294993770733,94.28458028939475,94.69861625057457,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,transportation,28.794123327348554,47.05428428939584,52.9771860529918,56.897148983279834,61.0902014268792,65.20585323401431,69.53121948754222,73.46322358120017,77.38359335772881,81.23816840471272,85.66480728523186,90.32593756934898,95.34313449896148,100.94348772193831,107.1620268809825,113.61400829879678,119.5367156841437,126.71681564493738,133.16072402747645,139.65177103359804,146.0978405997222,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,buildings,19.45622267267334,44.57997762380152,45.319042288203335,49.727750075331485,52.889941281161924,56.87070457422737,59.96244891686537,62.004067090564206,63.871679115049176,65.38530666950594,66.60758618036718,67.92762024244313,69.333578761825,70.42824987297472,71.32831689249977,71.16219200972577,68.15533344957132,69.70884808681507,68.01786015652134,66.23817882869832,66.06614735979161,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,cement,10.521567753501667,20.01732612367388,30.399099759519356,33.65831827119461,36.09885880896988,38.32367752765896,40.401585188799054,42.389279576945455,44.28627321840236,45.98943759223408,47.48684505281018,48.75418330002182,49.73817366507293,50.50267810272555,51.065910851308495,51.30127582549017,50.92179754509345,51.27071845989643,51.014572002406446,50.67767026055946,50.21418689568321,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,electricity,49.34903049567292,118.15243285178947,162.7862875033606,176.19509015501384,197.9095108469091,221.0893702515691,241.74875448951985,258.321490890827,271.7768534023191,282.33561502717816,291.41764624528935,301.4081037688146,301.07530620644326,302.5646739023206,301.0129009978233,298.8618487359125,291.8347206250512,291.3626082192917,289.8389826711906,289.39187365396873,290.92593645380333,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,industry,38.357193477345504,77.49455575200778,105.64178993801981,118.32909246419428,129.9661140511035,141.96927632628942,152.99437514747194,162.69166454528172,171.47295620901397,179.48477344692583,187.20786563956486,194.7949608569719,202.33733127761343,209.7262574755113,217.17787941422222,225.15330922254583,252.28708180492606,274.36611980607375,281.48829604834964,287.504433530197,295.3307113987769,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,transportation,68.10099796632404,115.0360098425324,148.53452798988303,163.7301838110772,179.07346473801874,197.6600724860993,216.51533851857164,233.93875245284016,250.43454681519202,265.61325721953244,279.6838491242256,297.677070830629,316.29792213600206,335.6628330598628,356.1619783528949,375.96514025279805,392.37455734614855,414.151826956897,432.04291811685073,449.2689128241311,466.6797717529371,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,buildings,2.3156624986092536,3.493604068536907,4.903428665093427,5.437305181229216,6.431302447022084,7.566404826355798,8.893776113874699,10.411788287188399,12.265699444867854,14.389300092191702,16.69087250310706,19.178594720607418,21.809577377258332,24.48957157041635,27.294720854279557,29.865231279922632,31.66226982271168,34.28029985196968,35.962768164121734,37.254174118297456,38.52999913992993,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,cement,1.7668200648293517,3.9719785619807073,7.424320021806025,9.380388760649446,11.497328792981472,13.609584123044105,15.867304132187403,18.143785639056834,20.345028811154577,22.479050025179678,24.481720930947027,26.26449045462639,27.792899618134722,29.073276288554542,30.088618747206034,30.882290037551208,31.49586700495044,31.85158004919189,32.06867770841382,32.14611121542252,32.094199576517795,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,electricity,4.015509274563699,9.312654089730598,10.75838287997774,14.10065551546786,17.511967885915112,20.90344392625197,24.598227150590944,28.66154419276397,33.61794919498778,39.48235265252394,46.060078093470814,53.29149494868492,59.04586379474695,65.5809870369465,72.35885190646141,79.17983895294921,84.81061521352602,92.3146349918464,99.05953358599338,106.28431574655069,114.67717494304507,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,industry,5.40326185453439,10.257395538425792,9.613087167938383,11.897297842545365,14.96255181491207,18.673149742492487,23.29801990832123,28.91470380786859,35.59023657982634,43.14676486537492,51.394040245359626,60.017322281120165,68.8167552643698,77.11843155763053,85.40929921111534,93.20195347049466,101.9168382088935,107.91786503472835,112.09566530140229,115.94538568502936,119.85111573984601,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,transportation,4.3462030274633054,8.280361541325993,10.866291965184425,12.341517789081518,14.443797290174285,16.747572240773096,19.424683070131923,22.452699538887472,25.977889759542943,29.920239372282026,34.23413316796348,39.59229307188788,45.63295457132967,52.50604729490023,60.37431361570334,68.85246922360152,77.28489577074309,87.4227627633566,97.13697366532934,106.96957208449965,116.69910214052754,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,buildings,144.5313040002987,72.41630292691909,69.20679938179995,70.04383984645034,67.6113062633044,70.9917127541695,73.44481219144149,74.95005294028421,75.86097415937597,75.99866145606117,75.48717131630853,74.80954875745884,74.12157062948297,72.90497512985364,72.3216245877671,70.10640880966173,67.44514781947898,65.27087311990425,62.64448792277491,60.021641393076166,57.94579123801172,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,cement,16.788014486444844,9.697567325537756,8.935887869480268,9.808456966429507,9.911024875676668,10.309337995914778,10.608702975843872,10.814871710366841,10.964148208918598,11.04755068926967,11.086029427651777,11.110535593378255,11.148352354500295,11.16457999941541,11.15697346506162,11.114227877688707,11.027963515305265,10.952240287072861,10.84615232765467,10.724114556462082,10.577119973969031,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,electricity,215.87361132894497,150.60379486078492,142.7077798752516,138.9652286226591,142.63902396627563,146.95735622429405,148.45777407291288,145.7012900123318,140.6489159024763,133.55335033735125,126.17282876773055,120.46905732308355,113.09620400693491,107.82672147807219,98.81710930228532,93.28026983815609,87.96772611068481,82.09422666093158,78.088998063619,75.28426944468718,74.25151988006088,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,industry,211.8273970168466,150.79567377274822,166.75049975560486,169.45657464365,166.68045660597144,169.36640563356124,170.7811216556047,172.10268357430147,173.0926159499093,174.5378067899549,176.30355640589116,178.39061248055873,180.984427683334,183.22419592734053,186.7484846575149,189.64153233354034,212.98995886581093,226.63873802271192,228.29109038660636,229.03259051429993,229.14628733291048,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,transportation,84.71892442746488,68.23153484601008,77.63455806686335,79.03077313782892,78.40425247897157,83.50386061007586,88.07681266340737,91.24907205976642,93.39958095954358,94.10339635852691,94.31105198999775,95.56615442635791,98.09179291919403,101.05183876870768,103.98362980608388,106.23504074472433,106.83656721191824,109.96020974744128,111.36870791470572,112.78410251504779,114.5219114852832,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,buildings,3.6025441968970555,6.921567924987641,5.165938002738671,5.857385063590999,6.293407605981415,7.6178880598988545,8.45121736817179,8.978559558072835,9.289553012060228,9.436645715452627,9.486866716172308,9.419577979229164,9.305949204246144,9.108234713304698,8.83967218503448,8.461092042235473,7.807578902104227,7.6195357214116965,7.168253811447042,6.72214618078111,6.437124824929444,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,cement,1.9701203538296275,2.6722663121546173,2.654824589608522,2.6359588585934146,2.8706184539643846,3.2412507500647516,3.5662906668474728,3.845700772419963,4.089183264051473,4.29677921479636,4.475217103467221,4.63314500655892,4.773970084306816,4.8884515084334295,4.9737104586957965,5.028583318059704,5.051225154954787,5.060121366970169,5.043496169193151,5.006427482981165,4.946988721219308,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,electricity,41.3205,60.67549994999616,70.02108582350503,68.04762192609834,72.66237616552871,79.850851277171,86.17688825669316,90.72548617852785,93.70526398258606,95.43631660351858,96.65325626065136,98.33714153464607,100.5459864489398,102.99922529193066,103.54989464340788,104.77794574880856,103.12094942228148,98.25858383013279,92.7471529949794,86.99287749293566,81.98026999147565,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,industry,29.74042685957933,30.31167192688223,28.549756594563803,29.057757782829825,30.572060956231685,33.39667454074077,35.43601821290114,37.08782590743802,38.48245792063667,39.63118672349643,40.64861952133797,41.47903415441443,42.24166494882698,42.82883521209876,43.252206957030154,43.50499195885402,43.751575956204164,43.51339385748719,43.272717558683404,42.93504219597981,42.821353348526266,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,transportation,18.280960519693984,20.76911674597936,19.793618399583963,20.452332009901973,21.418753797096578,23.540546114157564,25.12041032934831,26.34773029125348,27.402420698882914,28.565139213511515,29.94309307721786,31.709574111248735,33.672451731525484,35.69433881244592,37.88316717223277,39.98563878411356,41.63068994174087,43.8731714839667,45.57861380658605,47.13378629978227,48.388039033297574,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,buildings,2.4669871754306905,2.6324350123786417,2.259745392860088,1.9278928133835251,1.3667737413377485,1.559814723600428,1.7310365307972593,1.8699554576563877,1.9881860488056944,2.1053484804333107,2.239522806479527,2.377497454061701,2.507889229176481,2.6075591626040775,2.686898639473686,2.7157827380750934,2.6236798246337703,2.6901518962294784,2.6061419559009384,2.500617000205688,2.405255714532724,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,cement,1.1136625107080749,1.1364444249812156,1.9321536591824313,2.006290280462398,1.8537165115663434,2.075491951407776,2.2795135433148563,2.4667588520012815,2.637237501801305,2.7940702431208186,2.938640987802434,3.0742314374080277,3.1936162034582907,3.29517201383428,3.376307851173881,3.433703495892952,3.4663116686425917,3.4993042005215114,3.5061760266864317,3.4987338891481485,3.480136330240377,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,electricity,5.853774644861451,7.293430096112092,10.809899140537878,11.24274981596759,9.783364089428202,11.432746345546283,12.740863139874797,13.640264126560803,14.0475305256524,14.48315939320626,14.78003323424963,15.607308535417854,15.840227300725163,16.994948045301214,17.164695704274266,17.230274299974315,17.049430371436486,17.26900984779872,17.405107409225053,17.47301475089306,17.867080713019913,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,industry,10.857206234600493,19.67538351895353,23.26852244044687,20.854370063130606,19.125696678859367,20.413695444235536,21.49281157190266,22.251724322217537,22.75417865824507,23.35166645937874,24.286886201648187,25.722777911042236,27.398933351348507,29.290888419634953,31.33902446723806,34.51547259674314,54.59225618113548,66.20409047810934,67.00412493236553,67.03234416574395,66.58892993430361,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,transportation,11.161298282926722,16.151888135575067,21.238419398843373,19.968967549316766,17.58439180192607,18.77080542098773,19.778911811327145,20.55167931969896,21.350627170497322,22.207576065353674,23.302594044088252,24.60484537833104,26.065975526357544,27.66132279633318,29.325363417421634,30.96873914548041,32.43837810095625,34.1931811519289,35.663173146334,37.020456788476515,38.301134704718066,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,buildings,2.9105286814266504,3.57029925248273,4.017233274878712,4.600704106341322,4.9662164632237635,5.6248324377910945,6.054214844132085,6.355813254408925,6.666568448652012,6.932499227645261,7.141262807803727,7.299902114002565,7.4178804180599505,7.450256422106027,7.432741497180672,7.239939380654391,6.60438822217387,6.737390236231861,6.364349108966596,6.005598899203195,5.82577958793954,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,cement,1.6434999123322769,3.127252677094641,3.9125234349395197,4.552793119686873,5.0535233863664955,5.6458694698795675,6.153383074556492,6.585351436182149,6.979721689217632,7.320566679080788,7.603300975147208,7.830656762047466,8.001923398502933,8.132789051614944,8.233708160415793,8.293014412261103,8.309882955432716,8.30983533664286,8.271400126240303,8.215196531270498,8.143835789663267,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,electricity,3.75258743521338,7.86978436915988,12.472525936825337,18.22089255419697,24.17880991298362,32.45502968348525,40.56829072898518,47.88146165088519,53.861400161768614,59.24364770350127,63.95767849208229,68.61411206023239,71.66743462687127,74.36996599271517,76.0602674010569,75.72690046000673,75.02502865184799,73.49410468078882,71.70802598009965,69.58403046841981,68.78937700527462,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,industry,5.117473668172245,8.823260107282591,9.043013947508157,11.193823864900207,12.786789677443123,14.88048301854467,16.776113430448525,18.651981856263596,20.601908449919947,22.629976039193313,24.73081914038824,26.428422965848924,28.087283882940657,29.586741411859357,31.11200516561848,33.085226256956346,44.252027076917386,48.49091867667057,44.85833325419703,40.93342759070545,38.75787445693586,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,transportation,9.172269652089206,17.494119156116977,23.895736604052924,27.12205736237629,29.602959910912805,33.20000722669344,36.69929446144887,39.99976549926251,43.459272663881706,46.85315330079876,50.174698220829605,53.39922719187755,56.71225283280478,60.11845310230175,63.74625688338646,67.31515156960754,70.39526692109217,74.34730261362093,77.6669680925958,80.9350135723839,84.16437258170872,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,buildings,1.4080186941346058,2.3944277115261614,2.653605600758911,3.613760625057288,4.933496952666755,6.491643923595317,8.096799595227576,9.71436430430416,11.532762695300464,13.505326797950753,15.626217023440535,17.9210138102396,20.352676227093394,22.796706109379187,25.337723879723487,27.66680881530632,29.213909753348968,32.055196190525514,33.86720276080767,35.43418810345645,37.31321327065457,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,cement,0.22997457273465066,1.648143936567656,1.7114481756209923,2.5510247511437036,3.6208194264299562,4.9781791368916615,6.563714976733968,8.399602481048145,10.620709833683097,13.256956459995852,15.999354625893798,18.511209727463616,20.644528649711177,22.57508487876901,24.24699879373764,25.656182663849492,26.85491570181714,27.767419454263113,28.54425204870816,29.15094201585695,29.587938328987978,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,electricity,1.5422800352531587,6.204449502901717,8.967274969276808,13.764840152355205,19.82015723078438,26.905513996905363,34.295067763900384,41.596400559458246,49.09519537664757,56.82766612169008,64.68061355495132,73.36569207533086,80.35793035447578,87.26503684577206,93.78670163876494,99.78270488027326,105.05296646490669,110.95749446208558,117.18625318348306,123.63456253931001,131.00186926408196,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,industry,1.9501269823558165,3.901861901161334,4.30865033251479,6.542753310419967,9.321181039591812,12.722959919899697,16.529861740351738,20.67402662215979,25.45145769613118,30.833905689164155,36.77995804539953,42.65679788108881,48.70903350864009,54.92802012669475,61.61448071858554,68.23019674074187,75.50054556297108,82.55349063753523,87.68973772436951,92.58956229388225,97.24662292646418,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,transportation,2.203396248521768,5.091363337843132,7.1386932718284974,8.928175474023837,11.130630003527106,13.56398285970796,16.055562640786338,18.578558379629655,21.336393241067263,24.274996253248517,27.400615987977634,31.235412743793226,35.52249990507193,40.29699782493981,45.65400805427533,51.468701199252074,57.36412839888367,64.63199640375805,71.80201093347532,79.272796444945,86.91735101164791,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,buildings,18.60651481521486,16.983642569514164,15.087718700572378,16.287309522389318,17.336540539352132,18.359549689353567,18.64930104016583,18.481032047173304,17.92706177360995,17.130222688705775,16.163129266112144,15.164454611539572,14.145614018835616,13.121569727790352,12.190638629250891,11.228498815581347,10.076623722910398,9.558403315389434,8.804168556583651,8.12462398906016,7.5472793447559425,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,cement,8.20461763711427,11.684486451739623,11.428527506374452,10.964326012215105,10.606387930773781,10.21918719022666,9.870914790548051,9.510870897315348,9.11675514784051,8.686667345383885,8.231116151291978,7.757436983884716,7.299144310214507,6.855520687334491,6.42671891821365,6.03788984946811,5.693858416379434,5.3505097358916744,5.0520624444462605,4.780440716049256,4.521461659129386,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,electricity,9.43829546049399,47.58484195984944,67.0928254839741,70.29170931023371,78.1244731919698,81.14426224040406,83.0285667171576,82.84163741372615,81.72981109922219,79.46133023410913,76.62766419946165,73.71590374217304,70.7528308808002,68.0639395537994,64.63204242148726,60.67892803600105,56.1650956520408,52.40189608715973,49.095636227327006,46.157076128574545,43.570700788735905,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,industry,22.806206085195672,32.776199214201675,39.11729923585428,41.19712586528326,40.80087349035181,42.50014801700758,43.117379760341855,43.39959872097318,43.00184650534979,42.3396766044754,41.51884278977475,40.50430940044249,39.45443443237814,38.219947320054594,37.161851352104556,36.05480779353506,34.8446382222387,33.97564027252365,32.74598662290979,31.628159888346655,30.731744240122207,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,transportation,13.6004765019812,35.56078617687031,36.73506423546464,39.354111288151245,42.29607435975396,44.665144644846436,46.26012364575152,47.055188514583705,47.41670281074398,47.29083452785427,46.67260947305684,46.32945101664907,45.79573917565095,45.19286326055159,44.73404265214819,44.2441632818692,43.653631201831445,43.43749417944166,42.83503653982826,42.26059274062723,41.955375081748414,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,buildings,8.131876588121614,12.01507610584155,13.005976620368418,15.219490165558916,18.13235776855583,21.21768967315049,23.910836492214862,26.23863195836509,28.938257673012934,31.646066384867453,34.3204216120571,37.25235156312313,40.26771130692745,43.01791536909441,45.64716083435664,46.99281486704711,44.66365242224086,48.34366958832369,47.790845854382155,47.04647279005921,46.76697679699022,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,cement,12.029616755952702,24.970301028792463,27.98383808284758,32.344821446059896,35.978824397825214,39.33531410909268,42.273536656070455,44.76277604814325,46.88211184805595,48.574947658284955,49.79244845145331,50.61760317644405,51.08168378471507,51.2220101907817,51.10086276046617,50.74861978057713,50.260299433294264,49.44652904447911,48.58833093228621,47.64586803738962,46.627374456588896,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,electricity,25.88923524358908,58.03430495050128,77.837224058954,95.87993002773328,119.44293493532109,143.55850274762037,167.95624733840285,191.08731402120588,213.913551527091,235.05952225436982,254.6057466038906,273.46191274055775,289.34128512226357,304.776015080765,317.9012153484171,324.3476083373837,332.2749915925879,332.992596308183,335.7435229600074,336.46054294186376,336.862393862587,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,industry,37.07503286283333,54.541975521818,57.32478606605296,71.37361239718281,85.5029940984893,100.12388554596552,113.29517964892057,125.09994003432172,136.58403985893585,147.11744414725007,156.57958673911494,165.35861186332184,173.68840279513822,181.12123396275737,188.42264762679093,195.300074800624,215.74375020584637,229.10390088508373,230.07424938847967,230.24882466196598,231.46557098976996,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,transportation,35.955955845303734,80.59636887702881,108.45667313505803,120.78814543723273,136.6685658703181,153.02904288796424,168.84333998310427,183.79873086078996,199.12005198671412,214.52789554547303,229.75050376771728,248.0830469392049,266.7965324932787,285.7588593635785,304.89095280657,322.8276740575004,337.15820343557493,358.94956446100537,376.329447031275,393.0489473993941,409.37066182541594,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,buildings,2.2121201729212823,2.6842312517696416,2.44283171340402,2.9003461974339726,3.4301566740550964,3.776885430919987,3.8941045463031516,3.930682287409477,3.9479110305148923,3.896263895776964,3.782796177187164,3.6389448430661737,3.5018839012540606,3.4536923620562376,3.4166374277184683,3.3426107838608154,3.176959495270429,3.176108725932357,3.062070673336698,2.9489848458940298,2.8785484685722755,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,cement,4.639270312235661,4.508006353369607,3.6065587913135024,3.61942104495906,3.5862354194396326,3.551564968774466,3.524302283667107,3.497990171759705,3.4719025373694876,3.4476462306225146,3.425746414254193,3.4056003716065746,3.385600231425518,3.361464928040161,3.337949835665655,3.317887991564506,3.301856424465313,3.2795849275660065,3.2634070293647186,3.2478550399781088,3.232694498090982,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,electricity,10.295084376695389,31.33327791724596,33.36603799016547,47.22507028084435,53.7495362063934,56.909386738680055,58.96116499283616,60.04239202646329,60.481518721719006,60.16931840571837,59.28942552670425,58.28300814601037,58.48424579419213,59.02858467626661,59.11453458207199,53.27170907050173,50.7295136260852,49.04672545328882,48.22072554614518,47.14762422628176,46.20317748033617,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,industry,10.874953437727386,24.807816737621682,23.9561828981187,20.34039181034704,20.460337784420506,21.215385056083633,21.471477376801317,21.821786521732623,22.27646388895259,22.776990375945388,23.24889442281055,23.648392854595144,24.033648857020996,24.49821948448278,25.02100910912769,25.340298149660956,25.77624548459887,26.271796486759786,26.421846298012568,26.665427924199417,27.215167271152442,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,transportation,7.961403690420283,15.75264173999311,14.805734006998305,15.341264748183836,16.00509792124518,16.586993159207548,16.949943608980146,17.29072359366587,17.622890859453914,17.812033331093097,17.814125332769848,17.851787568949632,17.896851073303626,18.26198505178734,18.69356540021075,19.09370477584455,19.312819472155592,19.78961698993554,20.010008488251042,20.175845886542202,20.32014594298168,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,buildings,154.80242262149767,151.94451975125094,143.8165279953603,145.42285842786538,151.18052774483246,156.9540294607175,159.55507252943514,160.59856790182565,160.1139917008718,158.71495232346933,156.63867319648202,154.43929987727918,152.27031550731047,149.9112467193341,147.7553974366971,145.14631858926387,141.0275448673592,140.15257645804903,137.67500743152607,135.19588304519522,132.7587187772833,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,cement,17.60622974270186,24.89230655161829,16.0556666942699,17.76358801696602,19.681610937322155,21.495416051079566,23.05930352015373,24.404961162969805,25.60894824550899,26.7007170608913,27.684446382355617,28.647766079169863,29.62144636934413,30.59456421836294,31.483191817161163,32.31800484158681,33.230162635039335,33.75549090225967,34.33748862406853,34.83585678068285,35.250875443199064,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,electricity,512.7668618994646,679.6513206609153,638.8710024557481,710.3783091938952,763.7141318884946,797.0652809946347,822.1682021225928,835.1146842525544,855.5037895462874,862.5099746494544,867.4866690500297,876.074123857329,891.8795902299138,911.7576128661074,922.9660155418413,895.056609585224,889.142458506525,878.7414253574401,869.0340539115663,855.4950628686544,836.9253760325179,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,industry,234.5335332440085,186.50604712255893,175.2435475043746,176.57185040875484,184.10876345991656,193.6895857369238,200.3867001245774,206.19990287387077,211.12435119825224,215.68707744189877,220.19620614054162,225.13650707762957,230.66621389514313,236.4231616196729,243.39521741849842,251.32223151969055,278.2465731475554,301.1770294976713,308.88958902126103,315.7993336833537,323.8776766242118,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,transportation,460.9273205923273,570.6213526136565,530.4807186502474,552.150197548794,570.9298530320141,581.6019971772644,588.859432443001,591.5231640399752,598.9430050223204,603.489073366131,605.7878859989177,613.4922802333289,624.0184846586455,637.1066650908708,651.5230673058719,665.3926628765747,677.2141951506438,691.3289520986311,700.3665192295866,708.9697096794371,721.2360282323922,MTC, CO2 emissions by region scenario,GHG,region,1990,2005,2010,2015,2020,2025,2030,2035,2040,2045,2050,2055,2060,2065,2070,2075,2080,2085,2090,2095,2100,Units, -"Core_Ref,date=2015-29-11T20:35:01+19:00",CO2,Africa_Eastern,6.906387950000003,11.30169006813321,15.651103029057499,25.895035366326983,31.202080216800013,38.367095844999994,46.27435594470001,56.071317430900024,68.26130961319997,84.16076237100012,103.12456890799996,127.09088609900003,153.69032240499988,185.55605090400005,221.23094142100018,259.05052776,297.6205814279999,336.7009603970002,378.0153931013999,419.4122697036996,463.69053631956973,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",CO2,Africa_Northern,62.297785279900005,105.59287259046575,126.64965172381807,152.37564111570774,166.9598666862767,183.38729315493748,195.839612144268,207.45880166201994,216.99817704871006,227.90079518902004,237.76014572322993,251.26479934286021,261.49265587806997,273.8359169282002,285.94219645681,297.85379371133007,308.11661630094983,317.7970921668349,328.162493794267,340.3178696075119,364.926920767717,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",CO2,Africa_Southern,10.111313888,11.363079240242346,14.666326320279117,21.188095641857256,26.96250838792175,32.32952029801773,37.62634471016924,43.72065031346981,51.42730027574969,61.79844178727614,74.84223699769896,91.86250555385995,111.66575714837995,135.66637561209996,163.45397947049986,192.46671807399989,223.2188600459999,255.04091402299997,287.21925680000004,319.7724887600001,355.7863092099996,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",CO2,Africa_Western,17.333680130010002,31.757558885302313,32.593058983544296,42.250059801758034,51.38484456045081,66.02070138822661,82.6198718415988,102.76120392761908,126.5517149155799,156.27325722863,192.25035474770007,238.84377708129975,294.9582816361999,361.33245842049996,436.95694043371014,520.3273153504399,607.16618246801,695.9056655859,786.2332628478197,878.0729161268794,983.2737912002102,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",CO2,Argentina,28.640862108999997,41.99176761160815,48.41730157070348,63.46776566204976,69.78426522951024,76.25157951739014,82.74548340320594,88.88678196763703,95.93215625477202,102.8818500481363,110.54815030857787,117.49543811907229,123.65489318906124,131.17953637638612,140.6219436581781,150.38499198075309,160.62619833720382,170.56013428046126,180.65105193239714,190.68732403794007,213.60153500926944,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",CO2,Australia_NZ,81.542215,115.88184854207734,120.21062562929558,126.88373783804776,133.4643728148638,138.57159185296774,144.17229165185603,149.96384363767996,158.44879865983773,164.72484365796447,169.44404168402554,172.8983245718701,176.28856429847005,179.09369542057,180.78725020659328,179.08428409997205,178.62252343769015,178.29535249570006,177.36381440039995,178.71291528919997,192.50048510099998,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",CO2,Brazil,58.932501861999995,97.32819755229843,116.01481028329346,151.01504816468864,176.48137306717487,201.37531104039314,225.2641139321519,248.44469409106097,279.42741961789386,309.8222450139768,341.39028988874014,366.7972485234797,393.1825396180899,419.00910518780006,451.70139512199995,484.7483819519999,520.3503151659999,554.6248430479997,587.8242356132,616.6002264896009,664.8379224042001,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",CO2,Canada,120.74306180999997,153.42974472140963,146.3900489362829,145.99920997971523,149.62968883141102,152.528608225921,154.74151748558205,157.90809418328504,163.85353885279966,169.08330260847322,172.11189500685873,174.93712356498605,177.1851990829768,179.35575541236506,181.71740828460395,183.02366809951465,185.18151249560665,188.1002098836071,191.322540106844,196.71907277751998,215.4092921309589,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",CO2,Central America and Caribbean,29.63046426229999,48.53743426542069,54.67400233595463,57.95845148166719,64.69623781852,72.67489329342898,81.81365923655498,91.40768938704097,103.52065491602306,116.10230024395193,129.95360492449873,143.451608534466,157.6454443692139,173.26149778629792,191.87831058726584,212.35038276913616,234.40090167349518,256.2516897890992,277.77794209815306,297.6791238250461,326.8700039609054,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",CO2,Central Asia,158.75724791099992,106.665419942,129.56373825022945,155.08327030860386,172.5577471861588,189.3487643176996,203.3929449616882,214.91494139909295,227.3047039845698,239.13204120456217,250.6645675648002,260.53432244795,267.47934940242,276.08095727829954,285.79708254430005,291.9170701251999,300.457725238,310.0490590850004,321.51517327899984,337.2214093326998,366.2359555559005,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",CO2,China,708.1890691855643,1764.888825656137,2385.333065452633,2723.6178549475308,3035.4601970520243,3319.0669291515474,3580.61963051787,3806.8934638510405,4004.433495886745,4167.584076481934,4293.468249611509,4408.036725630207,4510.816850618551,4605.148747010974,4673.680905515163,4667.3083325004845,4665.334983625686,4669.172987823512,4621.653769240927,4512.24206765337,4479.14129168361,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",CO2,Colombia,15.045259401999992,17.591020307294112,20.133842017326387,29.284604179637576,33.95121872234051,37.90789344514176,43.04349412761628,48.550448043443865,55.25712085590653,62.35134085594709,70.66708461098096,79.00749984545105,88.78993646388496,99.80494152405007,113.23662511950005,126.76174595493998,141.46612840363008,156.04626383949991,169.68809341269997,182.35453657980023,204.06738017640004,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",CO2,EU-12,279.7565155017001,206.4686496196357,202.06303692616802,221.80567075717033,239.42125977734065,251.58101043164353,263.68314228711813,272.85787378766895,287.72075497777973,298.5226652870201,309.5875764117698,314.30619154189947,319.5400351351502,320.91614681278,323.09804390882,317.210752653626,312.56011521055916,308.83062098268493,307.181158131663,311.0139414510782,319.3078095117971,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",CO2,EU-15,913.7541074024774,973.150006912592,878.6035679086699,895.7173985646402,905.0699283819001,911.9652098462896,913.15943321644,917.01640379205,939.7726625889112,951.3430749298653,952.2648924707624,951.671060034938,947.6984289929626,943.1355089128227,937.9907949873768,927.8492171757987,920.7547851294547,913.1098398844863,912.1996828502046,920.4897115923857,936.1684329756706,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",CO2,Europe_Eastern,233.80405580299995,112.23589271122688,99.54836701325472,111.2662863487222,114.60443394300086,117.368254449187,120.52285975006806,123.45869067301797,127.72897643370001,132.12768088345004,136.97745312353993,141.7607703053001,145.94603792479998,150.59094030270003,155.41416868360008,157.80620327480003,161.632484765,165.95226196799993,170.76498607920013,178.5898936866999,197.93483844599993,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",CO2,Europe_Non_EU,74.93816960000004,98.28249668693068,111.97247175888747,173.28622008246663,192.4872463620259,209.39569507732566,222.69373620212463,233.17661202300005,241.6745113113968,249.75910275423803,255.9811974258356,260.9929933287952,265.01513276383,267.2919209822799,268.2493514798692,257.53853533560033,252.84912936300813,248.41217350465513,246.42479577690324,246.6824640517134,249.42721384140714,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",CO2,European Free Trade Association,21.197986671548996,23.97859537379595,24.294028140942796,22.056069528178305,23.42628623555001,24.49345077997999,25.543428921269992,27.018071031800012,28.764027665500116,30.454980187494833,31.864198659391302,33.21072754037427,34.58135676232435,35.855195782768604,37.250924661868765,38.73409419980597,40.36506221551116,42.49104845383559,44.65596889374706,48.65341503562809,64.00266814369144,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",CO2,India,179.64484230164794,361.58694760960697,501.5752924174472,663.1614444852331,856.5574563519508,1081.3319600332525,1325.3524712682895,1585.9673474710987,1855.6292878466013,2120.382352545599,2372.351138004997,2611.8255366839976,2825.0221799249985,3017.2700791230027,3191.4094787059994,3307.521876500002,3398.7836352599984,3466.07637637,3523.11110799,3582.0038272999996,3650.7995941000013,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",CO2,Indonesia,42.22496623999999,98.58205685680001,120.84517520100003,182.81040660576733,242.17552556748507,310.7653012645446,379.5307812737679,447.70878192947697,517.5929545155198,587.23036516313,651.8594354974704,716.3014665888893,772.2849849111793,821.8921755604297,860.7443674133904,887.1230628371998,904.8932608549004,917.7625906007006,924.9285900750997,931.5949832003996,954.0330030384995,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",CO2,Japan,313.1325616001222,355.8800922921989,326.56012761760593,345.13006088307407,348.1684605880149,347.0083942069856,347.1262097829209,350.05978520839705,359.8241159630943,367.8157397412646,372.76113082163005,373.0767774027401,371.7909768162199,369.3544529216998,366.46003277321995,349.2346685663999,340.5791013887001,335.13573194240035,331.5629814411001,330.49060899249963,335.36456875040005,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",CO2,Mexico,79.79111509917462,119.6427338277056,125.96065725854368,121.66420663785905,130.43207146684495,141.8141822741355,155.2873088791629,168.78090550476531,186.789776856416,203.93999859313305,224.69195906878986,244.9772062662,269.88364579849997,297.27406742199975,331.38588558000015,369.12960316499965,409.4333073690001,450.22154085799986,490.7663339770001,529.7386281040001,588.5734897629999,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",CO2,Middle East,185.78502040136195,375.28030296961987,492.680748011007,545.9177970267666,598.6941799243937,659.5434384775883,717.0402626917659,773.0019296783006,836.5423863578795,899.39788992508,961.0685158938995,1020.6730742939004,1068.6851470861995,1113.3314901790002,1162.0371886200003,1207.466571829999,1252.74169801,1291.8312657100003,1334.1460112799984,1379.0944920300012,1453.6359423100002,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",CO2,Pakistan,17.847456720000004,35.31599380000001,43.5655107,73.97012863601398,88.97374176387997,110.139501956,136.004739829,166.87653498830002,202.66862040699988,244.01335540500017,288.00478600899993,336.49847509800003,379.849795602,429.1296666300001,479.2969191199995,531.20625674,578.9173897700001,624.5815604300003,668.2517220399999,710.7068120200004,758.5134272600002,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",CO2,Russia,673.7392512599997,451.74487373715834,465.2355249545304,477.6271783224734,491.8642876105023,503.249525921913,514.9805111574034,524.2657835345049,538.6516900623748,551.6433889713098,565.6331527031004,578.1053661775201,588.9348432504004,597.7213856399004,608.3825298042997,617.4336321723997,625.4894337579994,633.5417653819994,645.9887603919996,667.1554422500008,703.5505836380004,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",CO2,South Africa,94.91455193000002,121.35012294336832,126.18522349761574,107.77443740107296,114.21253056233544,116.69771296240359,115.94742374497157,113.96281552388334,110.39314311118103,107.10271192779,104.11698442659802,103.48822361782996,103.987473577953,105.41276026819003,105.24016081482303,107.70299954685092,108.92681289450407,107.99799210175789,106.516933021019,104.6669841791,103.37292008369906,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",CO2,South America_Northern,31.453970198000004,46.8898277849,59.50875779820001,64.06605375098435,67.79987803968552,72.60306040814999,77.80751864520002,82.79072514410005,88.78827735729998,95.57726628680003,103.57784528090004,111.78998796800008,118.98657816668002,128.0955832694201,138.92945646717004,150.63340317681997,163.29719901608988,176.00530518366995,188.46566146716995,200.8716535529399,228.30234557738,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",CO2,South America_Southern,22.596282657000003,40.88489432786688,53.34105871248935,73.61346976662719,87.78832850863171,102.82210870584636,118.14519235360721,132.58426679953786,149.16148965898506,165.82540729052587,184.13332703259098,200.66142496106352,217.72846012383786,236.07986460383998,258.35985593260006,279.32615193810005,302.277854846,324.7021998078003,345.9557235693997,365.2460686302998,398.79719000329965,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",CO2,South Asia,7.333793543,19.24024634150991,24.779673412441603,50.53085481237438,71.65966223949269,98.64370961229001,129.15763104133995,162.28516687830006,198.6669899549999,239.158784387,282.78740556500014,331.03299431700015,376.70790983799975,424.00340441000026,469.75135743,515.2888462399998,557.5350920799996,598.0342005799997,636.6755518599994,674.4311716799999,717.4661040617,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",CO2,South Korea,72.65609988381726,144.58994849696313,169.46142773957305,172.26681365365937,175.49800513902628,177.23859201066665,178.84356036283734,181.3000155782386,185.56174969332488,189.56358770205512,191.39083227359404,193.1849916704511,194.07927490961896,194.09532215241688,191.86816807195973,189.19142628333512,185.34026487827782,182.3912446035411,179.38989900580498,177.578195751005,175.97200122069796,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",CO2,Southeast Asia,119.08194155873996,230.15803201854604,284.60828948994697,353.0977315231925,427.75796294876596,511.5918229571535,601.0090805674569,696.3662112499355,799.860889385985,907.3247351189905,1013.035787169299,1126.6148879872399,1237.0560762885693,1345.7918605469,1445.5355810103006,1535.9313359522007,1616.3798667500007,1690.6115778659998,1753.940654554999,1807.144398973999,1883.3660458279996,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",CO2,Taiwan,35.98283199000001,79.08597400286438,78.17734540783844,81.93912162118573,95.72936581857722,104.35460815517604,111.07441119399701,117.20254006331105,123.087629397381,127.80047637456697,131.130034894015,133.67531726032,136.4279095088119,139.74184016434305,141.79921994461705,139.49974370767896,135.970824728007,134.03849884648903,132.33758845355806,130.923807586696,130.646344371627,MTC, -"Core_Ref,date=2015-29-11T20:35:01+19:00",CO2,USA,1380.6364487431802,1613.6155980891833,1504.4674728926407,1610.9031745373638,1687.0773967150064,1756.2660693495802,1819.8018915983098,1890.6569667344097,2004.966577699592,2109.0172606399133,2210.660101326992,2294.5164305268104,2389.1982118895976,2474.5758057466205,2563.3207094494906,2604.7057126350987,2671.2090252631015,2728.4835579150003,2797.258087839,2874.0646803599993,2976.9328874210005,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",CO2,Africa_Eastern,6.906386650000001,11.301689954000002,15.651093128,20.946323790819992,28.09715390386408,37.714110312207026,49.82813167839997,65.21260966789998,86.29787335900001,113.69529852600002,148.323824262,190.74983621599992,239.29302827099997,294.3548834559998,356.6375743450001,420.9429896099994,478.4880351599999,558.4148015799996,626.3446976899996,694.1244501100002,764.3140779499998,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",CO2,Africa_Northern,62.297785279900005,105.59287258920001,126.64965172190003,131.64664499120997,154.62232321384002,183.0999809422301,211.40483943588006,238.13697272913262,263.7577056836942,288.33767741175285,311.9908866235053,336.32090116140904,358.5003995449542,378.2549481207992,395.3759352616185,410.2130405725901,430.11200727092023,447.6175552186,454.9197189822297,461.23183265328015,467.69284039405005,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",CO2,Africa_Southern,10.111313888,11.363079240000001,14.666326319999994,25.9776908415,36.23158936149999,48.86886197799999,63.544830911,80.302463541,101.66105977400008,129.1324367270001,163.22501351719865,204.56699246992082,251.0941267873111,302.27786106405557,357.26545184325585,410.91584005712673,465.3227429450604,522.2582122562951,573.02131700416,621.2576466154699,667.6582740844399,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",CO2,Africa_Western,17.333682130009997,31.757557857530013,32.59305897966001,43.104081034519986,56.54210364479997,81.60291278730003,114.79327539400002,156.7896664983257,210.85535744764218,279.4711494822294,363.8216820656695,465.376877750363,579.984162242182,707.62258738911,845.9859115897001,985.0177181103998,1115.8589805306997,1273.9263960043008,1400.4978882111,1518.8258173720992,1640.960890810201,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",CO2,Argentina,28.640862108999997,41.99176761099999,48.417301570000014,53.7219010858,53.38150901699999,59.76851063699999,65.49154043,70.49175793220002,74.67378379569877,78.23482894159295,81.4923948038953,84.80157898499243,87.14721493960941,89.98834162681271,91.86457601858125,93.96074785354388,105.65669094642502,110.46786520253598,108.80608151705475,104.06078542095254,101.5198466165609,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",CO2,Australia_NZ,81.54221799999999,115.88182582000003,120.21061901999997,129.95796438000002,140.5286315057,149.0489409636,156.58592045169001,162.79024930737347,170.3582785610133,176.38896607586182,182.24923354747534,188.35156969103699,195.49698132195434,203.24742294512703,210.2809252630558,214.39523390481986,237.10181418379202,250.85173404954705,251.81228428500003,251.0934584996999,249.23659360500017,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",CO2,Brazil,58.932501861999995,97.32819755000001,116.01481028,145.16596070899996,157.48796061599998,183.04621687499986,204.90898105699983,224.06473287500003,243.16428880500013,260.5067436740001,275.56627976000004,289.343576871,300.80551909299976,310.7788833481577,319.4899933264091,326.43029932790853,341.6268998765535,352.2695893289413,352.2548928087709,351.7159756862122,349.631578498377,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",CO2,Canada,120.74304181,153.42975011000004,146.39004728999998,147.83758111000006,154.76418263899998,160.32023409199996,165.15731427600002,168.94567322830875,173.98082291766136,177.80422958271583,180.90686741638822,185.33932161766703,190.04344117422016,195.28878979994997,200.76437564071998,205.13460958724997,223.77374613859993,234.91072924860023,235.3295481186092,234.61790571526666,233.65632924929378,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",CO2,Central America and Caribbean,29.63046376149999,48.5374327658,54.674003832,62.60002119851998,70.35056168416303,79.56421407641194,88.59051908433084,97.26965960961893,106.378820288222,115.6396464096203,124.70864219249125,134.01546151001457,141.39905058486536,149.1219853262063,156.45820928777863,163.90074121692277,172.88004342485476,180.6008241496941,184.55004571595282,188.887826522059,194.23652307447063,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",CO2,Central Asia,158.75726791099993,106.66541994199999,129.56373824899995,147.5754774344,163.85045818899997,181.9054213029999,195.14850363489992,204.30132795979998,210.4198112717001,214.22505087260004,215.83971438279974,217.03135277479979,216.12816100569984,217.05127232599992,217.34318036299996,214.93904626741377,228.06169702035984,233.69321370517736,230.3135570140964,227.0571536284487,225.16749472705507,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",CO2,China,708.1890689100004,1764.8888255578,2385.333065206002,2753.4575721592337,3043.515934210889,3330.7077192178863,3523.0217299385463,3610.51373096841,3636.7807970397225,3614.1384931192506,3550.700641480155,3472.4193132423757,3390.993057993766,3304.143223706573,3192.3830226269642,2983.2650352130845,2812.2279724596256,2641.29491088468,2459.693041313936,2300.0295188691925,2166.1975521426903,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",CO2,Colombia,15.045258091999996,17.591022406999997,20.133841816999997,25.861094611806994,30.45699408099999,34.959993303999994,40.132697848,45.581560112799984,51.04173789700003,56.65231802285998,62.43997602603004,68.40381795239998,74.2467300526,80.08709942680008,85.7179632417,91.03978317180007,104.26192986109999,110.441722122,107.76063705390001,106.9250495194001,107.29326678369999,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",CO2,EU-12,279.75652610170005,206.46864811573997,202.06303997076,218.08085912933,238.05743123887,253.12091540506998,265.12971182605094,273.2019568155,278.94083990160004,281.42648710199984,282.47366245611784,283.7880475912039,285.15772560926166,286.181495972736,285.2500242428281,279.3122344643829,280.8290378145428,276.42321214343883,262.1241722141243,250.4860401739501,241.16334747693767,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",CO2,EU-15,913.7541403629998,973.1500053039998,878.6034593702739,901.6537966267142,928.5215170874974,942.4821042858522,951.4803787087808,955.6809999599942,973.0127627403946,977.0901762676651,979.8090620740034,986.5541194742678,994.0971884487636,1004.6618052241598,1018.1797182406585,1026.5070065589423,1043.8988397235103,1064.8464490125616,1067.346304280583,1069.2035836574837,1075.4052216003734,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",CO2,Europe_Eastern,233.804055003,112.23590590999994,99.548372302,94.86474774700001,97.47512777798008,101.14722674383007,103.89829272814998,105.64526539816997,106.84638938084002,107.50439984649014,107.99383427738717,109.12768003877638,110.79932494492083,112.59109831880285,113.81952949831823,115.8433381065336,130.5782869053956,136.34882352713495,133.68890852901015,130.98126885759999,128.6331611109453,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",CO2,Europe_Non_EU,74.93814120000005,98.28249139556999,111.97247225660001,125.43123848299999,139.45879789710008,154.3789548888001,167.64774945546998,179.00607493220005,188.75914855686383,196.91741035776457,204.07078429573127,211.29821987549994,218.32656261474986,224.82626494038013,229.82556524727727,231.73530385652097,235.2522597065551,235.47549296721783,233.45063063627876,231.4421522368969,230.79795443369463,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",CO2,European Free Trade Association,21.197987519999995,23.978600164670002,24.294033606799996,26.31312637910001,28.12109423241552,29.630912375500028,31.07633746637001,32.54018709350601,34.06158941600633,35.71804896240681,37.45940700395414,39.32081316021099,40.67238179328097,42.40452706360195,44.237974039578475,46.71025428265044,63.54271560629712,71.8801472651671,71.20689963183236,70.1748260260393,69.17525651525742,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",CO2,India,179.6448423,361.5869476,501.57529240000014,670.0389401679998,923.1196883400003,1171.43044209,1428.940924109999,1683.9322180002644,1938.8351492505974,2179.029186071461,2400.8087077826885,2609.403374974228,2797.278418235975,2962.6675592975057,3104.15207847848,3191.69654810518,3256.6640791736972,3294.8519976787247,3290.202374285766,3262.5388584469433,3230.8301653240087,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",CO2,Indonesia,42.22496623999999,98.58205685680001,120.84517520100005,151.43535306572002,190.46470259379987,239.21180372649985,286.4889102526002,330.1853889100001,372.9721692460002,410.49091110999984,442.6510387457999,472.7120192530002,498.42203482500014,520.2513316989998,538.2942040500003,549.7291596900001,574.37221572,588.9881857200002,589.4351887301077,586.8149605102009,582.6631011503605,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",CO2,Japan,313.1325552000001,355.8800927199999,326.5601264999999,343.19907019000016,344.81714436999994,343.9657187800004,341.56616862999994,335.9401803999997,331.10345797999986,325.230645505,319.08635075699993,312.6340380390001,306.64956212599964,300.8052173149998,294.7774519160001,276.0300157800004,274.95013379300013,269.0755724150001,255.93469696000005,244.44132771399995,234.6489449589999,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",CO2,Mexico,79.79111505000002,119.64273376,125.96065724799999,139.67100479100003,154.9709676190001,170.53589747400005,185.87995940099992,199.90730682000006,213.60006913399985,226.4719386239999,240.17318393799982,254.3629818632046,267.3086234990924,281.06592566999194,294.82595501223295,308.3999271400762,337.34466157957866,359.96923607347736,369.8846672539199,378.63906170409973,387.44123419789986,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",CO2,Middle East,185.78502139999998,375.280307966,492.6807477899999,541.64043532,595.9378908099999,655.9131033399996,711.6225055499996,759.3452586369995,801.8423129560003,838.8083941722762,872.4037967798021,910.5619443967094,938.7823189931861,968.8847022296615,996.7470011048933,1022.4437873757112,1055.5735232231903,1100.860168294401,1122.4027356399993,1143.0814598020008,1169.217858860001,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",CO2,Pakistan,17.847456720000004,35.31599380000001,43.5655107,53.157164995,64.84694774100001,77.50015349797634,92.08200729092916,108.58451517293004,127.79679166120015,149.4176860199999,172.860811892,198.34414712399993,223.0979815043,248.76821928300006,275.52568436299987,301.98163625600006,327.17031847999993,353.78695141000003,376.3234145000001,398.59933783000037,421.8513494900002,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",CO2,Russia,673.7392512599997,451.7448737319999,465.2355249490002,467.3048768349999,465.2460673989997,481.1286805618,491.3692379173,494.8179945899998,493.9662706300004,489.24080403000005,483.3606655532464,480.3459165204332,477.44232441112774,476.17224704412627,473.02771675457967,470.3773306465743,486.2671909878891,494.91606421713,491.2392122189,487.84661584300017,486.4429938159999,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",CO2,South Africa,94.91455193000002,121.35012286000003,126.18522341000002,126.05109183699999,133.81723155799995,147.64721936799995,158.7508271630001,166.98529706270008,172.96886287571397,177.36603703913943,181.20700376132288,185.57840094959207,190.539919830588,195.51894430650296,198.49847114292496,201.75802813131207,201.36176028756702,198.32450252059004,193.80991405223983,188.79004877784396,184.57416955854603,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",CO2,South America_Northern,31.453970198000004,46.8898277849,59.50875779820001,56.00027303890001,49.71394525480001,54.25255209639999,58.02312637300002,60.78036228944755,62.777732399211544,64.94178849119557,67.54764390783758,71.38662901980696,75.00661110102004,79.84986031301894,83.89226880933997,88.86397245794002,110.17011375948003,123.85582428,126.18483883121007,127.52530609805001,128.64270959333993,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",CO2,South America_Southern,22.596281547000004,40.88489423699999,53.34105971000002,65.69030939101962,76.58834391430001,91.80627896488103,106.251364757009,119.47445333228893,131.5689628132937,142.97994360310662,153.60786533971694,163.57243173766688,171.88688802624043,179.6583235236427,186.58511353206433,191.6603893846164,204.5867825281745,211.37977290911212,208.86933547567816,205.67356100190756,205.68157316624874,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",CO2,South Asia,7.333796533,19.240246390000006,24.77967235,35.40055431300001,48.82628465300002,64.662279837,81.54100671700004,98.96295234705077,118.03651884615763,138.69885134067565,160.48675923862376,183.69012624164955,205.58666866935036,227.86184595530742,250.63991436785005,272.80460572631983,293.98658114750003,317.96591311099974,339.09005549,360.0829207520002,382.0681331849998,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",CO2,South Korea,72.65611049999998,144.589956362,169.46143467000002,178.0946000589,189.1643470003599,196.88828425751015,200.92627355605185,201.28830723014892,199.1921449302967,194.90868845948583,189.21331452615098,183.4715082709348,177.4477188989509,171.45380635212481,165.14527599823296,158.24429009170603,150.43387125756402,144.72399125493098,138.53295716624112,132.95097982474698,128.32666992768404,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",CO2,Southeast Asia,119.08194155873996,230.15803175799007,284.60828924000003,335.60596514579987,395.72563667360004,457.2643832429003,516.2790883378998,570.9873593302999,625.4379642280006,676.9258224179999,725.0486674776997,774.7735008027997,821.1756008386996,865.8960281409992,907.962847256804,940.2168204022314,980.1009604606323,1018.8363603014118,1038.526541269834,1054.4508464392272,1071.0932244059134,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",CO2,Taiwan,35.98283199000001,79.08597400000001,78.17734540000001,89.42649272369995,97.23136020600006,102.04020779399997,104.80097965300004,106.58355307179993,107.80065300000003,108.10220122799996,107.56091586099998,106.82763424600002,107.30209276509996,108.60376275520002,109.58346276300003,104.36591320500004,102.29703661320005,101.56341296198744,100.97758165876071,100.18519339024473,99.84910533602269,MTC, +"Core_Ref,date=2017-3-11T14:30:25-04:00",CO2,USA,1380.6363681000003,1613.6155467,1504.4674633000006,1602.2868035962751,1689.6148870625802,1750.8063094206216,1794.0287107397598,1817.841280231328,1851.2940857133513,1867.1017948421159,1877.7938807690518,1897.7899771264576,1928.4560506672615,1965.793250529694,1997.122889554456,1989.235827678319,2018.860935435846,2045.1554782833814,2050.302667131795,2050.2958724171303,2050.048748886217,MTC, Aggregated Land Allocation scenario,region,land-allocation,1990,2005,2010,2015,2020,2025,2030,2035,2040,2045,2050,2055,2060,2065,2070,2075,2080,2085,2090,2095,2100,Units, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,biomass,0.0,0.0,0.0,0.0,26.2226404,44.65710299999999,67.8933722,98.34647399999999,125.77174400000001,147.37648800000002,166.07507099999995,177.412876,187.33301099999997,194.260984,201.836605,209.376297,217.41711499999997,225.337369,232.558092,238.87058,246.24401500000002,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,crops,311.92467120000003,428.28109870000003,430.69721629999987,420.2476318829997,426.1767025340001,429.9991050190001,431.83000862700004,444.1269253040001,454.02400840700017,458.48032070200014,459.6159700269002,455.4722337081,451.00376406550015,445.32956062880004,439.915639122,434.1043008628,427.8446911573,421.33280010200014,415.4162288473999,410.10190305829997,405.56079210480027,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,desert,1154.214617,1194.895342,1194.9877450000001,1194.9877450000001,1194.9877450000001,1194.9877450000001,1194.9877450000001,1194.9877450000001,1194.9877450000001,1194.9877450000001,1194.9877450000001,1194.9877450000001,1194.9877450000001,1194.9877450000001,1194.9877450000001,1194.9877450000001,1194.9877450000001,1194.9877450000001,1194.9877450000001,1194.9877450000001,1194.9877450000001,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,forest (managed),101.97584040000001,134.4069045,145.33026800000002,156.30967299999998,160.20326400000002,163.81021299999998,166.20100600000004,163.16374700000003,158.7571896,154.79653590000004,150.85747170000002,151.7977536,152.4788518,153.20041469999998,153.572546,153.5804318,153.29180639999998,152.81061350000002,152.21322990000002,151.62461249999998,150.97443149999998,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,forest (unmanaged),110.07212879000002,58.03721887999999,40.92342608999999,40.742053059999996,40.34759128999999,40.04873406999999,39.75191603,39.29548370999999,38.93331886999999,38.696529039999994,38.53551018199999,38.42733292699999,38.34749479399999,38.30131842699999,38.26763387999999,38.24015132299999,38.22495933499999,38.21782926499999,38.22213681299999,38.236200372999996,38.226309681,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,grass,859.257675,723.72887,708.3877129999998,703.9366579999999,694.8821369999998,688.3482719999998,682.0159009999999,673.7062850999998,667.4663578999998,663.5166452999998,660.8494825999999,658.9507964999998,657.5284835999998,656.6217225999998,655.9075717999998,655.2938003999998,654.8526067999998,654.5257871999999,654.3655097999998,654.3388623999998,654.0235558999998,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,otherarable,109.24389359999999,108.2396133,130.31273080000003,122.84837360000002,111.6460355,102.6997803,93.56982970000001,80.9008412,70.42489570000002,63.25636740000001,58.161958999999996,54.17053799999999,51.092207200000004,49.0530558,47.43414450000001,46.036422,45.011296200000004,44.23477750000001,43.840764400000005,43.75293140000001,43.0080129,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,pasture (grazed),103.7853683,145.49922890000002,151.82868510000003,188.38155000000003,202.24328400000005,214.93189999999998,225.16570299999998,235.57418399999997,242.2322935,246.2265697,248.37888179999996,254.42147900000003,259.06823909999997,264.39908919999993,267.47142279999997,270.6250415999999,272.62082869999995,274.3152099999999,274.8594521,274.6293821,274.8189835,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,pasture (other),2458.422947,2354.8308,2347.579746,2325.510724,2301.139772,2282.1576037,2264.0003148,2240.3781525,2221.9943151,2210.0085426000005,2201.8101090000005,2195.1459643000003,2190.1202123000003,2186.6025599000004,2183.9831598000005,2181.6729734000005,2180.0477324000003,2178.8178878500003,2178.2426021500005,2178.1710698600004,2177.1335749900004,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,shrubs,547.43671807,605.8164908,602.4575586999999,599.5401192519998,594.6556420059999,590.8643467229999,587.0883558669999,582.0247598969999,577.9128813449998,575.1587201639999,573.2322917979999,571.7180039970999,570.5447558549998,569.7481692298999,569.1282977592999,568.5874556926999,568.2061385686999,567.9249248273,567.7991127027999,567.7914804613999,567.527089816,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,tundra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,urban,2.6365201,5.240257499999999,6.4683625,6.4683625,6.4683625,6.4683625,6.4683625,6.4683625,6.4683625,6.4683625,6.4683625,6.4683625,6.4683625,6.4683625,6.4683625,6.4683625,6.4683625,6.4683625,6.4683625,6.4683625,6.4683625,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,biomass,0.0,0.0,0.0,0.0,28.1760021,45.641753300000005,65.052022,85.95778200000001,101.980047,113.30641899999999,122.30703299999999,128.336803,133.5302,137.056115,140.50865599999997,143.802673,147.121866,150.362818,153.346185,155.926886,158.798552,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,crops,164.47985789999998,168.6582839,166.7634255,170.011989866,159.36022138900003,152.852868079,144.88383957900004,137.85721668300002,132.155166552,127.32993026700001,122.91833773400002,120.50040692199998,118.16931301500003,116.34012013800003,114.34954093900004,112.30911582699997,110.018085756,107.63525723099998,105.27307013799998,103.09590337499998,101.07984933999998,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,desert,4639.457437499999,4677.5868408,4674.5670254999995,4674.5670254999995,4674.5670254999995,4674.5670254999995,4674.5670254999995,4674.5670254999995,4674.5670254999995,4674.5670254999995,4674.5670254999995,4674.5670254999995,4674.5670254999995,4674.5670254999995,4674.5670254999995,4674.5670254999995,4674.5670254999995,4674.5670254999995,4674.5670254999995,4674.5670254999995,4674.5670254999995,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,forest (managed),3.1032077,0.9418943000000001,1.4591024,1.6556248,1.6527566,1.6865990000000002,1.6768168,1.6225698,1.5609525,1.51377239,1.46260624,1.44453399,1.4242912300000001,1.4115590199999999,1.3871724,1.35925841,1.32202468,1.28020335,1.2341379,1.1878993999999998,1.1483178600000001,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,forest (unmanaged),0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,grass,15.11647859,5.76751243,6.23865289,6.2117355000000005,6.112835550000001,6.05627357,6.001817850000001,5.93896916,5.895083990000001,5.86928651,5.85217582,5.83793098,5.827124560000001,5.8210347,5.81617704,5.81220797,5.80935857,5.80729761,5.80624832,5.806062440000001,5.80381585,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,otherarable,88.93892399999999,83.783046,84.442908,82.293369,73.109899,67.215454,60.978325999999996,53.183936,47.306331,43.621641999999994,41.08497,39.014346,37.411018,36.438942000000004,35.607524999999995,34.891038,34.30934,33.817964,33.467768,33.246711,32.758059,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,pasture (grazed),4.3357516,7.299794199999999,9.1548585,10.3144861,10.1022863,9.915130000000001,9.623414799999999,9.440203899999998,9.2043186,8.8787498,8.532782099999999,8.5014784,8.4309854,8.3922358,8.2975945,8.2185792,8.1202633,8.031778899999999,7.9292,7.819909399999999,7.754239600000001,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,pasture (other),730.9545843299999,728.1754922,725.1056545,722.7136751,714.8647434000001,710.1117318,705.3615791000001,699.6871173000001,695.6602504,693.2851759,691.6752581,690.2191211,689.0778711,688.4205024,687.9218500000001,687.5024875,687.1995931,686.9697168,686.8514892,686.8267859,686.5714211000001,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,shrubs,37.27819041,7.574098899999999,9.40503163,9.36866945,9.190917694,9.089777,8.991591081,8.88180026,8.807611546,8.76461474,8.736559119,8.714824637,8.698586837,8.689046622,8.681061614,8.674330181,8.668947006,8.664473501,8.661368221,8.659467059,8.655231403,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,tundra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,urban,9.3391515,13.2247327,15.8673897,15.8673897,15.8673897,15.8673897,15.8673897,15.8673897,15.8673897,15.8673897,15.8673897,15.8673897,15.8673897,15.8673897,15.8673897,15.8673897,15.8673897,15.8673897,15.8673897,15.8673897,15.8673897,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,biomass,0.0,0.0,0.0,0.0,3.232977103,5.850239706000001,9.479529253,14.820862846999999,20.309356610000002,25.159333375,29.797457427,32.741095290000004,35.39272126,37.438815432999995,39.609044780000005,41.753230249999994,43.993366220000006,46.26409377000001,48.354669750000006,50.17234863,52.368618209999994,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,crops,191.34922080000004,233.4294932,277.1524115999999,309.05371862,344.37650998299995,375.0777313980001,404.8639195179998,440.953563753,473.6711726160002,496.274767301,511.41802579700015,517.5709128629998,521.839372379,522.4344518320004,522.7608868819998,522.671295136,521.7813471789998,520.2056461979998,518.2113982259999,515.9178193010002,515.982603272,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,desert,134.306135,133.752619,133.64403800000002,133.64403800000002,133.64403800000002,133.64403800000002,133.64403800000002,133.64403800000002,133.64403800000002,133.64403800000002,133.64403800000002,133.64403800000002,133.64403800000002,133.64403800000002,133.64403800000002,133.64403800000002,133.64403800000002,133.64403800000002,133.64403800000002,133.64403800000002,133.64403800000002,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,forest (managed),44.53663840000001,53.158327,55.15666300000001,57.23881900000001,59.077818,60.26674799999999,61.120836000000004,61.557465,60.726106200000004,59.5418991,58.1622213,59.292056999999986,60.114890399999986,60.8839082,61.288325300000004,61.4654954,61.3497573,61.056325699999995,60.544507499999995,59.9020387,59.33541339999999,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,forest (unmanaged),1002.832209,1008.357494,1002.679889,994.8357019999999,986.0626459999999,978.7435679999999,971.6420479999999,962.2897702,954.1569325,948.5537297999999,944.6467298,942.4642741999999,940.8009714999998,939.9212656999998,939.2092249999998,938.6026958999998,938.2101697999999,937.9681742999999,937.9206328,938.0410712999999,937.6055595999999,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,grass,1617.594013,1519.12877,1483.8820919999998,1471.6434369999997,1458.2946430000002,1447.173416,1436.5037619999998,1423.9877740000002,1413.2197809999998,1405.931759,1400.9482320000002,1397.6412030000001,1395.1054829999998,1393.6690724999999,1392.5169765,1391.5332468000001,1390.8795117,1390.4498434000002,1390.3226094000001,1390.443828,1389.7922399999998,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,otherarable,89.00070529999999,84.13531010000001,86.2914814,82.24584769999998,77.3563954,72.87525509999999,68.18361550000002,62.34108809999999,56.82027230000001,52.80809820000001,49.9110784,47.872742499999994,46.25225749999999,45.3016732,44.50482290000001,43.8116724,43.3226621,42.9764138,42.82272820000001,42.829953399999994,42.338681599999994,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,pasture (grazed),38.4233284,51.589070099999994,53.9692842,60.792451500000006,64.67145710000001,67.7875324,70.23018010000001,73.3557839,75.64489560000001,76.77678989999998,77.47586840000001,80.33225999999999,82.74447909999999,85.37387679999999,87.3044688,89.28358419999999,90.9309902,92.54497540000001,93.7302806,94.59467680000002,95.6802184,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,pasture (other),2129.552929,2162.9731020000004,2153.8725980000004,2137.979161,2121.548083,2107.5889460000003,2094.0852030000005,2077.7002810000004,2063.30848,2053.4280318000006,2046.5606421000002,2041.3702123,2037.3272638,2034.7450955000002,2032.7245545000003,2030.9337073000002,2029.6822152000002,2028.7556282000003,2028.3448162000002,2028.3486690000002,2027.2364176,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,shrubs,284.4546655,283.11493199000006,282.10201204,281.31727729999994,280.48561493999995,279.74285025999995,278.99715008,278.09978455,277.2488866,276.63177052,276.18621622999996,275.82151326999997,275.52880720999997,275.33810430999995,275.1879838,275.05168124,274.95632885,274.88507857999997,274.85456275999996,274.85579729999995,274.76653817,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,tundra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,urban,3.1560983,5.5665230999999995,6.455441799999999,6.455441799999999,6.455441799999999,6.455441799999999,6.455441799999999,6.455441799999999,6.455441799999999,6.455441799999999,6.455441799999999,6.455441799999999,6.455441799999999,6.455441799999999,6.455441799999999,6.455441799999999,6.455441799999999,6.455441799999999,6.455441799999999,6.455441799999999,6.455441799999999,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,biomass,0.0,0.0,0.0,0.0,10.282687506,17.870820904,27.758826209000002,38.354114347000014,48.15961237,56.42195507099999,63.65563815499999,68.514802727,72.85657177500002,76.04310964,80.01418014,83.98810334999999,88.24190320000001,92.50134494000001,96.41394963000002,99.82381713,103.73476349999999,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,crops,669.5808413000001,830.6757842000001,905.8235861000002,929.3331694865001,964.933901766,993.4912049569997,1021.022418316,1080.4680562289993,1131.6296433400005,1164.5002764820001,1184.7135551380002,1196.773546499,1203.9887919689995,1204.2470724440007,1201.8225422490004,1197.7145559649998,1190.6554941179995,1181.7324047659995,1171.4920217420001,1160.360280574,1154.3602033159996,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,desert,2609.6112694999997,2745.6518892,2732.6534420999997,2732.6534420999997,2732.6534420999997,2732.6534420999997,2732.6534420999997,2732.6534420999997,2732.6534420999997,2732.6534420999997,2732.6534420999997,2732.6534420999997,2732.6534420999997,2732.6534420999997,2732.6534420999997,2732.6534420999997,2732.6534420999997,2732.6534420999997,2732.6534420999997,2732.6534420999997,2732.6534420999997,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,forest (managed),127.2821684,169.4623495,180.624204,192.3686822,205.24250189999998,216.3849585,227.1545928,237.25590620000003,244.30707611999998,249.40835522999998,253.04299132,258.45444165,262.94235748,266.71071724,269.83380435,272.38244239,274.32307289999994,275.77926258,276.54139788,276.81018794999994,277.47018336,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,forest (unmanaged),2763.3437444,2697.1514309,2634.7760550000003,2620.5471452,2604.4915469000002,2591.2155704000006,2577.7554827000004,2556.4830470000006,2538.3423285000003,2526.3891703800005,2518.74222128,2511.3920088800005,2506.0362554000003,2503.1487692700002,2501.2970430000005,2499.98989418,2499.7426736300004,2500.1679371100004,2501.4423444900003,2503.41241135,2503.3584719000005,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,grass,2005.9143211,1809.2411178000002,1735.2264378,1724.0363497,1709.5751521,1697.973656,1686.5376792999998,1668.9555177000002,1654.6419733,1645.4000856,1639.3307320000001,1634.2310911,1630.4581028,1628.2701101,1626.7211558000001,1625.5677218,1625.1027179,1625.0855491,1625.5973446,1626.5171215,1626.2618417,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,otherarable,241.44025070000004,261.846817,301.11847,290.54004199999997,274.90140779999996,261.87281110000004,248.4109799,226.1983271,206.9745696,193.83571120000002,184.735475,176.74007640000002,170.6021393,166.7851081,163.951707,161.74212739999996,160.63523179999999,160.2446312,160.71713369999998,161.8273317,161.14975859999998,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,pasture (grazed),59.352625700000004,87.78985739999999,93.6008297,110.39911960000002,116.5008736,122.26507000000002,127.48952940000001,134.4594801,139.45911579999998,141.6298459,143.10665740000002,149.31044170000004,154.657432,160.4380255,164.98678239999998,169.7036803,173.81704349999998,177.8188876,181.11641459999998,183.96353399999998,187.31633190000002,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,pasture (other),2576.1890110999993,2462.891416,2512.7261237,2497.2778804,2479.4469491,2464.9953272,2450.6336306,2426.2591365,2406.3187586999998,2393.2333318,2384.2169668,2376.5577861,2370.7542153,2366.8585089,2364.0134227,2361.6603541,2360.2771816,2359.4741467,2359.4449782,2359.975705,2359.0565769,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,shrubs,255.3134418,235.82644899999997,200.6659411,200.05886919999998,199.1859474,198.4909898,197.79739469999998,196.12737909999998,194.7270586,193.73988849999998,193.01697689999997,192.58663389999998,192.263871,192.0594093,191.91977889999998,191.81183299999998,191.7650406,191.75612869999998,191.7959301,191.87003639999998,191.85113289999998,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,tundra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,urban,8.6467227,16.1444738,19.463024,19.463024,19.463024,19.463024,19.463024,19.463024,19.463024,19.463024,19.463024,19.463024,19.463024,19.463024,19.463024,19.463024,19.463024,19.463024,19.463024,19.463024,19.463024,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,biomass,0.0,0.0,0.0,0.0,0.12261396,0.22024034,0.35401773000000003,0.52252197,0.6804847700000001,0.8201809,0.9627034,1.0763303,1.1775072,1.2623474,1.3449204,1.4313786000000002,1.5281734,1.6305346999999997,1.7245777999999998,1.806335,1.8971400000000003,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,crops,215.30504780000004,265.6871859,337.1951085,340.12457757019996,345.2757244926999,350.05952584590005,355.7707345604001,365.03223799039995,373.0635641091,376.5101834542002,377.4309257508001,380.9214817192001,383.6787154051,384.71008029019987,385.76448128259995,386.2631605591999,385.8992274713999,384.9742274255001,383.75258616969995,382.4936928882001,382.42337269039996,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,desert,134.0737603,133.9175337,132.220351,132.220351,132.220351,132.220351,132.220351,132.220351,132.220351,132.220351,132.220351,132.220351,132.220351,132.220351,132.220351,132.220351,132.220351,132.220351,132.220351,132.220351,132.220351,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,forest (managed),7.552701000000001,10.627227900000001,11.0856379,11.9466391,13.0520985,13.9971195,14.8930244,16.101033299999997,17.085503700000004,18.092008,18.920388999999997,19.539203,19.93164,20.213698,20.272163000000003,20.317753999999997,20.316821,20.297499000000002,20.175988000000004,19.975077,19.850216,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,forest (unmanaged),175.65757299999996,180.22552799999997,166.38708699999998,165.75369359999996,165.16607229999997,164.60792949999998,163.95734669999996,163.03431079999996,162.18063689999997,161.77499739999996,161.56767569999997,161.14720649999998,160.77644359999996,160.55983059999997,160.33295729999998,160.16491989999997,160.07643899999997,160.04638679999996,160.0527742,160.08637699999997,159.99656669999996,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,grass,727.1627052999999,715.1430398999998,601.4899933000002,598.8816181000001,596.5084032000001,594.3891642000001,592.0735099000001,588.9169986,586.0879995000001,584.5338123000001,583.5791094000001,582.2042282000001,581.0346921000001,580.3106486000001,579.61856,579.086686,578.77116,578.6153431,578.5891335,578.6738193,578.4026886,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,otherarable,57.58024470000001,29.168485,46.2036281,44.523958199999996,42.77598590000001,41.1788496,39.3649179,36.74796260000001,34.3851927,33.1502157,32.4698521,31.291489199999997,30.2929337,29.706705219999996,29.136069669999998,28.708023109999996,28.479609080000003,28.395102819999998,28.41908056,28.52656796,28.30940828,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,pasture (grazed),45.1533192,85.16696179999998,91.03410329999998,99.52847220000002,103.72608279999999,107.37682500000003,111.034043,114.47089,118.03314300000001,120.30819399999999,122.621412,124.64582200000001,126.77428099999999,128.73851200000001,130.81732599999998,132.718221,134.53543699999997,136.194226,137.687263,138.80585900000003,140.25832599999998,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,pasture (other),950.0321663,910.7578734000001,987.0180701999999,981.1570263999998,976.6253057999999,972.6145387999999,968.2812160999998,962.5840282999999,957.4078145,954.5819594999999,952.7545471,950.215728,948.0043018999999,946.5648396999999,945.1587793999998,944.0466842,943.3046759999999,942.8473794,942.6193190999999,942.6151100000001,941.9918485,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,shrubs,390.7577430099999,371.31731756000005,329.74642373999995,328.24406475999996,326.90777699999995,325.71582913,324.43102638,322.75026725,321.23576805,320.38831056,319.85337099,319.11868753,318.48946685999994,318.093508,317.71477340999996,317.42333383,317.24829973,317.15924079999996,317.13915490999995,317.17755033,317.03043576999994,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,tundra,28.489723,28.4168635,27.622236700000002,27.622236700000002,27.622236700000002,27.622236700000002,27.622236700000002,27.622236700000002,27.622236700000002,27.622236700000002,27.622236700000002,27.622236700000002,27.622236700000002,27.622236700000002,27.622236700000002,27.622236700000002,27.622236700000002,27.622236700000002,27.622236700000002,27.622236700000002,27.622236700000002,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,urban,4.2019247,5.5402765,5.965001,5.965001,5.965001,5.965001,5.965001,5.965001,5.965001,5.965001,5.965001,5.965001,5.965001,5.965001,5.965001,5.965001,5.965001,5.965001,5.965001,5.965001,5.965001,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,biomass,0.0,0.0,0.0,0.0,12.589918287929999,21.83750182578,33.89322569599,48.93245589098,62.90494541265,73.3284009405,81.55996691040001,89.66967996559998,97.08976235720002,102.9898786689,109.3193604878,115.56409480640002,122.0048599685,128.2973596773,133.19188635530003,137.2681780303,142.36517656030003,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,crops,178.31147349999998,218.66403150000005,224.35435180000007,244.13052579404004,260.10379975380994,273.0963038541299,283.40298540065,290.63922115597,296.24767016501005,298.3362742278299,298.44970103097995,300.06118778044987,300.3187938364898,299.2270367287,297.1466681539198,294.53962645612984,290.9004762462699,286.7932708712999,282.89550665248004,279.1052671590199,276.18612345899,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,desert,19.159801200000004,19.2960415,19.5860837,19.5860837,19.5860837,19.5860837,19.5860837,19.5860837,19.5860837,19.5860837,19.5860837,19.5860837,19.5860837,19.5860837,19.5860837,19.5860837,19.5860837,19.5860837,19.5860837,19.5860837,19.5860837,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,forest (managed),30.3733857,47.95515699999999,49.537192499999996,53.69992467,57.68319149,61.2955809,64.73444900999999,69.67828250000001,73.83234309999999,77.05017619999998,79.28438710000002,81.42905329999999,83.0184852,83.99164679999998,84.42769699999998,84.62052210000002,84.37934459999998,83.86893330000001,83.069261,82.02610460000001,81.4937869,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,forest (unmanaged),226.25588476000001,214.83378858999998,231.09660861,230.24490458,228.95985887,227.92810141,226.82675461,225.41015647000003,224.16739900000002,223.34922271000002,222.80341506,222.14750133,221.6386454,221.31418117,221.04427081000003,220.82286983000003,220.67232607000003,220.57103177000002,220.53953589,220.55680962,220.44100128,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,grass,1230.9418110000001,1266.2900630000001,1522.590765,1517.5220709999999,1511.3708539999998,1506.5667899999999,1501.8729929999997,1496.8962459999998,1492.6834149999997,1490.052184,1488.3848809999997,1486.2422189999997,1484.606891,1483.613469,1482.8543679999998,1482.264078,1481.9234629999999,1481.7497239999998,1481.8216109999998,1482.0385159999998,1481.8363279999999,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,otherarable,324.314385,300.50154299999997,203.62929839999998,193.64306410000003,180.1569456,169.46610679999998,158.79578609999996,147.92277019999997,138.57903330000002,132.3740451,128.1225595,123.6390752,120.1085253,117.81607240000001,115.89911479999998,114.2776616,113.04736990000002,112.1038805,111.7097127,111.6510508,110.82339830000001,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,pasture (grazed),92.36679840000001,126.45334510000002,124.30818510000002,128.71188180000001,130.28985729999997,131.5518161,132.62686410000003,133.8254862,134.54931159999998,134.2213251,133.55170139999998,134.28282679999998,134.68951870000004,134.8566859,134.7544196,134.53294380000003,134.1902313,133.7918467,133.3884908,133.11454189999998,132.77458009999998,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,pasture (other),4166.267467000001,3926.013625,3504.9057090000006,3496.6512210000005,3488.1619330000003,3481.3151860000007,3474.553857000001,3467.207501000001,3460.875535,3457.1567381000004,3454.9563339000006,3451.4309415000007,3448.785089000001,3447.2292783000003,3446.1488911000006,3445.3761331000005,3445.0526239000005,3445.0159653000005,3445.3795485000005,3445.923646,3445.8196614000008,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,shrubs,1557.2560735000004,1701.7586666000002,1940.1006535,1935.9185014,1931.2063245,1927.4644901,1923.8143727,1920.0102127,1916.682698,1914.6536943,1913.4088091,1911.618943,1910.2663781,1909.4838989,1908.9280951,1908.5233911,1908.3512576,1908.3298057,1908.5261872,1908.8374376,1908.7820761,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,tundra,0.2010009,0.2067632,0.390214,0.390214,0.390214,0.390214,0.390214,0.390214,0.390214,0.390214,0.390214,0.390214,0.390214,0.390214,0.390214,0.390214,0.390214,0.390214,0.390214,0.390214,0.390214,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,urban,9.200743200000002,12.6797522,14.1604396,14.1604396,14.1604396,14.1604396,14.1604396,14.1604396,14.1604396,14.1604396,14.1604396,14.1604396,14.1604396,14.1604396,14.1604396,14.1604396,14.1604396,14.1604396,14.1604396,14.1604396,14.1604396,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,biomass,0.0,0.0,0.0,0.0,4.5835530782,8.0448949964,12.588572996,17.872226524,22.379277387,26.494948326,30.454912617999998,32.958491081,35.196330073,37.212929016000004,39.275353857999995,41.36249578,43.705185955,46.145644387,48.430876835,50.593616346,52.649689868,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,crops,463.25419490000013,586.9997113999999,639.3725880000002,644.1216417389999,661.517763286,677.9356508569999,696.324309569,725.1148211629998,750.592356295,761.53754582,761.021882514,770.0075093760003,776.3146434160001,776.1818273740001,776.6086348359999,776.3506440560001,773.4820044889997,769.3351941699997,764.6204140990001,760.0785405609997,761.3058952390004,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,desert,4.538579,4.795164,4.7610358,4.7610358,4.7610358,4.7610358,4.7610358,4.7610358,4.7610358,4.7610358,4.7610358,4.7610358,4.7610358,4.7610358,4.7610358,4.7610358,4.7610358,4.7610358,4.7610358,4.7610358,4.7610358,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,forest (managed),117.4431068,152.1233737,160.5919356,173.30133779999997,185.78887069999996,196.10353730000003,205.6534661,218.28961830000003,227.8468298,236.92121470000006,244.70193830000002,251.49039860000002,256.3340274,260.5066462,262.5950986,264.1918136,265.0607724,265.5713799,265.1280668,264.0068577,263.07320260000006,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,forest (unmanaged),4282.371428399999,4153.2380056,4097.7129788,4080.7201834999996,4057.1900040999994,4036.5712338,4014.900836,3985.9780601999996,3960.4547988,3945.6495972999996,3937.3545599999998,3926.395569,3917.7058944999994,3913.2136729,3909.2391979999998,3906.2838352999997,3905.0347067,3905.0199361,3906.1986746999996,3908.3513157999996,3906.9593729999997,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,grass,1008.0233955,859.6189801,824.774019,819.2794753999999,812.8312917,807.2963646999999,801.6800587999999,795.0826717,789.3780158999999,786.1191743699999,784.22339788,781.86609116,779.97821058,778.94990147,778.03193691,777.3534692799999,777.0250959099999,776.9592003099999,777.13533573,777.5140069899999,777.2208570399999,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,otherarable,97.42775189999999,70.65452669999999,125.12663169999999,119.7291594,113.95770110000001,108.79242639999998,103.36459920000001,96.7199735,90.4974362,86.6262926,84.1299023,81.19566680000001,78.78194459999999,77.38072749999999,76.1606404,75.24055860000001,74.7455917,74.59160170000001,74.7785674,75.2745594,74.9302615,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,pasture (grazed),217.3630506,334.30994699999997,357.76069,386.260994,406.34246299999995,423.13220400000006,438.868495,451.83926599999995,464.82551399999994,471.100234,477.67746600000004,481.57485800000006,485.93153800000005,489.40842399999997,493.27306300000004,496.135953,498.8067520000001,500.5376150000001,501.56119,501.16298600000005,501.58965299999994,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,pasture (other),1610.4853383,1614.9420177999998,1585.1287192000002,1570.1428486000002,1554.7011297000001,1541.9351653,1529.4125475000003,1515.3749095,1503.4447724000004,1496.8422640000001,1492.8453718000003,1488.2881554000003,1484.6245175000001,1482.5957369000002,1480.7668722,1479.4132359000002,1478.6748509000001,1478.4358405000003,1478.6584940000002,1479.3121252000003,1478.7454258000002,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,shrubs,505.46872490000004,522.5363009000001,501.90021800000005,498.81259370000004,495.45438800000005,492.55600150000004,489.5743316,486.09654520000004,482.94869420000003,481.07635120000003,479.95909470000004,478.5904472,477.50135400000005,476.91830780000004,476.4176269,476.03581310000004,475.8329852,475.77186050000006,475.85638670000003,476.07318710000004,475.89315700000003,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,tundra,1.8959769999999998,1.9203000000000001,1.891311,1.891311,1.891311,1.891311,1.891311,1.891311,1.891311,1.891311,1.891311,1.891311,1.891311,1.891311,1.891311,1.891311,1.891311,1.891311,1.891311,1.891311,1.891311,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,urban,16.2411293,23.3799723,25.491687799999998,25.491687799999998,25.491687799999998,25.491687799999998,25.491687799999998,25.491687799999998,25.491687799999998,25.491687799999998,25.491687799999998,25.491687799999998,25.491687799999998,25.491687799999998,25.491687799999998,25.491687799999998,25.491687799999998,25.491687799999998,25.491687799999998,25.491687799999998,25.491687799999998,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,biomass,0.0,0.0,0.0,0.0,9.061715119099999,15.731844611,24.400307328,36.015633023,45.085686766,51.876674957,57.477729106000005,62.374772152999995,66.75308003300002,70.106710818,73.551777063,77.02894551,80.60561841,84.10749331000001,87.19686439,89.69192831000001,92.81200853000001,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,crops,263.4344539,265.77893400000005,265.6121562,277.21020034900005,283.70107183100004,289.834933503,295.42310072599986,298.647747312,301.93911988399987,300.8458288130001,297.7212353359999,298.1305546720001,298.31592940300015,297.27770948999995,296.641418592,295.34681908400006,293.1888250029999,290.58069697599996,287.976336387,285.74501207599997,284.30513998900005,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,desert,226.16444,226.16487,226.16485,226.16485,226.16485,226.16485,226.16485,226.16485,226.16485,226.16485,226.16485,226.16485,226.16485,226.16485,226.16485,226.16485,226.16485,226.16485,226.16485,226.16485,226.16485,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,forest (managed),320.1262091,343.57194689999994,247.880065,267.1839677,289.5471341,309.0703164,328.71807149999995,357.4032684,382.62582299999997,402.1737228,416.312456,430.56704030000003,441.3753833,448.4939523,453.0655878,456.4769493,457.8863261,457.95400060000003,456.1608273,452.8831784,452.708818,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,forest (unmanaged),5299.8654955,5320.5862869,5431.9966051,5409.1455018999995,5383.5784431,5361.4596269,5338.5932588000005,5309.0656801,5283.1761456,5265.9619561,5254.7640682,5241.0206556,5230.2271292,5223.5667237,5218.4186162,5214.522397,5212.6172359,5212.0301953,5213.0488963,5215.2580726999995,5214.2328901,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,grass,103.41528170000001,53.429439099999996,78.3840446,77.9538613,77.36601160000001,76.9070251,76.4283104,75.8535408,75.4105005,75.13954,74.9718401,74.7582097,74.5927496,74.4932826,74.4122042,74.3482587,74.3100134,74.2897101,74.2912009,74.3092809,74.28327349999999,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,otherarable,240.16209899999998,247.214457,211.009298,203.135887,192.40325199999998,183.59204699999998,174.166044,162.044361,152.087098,145.587563,141.358144,136.12818600000003,132.00962299999998,129.44644299999996,127.377695,125.70160099999998,124.64731099999999,124.028381,123.97163200000001,124.363832,123.62545200000001,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,pasture (grazed),26.106392200000002,31.5428012,29.074118199999997,30.143150999999996,29.984938400000004,29.731472099999994,29.299584799999998,28.865366399999996,28.2438748,27.356353400000003,26.5505988,26.537924500000003,26.5234027,26.5898426,26.649886700000003,26.814937600000004,27.068090999999995,27.3928123,27.763750299999998,28.1565983,28.509876299999995,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,pasture (other),129.35621189,118.45336789000001,115.61573756000001,114.81109165000001,113.95465137000002,113.28064486000002,112.59144460000002,111.73928235000002,111.07973424000002,110.71305622000003,110.50393965,110.14845823000002,109.87218185,109.69961771000001,109.55818629000001,109.43761424000002,109.35385998000001,109.2948939,109.26884628000002,109.26901605,109.19897527,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,shrubs,2.3515723,2.2026167,2.2952556,2.2845210000000002,2.2708418,2.2595787,2.2477552,2.2324990000000002,2.2204737,2.2127522,2.2078988,2.2017987,2.1971269,2.1943211000000002,2.1922018,2.1906068,2.1898374,2.1896344,2.1901235,2.1911279,2.1907653,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,tundra,1996.1630148,1996.1555529000002,1996.1883338000002,1996.1883338000002,1996.1883338000002,1996.1883338000002,1996.1883338000002,1996.1883338000002,1996.1883338000002,1996.1883338000002,1996.1883338000002,1996.1883338000002,1996.1883338000002,1996.1883338000002,1996.1883338000002,1996.1883338000002,1996.1883338000002,1996.1883338000002,1996.1883338000002,1996.1883338000002,1996.1883338000002,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,urban,4.2498615,6.291534499999999,7.161206,7.161206,7.161206,7.161206,7.161206,7.161206,7.161206,7.161206,7.161206,7.161206,7.161206,7.161206,7.161206,7.161206,7.161206,7.161206,7.161206,7.161206,7.161206,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,biomass,0.0,0.0,0.0,0.0,0.2144375,0.36099374,0.5408152700000001,0.74273968,0.9086434999999999,1.0352276,1.148079,1.2421733000000001,1.3297953,1.4071174000000002,1.4849244000000001,1.5517729999999998,1.6132176,1.6724014,1.7262334000000001,1.7736522,1.8218082,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,crops,96.42306599999999,95.43602459999998,101.31539550000004,102.50108244999998,104.41049627300002,105.69995182699999,107.19838137,112.907884284,118.32557686899997,122.23398157700001,124.680591123,125.48062367099999,125.772345648,125.17878560700001,124.486185045,123.86768697799997,123.18825847400001,122.52645817599999,121.79929508000004,121.02947541799999,120.898803173,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,desert,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,forest (managed),27.811012,31.776331,32.460325999999995,34.510141,36.739898000000004,38.742336,40.601571,41.554730000000006,41.761756,41.900909,41.969789000000006,42.844489,43.549228,44.294523,44.780865,45.09463,45.184381,45.136295,44.940927,44.673022,44.350974,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,forest (unmanaged),314.061463,290.832512,305.523416,303.82255599999996,301.905738,300.377348,298.782009,295.899344,293.395751,291.783224,290.7506375,289.95601419999997,289.37014369999997,289.100181,288.89170579999995,288.71845929999995,288.62211379999997,288.5804738,288.6178847,288.7284894,288.5912637,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,grass,22.103966,22.874067,26.814933999999997,26.601128,26.364704999999997,26.178712,25.994494,25.704348,25.467131,25.319418,25.226991,25.149936,25.093604,25.064916999999998,25.043372,25.026186,25.017022,25.013472,25.017464,25.02809,25.018176999999998,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,otherarable,28.61938,43.324424,38.433983999999995,36.146188,33.622335,31.565553,29.490188,26.316491,23.584832,21.795388,20.623325,19.572498,18.778599000000003,18.338363,17.998250000000002,17.724394,17.565726,17.489255,17.521134000000004,17.64764,17.502846,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,pasture (grazed),30.535076999999994,26.308274999999995,29.561794999999996,31.692188,33.164144,34.382069,35.553729999999995,36.261321,36.927699,36.881295,36.912226999999994,37.381231,37.969913,38.611315,39.418621,40.210848999999996,41.064711,41.876187,42.683198000000004,43.41143,44.165378999999994,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,pasture (other),122.751334,130.15032799999997,105.82375199999998,104.68332999999998,103.56053899999998,102.69502939999998,101.86039829999999,100.6651847,99.70540749999999,99.142672,98.78992109999999,98.4823519,98.25154229999998,98.1230023,98.01645339999999,97.9281321,97.86754909999999,97.82885909999999,97.8169359,97.83033499999999,97.7738663,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,shrubs,2.9184455000000002,2.5880655,2.7372859000000003,2.7144183,2.6886579000000004,2.6689138,2.6492446,2.61882935,2.59423939,2.5789266100000003,2.5693532,2.5614806700000003,2.55574727,2.5528277,2.5506275,2.54886591,2.5478948900000002,2.54746108,2.54778175,2.54876902,2.5477254300000003,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,tundra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,urban,3.0053849999999995,4.94227,5.557485000000001,5.557485000000001,5.557485000000001,5.557485000000001,5.557485000000001,5.557485000000001,5.557485000000001,5.557485000000001,5.557485000000001,5.557485000000001,5.557485000000001,5.557485000000001,5.557485000000001,5.557485000000001,5.557485000000001,5.557485000000001,5.557485000000001,5.557485000000001,5.557485000000001,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,biomass,0.0,0.0,0.0,0.0,1.9945108415000004,3.506500527,5.550697518,8.442367026,11.187155482,13.561926285000002,15.674688800000002,17.632360205,19.475321537,20.970156677,22.542157906,24.036750199,25.494879904,26.933576494999997,28.214068203999997,29.292949229999998,30.67871655,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,crops,337.57703,257.14866889999996,274.2362822000001,274.3087615399999,276.635254049,277.5156526199999,279.07908436299994,291.5575815720002,302.75060111299996,309.004408285,311.9133289960002,318.44360820500015,323.22961976100004,325.5654731279999,326.935580169,327.5398842990002,326.856738303,325.28688558399983,322.82299541000003,319.816682428,318.5409423019999,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,desert,448.44933890000004,444.4308841,448.8914527,448.8914527,448.8914527,448.8914527,448.8914527,448.8914527,448.8914527,448.8914527,448.8914527,448.8914527,448.8914527,448.8914527,448.8914527,448.8914527,448.8914527,448.8914527,448.8914527,448.8914527,448.8914527,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,forest (managed),3.4064718999999997,3.1532356999999998,3.4385690999999996,3.8490224000000004,4.306322400000001,4.7544627,5.2236346,5.7196419,6.1562375,6.5159341,6.785820999999999,7.076995600000001,7.3062842,7.473250599999999,7.5824219,7.670228000000001,7.714102500000001,7.728559699999999,7.696241300000001,7.624598800000001,7.6208483000000005,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,forest (unmanaged),93.43000239999999,84.4898917,89.4723645,89.4455479,89.3029975,89.2157395,89.0854017,88.6012066,88.1619014,87.8914986,87.7240748,87.5199097,87.3601252,87.27504619999999,87.2034362,87.15346629999999,87.13331869999999,87.1333868,87.15224119999999,87.18225469999999,87.1617305,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,grass,577.7196081000001,413.10931000000005,513.1377311000001,512.7566259,512.0298685,511.59079240000005,511.01079000000004,508.7958383,506.81214150000005,505.6100656000001,504.8896075,503.8561528,503.0707943000001,502.64606390000006,502.3312224000001,502.1278013000001,502.08621100000005,502.1523344000001,502.3290511,502.56846830000006,502.5758492000001,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,otherarable,61.5881485,128.10784300000003,101.1183085,100.39673989999999,99.00541670000001,98.03655019999998,96.8181524,93.71809710000001,90.83460790000001,88.98936900000001,87.79318670000002,86.0938074,84.7473193,83.9489788,83.3005202,82.8220932,82.57489469999999,82.48096100000001,82.5554856,82.73421700000002,82.5541958,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,pasture (grazed),53.290358499999996,35.7143968,45.576342100000005,50.3044597,52.8193038,54.779845900000005,56.638592,58.356369,60.10452969999999,60.852861700000005,61.54985579999999,61.34795400000001,61.0708995,60.63191690000001,60.3073814,59.89277909999999,59.566127000000016,59.33650129999999,59.413880600000006,59.90810159999999,60.1055587,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,pasture (other),3474.5529638000007,3767.946659,3598.6702076999995,3594.8697184,3590.3568084,3587.3934907999997,3583.8095764,3573.1354494999996,3563.3137198,3557.4657902,3553.8778073999997,3548.8371712999997,3545.0045262999997,3543.0069409999996,3541.5049944999996,3540.5916028999995,3540.4463263999996,3540.8007037999996,3541.5883464,3542.5290508999997,3542.4286681,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,shrubs,398.8575680000001,321.26256099999995,376.920224,376.63946,376.119694,375.776712,375.354328,374.243159,373.248795,372.678635,372.361995,371.762729,371.3051471,371.0515351,370.8618426,370.7358766,370.6968637,370.7171449,370.797832,370.9132088,370.9035226,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,tundra,91.9407451,84.95392400000001,88.421862,88.421862,88.421862,88.421862,88.421862,88.421862,88.421862,88.421862,88.421862,88.421862,88.421862,88.421862,88.421862,88.421862,88.421862,88.421862,88.421862,88.421862,88.421862,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,urban,7.019664299999999,7.517963699999999,7.946627299999999,7.946627299999999,7.946627299999999,7.946627299999999,7.946627299999999,7.946627299999999,7.946627299999999,7.946627299999999,7.946627299999999,7.946627299999999,7.946627299999999,7.946627299999999,7.946627299999999,7.946627299999999,7.946627299999999,7.946627299999999,7.946627299999999,7.946627299999999,7.946627299999999,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,biomass,0.0,0.0,0.0,0.0,41.93395929665,71.62693698378001,109.5551849748,154.01176138419999,193.679082709,226.1525593012,256.2925474106,277.81833767800003,297.5436654974,313.5886600074,330.5235075868,347.0460250654,364.524290007,382.2499343303,399.04564980370003,414.1435869462,430.0773161556,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,crops,1283.4231148000008,1373.0980311000005,1240.9893296999999,1244.4776439719997,1229.944638373,1216.8802713600005,1199.9666424390007,1190.5683992550005,1180.4628724220004,1163.385893598001,1140.5792236570005,1133.107694576,1125.0229925539993,1114.751200646,1104.6734939510002,1094.4470103150002,1083.1894003249997,1071.65791992,1060.958476563,1051.9277222280007,1045.8230035919998,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,desert,1145.0965787,1151.8131293999998,1165.56988,1165.56988,1165.56988,1165.56988,1165.56988,1165.56988,1165.56988,1165.56988,1165.56988,1165.56988,1165.56988,1165.56988,1165.56988,1165.56988,1165.56988,1165.56988,1165.56988,1165.56988,1165.56988,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,forest (managed),424.1483844,338.62028669999995,326.5752901000001,343.6903811,353.3811622,364.44645460000004,371.21436789999996,375.034138,376.83324600000003,382.6692110000001,388.578297,391.3318059999999,392.855105,395.13429699999995,394.967455,393.99084100000005,391.380869,387.6623799999999,382.87200000000007,377.511914,371.574864,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,forest (unmanaged),1308.9450053,1256.5884447,1414.0497294000002,1404.8528837000001,1391.8753338000001,1382.6601386,1372.8823768,1359.6468597,1349.2561383,1343.4208986,1340.0047443,1335.7695352,1332.5675486,1330.8000971000001,1329.3036590000002,1328.0780279,1327.2205061,1326.5967955,1326.309326,1326.3055921,1325.317955,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,grass,504.35595300000006,365.31238167000004,450.91330066999996,447.26445557000005,443.12497135000007,440.11368201,437.067610288,433.15699526300006,430.120047681,428.424856585,427.432784538,426.25153743900006,425.378660377,424.90466069100006,424.53165408399997,424.23375651400005,424.056316684,423.95427889700005,423.963573336,424.06882982999997,423.883300293,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,otherarable,19.940618,200.4999753,25.344465900000003,24.513827,23.898311500000002,23.390112099999996,22.8016446,22.006592100000002,21.2934693,20.916302799999997,20.6793579,20.4248797,20.2395123,20.149341900000003,20.091239299999998,20.043573799999997,20.0312084,20.0408011,20.0976652,20.207128600000004,20.214099400000002,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,pasture (grazed),121.38181139999999,239.30584,259.6039258,281.95762390000004,287.82219489999994,291.7333498,297.811597,303.3746026,307.81849220000004,305.21026140000004,302.6642468,298.6981274999999,294.9737275,291.6252575,288.6612573,286.41150239999996,284.5531004,283.0274309,281.20183769999994,278.490959,276.56138759999993,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,pasture (other),3877.1191146999995,3750.7314621000005,3660.3621754,3632.7428849000003,3609.1094925,3591.4335633999995,3572.2335409,3547.4635814,3527.2234074,3517.2683622,3511.6362919999997,3505.0218026999996,3500.2507850999996,3498.0763506999997,3496.4308718999996,3495.0507798999997,3494.3984987999997,3494.1770642999995,3494.8654056,3496.5495212,3495.8245564999997,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,shrubs,275.9709656,263.31511963,307.2040345600001,305.5412078300001,303.9514756800001,302.7567231000001,301.50803529000007,299.7788952200001,298.35479347000006,297.5936761700001,297.1730389700001,296.6183275100001,296.2096711200001,296.0109319090001,295.8589534670001,295.73999808800005,295.6872737780001,295.67526469000006,295.7271582250001,295.8354581600001,295.76426942000006,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,tundra,391.48606170000005,393.61301749999996,474.4220948,474.4220948,474.4220948,474.4220948,474.4220948,474.4220948,474.4220948,474.4220948,474.4220948,474.4220948,474.4220948,474.4220948,474.4220948,474.4220948,474.4220948,474.4220948,474.4220948,474.4220948,474.4220948,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,urban,28.1278478,47.0971569,54.963393700000005,54.963393700000005,54.963393700000005,54.963393700000005,54.963393700000005,54.963393700000005,54.963393700000005,54.963393700000005,54.963393700000005,54.963393700000005,54.963393700000005,54.963393700000005,54.963393700000005,54.963393700000005,54.963393700000005,54.963393700000005,54.963393700000005,54.963393700000005,54.963393700000005,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,biomass,0.0,0.0,0.0,0.0,0.042008263,0.078034727,0.12929396999999998,0.20144103500000002,0.28095160500000005,0.35049851,0.40105835,0.44608241000000004,0.48506026,0.5198376699999999,0.55803167,0.5934582800000001,0.62608466,0.6588531099999999,0.68829364,0.7139378200000002,0.7480512800000001,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,crops,36.487889199999984,34.04439469999999,31.594534,33.222477761,35.21579136289999,36.728529591199994,38.48429979349999,44.146475814899986,49.5753057245,53.4782316982,55.8751110631,57.548846385499985,58.46257351850001,58.3518763487,57.92558448679999,57.424183857799996,56.67868073730001,55.85640903990001,54.821910569300016,53.660645723500004,53.29873544309999,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,desert,0.9572251,1.1625311,1.1497829000000002,1.1497829000000002,1.1497829000000002,1.1497829000000002,1.1497829000000002,1.1497829000000002,1.1497829000000002,1.1497829000000002,1.1497829000000002,1.1497829000000002,1.1497829000000002,1.1497829000000002,1.1497829000000002,1.1497829000000002,1.1497829000000002,1.1497829000000002,1.1497829000000002,1.1497829000000002,1.1497829000000002,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,forest (managed),5.958128,6.4131985,6.493207399999999,6.9079116,7.509838,8.0561093,8.5936629,9.106629199999999,9.415993600000002,9.6154479,9.7195955,9.9511666,10.1210114,10.2728339,10.3636792,10.4233886,10.4358788,10.4232506,10.3816189,10.3327584,10.2877412,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,forest (unmanaged),625.97974411,639.99494155,641.11923978,637.5909215500001,634.76244305,632.42734249,629.87588084,625.1196074200001,620.5858007100001,617.47925878,615.3417669300001,613.517717399,612.111597857,611.381987253,610.803095832,610.3412013430001,610.08147866,609.9756789310001,610.0773765670001,610.38753595,610.149476121,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,grass,60.3382535,68.34269160000001,67.78753389999999,67.3401823,66.98000989999998,66.68249159999999,66.36429399999999,65.8046722,65.2830158,64.9264064,64.67965207,64.47717459,64.32047941,64.23559463,64.16770892,64.11287476,64.07995226,64.06384054,64.06996485,64.09805058,64.0699692,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,otherarable,12.8886878,1.9303289000000001,1.7743801000000001,1.716787547,1.67784903,1.63988688,1.5975776799999999,1.53934356,1.46965242,1.41452025,1.36995667,1.3282952000000001,1.29233154,1.2688712800000002,1.2480826600000001,1.2303877499999998,1.2172723799999998,1.20832743,1.20414241,1.20500347,1.19553085,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,pasture (grazed),26.874146999999997,32.067199,36.569312,41.94487900000001,44.858686,47.34113,49.899415,52.032347,54.152873,55.371610000000004,56.588435000000004,57.847671,59.250775,60.576193,62.029356,63.376402,64.674807,65.799108,66.818084,67.615363,68.47742299999999,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,pasture (other),364.99030300000004,348.90735800000004,346.26482300000004,342.95848900000004,340.69831600000003,338.84392799999995,336.909287,334.0023312,331.28179489999997,329.4729507,328.1769179,327.0716369,326.1727739,325.62461279999997,325.14828040000003,324.75161799999995,324.4653132,324.27669099999997,324.1996165,324.2425132,324.03392779999996,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,shrubs,11.2686024,12.0400171,12.0689448,11.990409999999999,11.9269863,11.8745347,11.8183153,11.71911158,11.62651726,11.56318853,11.51940456,11.48325805,11.45529882,11.44017415,11.42810081,11.41836513,11.412554329999999,11.409748669999999,11.41092379,11.416023299999999,11.41106699,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,tundra,1.9900248,2.3214209,2.2959842999999998,2.2959842999999998,2.2959842999999998,2.2959842999999998,2.2959842999999998,2.2959842999999998,2.2959842999999998,2.2959842999999998,2.2959842999999998,2.2959842999999998,2.2959842999999998,2.2959842999999998,2.2959842999999998,2.2959842999999998,2.2959842999999998,2.2959842999999998,2.2959842999999998,2.2959842999999998,2.2959842999999998,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,urban,1.3115078000000002,1.8200973,1.9257994999999999,1.9257994999999999,1.9257994999999999,1.9257994999999999,1.9257994999999999,1.9257994999999999,1.9257994999999999,1.9257994999999999,1.9257994999999999,1.9257994999999999,1.9257994999999999,1.9257994999999999,1.9257994999999999,1.9257994999999999,1.9257994999999999,1.9257994999999999,1.9257994999999999,1.9257994999999999,1.9257994999999999,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,biomass,0.0,0.0,0.0,0.0,85.37560800000001,131.547981,179.28373599999998,228.322946,264.70793199999997,289.916129,309.669558,319.85235,328.29147000000006,337.04615,344.01974999999993,350.74941,357.62874,364.30977,370.27035,375.2762,380.7901,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,crops,407.82482459999994,340.0246171999999,338.3790895,337.9542790779999,294.32640903000004,268.3508977370001,241.81089395400005,215.00281423039996,194.6266342158,178.98866134550005,166.24580058299992,160.36561749839998,155.43223204159997,150.0879396634,145.90123206560003,141.85254030509992,137.74086054619997,133.74323752919994,130.23136640730002,127.37235222099994,124.18499828160002,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,desert,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,forest (managed),82.67825880000001,120.26983399999999,120.6186457,127.78470999999999,107.066081,98.22921400000001,87.731371,76.69525800000001,68.378914,63.2847,59.222252,57.18907900000001,55.38225,53.257456000000005,51.441005000000004,49.598182,47.536347,45.450435,43.444162999999996,41.602302,39.826443,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,forest (unmanaged),337.6808546,352.72460420000004,371.098916,368.90967609999996,359.64612139999997,355.0450739,350.80687729999994,346.6149531,343.85011139999995,342.28904839999996,341.2672181,340.5271631,339.9745769,339.5420099,339.2160788,338.9314611,338.68347159999996,338.468555,338.3012482,338.17685479999994,337.98691449999995,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,grass,26.10908356,34.545014110000004,38.52768167,38.20022709,37.51015214,37.121088209999996,36.746435829999996,36.29774174,35.98029391,35.80084065,35.6890132,35.58605377,35.508311289999995,35.45986018,35.419993070000004,35.38651489,35.360473400000004,35.33983908,35.32618504,35.31827905,35.29606255,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,otherarable,46.1930062,56.90403799999999,44.745239,41.587557000000004,33.444334999999995,28.665424,24.069759,19.108829,15.596231000000001,13.493975000000002,12.090225,10.994175,10.173219,9.546046,9.077934999999998,8.674195,8.338232,8.056082,7.851974000000001,7.716577,7.454744,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,pasture (grazed),25.035065000000003,0.7659245000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,pasture (other),127.90789899999999,147.545815,138.963372,137.9202398,135.0187009,133.44971869999998,131.9843603,130.42832049999998,129.3594815,128.74273630000002,128.3432211,128.02298340000002,127.7838174,127.61117510000001,127.47898700000002,127.36573750000001,127.27246590000001,127.1948741,127.13904500000001,127.10201950000001,127.02788000000001,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,shrubs,3.1767220000000003,3.061644,3.1104322,3.0867041,3.0563653,3.0344307,3.0099516,2.9727664000000003,2.9439574,2.927283,2.9168935,2.9061624999999998,2.8978869,2.8931055,2.8889458,2.8854698,2.8828488,2.8808312000000003,2.8795748,2.8789317,2.8765404,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,tundra,0.0677652,0.279852,0.30344,0.30344,0.30344,0.30344,0.30344,0.30344,0.30344,0.30344,0.30344,0.30344,0.30344,0.30344,0.30344,0.30344,0.30344,0.30344,0.30344,0.30344,0.30344,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,urban,13.862011500000001,14.414957500000002,14.788969000000002,14.788969000000002,14.788969000000002,14.788969000000002,14.788969000000002,14.788969000000002,14.788969000000002,14.788969000000002,14.788969000000002,14.788969000000002,14.788969000000002,14.788969000000002,14.788969000000002,14.788969000000002,14.788969000000002,14.788969000000002,14.788969000000002,14.788969000000002,14.788969000000002,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,biomass,0.0,0.0,0.0,0.0,2.211965451,1.3999594223,0.40429565876,2.3853199718000004,18.59243132,35.969226162,51.002681890000005,66.59908237,79.77406114,88.79864611,98.81140745,109.22355627999998,119.86827269999999,130.31521619999998,139.56895473,147.30420281,157.43052612,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,crops,754.0405528000003,711.6049984000001,697.8103677,681.288072171,663.338735876,646.6251729140998,632.2677411786999,625.7676007364004,612.7618261050999,593.4580373174995,574.7565321822001,566.7111446063,559.8791530636,554.0909821777999,548.9001212368997,543.7266886773002,538.7500590553,534.1592554138001,530.657588668,528.6058009713998,525.3619305343004,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,desert,0.5890224000000001,0.8958975,0.8945633,0.8945633,0.8945633,0.8945633,0.8945633,0.8945633,0.8945633,0.8945633,0.8945633,0.8945633,0.8945633,0.8945633,0.8945633,0.8945633,0.8945633,0.8945633,0.8945633,0.8945633,0.8945633,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,forest (managed),352.138507,404.510174,384.572644,412.671624,442.69902199999996,471.07084299999997,498.094621,522.599044,537.8171269999999,551.389192,562.3037750000001,564.538284,565.492655,566.599301,565.3116900000001,563.001634,559.314618,554.801527,549.526254,543.655004,538.329648,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,forest (unmanaged),923.6872555,904.7491534,927.2741533,922.9327255,917.6961350999999,913.6939208,909.3910768,901.9872488,895.3489337,891.2411278000001,888.7244959000001,885.1483728,882.4654208000001,880.8675769,879.5864442000001,878.5365631000001,877.8564822,877.4216719,877.3159649,877.4576515,876.919127,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,grass,95.3531161,107.83519930000001,110.1372062,109.4910424,108.6752659,108.07725239999999,107.4275411,106.26046969999999,105.2183489,104.58809959999999,104.2098357,103.70195016999999,103.33391350999999,103.1210117,102.95004813,102.80976088999999,102.71611560999999,102.65336943999999,102.63179921,102.64126861,102.56766298,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,otherarable,71.80497829999999,76.14973469999998,68.50679219999999,65.19051786,61.09406877000001,57.93756833,54.590791759999995,49.14544936000001,43.95579163,40.507753900000004,38.282748639999994,35.470442770000005,33.35833449,32.08013971,31.02603213,30.137903699999995,29.51231756,29.067537310000002,28.87471895,28.882041660000006,28.39815757,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,pasture (grazed),78.79799429999998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,pasture (other),461.61642853,497.8417201600001,496.15733174,493.75237495,490.73728995,488.45123827,485.9530559699999,481.53738677,477.53960767999996,475.06430177999994,473.54876219999994,471.45733472999996,469.9039391499999,468.98670976999995,468.24584402999994,467.63472750999995,467.22796876999996,466.9572385099999,466.8697101199999,466.92106153,466.5950094,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,shrubs,134.09922989999998,146.58000979999997,156.48335759999998,155.614725,154.4896355,153.6867835,152.81260058,151.25963385,149.70814076,148.72401725999998,148.11401529,147.31525387,146.73587603,146.39659147,146.11137784,145.87115397,145.69609479,145.56621692,145.49708031999998,145.47523429,145.34057004,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,tundra,17.4540447,19.686097099999998,19.5972527,19.5972527,19.5972527,19.5972527,19.5972527,19.5972527,19.5972527,19.5972527,19.5972527,19.5972527,19.5972527,19.5972527,19.5972527,19.5972527,19.5972527,19.5972527,19.5972527,19.5972527,19.5972527,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,urban,61.6333256,81.3623267,89.7796705,89.7796705,89.7796705,89.7796705,89.7796705,89.7796705,89.7796705,89.7796705,89.7796705,89.7796705,89.7796705,89.7796705,89.7796705,89.7796705,89.7796705,89.7796705,89.7796705,89.7796705,89.7796705,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,biomass,0.0,0.0,0.0,0.0,0.913571041,1.68024627,2.7666273500000003,4.141419979999999,5.31036295,6.271680959999999,7.1448075,7.74443023,8.48814782,9.12038332,9.78943537,10.34064016,10.937993460000001,11.5547165,12.138793060000001,12.65759317,13.28888788,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,crops,330.2520814,281.4783337,312.00996549999996,308.91930690000004,307.70747197700007,305.857751463,304.37590102999997,308.570933358,312.06174491599995,312.7900540489,312.0636035617,314.2262273494,315.66714622610004,316.2028025233001,316.57343892029996,316.81811913380005,316.6533924984,316.2215435953001,315.60677831789997,314.92737387499994,314.8171718176999,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,desert,0.0216445,0.0226744,0.0226999,0.0226999,0.0226999,0.0226999,0.0226999,0.0226999,0.0226999,0.0226999,0.0226999,0.0226999,0.0226999,0.0226999,0.0226999,0.0226999,0.0226999,0.0226999,0.0226999,0.0226999,0.0226999,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,forest (managed),17.241629800000002,25.4565372,27.670668300000003,31.6700751,36.0549068,40.3654364,44.8510536,49.164143200000005,52.9463605,56.33027,59.115941,61.060447,62.55929199999999,63.640121,64.3629,64.91534,65.197068,65.29692299999999,65.10836499999999,64.66742,64.63237600000001,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,forest (unmanaged),165.2913732,182.836949,180.9200854,181.2207621,181.1897506,181.21625419999998,181.0998123,180.0283504,179.0548081,178.5286696,178.2676524,177.6632685,177.1968411,176.92973569999998,176.72685669999998,176.5753042,176.5110123,176.50473219999998,176.562173,176.66222399999998,176.6161228,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,grass,58.660880000000006,70.01935,70.65567,70.65475,70.4598,70.31649,70.09387000000001,69.39769000000001,68.81639000000001,68.5227,68.38643,68.07653,67.83735800000001,67.704542,67.595318,67.515944,67.481076,67.476124,67.49942,67.54100100000001,67.510582,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,otherarable,127.660099,124.61861,94.6433,93.44484000000001,90.31398999999999,87.83888999999999,84.747673,77.882376,72.024269,68.51146299999999,66.438283,63.28402499999999,60.805241,59.313936999999996,58.149843999999995,57.278475,56.820891,56.64050099999999,56.779705,57.150071000000004,56.814707,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,pasture (grazed),45.162954000000006,15.2627981,14.0388804,14.1201554,13.679548900000002,13.2435071,12.9010332,12.6187839,12.4127859,12.0948003,11.8457524,11.6360963,11.4687133,11.2912583,11.1472072,11.0005836,10.8836403,10.792671,10.7578555,10.792498,10.7582373,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,pasture (other),57.7453619,101.5135233,101.4065467,101.3138273,101.0281693,100.8309256,100.518474,99.5707932,98.7647346,98.3495767,98.1396771,97.72031580000001,97.39556669999999,97.2192518,97.0802234,96.98324410000001,96.9435091,96.941258,96.9746714,97.02805079999999,96.98900470000001,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,shrubs,1.5294891,1.9702079000000001,1.9870712,1.9886854,1.9851177,1.98265668,1.97761944,1.95764213,1.9409766,1.93321803,1.93014157,1.92100112,1.91391809,1.91007398,1.90681331,1.9045139,1.9036376799999999,1.90372,1.90462231,1.90601836,1.90522689,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,tundra,3.50852,4.31489,4.30026,4.30026,4.30026,4.30026,4.30026,4.30026,4.30026,4.30026,4.30026,4.30026,4.30026,4.30026,4.30026,4.30026,4.30026,4.30026,4.30026,4.30026,4.30026,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,urban,8.057978,7.6380623,7.4774414,7.4774414,7.4774414,7.4774414,7.4774414,7.4774414,7.4774414,7.4774414,7.4774414,7.4774414,7.4774414,7.4774414,7.4774414,7.4774414,7.4774414,7.4774414,7.4774414,7.4774414,7.4774414,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,biomass,0.0,0.0,0.0,0.0,17.5210349,29.131078600000006,43.4085332,62.02955499999999,79.28163699999999,93.720871,103.92607399999999,113.14484800000001,121.71148,127.71597,133.639788,140.035197,146.291122,152.42520400000004,158.08032699999998,163.000243,168.347685,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,crops,269.0475446000001,258.82951000000014,240.34428439999996,248.0060907243,245.12103944020004,243.4175431511,239.70949217469993,233.17909572820005,226.2067222784999,218.6323869146,212.62659927320004,208.16789252769996,203.6408726359,200.06615462810004,196.49094481529994,192.45478159579994,188.4042552908,184.3272440064999,180.43485411320006,176.93138810020005,173.5251991668001,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,desert,0.406495,0.405475,0.405629,0.405629,0.405629,0.405629,0.405629,0.405629,0.405629,0.405629,0.405629,0.405629,0.405629,0.405629,0.405629,0.405629,0.405629,0.405629,0.405629,0.405629,0.405629,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,forest (managed),27.160443700000005,31.5751836,37.933150000000005,39.904301999999994,40.34082,41.147712999999996,41.392074,41.628263999999994,41.43690300000001,41.374103999999996,41.478508,41.216027,40.764936000000006,40.532406,40.055876,39.43632100000001,38.612289,37.690157000000006,36.689215000000004,35.678774,34.77965099999999,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,forest (unmanaged),210.93220180000003,210.9820656,225.57296739999998,224.09308579999998,221.7006986,220.06380940000003,218.35219419999999,216.26148260000002,214.56572599999998,213.5039681,212.8683977,212.1232417,211.53126880000002,211.184191,210.8826638,210.6113623,210.3858932,210.1955533,210.0545414,209.95756440000002,209.76377689999998,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,grass,168.18744419000004,157.36175110000002,167.0268785,165.1996757,162.7320164,161.06822640000001,159.4922001,157.8376485,156.56569092,155.76938387,155.29866622,154.79867703,154.41927265,154.19645551,154.01539479,153.84246936,153.71551403,153.61324462,153.5464709,153.50907932,153.41527839,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,otherarable,78.43383599999999,76.64150949999997,67.9130088,63.14695590000001,56.439599,51.558417,46.6157494,40.81795129999999,36.0468693,32.9105798,31.0010363,28.824186500000003,27.108271600000002,26.088237000000007,25.2527209,24.497839099999997,23.9231948,23.4622387,23.165937500000002,23.009852400000003,22.5442223,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,pasture (grazed),15.3703068,15.298428600000001,15.6492309,16.721459,16.5319181,16.2556779,15.843705100000001,15.465805399999999,14.967137399999997,14.2778494,13.6278576,13.300466100000001,12.964539700000001,12.679792100000002,12.383142300000001,12.0771017,11.7943876,11.5504466,11.3829072,11.322131200000001,11.1748183,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,pasture (other),164.7712053,179.32958749999997,170.74809129999994,168.81661499999993,166.48139829999994,164.88889269999993,163.35540639999994,161.64244609999994,160.32394979999995,159.53623729999995,159.09164389999995,158.55675999999994,158.15494059999995,157.92694699999996,157.74643479999995,157.58031079999995,157.46126349999994,157.36666559999995,157.30518919999994,157.26702819999994,157.16696189999993,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,shrubs,61.5691234,63.66110559999999,67.9653945,67.26475150000002,66.2847165,65.62178940000001,64.9838331,64.2908824,63.7585976,63.4274027,63.2342955,63.021066000000005,62.8576074,62.76306769999999,62.6862122,62.617865699999996,62.5651338,62.5224275,62.4937431,62.4770914,62.4354502,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,tundra,1.6765111,1.5347971,1.5519034,1.5519034,1.5519034,1.5519034,1.5519034,1.5519034,1.5519034,1.5519034,1.5519034,1.5519034,1.5519034,1.5519034,1.5519034,1.5519034,1.5519034,1.5519034,1.5519034,1.5519034,1.5519034,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,urban,5.966297400000001,7.9022262,8.4108611,8.4108611,8.4108611,8.4108611,8.4108611,8.4108611,8.4108611,8.4108611,8.4108611,8.4108611,8.4108611,8.4108611,8.4108611,8.4108611,8.4108611,8.4108611,8.4108611,8.4108611,8.4108611,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,biomass,0.0,0.0,0.0,0.0,0.816888,1.35076,1.99653,2.69868,3.29965,3.73544,4.088,4.36283,4.60304,4.799,4.96885,5.15147,5.35503,5.56851,5.75991,5.92257,6.10581,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,crops,7.697682499999999,6.8197032,6.536176499999999,6.443321890000002,6.088505629999998,5.777746509999999,5.4616355599999995,5.222781570000001,4.980162574,4.7346214909999995,4.507386937999999,4.409695784,4.318113748999999,4.234881967000001,4.166624594,4.0989414360000005,4.032976988999999,3.9710053610000013,3.9160608280000004,3.8727983830000006,3.822458598,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,desert,19.213670699999998,19.3797739,20.120334700000004,20.120334700000004,20.120334700000004,20.120334700000004,20.120334700000004,20.120334700000004,20.120334700000004,20.120334700000004,20.120334700000004,20.120334700000004,20.120334700000004,20.120334700000004,20.120334700000004,20.120334700000004,20.120334700000004,20.120334700000004,20.120334700000004,20.120334700000004,20.120334700000004,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,forest (managed),30.98463,28.262410000000003,28.51878,30.422810000000002,32.250609999999995,33.879949999999994,35.42111,37.37869,39.06552,40.36862,41.299229999999994,42.068160000000006,42.640269999999994,42.979800000000004,43.21805,43.362500000000004,43.36307,43.25599,43.04348,42.73723,42.64926,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,forest (unmanaged),214.6325,219.071472,221.46170899999998,220.299797,218.822339,217.645887,216.453915,214.84693699999997,213.535164,212.678944,212.12622799999997,211.454631,210.947308,210.626553,210.39975399999997,210.221945,210.124163,210.076023,210.09927299999998,210.17406999999997,210.121505,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,grass,9.020421220000001,9.15225989,9.297554439999999,9.22185615,9.13845293,9.07172474,9.00749257,8.92428296,8.85868441,8.816748279999999,8.790285978,8.759193815,8.736270826,8.722101986,8.712309999,8.704902586,8.701296895999999,8.700032393,8.701917185,8.706064904,8.704462255,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,otherarable,2.8568350000000002,4.9248999,5.9097859999999995,5.511634,5.0314119999999996,4.644712,4.262333,3.7736039999999997,3.3775329999999997,3.1133840000000004,2.938533,2.750085,2.608203,2.517943,2.4534469999999997,2.4026560000000003,2.373579,2.358507,2.362787,2.3821,2.366294,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,pasture (grazed),6.9378251,7.6722156,7.169917000000001,7.132010000000001,7.0693446,6.981908799999999,6.8823701999999995,6.8104678000000005,6.6640356,6.402798999999999,6.1409308,6.147656400000001,6.1439563999999995,6.1450711,6.1253336,6.1176262999999995,6.1198623,6.14703,6.1958337,6.2839678,6.316217299999999,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,pasture (other),27.580084489999997,22.680128360000005,16.413495010000002,16.278261759999996,16.09478373,15.9615727,15.83090926,15.663415029999998,15.540048449999999,15.471529559999999,15.432291949999998,15.371596339999998,15.32744878,15.299695389999998,15.280888939999999,15.265482839999999,15.25567121,15.248595909999999,15.246298129999998,15.246669769999999,15.239489099999998,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,shrubs,0.20522469000000002,0.25408192,0.28427093,0.28195247,0.27941281,0.27737655,0.27541702,0.27287573,0.27086966,0.26958363,0.26877093,0.26782172,0.26712188,0.26668968,0.26639079,0.26616516,0.26605621,0.26601942,0.26607942,0.26620939,0.26616217,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,tundra,74.3942594,74.9506544,77.3142334,77.3142334,77.3142334,77.3142334,77.3142334,77.3142334,77.3142334,77.3142334,77.3142334,77.3142334,77.3142334,77.3142334,77.3142334,77.3142334,77.3142334,77.3142334,77.3142334,77.3142334,77.3142334,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,urban,2.0095543,2.3653885999999997,2.5059768,2.5059768,2.5059768,2.5059768,2.5059768,2.5059768,2.5059768,2.5059768,2.5059768,2.5059768,2.5059768,2.5059768,2.5059768,2.5059768,2.5059768,2.5059768,2.5059768,2.5059768,2.5059768,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,biomass,0.0,0.0,0.0,0.0,16.89719,27.15276,39.03924000000001,52.96180999999999,65.07717,74.90505,83.83444999999999,89.75437,95.18008,99.62300000000002,104.34865,109.11560000000001,114.1916,119.32589999999999,124.15690000000001,128.51269999999997,133.0077,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,crops,1448.1441087999995,1423.1402992999997,1444.2178766999987,1498.8648012044002,1508.510913063299,1519.3753852744999,1530.6021471067997,1549.6086485848998,1549.8549945714,1544.8894660929996,1537.6398780348,1533.5771871261002,1528.9888208285995,1523.2137590501993,1517.4215319266007,1510.894829834401,1503.6832403985006,1496.0176765950998,1488.3344760514995,1480.9300566859001,1474.2833132135002,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,desert,103.0261125,98.23209100000001,94.33241040000001,94.33241040000001,94.33241040000001,94.33241040000001,94.33241040000001,94.33241040000001,94.33241040000001,94.33241040000001,94.33241040000001,94.33241040000001,94.33241040000001,94.33241040000001,94.33241040000001,94.33241040000001,94.33241040000001,94.33241040000001,94.33241040000001,94.33241040000001,94.33241040000001,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,forest (managed),212.8848558,230.9330183,233.7854608,220.00647204,220.86001392999998,220.97964839999997,218.64107009999998,212.64115099999995,216.03241979999999,220.5803339,224.5260771,229.03192969999998,232.83794939999999,236.6529391,239.47374189999996,242.405807,244.85817200000002,247.14255519999998,248.9614649,250.34505469999993,252.4057406,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,forest (unmanaged),461.77270626,456.32227146,488.42580056,480.41029303,475.52386107,471.74981859,468.04541914,463.35543177,460.74028663,459.22979468,458.32223879000003,457.36532965,456.67301813,456.34072945,456.10885131000003,455.98807113000004,456.0052977,456.12548907,456.36567849,456.69772018000003,456.79045983000003,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,grass,198.04532236999998,187.6635233,193.66202462,189.79929615999998,187.37281324999998,185.57148582399998,183.903418843,181.900698997,180.76301087899998,180.108556016,179.718295098,179.314830334,179.026859551,178.878570335,178.77678439099998,178.716784281,178.711756013,178.746109978,178.827515641,178.94526642,178.970507328,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,otherarable,199.00148589999995,220.85198699999998,200.01238600000002,172.658452,154.38401499999998,139.805591,125.54003700000001,107.08779900000002,95.684723,88.76036400000002,84.43400499999997,79.96466600000001,76.67520199999998,74.89934699999999,73.62229899999998,72.80042500000002,72.585964,72.802645,73.53728299999999,74.66195999999998,74.76380099999999,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,pasture (grazed),44.086433000000014,20.273710000000005,13.524020999999998,16.938145999999996,18.379623999999996,19.635489999999997,20.673445,21.589002000000004,22.56162,23.142336,23.696118,23.694884999999996,23.709758999999995,23.684627000000006,23.687799,23.607713,23.509856000000003,23.353260999999996,23.238055,23.197802,23.050996999999995,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,pasture (other),61.5609696,89.7349999,85.13118199999998,83.12676239999999,81.939978,81.09524379999999,80.34944759999999,79.5067916,79.013795,78.7374741,78.5646185,78.41974549999999,78.31500969999999,78.26068339999999,78.220681,78.19749333,78.1929746,78.20335679,78.22808282,78.26217021,78.26934677999999,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,shrubs,229.36493731999997,222.276215,194.58954149999997,191.54431318499996,189.480393081,187.98212066399998,186.55432280199997,184.697744692,183.62078682599997,182.99558249799998,182.61240536999998,182.22493267,181.94294445699998,181.79458184299997,181.68826086699997,181.622151625,181.60839926999998,181.63147794699998,181.69811917899997,181.79502160599998,181.80659309099997,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,tundra,19.679546,21.706934,20.961478,20.961478,20.961478,20.961478,20.961478,20.961478,20.961478,20.961478,20.961478,20.961478,20.961478,20.961478,20.961478,20.961478,20.961478,20.961478,20.961478,20.961478,20.961478,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,urban,13.302846199999998,19.734887699999998,22.227069799999995,22.227069799999995,22.227069799999995,22.227069799999995,22.227069799999995,22.227069799999995,22.227069799999995,22.227069799999995,22.227069799999995,22.227069799999995,22.227069799999995,22.227069799999995,22.227069799999995,22.227069799999995,22.227069799999995,22.227069799999995,22.227069799999995,22.227069799999995,22.227069799999995,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,crops,233.345854,280.8240833,321.65994829999994,328.45402533000004,332.24746207999993,334.44093196000006,337.16642218000004,342.08121812,346.63093667000004,347.19827000999993,344.78521195999997,349.84322695000003,353.20426612999995,354.22715305,354.40069159,354.01932915000003,352.7652602,350.94349592,348.57214901,345.79047421,344.84729858,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,desert,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,forest (managed),95.94852,71.08344199999999,66.4348,68.484219,73.00636300000001,77.2293,81.174245,85.878745,89.550374,93.649321,97.966293,98.66794999999999,99.43278,100.61,101.80945000000001,103.10553999999999,104.47054,105.89108999999999,107.20889,108.41071000000001,109.3041,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,forest (unmanaged),1023.72915,1001.93553,952.57613,944.5400840000001,938.853915,934.470901,929.839553,923.2073170000001,917.5052430000001,914.56073,913.429259,909.8896840000001,907.4019770000001,906.208241,905.5318070000001,905.202247,905.400436,905.957473,906.912805,908.1783240000001,908.454514,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,grass,96.310314,97.25493800000001,93.628014,92.65162,91.899933,91.32068,90.73388179999999,89.929187,89.2642522,88.8997948,88.7274973,88.36383239999999,88.1088274,87.9796249,87.9013672,87.8562961,87.86164769999999,87.9011342,87.9802329,88.090882,88.1085338,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,otherarable,12.7076,24.4155,41.6038,38.6723,36.2828,34.353,32.3569,29.573,27.1825,25.7776,25.0418,23.6693,22.6729,22.1412,21.8081,21.6058,21.6044,21.7381,22.0278,22.437,22.4919,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,pasture (grazed),14.926215,15.757932,15.494943,19.963251,21.20112,22.224851,23.31044,24.61475,25.708489999999998,26.038429999999998,26.312829999999998,26.076819999999998,25.86233,25.59625,25.357760000000003,25.040699999999998,24.70995,24.337336,23.995573,23.697025,23.369861,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,pasture (other),96.196721,78.004552,76.566529,75.19855799999999,74.47258099999999,73.924539,73.382507,72.67958399999999,72.122073,71.83954299999999,71.701729,71.45339,71.2815392,71.20098109999999,71.15497789999999,71.1354243,71.1522483,71.1955957,71.26694669999999,71.360359,71.3877485,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,shrubs,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,tundra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,urban,4.105021000000001,7.99308,9.30522,9.30522,9.30522,9.30522,9.30522,9.30522,9.30522,9.30522,9.30522,9.30522,9.30522,9.30522,9.30522,9.30522,9.30522,9.30522,9.30522,9.30522,9.30522,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,biomass,0.0,0.0,0.0,0.0,3.74588313,6.151040737000001,9.073560051000001,12.725898329,15.921976274999999,18.291911540999997,20.26476228,21.923545580000003,23.41758974,24.563950180000003,25.798090260000002,27.03261345,28.3116936,29.592257569999997,30.78522684,31.838705490000002,33.041965520000005,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,crops,31.257063,30.843581500000003,30.343746899999996,30.48531231,29.63324405,28.776324160000005,27.834952449999996,26.99392780999999,26.209669989999995,25.23586474,24.208826779999992,23.88142941,23.496986950000004,23.070224189999998,22.590615129999993,22.068686170000003,21.501260110000004,20.917627400000008,20.34550292,19.81614013999999,19.293198529999998,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,desert,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,forest (managed),34.742433,19.464526,20.880144,22.326006999999997,22.588055000000004,23.151746000000003,23.399048999999998,23.488969,23.399469,23.436587000000003,23.423257,23.179156999999996,22.901108999999998,22.697837,22.379599000000002,22.034204000000003,21.607302999999998,21.138421,20.659115999999994,20.200625,19.751942,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,forest (unmanaged),229.691361,241.79192,243.41956699999997,242.19619699999998,239.588329,237.882403,236.07417399999997,233.729917,231.864263,230.72485999999998,229.985277,229.118804,228.456227,228.045267,227.694428,227.397563,227.163077,226.9719,226.84774399999998,226.782825,226.590669,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,grass,3.9402157,3.8075343,4.0066124,3.9785331,3.9350329,3.9049801,3.8744561,3.8353683999999997,3.8047172999999996,3.7861825,3.774679,3.7605371699999997,3.75005739,3.7437961,3.73893301,3.73509939,3.7326250499999998,3.73104451,3.73070669,3.73136325,3.72964751,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,otherarable,5.7430375,5.514833,5.236709500000001,4.9621434,4.567451,4.2634882,3.946517,3.5201891000000005,3.1637876,2.9299956999999996,2.7746495,2.5975499,2.4610072,2.3750554,2.3052411,2.2474388000000003,2.2059428,2.175348,2.1607281,2.1596793,2.1268583,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,pasture (grazed),0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,pasture (other),2.91783083,2.8227731200000004,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,shrubs,4.8084459,8.2272641,8.4032493,8.3417862,8.2320399,8.1599651,8.0872498,7.995723400000001,7.926044620000001,7.88455508,7.858538920000001,7.828941010000001,7.8070359400000005,7.7938018200000005,7.783094910000001,7.7743745,7.768063660000001,7.7633654,7.76097654,7.760541980000001,7.75572886,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,tundra,0.127287,0.086505,0.0910635,0.0910635,0.0910635,0.0910635,0.0910635,0.0910635,0.0910635,0.0910635,0.0910635,0.0910635,0.0910635,0.0910635,0.0910635,0.0910635,0.0910635,0.0910635,0.0910635,0.0910635,0.0910635,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,urban,10.8265628,11.495371,11.673026499999999,11.673026499999999,11.673026499999999,11.673026499999999,11.673026499999999,11.673026499999999,11.673026499999999,11.673026499999999,11.673026499999999,11.673026499999999,11.673026499999999,11.673026499999999,11.673026499999999,11.673026499999999,11.673026499999999,11.673026499999999,11.673026499999999,11.673026499999999,11.673026499999999,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,biomass,0.0,0.0,0.0,0.0,13.039928961,21.866156880000002,32.539898650000005,45.42381539,55.77255439,63.685697680000004,70.37991869000001,75.28676449000001,79.51301941,82.76403316000001,86.08952760999999,89.34212313,92.6194316,95.79361530000001,98.59019465,100.93030053000001,103.56077801999999,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,crops,164.5595333999999,173.2604366000001,166.63966909999996,175.70161167240005,179.7524373476999,183.2040938131,185.66657420640004,186.8866460127,188.24287844369996,187.6397746341,185.25695880190003,185.25561142469996,184.71135891179995,183.2135624443,181.39916974809995,179.56106683879997,177.4587787812,175.29577145720003,173.1299767419,171.08390993519998,169.71140662530004,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,desert,0.840457,0.845318,0.867397,0.867397,0.867397,0.867397,0.867397,0.867397,0.867397,0.867397,0.867397,0.867397,0.867397,0.867397,0.867397,0.867397,0.867397,0.867397,0.867397,0.867397,0.867397,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,forest (managed),34.282953,36.48315490000001,36.0659867,38.06429909999999,38.3446045,38.8609406,38.909705599999995,39.9276002,40.577693599999996,41.3822864,42.0166663,42.48383300000001,42.6983953,42.8630395,42.629681299999994,42.18533920000001,41.4370501,40.545655399999994,39.5333769,38.496393700000006,37.57217229999999,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,forest (unmanaged),476.01168699999994,443.2448,449.85353,447.213318,442.4671955,439.1178611,435.7045322,432.2571229,429.4393185,427.7925238,426.7714609,425.5697087,424.6154964,424.0407641,423.4899904,422.97343409999996,422.5165308,422.119717,421.8154226,421.6024597,421.1746361,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,grass,123.24557926,118.95063050000002,131.88827550000002,131.1199849,129.9508864,129.1005249,128.2571335,127.35809259999999,126.62313848999999,126.20156408999999,125.94187932999999,125.60635927,125.34011123,125.17256961999999,125.02050655,124.88421189,124.7723961,124.6823188,124.62091317999999,124.58598925999999,124.4869522,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,otherarable,87.67835999999998,93.89682600000002,105.180024,99.97518299999999,91.535513,85.10668699999998,78.43183499999999,71.062321,64.896087,61.09555699999999,58.64533,55.792004,53.527941,52.116133999999995,50.838820000000005,49.6807057,48.716293,47.920362700000005,47.3691812,47.04620129999999,46.17390680000001,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,pasture (grazed),58.25324229999999,62.356904500000006,64.3389674,66.0632921,69.4157366,72.12402269999998,74.7587245,76.73161830000001,78.7411438,78.9745079,79.3358392,80.7044325,82.2546954,83.8406021,85.85129820000002,87.88218400000001,90.00932019999999,92.011372,93.9387992,95.67557090000001,97.61337760000002,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,pasture (other),706.4248729000001,727.2780289,675.8648775,672.611653,667.6404162,663.8249823,660.0084088,655.9169638,652.3779189,650.5233440000001,649.3321726800001,647.53704618,646.02411688,644.96469281,643.92088843,642.96545293,642.13122573,641.4359913899999,640.8977463299999,640.5184363100001,639.8082124200001,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,shrubs,230.56948677,222.86094125999998,247.56305059000002,246.64526029,245.24777205000004,244.18940069,243.11779246000003,241.83044858000002,240.72379286700001,240.09935240500002,239.71429726300002,239.158809276,238.709366149,238.419215314,238.15460734100003,237.92008209200003,237.733345272,237.58979574100002,237.49876293300002,237.45540116200002,237.292990112,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,tundra,0.07467470000000001,0.054295800000000005,0.0588056,0.0588056,0.0588056,0.0588056,0.0588056,0.0588056,0.0588056,0.0588056,0.0588056,0.0588056,0.0588056,0.0588056,0.0588056,0.0588056,0.0588056,0.0588056,0.0588056,0.0588056,0.0588056,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,urban,8.199843300000001,10.9096548,11.819978,11.819978,11.819978,11.819978,11.819978,11.819978,11.819978,11.819978,11.819978,11.819978,11.819978,11.819978,11.819978,11.819978,11.819978,11.819978,11.819978,11.819978,11.819978,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,biomass,0.0,0.0,0.0,0.0,11.295189222000001,19.671826015399997,30.570949729,43.975452038,56.768026946999996,67.53585611300001,76.106297447,82.346304635,87.877178191,92.04003354,96.396531827,100.68260848,104.95771609600001,109.025915862,112.71695418499999,115.92675086499999,119.944151012,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,crops,217.5516435,230.64186290000004,232.34953919999998,238.92013253900004,240.60193084000002,241.784012891,241.622429911,249.51128889800006,255.09700834000006,257.40997894400004,258.308347284,258.244822105,257.413878811,255.99621206199998,253.82294954900007,251.29253841799996,248.128003871,244.711754111,241.05110768300003,237.39915564400002,234.20149616100005,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,desert,2062.6683949999997,2073.046055,2061.9284620000003,2061.9284620000003,2061.9284620000003,2061.9284620000003,2061.9284620000003,2061.9284620000003,2061.9284620000003,2061.9284620000003,2061.9284620000003,2061.9284620000003,2061.9284620000003,2061.9284620000003,2061.9284620000003,2061.9284620000003,2061.9284620000003,2061.9284620000003,2061.9284620000003,2061.9284620000003,2061.9284620000003,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,forest (managed),2.2635525999999997,2.2011079999999996,2.2978520000000002,2.522259,2.6782950000000003,2.834616,2.957729,2.9839219999999997,2.959344,2.911966,2.843561,2.8769549999999997,2.894181,2.9031650000000004,2.8914089999999995,2.871136,2.835335,2.792189,2.7407739999999996,2.684111,2.6395419999999996,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,forest (unmanaged),12.765838779999997,7.179202,7.060933,7.054131,7.018167,6.993285,6.961579,6.896087,6.839383999999999,6.7994609,6.769970300000001,6.7531692,6.739879200000001,6.7316216,6.724044899999999,6.7173766,6.711818299999999,6.7072342,6.703894200000001,6.701499699999999,6.696502000000001,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,grass,106.3505165,131.6087586,127.1388651,126.50780580000001,125.3325674,124.4938745,123.58724160000001,122.03187520000002,120.8226211,120.02672500000001,119.4769672,119.1363812,118.8796938,118.7245047,118.59467060000001,118.48587490000001,118.40320990000001,118.33915350000001,118.3019417,118.2861477,118.2178602,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,otherarable,84.11632900000001,90.6610293,109.67993179999999,107.08113039999999,101.9081122,97.9976464,93.5673993,86.10066810000001,79.5405085,74.8895901,71.5409562,69.1176868,67.21683499999999,66.0203675,64.99786359999999,64.1318525,63.484428300000005,63.005664700000004,62.7331598,62.613460599999996,62.066106000000005,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,pasture (grazed),13.736221299999999,15.218291,15.533910500000001,18.076828602999996,19.785010590000002,21.245760051,22.577357222,23.779750609999997,24.96601787,25.599894640000002,26.191885049999996,26.906411059999996,27.563189029999997,28.12823889,28.629012890000002,29.047088249999998,29.39431731,29.684959499999994,29.965667400000005,30.286399269999997,30.60221575,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,pasture (other),1937.2879682200003,1823.9001847,1866.67055061,1862.59559031,1857.49545604,1853.53914287,1849.3565256799998,1841.01565108,1833.54138571,1828.2552780199999,1824.25407178,1821.4696797299998,1819.29337853,1817.93841794,1816.89449568,1816.0879168,1815.61953636,1815.3831837100001,1815.4206821,1815.62780669,1815.30673671,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,shrubs,686.8700216,743.4627058,693.0266488,691.0004793999999,687.6434156999999,685.197965,682.5570562999999,677.4636639,673.2239558,670.329698,668.265985,666.9070537,665.8799862000001,665.2756107,664.8072327,664.441873,664.224071,664.1081739,664.1239642,664.2330351,664.0837372,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,tundra,0.102718,0.101694,0.100393,0.100393,0.100393,0.100393,0.100393,0.100393,0.100393,0.100393,0.100393,0.100393,0.100393,0.100393,0.100393,0.100393,0.100393,0.100393,0.100393,0.100393,0.100393,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,urban,10.4070964,16.1089724,18.3409002,18.3409002,18.3409002,18.3409002,18.3409002,18.3409002,18.3409002,18.3409002,18.3409002,18.3409002,18.3409002,18.3409002,18.3409002,18.3409002,18.3409002,18.3409002,18.3409002,18.3409002,18.3409002,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,biomass,0.0,0.0,0.0,0.0,6.504765,10.202138999999999,14.318740000000002,17.8896,20.6614,22.52421,24.766789999999997,25.95857,26.987590000000004,27.81194,28.91852,30.03712,31.217100000000002,32.40254,33.51,34.497569999999996,35.61733,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,crops,176.74457609999988,187.81036250000005,183.89767710000007,170.24353614240013,163.2846801239999,158.0747401838999,152.9209774006,151.07330128720002,149.6264757947,148.5667071149999,146.85138274040006,145.77075525229998,144.65476788769996,143.4824290858001,142.11604421860005,140.8529105213001,139.58508944610003,138.41937235530008,137.27261448479993,136.1746188023001,135.28743455859995,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,desert,261.78839700000003,264.198175,265.366191,265.366191,265.366191,265.366191,265.366191,265.366191,265.366191,265.366191,265.366191,265.366191,265.366191,265.366191,265.366191,265.366191,265.366191,265.366191,265.366191,265.366191,265.366191,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,forest (managed),3.6598013,2.9409422,3.2159133,2.5785045,2.1614985000000004,1.8997068,1.6478490999999997,1.3830268,1.1786984799999998,1.04169191,0.9099859799999999,0.89385537,0.87860379,0.8674560400000001,0.84460384,0.8219985599999998,0.79529393,0.7680426399999999,0.74185202,0.71750731,0.6952101900000001,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,forest (unmanaged),0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,grass,16.2878959,13.2389087,13.303256,12.821765,12.5763782,12.436251100000002,12.3291321,12.228369910000001,12.164447200000001,12.12828837,12.103388180000001,12.092122080000001,12.083930720000001,12.079033540000001,12.074733700000001,12.071377360000001,12.06895532,12.0672756,12.066562130000001,12.06659478,12.06517078,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,otherarable,33.2599576,32.361857,28.694345200000004,23.6055938,20.8250633,18.867884100000005,17.1565802,15.077940000000002,13.472384300000002,12.410532700000001,11.6219908,11.226826099999998,10.931492200000001,10.7604916,10.623589599999999,10.525461400000001,10.472556,10.4539816,10.481025700000002,10.541501400000001,10.529996299999999,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,pasture (grazed),33.51016,43.19952000000001,43.15954000000001,68.49212000000001,75.14411,80.94165,85.70527,88.59322999999999,90.79609,92.30667000000001,93.49516999999999,94.19003000000002,94.87513999999999,95.5605,96.09469000000001,96.43536,96.62950000000001,96.64741999999998,96.62920000000001,96.61115000000001,96.40109,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,pasture (other),17.692750900000004,7.623454000000001,7.6163872,7.2836128,7.1850537899999996,7.125592900000001,7.08055152,7.0345768500000005,7.00263376,6.983089541,6.9693590830000005,6.96271436,6.957800316,6.954900398000001,6.952609647000001,6.9509944180000005,6.950119514000001,6.949822919000001,6.950227997000001,6.951142911,6.951031390000001,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,shrubs,265.591626,255.703591,260.938375,255.80024100000003,253.14394100000004,251.27738340000002,249.6663406,247.54535750000002,245.92322350000006,244.86416960000003,244.10734598000005,243.73051908000002,243.45608840000006,243.30857126,243.20061257000003,243.13021891000005,243.10674717,243.11687609000006,243.17403927000004,243.26531481,243.27817485000003,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,tundra,26.807032,26.787769,26.894301,26.894301,26.894301,26.894301,26.894301,26.894301,26.894301,26.894301,26.894301,26.894301,26.894301,26.894301,26.894301,26.894301,26.894301,26.894301,26.894301,26.894301,26.894301,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,urban,2.4690608,3.9465445000000003,4.7256990000000005,4.7256990000000005,4.7256990000000005,4.7256990000000005,4.7256990000000005,4.7256990000000005,4.7256990000000005,4.7256990000000005,4.7256990000000005,4.7256990000000005,4.7256990000000005,4.7256990000000005,4.7256990000000005,4.7256990000000005,4.7256990000000005,4.7256990000000005,4.7256990000000005,4.7256990000000005,4.7256990000000005,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,biomass,0.0,0.0,0.0,0.0,3.71572716,6.60355457,10.60005639,16.5305656,22.845236999999997,28.357988500000005,33.395221299999996,37.700867800000005,41.684182,44.879122200000005,48.240469399999995,51.737373,55.36559079999999,58.9558058,62.1534605,64.847366,68.3821258,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,crops,365.0616374,313.33526259999996,307.60092610000004,305.859565727,310.54637413500024,312.73083991399994,316.13753745100007,335.64816719500004,353.22531222500004,362.385741738,366.426514931,376.39495619200017,383.8971371770001,387.700764522,390.26005170400003,391.59432175299986,390.98898647200014,389.1273587470001,386.16233846400024,382.6778049730001,381.6132784590002,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,desert,68.362198,68.359746,68.370948,68.370948,68.370948,68.370948,68.370948,68.370948,68.370948,68.370948,68.370948,68.370948,68.370948,68.370948,68.370948,68.370948,68.370948,68.370948,68.370948,68.370948,68.370948,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,forest (managed),668.6554015,381.12867579999994,358.9730025,396.34928644,440.12528113,480.45832774999997,523.14328419,582.1786942599999,636.17176058,677.0625339499999,705.99425006,737.89975362,763.0202781900001,779.39272704,791.08738893,799.96381174,804.0171862800001,804.83792052,801.4035784099999,794.6389482199999,795.6353943500001,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,forest (unmanaged),9836.294819109999,10224.31286656,10254.270374329999,10235.31552785,10209.76338727,10187.39140144,10162.90930754,10122.39326938,10084.92920607,10057.9747143,10039.329601579999,10017.26037279,9999.84531322,9988.81445969,9980.72252135,9974.57796273,9971.67988897,9970.97692582,9973.03267212,9977.12502005,9975.99659266,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,grass,1284.8810488699999,1253.3117555000001,1265.29293648,1261.75548238,1257.13203516,1253.1348362600002,1248.84747208,1242.0025586000002,1235.83815405,1231.51361636,1228.57975618,1225.12869855,1222.43787557,1220.74825414,1219.50540333,1218.56094502,1218.10960531,1217.99033342,1218.28359407,1218.88231805,1218.69188336,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,otherarable,996.4603549999999,891.6387549999998,879.645104,867.396423,848.2688649999999,832.026207,813.5279119999999,780.718279,750.122432,728.879696,714.249396,696.0865520000001,681.5219800000001,672.2617439999999,664.9795530000001,659.201886,655.9255109999999,654.3742339999999,654.9263330000001,657.001733,654.8658270000001,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,pasture (grazed),84.0822503,40.4303963,45.7579786,46.101360799999995,45.0319297,43.5780767,42.466079300000004,41.8727069,41.7856711,40.989450600000005,40.7969229,40.30308289999999,39.984691299999994,39.557368,39.3474297,39.1136196,39.0134423,39.012280600000004,39.3188516,40.0450055,40.35320469999999,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,pasture (other),740.8249435,878.1530591999999,870.5946143,869.3800755,867.6056798,866.2935363,864.6145486,860.9547081,857.4310842,855.2188806,853.6320741,851.6587727,850.0621052,849.1139066,848.3341834,847.7340186,847.3865856,847.2120772,847.2011569,847.2590205,846.9384765,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,shrubs,15.20862416,14.988546670000002,15.189228100000001,15.16616925,15.13406028,15.107546029999998,15.078317729999998,15.02337898,14.973617619999999,14.940582549999998,14.919070649999998,14.890864569999998,14.868966099999998,14.85587315,14.846357489999999,14.83951893,14.83698859,14.83734741,14.84099858,14.84684567,14.846187569999998,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,tundra,1980.7455579999998,1975.754593,1976.151057,1976.151057,1976.151057,1976.151057,1976.151057,1976.151057,1976.151057,1976.151057,1976.151057,1976.151057,1976.151057,1976.151057,1976.151057,1976.151057,1976.151057,1976.151057,1976.151057,1976.151057,1976.151057,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,urban,18.8532477,18.033142899999998,17.5826521,17.5826521,17.5826521,17.5826521,17.5826521,17.5826521,17.5826521,17.5826521,17.5826521,17.5826521,17.5826521,17.5826521,17.5826521,17.5826521,17.5826521,17.5826521,17.5826521,17.5826521,17.5826521,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,biomass,0.0,0.0,0.0,0.0,2.595466943,4.420325269999999,6.788125315999999,9.882479179999999,12.890259919999998,15.332422090000001,17.404502100000002,19.25544472,20.90218919,22.126266310000002,23.3707528,24.575980629999997,25.811484529999998,27.02332857,28.15664278,29.162579519999998,30.446228819999998,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,crops,80.3696072,58.34360340000001,54.906734,59.66903808299999,61.293166984,62.446269880999985,63.764635695,65.57268031800002,67.35181544300002,67.76105024300001,67.24761183,68.00309773100001,68.643547883,68.71217955599998,68.97191205600001,69.16638137700002,69.235560093,69.176624836,69.091970789,69.01341831900002,69.29293744400002,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,desert,2.5908718,2.8418037,2.8594641,2.8594641,2.8594641,2.8594641,2.8594641,2.8594641,2.8594641,2.8594641,2.8594641,2.8594641,2.8594641,2.8594641,2.8594641,2.8594641,2.8594641,2.8594641,2.8594641,2.8594641,2.8594641,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,forest (managed),16.722621999999998,19.9042649,18.0388199,19.560412799999998,21.337761,22.9746446,24.602761299999997,27.139165999999996,29.333532,31.159023000000005,32.612851,33.740482,34.534994,35.07730599999999,35.347971,35.480514,35.414617,35.219225,34.859548,34.387094,34.089907000000004,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,forest (unmanaged),21.66027175,18.27946679,22.12091282,22.04227914,21.95281349,21.88015326,21.79949991,21.70358483,21.61154435,21.55622833,21.52629297,21.46756711,21.41877738,21.38951422,21.36386635,21.34186362,21.32685083,21.31651258,21.31209387,21.31251848,21.29689857,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,grass,176.21141000000003,147.209339,169.585141,168.697803,167.760918,167.080287,166.36638,165.36204800000002,164.506046,164.01377100000002,163.75397500000003,163.305236,162.9555013,162.75154650000002,162.5872904,162.4483725,162.3585521,162.298885,162.28158910000002,162.29920030000002,162.2086624,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,otherarable,59.3389068,96.0263,72.72511,70.23419000000001,67.34723999999999,65.11501899999999,62.818749,59.57905199999999,56.76567,55.048190000000005,54.078081,52.499337000000004,51.262334,50.514785,49.944317000000005,49.468848,49.186479,49.018389000000006,49.018666,49.156856000000005,48.889998,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,pasture (grazed),45.109140000000004,53.432532,56.503975999999994,55.906082999999995,56.77812899999999,57.226566,56.96345000000001,57.002092000000005,56.269942,54.95689999999999,53.442658,53.28612699999999,52.933533,52.704974,52.010459000000004,51.37051700000001,50.516155999999995,49.696341,48.699363,47.57813099999999,46.67056,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,pasture (other),776.4648749999999,782.8032939999999,779.14635,777.034555,774.206062,772.221516,770.355361,767.357135,764.985228,763.947458,763.735039,762.308158,761.263983,760.666556,760.365885,760.125199,760.133724,760.234879,760.556876,761.053476,761.072573,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,shrubs,35.19809642,32.717004530000004,34.979032270000005,34.86163477,34.73456445,34.641116190000005,34.54714439,34.40780996,34.291950400000005,34.2310336,34.205070850000006,34.140516860000005,34.091286020000005,34.06301306,34.043692310000004,34.028355010000006,34.02263854,34.021910860000006,34.02923965,34.04282774,34.038125550000004,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,tundra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,urban,2.6935711999999996,4.801278400000001,5.4940488,5.4940488,5.4940488,5.4940488,5.4940488,5.4940488,5.4940488,5.4940488,5.4940488,5.4940488,5.4940488,5.4940488,5.4940488,5.4940488,5.4940488,5.4940488,5.4940488,5.4940488,5.4940488,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,crops,22.714059800000005,22.4769818,23.3687482,26.16048007,29.034336523,31.517810851999997,34.097530641,37.68978170100001,41.215712537999984,43.81586986,45.37597640600001,46.598576768,47.33076034799999,47.34700731300001,47.172392028000004,46.95862262799999,46.57966863000001,46.14244132199998,45.559745529,44.906897894,44.80211145499999,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,desert,2.2586988,2.3427854,2.3580247,2.3580247,2.3580247,2.3580247,2.3580247,2.3580247,2.3580247,2.3580247,2.3580247,2.3580247,2.3580247,2.3580247,2.3580247,2.3580247,2.3580247,2.3580247,2.3580247,2.3580247,2.3580247,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,forest (managed),3.1305093999999998,4.1140719,4.4317722,4.82600846,5.34256684,5.80987324,6.30340794,7.0501571,7.71789934,8.24667282,8.62667012,9.05508464,9.38827668,9.61469612,9.76572835,9.87564484,9.90966909,9.89723089,9.82548761,9.71485614,9.701314109999998,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,forest (unmanaged),915.8511292000001,907.4520367,909.9224494,906.9606405,904.405758,902.0910109,899.6321792,896.4639947,893.2986843,891.2092531999999,889.7862831,888.1256914999999,886.7571478,885.9473791,885.2697994,884.7221849,884.3567289,884.1445375,884.1309557,884.3075606,884.0344894,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,grass,165.3354608,171.3181985,173.36086609999998,171.8344974,170.6845161,169.6829273,168.6717245,167.4764708,166.3569413,165.6469247,165.162014,164.71539140000002,164.35325459999999,164.1456327,163.96181779999998,163.8036756,163.679226,163.58516699999998,163.5352537,163.5292097,163.4176242,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,otherarable,14.952034999999999,16.187935,12.616036999999999,12.393453000000001,12.244627999999999,12.085219,11.901389,11.667136,11.416986,11.246192,11.101627,10.940673,10.788269,10.671642,10.560171,10.461432,10.375517,10.304846,10.252365000000001,10.220571,10.159083,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,pasture (grazed),16.824641,20.347186,21.607411999999997,25.163842000000002,26.940027999999998,28.608845000000002,30.327451000000003,31.833578000000003,33.337156,33.855584,34.455688,35.584136,36.841183,38.021563,39.285333,40.420745,41.531717,42.507899,43.380606,44.055395,44.756231,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,pasture (other),176.06169599999998,172.267325,168.29344700000001,166.31153500000002,165.03637,163.92592800000003,162.822328,161.61619,160.49349500000002,159.841556,159.371634,158.877489,158.4528518,158.17276710000002,157.9135588,157.69349760000003,157.5089192,157.36370810000003,157.2640903,157.21478240000002,157.0830976,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,shrubs,7.2100263,6.8666106,7.0374984000000005,6.9877233,6.950143300000001,6.9167315,6.8823369,6.8410121,6.801360300000001,6.7761775,6.7584516,6.7411341,6.7265777,6.717643300000001,6.7095143,6.7024928,6.6967941,6.6924081,6.6898018,6.6890661,6.6843422,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,tundra,4.251099,4.358691,4.4310659999999995,4.4310659999999995,4.4310659999999995,4.4310659999999995,4.4310659999999995,4.4310659999999995,4.4310659999999995,4.4310659999999995,4.4310659999999995,4.4310659999999995,4.4310659999999995,4.4310659999999995,4.4310659999999995,4.4310659999999995,4.4310659999999995,4.4310659999999995,4.4310659999999995,4.4310659999999995,4.4310659999999995,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,urban,2.1868628,3.0447306,3.349788,3.349788,3.349788,3.349788,3.349788,3.349788,3.349788,3.349788,3.349788,3.349788,3.349788,3.349788,3.349788,3.349788,3.349788,3.349788,3.349788,3.349788,3.349788,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,biomass,0.0,0.0,0.0,0.0,0.43035740000000006,0.780663854,1.2742488039999997,2.01753474,2.76054464,3.4291810200000006,4.05153224,4.54613473,5.01379233,5.37858781,5.761238239999999,6.14706619,6.55333471,6.964694409999999,7.33670224,7.6558104899999995,8.053261619999999,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,crops,107.98060630000003,136.19252780000002,141.81263119999997,149.869468794,158.5077462192,165.74794478229998,173.35747194100003,184.37446588960012,194.4673815767001,200.02098253629998,202.6260385641001,206.586734618,209.51086699800007,210.45659199719995,211.1734802159,211.46777502199996,211.01821155369993,210.0990606024001,208.7649407583,207.1585397072002,207.0734021941001,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,desert,292.68025209999996,295.53194679999996,293.4455979,293.4455979,293.4455979,293.4455979,293.4455979,293.4455979,293.4455979,293.4455979,293.4455979,293.4455979,293.4455979,293.4455979,293.4455979,293.4455979,293.4455979,293.4455979,293.4455979,293.4455979,293.4455979,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,forest (managed),33.1258292,50.31695299999999,58.290116,62.849665,68.36930699999999,73.29728300000001,78.28125999999999,84.9897,90.68102100000002,95.26888600000001,98.72275299999995,102.21045200000003,104.886709,106.82893,108.094167,109.05045499999999,109.496874,109.61867000000001,109.27000699999999,108.57642599999998,108.470435,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,forest (unmanaged),1530.307882,1493.8052020000002,1497.3541790000004,1491.2013260000003,1484.7736280000004,1479.3028150000005,1473.5427140000002,1465.2264610000002,1457.7140540000003,1452.9308480000004,1449.9589400000004,1446.2747960000004,1443.3958570000004,1441.7734540000004,1440.4954010000004,1439.5310080000004,1439.0892040000003,1439.0107820000003,1439.3580700000002,1440.0480200000002,1439.7051990000004,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,grass,529.51532955,512.9241964400001,539.65428011,536.63239727,533.64884271,531.14161934,528.5812263600001,525.23934822,522.2847938900002,520.4853846400001,519.3686110600001,517.9890079000002,516.8945060000001,516.2569953900002,515.7257357800002,515.3196298600001,515.1081999400001,515.0364934900001,515.11422399,515.3116488300002,515.1449264700002,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,otherarable,43.718044,43.6733317,40.0542845,38.89043717699999,37.662861649999996,36.55260666100001,35.37799498900001,33.78244713400001,32.29083528700001,31.265175696,30.569275323999996,29.735757789000004,29.061194625999995,28.633914921000002,28.291300673000002,28.025491652999996,27.882265382,27.827105575,27.872479753,27.997785497999992,27.911198061999997,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,pasture (grazed),27.273794100000003,43.081283299999996,45.57368829999999,49.9652822,51.924050900000005,53.4765746,54.989658500000004,56.311853700000015,57.6135203,57.870174700000014,58.1386836,58.8786158,59.732541200000014,60.5455069,61.5548416,62.5219158,63.50265730000002,64.38971450000001,65.2301161,65.9475639,66.8223187,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,pasture (other),985.8147515,979.0146084999998,931.0135170000002,924.9812861000001,919.7154591000002,915.2716934000001,910.720664,904.9344999000001,899.7308122000001,896.6836356000002,894.7718679000001,892.3053837000001,890.2807970000002,889.0453805000001,887.9376962000002,887.0576874000002,886.5131452000002,886.2293826000001,886.2055433000002,886.4038829000002,885.9509858000002,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,shrubs,122.34274069999996,114.34857360000001,120.0981346,119.4609774,118.8183758,118.2796144,117.72549099999999,116.97447799999999,116.3079105,115.89652260000001,115.6430797,115.32385520000001,115.0745863,114.93137130000001,114.81687090000001,114.72984180000002,114.6867678,114.6749927,114.6987472,114.7511416,114.7191561,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,tundra,179.451496,181.54453699999996,182.477503,182.477503,182.477503,182.477503,182.477503,182.477503,182.477503,182.477503,182.477503,182.477503,182.477503,182.477503,182.477503,182.477503,182.477503,182.477503,182.477503,182.477503,182.477503,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,urban,3.9843577999999997,5.7615778,6.4199369,6.4199369,6.4199369,6.4199369,6.4199369,6.4199369,6.4199369,6.4199369,6.4199369,6.4199369,6.4199369,6.4199369,6.4199369,6.4199369,6.4199369,6.4199369,6.4199369,6.4199369,6.4199369,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,biomass,0.0,0.0,0.0,0.0,4.107194540000001,7.210110500000001,11.3089901,16.9241421,22.4086465,27.1551769,31.30518,34.1100522,36.62615910000001,38.2539626,39.957647300000005,41.7125414,43.688631,45.68311130000001,47.576623999999995,49.25753499999999,51.3041788,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,crops,123.9005098,124.20562079999995,122.85832090000011,125.91386510820001,128.92219529989998,131.0706394345,132.67310352460004,136.50318908720004,139.88337799970003,141.7842650939,142.60313090279988,142.55820145640013,142.10109330159997,141.26816484280005,140.1864538963001,138.9408840532,137.41256400759994,135.73153857619997,133.89411111410004,131.96875855089996,130.36129496999993,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,desert,86.44322370000002,87.6517723,87.6938387,87.6938387,87.6938387,87.6938387,87.6938387,87.6938387,87.6938387,87.6938387,87.6938387,87.6938387,87.6938387,87.6938387,87.6938387,87.6938387,87.6938387,87.6938387,87.6938387,87.6938387,87.6938387,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,forest (managed),42.1504799,41.85038050000001,41.61787319999999,42.5249758,43.250214099999994,43.8338192,44.268653,44.903112400000005,44.763675799999994,44.687160899999995,44.535427999999996,45.113154800000004,45.59326480000001,46.1076727,46.479848399999995,46.8423321,47.11636309999999,47.36222239999999,47.5278013,47.6621843,47.8356577,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,forest (unmanaged),122.39502845999999,127.49374674,128.33261884,127.14696708000001,125.88758236000002,124.91719936000003,124.00537290000001,122.90900996,121.97027776000003,121.37439773000001,120.98588323000003,120.66954009000001,120.43908513000001,120.31873419000003,120.23399251000002,120.17874738000002,120.16387208000002,120.17888125000002,120.22859651000002,120.30905775000001,120.31310525000002,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,grass,54.76671543999999,48.213580560000004,49.14146547000001,48.750109900000005,48.32409871000001,47.988961150000016,47.62712245000001,47.06626412000001,46.605526340000004,46.289042560000006,46.05657820000001,45.915737850000006,45.80540338000001,45.74123588000001,45.68767006000001,45.64293442000001,45.605015160000015,45.575957310000014,45.55747117000001,45.54778884000002,45.519213580000006,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,otherarable,102.87951899999999,99.754024,96.65173799999998,89.76489199999999,83.22755999999998,77.942006,72.47488899999999,64.76265500000001,58.02297200000001,53.333180999999996,49.878913000000004,47.33233299999999,45.336292000000014,44.168282,43.233427,42.496639,41.96513,41.63428500000001,41.538257,41.64095999999999,41.293686,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,pasture (grazed),17.474865500000003,20.2105934,19.998367899999998,29.647890899999997,33.5137659,37.06207870000001,40.553601000000015,44.021822,46.8746153,48.184768,49.1353242,49.8512297,50.4817066,51.0260298,51.5246719,51.824942199999995,51.953169200000005,51.92469299999999,51.874605599999995,51.8576682,51.80065220000001,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,pasture (other),315.60416789999994,312.56351019999994,314.63520550000004,310.33157960000005,307.6322371,305.4640426,303.25000930000004,300.18543725,297.69864039000004,296.08479314,294.89448165,294.15555995,293.56994346,293.21510008,292.91651766,292.67904461,292.48950181000004,292.35595738,292.27556669,292.23523950000003,292.10431057,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,shrubs,142.91082605,145.4632731,145.88240829999998,145.03783649999997,144.2532781,143.6292193,142.95646539999998,141.8424495,140.8904298,140.2252787,139.72315666999998,139.4122866,139.1651169,139.01883038,138.89776172999998,138.80008440999998,138.72390309,138.67142017999998,138.64509877,138.63898336,138.58592271999999,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,tundra,18.637168,18.7942,18.9803803,18.9803803,18.9803803,18.9803803,18.9803803,18.9803803,18.9803803,18.9803803,18.9803803,18.9803803,18.9803803,18.9803803,18.9803803,18.9803803,18.9803803,18.9803803,18.9803803,18.9803803,18.9803803,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,urban,1.2842511,2.2458615,2.6542433,2.6542433,2.6542433,2.6542433,2.6542433,2.6542433,2.6542433,2.6542433,2.6542433,2.6542433,2.6542433,2.6542433,2.6542433,2.6542433,2.6542433,2.6542433,2.6542433,2.6542433,2.6542433,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,biomass,0.0,0.0,0.0,0.0,0.68492,1.13543,1.697124,2.41771,3.0921399999999997,3.65008,4.15153,4.5037400000000005,4.82752,5.078609999999999,5.36022,5.64857,5.96462,6.293480000000001,6.61587,6.91774,7.25785,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,crops,14.047322500000002,14.139187499999998,13.219178000000001,13.070224772299998,12.690949795300002,12.3295007588,11.948352714,11.7647717626,11.6019154484,11.3513554042,11.059801385399998,10.964944885800001,10.849210426900001,10.7124292362,10.5590232124,10.386370032600002,10.1909093557,9.9797250028,9.760645611000001,9.5372710919,9.3305561487,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,desert,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,forest (managed),5.01513,6.087,7.10231,7.58471,7.86839,8.19678,8.45158,8.56175,8.58163,8.62007,8.64022,8.61684,8.58516,8.57577,8.53424,8.48751,8.4159,8.33151,8.240269999999999,8.15304,8.05715,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,forest (unmanaged),63.76333000000001,62.29711,62.06499,61.74578,61.21417,60.8491,60.460280000000004,59.861920000000005,59.37366,59.06969,58.87454,58.65659,58.49396,58.39826,58.32162,58.26082,58.21916,58.19084,58.18169,58.18963,58.15579,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,grass,0.1865911,0.16207549999999998,0.16446670000000002,0.1631788,0.16129400000000002,0.159973,0.1586534,0.15685767,0.15545518000000003,0.15457482,0.15400546,0.15343269,0.1530111,0.15275783,0.15255899,0.15240148,0.15229428,0.15222143000000002,0.15219549000000002,0.15220982000000002,0.15212717,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,otherarable,0.0,0.238164,0.307957,0.289464,0.26668,0.248806,0.230805,0.205903,0.185063,0.171035,0.161642,0.15166,0.144085,0.139399,0.135789,0.132934,0.131126,0.130023,0.129885,0.130554,0.129224,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,pasture (grazed),0.37231400000000003,0.294221,0.30378,0.309867,0.27724499999999996,0.24429240000000002,0.2174026,0.19585750000000002,0.17534860000000002,0.14857499999999998,0.1236516,0.1184199,0.1128515,0.108655,0.1024598,0.0973349,0.09191869999999999,0.08811920000000001,0.0853089,0.0853958,0.0831657,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,pasture (other),0.06570256,0.05192155,0.05360811,0.05307203,0.05263739,0.05240532,0.05211176,0.0515231,0.0510775,0.05091603,0.050899350999999995,0.050659883,0.0505006,0.050416027,0.050380430000000004,0.050357116,0.050367853000000004,0.050382823,0.050416351,0.050440082,0.050431256,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,shrubs,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,tundra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,urban,1.623478,1.804208,1.8576899999999998,1.8576899999999998,1.8576899999999998,1.8576899999999998,1.8576899999999998,1.8576899999999998,1.8576899999999998,1.8576899999999998,1.8576899999999998,1.8576899999999998,1.8576899999999998,1.8576899999999998,1.8576899999999998,1.8576899999999998,1.8576899999999998,1.8576899999999998,1.8576899999999998,1.8576899999999998,1.8576899999999998,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,biomass,0.0,0.0,0.0,0.0,7.713786106000001,13.215999685000002,20.378478013000002,30.171925979999997,38.95683508,45.667012167,52.08499921,57.31955697,62.21746086999999,66.32595187999999,70.75506307,75.24512036000002,80.00185007,85.00804817,89.98332712999999,94.62303706000002,99.73594283999998,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,crops,514.4861780999994,589.3579892000001,637.8237312000001,645.018630592,651.0529641589994,655.1482090479997,657.912505995,670.0983558370003,680.8784791390003,686.603423223,688.017556487,689.3121932770001,688.9837987389997,686.5667821450004,683.187014281,679.0964436569999,673.8263813239998,667.6375544760002,660.8977273760004,653.9128667859998,648.5246585040004,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,desert,0.4736614,0.3941989,0.3623491,0.3623491,0.3623491,0.3623491,0.3623491,0.3623491,0.3623491,0.3623491,0.3623491,0.3623491,0.3623491,0.3623491,0.3623491,0.3623491,0.3623491,0.3623491,0.3623491,0.3623491,0.3623491,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,forest (managed),123.782485,116.7250141,115.0299441,118.43092040000002,121.76429130000001,124.87573680000001,127.26477599999998,125.795731,122.892813,121.306986,120.208777,120.185092,120.216541,120.879407,121.35717700000001,121.960692,122.620242,123.38689300000001,124.06774399999999,124.76219700000001,125.032799,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,forest (unmanaged),1949.3956369999999,1897.7646379999999,1856.481106,1840.607922,1823.899692,1811.250284,1798.8091299999999,1779.4672747,1763.8010571,1754.2918588,1748.3291786,1742.9100964,1738.9890212999999,1736.9486450999998,1735.5202554,1734.58608,1734.3553872,1734.6253628,1735.4331895,1736.7142113999998,1736.6730753,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,grass,189.67791060000002,185.0987735,177.72368549999996,175.81546869999997,173.92495849999997,172.50031639999997,171.13190319999998,169.08478929999998,167.49342519999996,166.54189779999996,165.95793480999995,165.42493865999998,165.04590841999996,164.84663689999996,164.71080591999996,164.62134207999995,164.59949605999995,164.62457277999997,164.70201225999998,164.82460485,164.82331834,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,otherarable,37.048659099999995,6.723764899999999,6.707707300000001,6.2272663,5.708854170000001,5.297822440000001,4.889891270000001,4.299462179999999,3.8004920099999997,3.48238089,3.2733873400000006,3.07608496,2.9293870000000006,2.8468745800000006,2.78722785,2.74558872,2.72971146,2.7321351100000006,2.7549156999999997,2.7954456100000002,2.7900420599999998,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,pasture (grazed),29.521648399999997,29.894541199999995,36.086011199999994,44.445897200000005,47.0095673,49.1697984,51.427224700000004,53.36465260000001,54.810858499999995,54.9408386,55.08566669999999,54.8390948,54.76393470000001,54.7744809,54.9003351,54.9848226,55.114272500000006,55.2293508,55.3925143,55.576664199999996,55.6306256,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,pasture (other),19.215946599999995,32.07098178,25.97963038,25.454688639999997,25.108853299999996,24.86227399,24.63838569,24.35643708,24.150456543,24.037608521,23.968529217,23.908786088,23.865945655999997,23.842826718999998,23.826177598999998,23.815036512,23.811068678999998,23.812288501999998,23.819033065,23.830737295,23.829842899,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,shrubs,17.001838499999998,17.16125258,16.63422507,16.465007489999998,16.281849319999996,16.144476539999996,16.012929449999998,15.82627627,15.68058151,15.59317315,15.53867373,15.48913223,15.45347303,15.43415942,15.4204235,15.41104596,15.40784595,15.40897575,15.41493689,15.42518412,15.42437322,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,tundra,0.981574,0.889825,0.959265,0.959265,0.959265,0.959265,0.959265,0.959265,0.959265,0.959265,0.959265,0.959265,0.959265,0.959265,0.959265,0.959265,0.959265,0.959265,0.959265,0.959265,0.959265,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,urban,8.793925100000001,14.2973624,16.5921788,16.5921788,16.5921788,16.5921788,16.5921788,16.5921788,16.5921788,16.5921788,16.5921788,16.5921788,16.5921788,16.5921788,16.5921788,16.5921788,16.5921788,16.5921788,16.5921788,16.5921788,16.5921788,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,biomass,0.0,0.0,0.0,0.0,49.61903,85.06455000000001,130.73421000000002,185.91606,230.26319999999998,263.4122,289.81120000000004,312.8306,333.1898,348.6531,364.6523,380.7778,396.566,412.3997,426.8775,439.7101,455.3453999999999,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,crops,1170.6209758999998,1203.9663361999997,1176.1074802,1196.221235082,1192.1616013210003,1189.484016668,1185.2038372699997,1196.722983363,1208.8040504690002,1207.7920356719999,1200.7603463029998,1199.2101284040004,1197.7162132879994,1193.0912593429996,1189.9146631949998,1185.8172666889993,1180.672954055,1174.4739414190005,1168.7528156869998,1164.0053880640012,1160.9761727629998,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,desert,34.178445700000005,34.4579747,34.1181227,34.1181227,34.1181227,34.1181227,34.1181227,34.1181227,34.1181227,34.1181227,34.1181227,34.1181227,34.1181227,34.1181227,34.1181227,34.1181227,34.1181227,34.1181227,34.1181227,34.1181227,34.1181227,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,forest (managed),637.77328,571.41271,429.62475,456.99850999999995,480.56885000000005,501.72294999999997,518.97238,534.85658,545.0880999999999,554.8972200000001,562.66893,569.73747,573.3314300000001,575.9240500000001,574.68918,572.36067,568.42916,563.4678,556.88033,549.09552,542.5635199999999,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,forest (unmanaged),2345.4335300000002,2664.5117000000005,2833.8638700000006,2819.6395600000005,2800.1722000000004,2784.8864300000005,2768.5069500000004,2745.02354,2725.5464800000004,2713.5261900000005,2706.0385,2697.72467,2691.12973,2687.1509800000003,2683.6819600000003,2680.815969,2678.895096,2677.5919870000002,2676.991547,2676.9205,2675.1698400000005,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,grass,588.5381490000001,376.53780299999994,392.29998000000006,389.73289500000004,386.25874600000003,383.6333610000001,380.87847700000003,377.1406640000001,374.2620560000001,372.5199850000001,371.3939960000001,370.27396500000003,369.408561,368.899733,368.46203800000006,368.0981520000001,367.8407620000001,367.659239,367.56713800000006,367.5437050000001,367.3117280000001,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,otherarable,685.0424689999999,559.003367,440.364944,420.705765,393.43527500000005,371.9153129999999,348.81708,316.22791500000005,289.26633200000003,272.0890364,260.94808040000004,249.174397,239.8564708,234.192329,229.2903479,225.19690859999997,222.35210800000002,220.36577050000002,219.39508440000003,219.16042819999998,216.5574752,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,pasture (grazed),52.723528699999996,9.085457700000003,19.615700299999993,20.491037099999996,20.849144300000003,21.300195600000006,21.6462489,21.9546684,22.325150999999998,22.610825700000003,23.024642300000004,23.5534344,24.0846635,24.5765378,25.0952272,25.5473026,25.998161900000003,26.401764200000002,26.834551500000003,27.3107141,27.737925100000005,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,pasture (other),2328.2256719999996,2330.380531,2450.0985049999995,2440.4383629999998,2425.4072249999995,2413.7431949999996,2400.7910079999997,2382.8297325999997,2368.7798151999996,2359.8514313999995,2353.7436326999996,2347.5556574999996,2342.6469675,2339.653187,2337.0164988999995,2334.7626926999997,2333.0612885999994,2331.7842063999997,2331.0182451999995,2330.6221510999994,2329.0777633,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,shrubs,742.7980892999999,783.3026239000001,738.8099775000001,736.5555612,732.3125426,729.0341859000001,725.2347460000001,720.11209277,716.44868855,714.0847575600001,712.3955904300001,710.7238762200001,709.4204371400001,708.64278203,707.9831788800001,707.40758512,706.9684799,706.64037424,706.4678713200001,706.4168640700001,706.04475202,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,tundra,240.731956,240.7436154,240.67603309999998,240.67603309999998,240.67603309999998,240.67603309999998,240.67603309999998,240.67603309999998,240.67603309999998,240.67603309999998,240.67603309999998,240.67603309999998,240.67603309999998,240.67603309999998,240.67603309999998,240.67603309999998,240.67603309999998,240.67603309999998,240.67603309999998,240.67603309999998,240.67603309999998,thous km2, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,urban,116.3402092,168.99758419999998,186.829803,186.829803,186.829803,186.829803,186.829803,186.829803,186.829803,186.829803,186.829803,186.829803,186.829803,186.829803,186.829803,186.829803,186.829803,186.829803,186.829803,186.829803,186.829803,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,biomass,0.0,0.0,0.0,0.0,7.3905059,14.620043099999998,24.501832600000004,34.8047582,39.155600899999996,43.29387499999999,47.0414585,50.471877000000006,54.056722,57.200607,63.00403299999999,68.65236399999999,74.99439400000001,79.001841,82.665459,85.965009,90.23374199999999,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,crops,311.92467120000003,428.28109870000003,430.69721629999987,422.2170473770003,434.99792146499993,445.69787473400004,452.215744898,467.5999552,479.44566427000007,486.7155576539999,489.5962895379999,483.593417654,476.52772892800016,468.2512123849999,459.41920430399966,450.59048614299996,441.91641611500006,432.907610328,423.9471670559998,415.4278803732,407.25393761600003,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,desert,1154.214617,1194.895342,1194.9877450000001,1194.9877450000001,1194.9877450000001,1194.9877450000001,1194.9877450000001,1194.9877450000001,1194.9877450000001,1194.9877450000001,1194.9877450000001,1194.9877450000001,1194.9877450000001,1194.9877450000001,1194.9877450000001,1194.9877450000001,1194.9877450000001,1194.9877450000001,1194.9877450000001,1194.9877450000001,1194.9877450000001,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,forest (managed),101.97584040000001,134.4069045,145.33026800000002,152.41969699999999,156.98274399999997,160.770905,163.56353299999998,161.13717800000003,158.03293700000003,154.389286,150.36332900000002,151.85443700000002,152.96190200000004,153.78632,154.15541,154.18918100000002,153.8673178,153.39710340000002,152.73264819999997,151.97451779999997,151.0201064,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,forest (unmanaged),110.07212879000002,58.03721887999999,40.92342608999999,40.81824036999999,40.44651919,40.089560979999995,39.75670397999999,39.33542893999999,39.01226162,38.75123421999999,38.55106772999999,38.48248056999999,38.43760809999999,38.42010005999999,38.40267262,38.39847536999999,38.401318331999995,38.43465919499999,38.48168044999999,38.537197678999995,38.59254368999999,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,grass,859.257675,723.72887,708.3877129999998,705.7822159999998,697.7622469999998,690.2658159999999,683.3624159999998,675.6620937999999,670.0321015999998,665.5620411999998,662.1735910999998,660.7854295999998,659.7928749999999,659.2396559999999,658.6652568999998,658.3153004999998,658.0777389999998,658.3242015999998,658.7755997999998,659.3576252999998,659.9315936999998,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,otherarable,109.24389359999999,108.2396133,130.31273080000003,125.75812350000001,115.17798220000002,104.6302137,94.36270190000002,82.570278,73.1699009,65.2354352,58.896733800000014,56.06942720000001,53.9964075,52.769172399999995,51.55321429999999,50.79265579999999,50.2805811,50.70079229999999,51.529699700000016,52.6137701,53.700265,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,pasture (grazed),103.7853683,145.49922890000002,151.82868510000003,176.658263,201.6545,227.83994100000004,253.38645,279.05787599999996,303.76669800000013,326.812343,348.20816799999994,359.51177999999993,369.38399699999997,378.262319,385.3003079999999,391.25787499999996,395.825454,400.16841999999997,403.62694500000003,406.224267,407.61646500000006,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,pasture (other),2458.422947,2354.8308,2347.579746,2333.248031,2307.227972,2282.353964,2259.5356851,2235.460848,2216.9535394,2202.1335337000005,2190.7371186000005,2185.9261408,2182.3734205000005,2180.1039812000004,2178.0246926000004,2176.6397563000005,2175.6847215000003,2175.9590346000005,2176.8177498000005,2178.0614034000005,2179.3933529000005,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,shrubs,547.43671807,605.8164908,602.4575586999999,600.6154918409999,595.8764238909998,591.2485344499999,586.831975817,581.8889118879999,577.9483388279999,574.6233888139999,571.949530412,570.8219264609999,569.9862191979998,569.4836614279999,568.9920555409999,568.6808246439999,568.4687528919999,568.6233834219998,568.9400418439999,569.3553926839999,569.7749941229999,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,tundra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,urban,2.6365201,5.240257499999999,6.4683625,6.4683625,6.4683625,6.4683625,6.4683625,6.4683625,6.4683625,6.4683625,6.4683625,6.4683625,6.4683625,6.4683625,6.4683625,6.4683625,6.4683625,6.4683625,6.4683625,6.4683625,6.4683625,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,biomass,0.0,0.0,0.0,0.0,12.6897964,24.442289699999996,39.375214099999994,53.0781823,58.9297631,64.5639337,69.85244499999999,74.6767121,79.68055100000001,83.769643,90.122873,95.931252,102.000966,105.930471,109.558095,112.816284,116.561959,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,crops,164.4798679,168.6582839,166.7634255,166.657054655,165.037539144,163.72205937399997,159.87016218399998,157.70794673500004,158.76603292800002,158.95789553899994,158.346611711,156.392280949,153.75325503699997,151.03611445700002,146.691101884,142.38887954499998,137.734114487,133.914716294,130.07121042999998,126.37685234100002,122.38799698899996,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,desert,4639.457437499999,4677.5868408,4674.5670254999995,4674.5670254999995,4674.5670254999995,4674.5670254999995,4674.5670254999995,4674.5670254999995,4674.5670254999995,4674.5670254999995,4674.5670254999995,4674.5670254999995,4674.5670254999995,4674.5670254999995,4674.5670254999995,4674.5670254999995,4674.5670254999995,4674.5670254999995,4674.5670254999995,4674.5670254999995,4674.5670254999995,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,forest (managed),3.1032077,0.9418943000000001,1.4591024,1.6272055,1.7061683,1.7809744,1.8125191,1.8175997000000002,1.8686634,1.9021584,1.9179328999999998,1.9218015,1.9100342,1.8924052,1.8355641,1.7760879,1.7054342,1.6500777,1.590371,1.5316014,1.4680507999999999,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,forest (unmanaged),0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,grass,15.11647859,5.76751243,6.23865289,6.2347679000000005,6.1688105900000005,6.10909694,6.05006574,5.99142797,5.95609517,5.927332300000001,5.90488352,5.892420670000001,5.88278469,5.8778737,5.8712373300000005,5.86691753,5.8632946100000005,5.864958580000001,5.8681255000000005,5.872237320000001,5.87576388,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,otherarable,88.93892399999999,83.783046,84.442908,84.432706,77.958021,71.864003,65.460348,58.736940000000004,54.558195,51.016293,48.210183,46.570346,45.276538,44.525481,43.423504,42.612358,41.86079599999999,41.831276,41.989520000000006,42.273814,42.451733999999995,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,pasture (grazed),4.3357516,7.299794199999999,9.1548585,9.6040231,10.220212700000001,10.834737899999999,11.327327700000001,11.880607399999999,12.4880832,13.0380989,13.4974723,13.5554814,13.535825599999999,13.4850353,13.354154999999999,13.1980548,13.014469199999999,12.8503774,12.675194900000001,12.495159699999999,12.2997129,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,pasture (other),730.9545843299999,728.1754922,725.1056545,724.6070773,719.5051768,714.6404946,709.6043774000001,704.389911,701.0935753,698.3014939999999,696.0132782,694.7544053,693.7405944000001,693.2022898,692.5037603,692.0384027,691.6417703000001,691.7796327,692.0675482,692.4512072,692.7703251,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,shrubs,37.27819041,7.574098899999999,9.40503163,9.40671913,9.28382675,9.17597452,9.069467135,8.967017108,8.909030778,8.862336197,8.826757704,8.806198652,8.790051867,8.780708157,8.767347824,8.75761849,8.748727812,8.748023578,8.749448704,8.752324284,8.75403307,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,tundra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,urban,9.3391515,13.2247327,15.8673897,15.8673897,15.8673897,15.8673897,15.8673897,15.8673897,15.8673897,15.8673897,15.8673897,15.8673897,15.8673897,15.8673897,15.8673897,15.8673897,15.8673897,15.8673897,15.8673897,15.8673897,15.8673897,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,biomass,0.0,0.0,0.0,0.0,1.1138511159000002,2.325582762,4.117832858000001,6.179358617,7.302926654999999,8.469319832,9.641395039999999,10.538647106000003,11.480191298999998,12.336229636000002,13.849776801,15.319707700000002,16.952478838,17.997219728,18.958581245999998,19.803783653999997,20.861306226999996,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,crops,191.34922080000004,233.4294932,277.1524115999999,295.264777048,330.30578294,364.2766293220002,395.26432722400006,427.33400915800024,454.4968783029999,476.535955679,492.28337416,493.577280653,492.57606620200005,488.5899342100002,484.31410410800015,479.4687999499999,474.75008170499984,467.65009148400014,459.7242599620001,451.8023025820002,444.57235004399985,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,desert,134.306135,133.752619,133.64403800000002,133.64403800000002,133.64403800000002,133.64403800000002,133.64403800000002,133.64403800000002,133.64403800000002,133.64403800000002,133.64403800000002,133.64403800000002,133.64403800000002,133.64403800000002,133.64403800000002,133.64403800000002,133.64403800000002,133.64403800000002,133.64403800000002,133.64403800000002,133.64403800000002,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,forest (managed),44.53663840000001,53.158327,55.15666300000001,56.43690699999999,58.112269000000005,59.423854999999996,60.404695999999994,60.656824,60.02243159999999,59.000264300000005,57.78567949999999,58.8862819,59.7961287,60.5732538,61.220830400000004,61.5816764,61.6261857,61.4096826,61.008884800000004,60.450424999999996,59.74400810000001,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,forest (unmanaged),1002.832209,1008.357494,1002.679889,997.6996839999999,988.7603359999998,980.0819979999999,972.0556159999999,963.138138,955.7438196,949.6224978,944.9165103,943.5792896,942.7777131999999,942.637305,942.5230282999999,942.6432714999999,942.8315290999999,943.6781033999998,944.8040215999999,946.0559799,947.2369884,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,grass,1617.594013,1519.12877,1483.8820919999998,1475.815755,1462.122546,1448.909955,1436.7308600000001,1424.6002199999998,1414.5815349999998,1406.2680959999998,1399.866625,1397.647904,1396.21925,1395.746008,1395.33189,1395.2925679999998,1395.3913619999998,1396.449591,1397.9345239999998,1399.6294699999999,1401.2603450000001,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,otherarable,89.00070529999999,84.13531010000001,86.2914814,83.6387156,78.74063330000003,73.5018387,68.1974836,62.599513699999996,57.5916472,53.13193759999999,49.492186700000005,48.1425273,47.23927689999999,46.90108789999999,46.5823032,46.4875064,46.468379299999995,47.026857899999996,47.825239999999994,48.730138200000006,49.580161700000005,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,pasture (grazed),38.4233284,51.589070099999994,53.9692842,62.79284410000001,71.6870603,81.5270689,91.452472,102.25620900000001,112.9218,123.18260500000001,133.047236,138.842341,144.072127,148.91265600000003,153.20085600000002,156.932034,160.113356,162.99157000000002,165.37470500000003,167.23718,168.534129,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,pasture (other),2129.552929,2162.9731020000004,2153.8725980000004,2141.9789600000004,2123.7298790000004,2105.5148200000003,2088.3235190000005,2070.7940780000004,2055.8378870000006,2043.1555333000001,2033.0813507,2029.2045988000002,2026.4792348,2025.0633216,2023.8399675000003,2023.1935811,2022.8185721000002,2023.6807559000001,2025.1361961000002,2026.9153343,2028.6935032000001,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,shrubs,284.4546655,283.11493199000006,282.10201204,281.47860834999994,280.53393909,279.54475950999995,278.55964233,277.54787079999994,276.60753773,275.74019192,274.99188511999995,274.68745386999996,274.46597029,274.34652328,274.24341555999996,274.18737928999997,274.15429000999995,274.22253386,274.33972907,274.48183879,274.62340047,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,tundra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,urban,3.1560983,5.5665230999999995,6.455441799999999,6.455441799999999,6.455441799999999,6.455441799999999,6.455441799999999,6.455441799999999,6.455441799999999,6.455441799999999,6.455441799999999,6.455441799999999,6.455441799999999,6.455441799999999,6.455441799999999,6.455441799999999,6.455441799999999,6.455441799999999,6.455441799999999,6.455441799999999,6.455441799999999,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,biomass,0.0,0.0,0.0,0.0,2.9774422509000003,5.9298464852000015,10.051426488000002,13.39097233,14.613001754999999,16.02692788,17.370564225,18.758849081,20.237100983000005,21.576532073000003,24.162424496,26.730721878000004,29.643636666000003,31.662908582000007,33.583210863,35.371437842,37.559597005,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,crops,669.5808413000001,830.6757842000001,905.8235861000002,910.1688144348999,951.4651782780003,991.3944392810001,1026.1967439010002,1082.1912838689996,1127.2082139930003,1161.970823528,1185.5878537940002,1187.3198860659998,1184.262619391,1175.6808927270001,1165.9267999930005,1154.4782256350002,1142.102825956,1125.147209947,1106.370785452,1087.325717513,1069.0959171230002,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,desert,2609.6112694999997,2745.6518892,2732.6534420999997,2732.6534420999997,2732.6534420999997,2732.6534420999997,2732.6534420999997,2732.6534420999997,2732.6534420999997,2732.6534420999997,2732.6534420999997,2732.6534420999997,2732.6534420999997,2732.6534420999997,2732.6534420999997,2732.6534420999997,2732.6534420999997,2732.6534420999997,2732.6534420999997,2732.6534420999997,2732.6534420999997,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,forest (managed),127.2821684,169.4623495,180.624204,189.25177920000002,200.88410789999998,212.0571857,222.8174239,231.315283,236.97860681,241.11588198,243.87672156999997,248.50898685,252.4233386,255.48843043,258.42674938000005,260.38483313,261.65042163,261.5302485,260.62447138,259.03637006,256.99556967,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,forest (unmanaged),2763.3437444,2697.1514309,2634.7760550000003,2627.6995406000005,2610.8154003000004,2593.7065767000004,2577.4388827000002,2557.1242370900004,2540.2593796700003,2526.1132088100003,2515.2417510500004,2510.7055775400004,2508.0314273100003,2507.44119041,2507.16305877,2507.7980860100006,2509.0040008600004,2512.3191912700004,2516.6134525100006,2521.36700017,2526.0220944000002,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,grass,2005.9143211,1809.2411178000002,1735.2264378,1729.5713272,1713.9143103,1698.6321722,1684.5853341,1667.2782859000001,1653.6461056,1642.6795688,1634.4272381,1631.1371828000001,1629.0662868000002,1628.3395465,1627.7888297000002,1627.8874495,1628.3833153,1630.2970518,1632.8843608,1635.8375575,1638.8112655,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,otherarable,241.44025070000004,261.846817,301.11847,295.397269,278.3897054,260.8490213,243.7512506,221.3254291,202.5547239,186.5015505,173.6513731,168.1115653,164.3568973,162.6242464,161.14172890000003,160.73319070000002,160.9872388,163.42098840000003,166.8409649,170.791802,174.7684257,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,pasture (grazed),59.352625700000004,87.78985739999999,93.6008297,109.90248969999999,126.57898879999999,145.5260371,164.7828751,184.82769879999998,204.5396556,223.6130765,242.0324975,253.1699508,263.1790006,272.5378305,280.87114610000003,288.34763499999997,294.868746,300.85329299999995,306.07767,310.532351,314.17129500000004,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,pasture (other),2576.1890110999993,2462.891416,2512.7261237,2502.3461368,2480.3604056,2458.3361632,2437.7964836,2411.6796376,2390.7428125,2373.7019256,2360.4870768,2355.2551531,2351.6081648,2349.5717831,2347.8581411,2347.0006326,2346.7023829,2347.9842411,2350.0412326,2352.5607848,2355.1810823,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,shrubs,255.3134418,235.82644899999997,200.6659411,200.2221256,199.1754258,198.1295443,197.13993119999998,195.4276482,194.0184209,192.8377265,191.884873,191.59308069999997,191.39506169999999,191.29958929999998,191.2215776,191.20063539999998,191.21754049999998,191.3441881,191.5245436,191.7369027,191.95512309999998,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,tundra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,urban,8.6467227,16.1444738,19.463024,19.463024,19.463024,19.463024,19.463024,19.463024,19.463024,19.463024,19.463024,19.463024,19.463024,19.463024,19.463024,19.463024,19.463024,19.463024,19.463024,19.463024,19.463024,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,biomass,0.0,0.0,0.0,0.0,0.065994933,0.13238043,0.22740525,0.31995123000000003,0.35947559,0.40019043,0.44682432000000005,0.5004086999999999,0.55760393,0.61376344,0.70435881,0.7984676500000001,0.9073064999999999,0.9942165000000001,1.0794960999999998,1.1603819,1.2580095,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,crops,215.30504780000004,265.6871859,337.1951085,332.4517342381,341.7898202239999,351.54316375790006,360.5401301466,369.4679010862999,376.2668453379,381.316127755,384.44610934810015,386.1128967087999,386.97902217180007,386.51186686110003,386.2398075836999,385.18753961609997,383.7883416739001,380.3342346664,376.19343649739983,371.7926005900999,367.2471971011001,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,desert,134.0737603,133.9175337,132.220351,132.220351,132.220351,132.220351,132.220351,132.220351,132.220351,132.220351,132.220351,132.220351,132.220351,132.220351,132.220351,132.220351,132.220351,132.220351,132.220351,132.220351,132.220351,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,forest (managed),7.552701000000001,10.627227900000001,11.0856379,12.096481499999998,12.970799699999999,13.717718900000001,14.471822699999999,15.4674813,16.340447799999996,17.192537299999998,17.969464100000003,18.562843,19.032398999999998,19.395858,19.708089,19.972185,20.184522,20.333694000000005,20.399193,20.39292,20.384468000000002,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,forest (unmanaged),175.65757299999996,180.22552799999997,166.38708699999998,166.66117199999997,165.79301339999998,164.75889069999997,163.79868649999997,162.87741839999998,162.13312439999999,161.54730839999996,161.13432519999998,160.95622319999998,160.86360379999996,160.89783749999998,160.93082749999996,161.04547979999998,161.20366519999996,161.54807009999996,161.95916179999998,162.39948389999998,162.85733289999996,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,grass,727.1627052999999,715.1430398999998,601.4899933000002,601.4260072000001,598.5659183000001,595.2529449000001,592.1651276000001,589.1103532000001,586.6467791000001,584.6552096000001,583.1809187000001,582.5161219000001,582.1334232,582.1249649000001,582.1319353000001,582.3718481000001,582.7427603000001,583.6162181000001,584.6831058000001,585.8484502000001,587.0542872000001,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,otherarable,57.58024470000001,29.168485,46.2036281,46.65510679999999,44.3703879,41.7091148,39.1961737,36.680261699999996,34.66437929999999,33.056617100000004,31.906746100000003,31.34335,31.020746100000004,31.039027100000006,31.052819700000004,31.275372,31.607486400000003,32.4171317,33.4016564,34.4669163,35.5640468,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,pasture (grazed),45.1533192,85.16696179999998,91.03410329999998,94.92715800000002,97.2281129,101.70592810000001,105.887416,109.63955699999998,113.064265,116.098546,118.75957699999998,119.36976299999999,119.62636999999998,119.62176699999999,119.36130399999999,118.85266499999999,118.12483999999999,117.23356100000001,116.23779200000003,115.14016099999998,113.982081,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,pasture (other),950.0321663,910.7578734000001,987.0180701999999,986.3954565,981.4121375999999,975.1860378,969.4117952,963.7885342999999,959.2180958999999,955.5198194999999,952.7595542,951.6073313,950.9715983,950.9979221,951.0839918999999,951.5951942,952.3559457,953.9919552999999,955.9709406000001,958.1316418999999,960.3752357,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,shrubs,390.7577430099999,371.31731756000005,329.74642373999995,329.54704016999995,327.96371144999995,326.15373179,324.46141183,322.80872210999996,321.46661671,320.3738621,319.55649752,319.19102160999995,318.97542776999995,318.95703588,318.9469612,319.06104745,319.2452325,319.69105964999994,320.23522198999996,320.82746589,321.43716761999997,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,tundra,28.489723,28.4168635,27.622236700000002,27.622236700000002,27.622236700000002,27.622236700000002,27.622236700000002,27.622236700000002,27.622236700000002,27.622236700000002,27.622236700000002,27.622236700000002,27.622236700000002,27.622236700000002,27.622236700000002,27.622236700000002,27.622236700000002,27.622236700000002,27.622236700000002,27.622236700000002,27.622236700000002,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,urban,4.2019247,5.5402765,5.965001,5.965001,5.965001,5.965001,5.965001,5.965001,5.965001,5.965001,5.965001,5.965001,5.965001,5.965001,5.965001,5.965001,5.965001,5.965001,5.965001,5.965001,5.965001,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,biomass,0.0,0.0,0.0,0.0,5.70160020544,11.443444690149999,19.48316798928,27.2557585885,30.696158200329997,33.84758269161,36.4992147733,40.1766717594,44.027955174199995,47.5852090546,53.4732093528,59.207164594,65.5749468558,69.8518310261,73.2257709815,76.1951397727,79.9080949058,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,crops,178.31147349999998,218.66403150000005,224.35435180000007,238.07751002289,258.60190911245996,277.83629520193995,293.96930401450993,305.17453952798985,315.87728424819016,324.85931012656,331.7210659609801,333.43869477124014,333.23538899134,331.15474210574996,327.6244685121,323.09610288526,317.5618622476198,311.1291986977499,304.41163096219975,297.47163107727994,290.06647672075,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,desert,19.159801200000004,19.2960415,19.5860837,19.5860837,19.5860837,19.5860837,19.5860837,19.5860837,19.5860837,19.5860837,19.5860837,19.5860837,19.5860837,19.5860837,19.5860837,19.5860837,19.5860837,19.5860837,19.5860837,19.5860837,19.5860837,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,forest (managed),30.3733857,47.95515699999999,49.537192499999996,52.18528477,56.18325108999999,60.25179115,64.1483592,69.0903359,73.5348478,77.44264919999999,80.58290919999999,82.388273,83.5908289,84.12070229999999,84.29846069999999,84.0986699,83.59223999999999,82.53997790000001,81.19344149999999,79.70861980000001,78.18238000000001,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,forest (unmanaged),226.25588476000001,214.83378858999998,231.09660861,230.60192128,229.42092105,228.21322812000003,226.98905287,225.76577596,224.78738543,223.92650020000002,223.23815505000002,222.80991472000002,222.51110827000002,222.36647829,222.20488906,222.13064665000002,222.10103417000002,222.2640845,222.50723659000002,222.79610538,223.0798612,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,grass,1230.9418110000001,1266.2900630000001,1522.590765,1518.9576899999997,1512.7308429999998,1506.7984499999998,1501.1677679999998,1496.2811699999997,1492.3848299999997,1488.9851909999998,1486.2302369999998,1484.5020779999998,1483.2435169999999,1482.5649529999998,1481.8825669999999,1481.5352819999998,1481.3853789999998,1481.9173879999998,1482.788838,1483.8754219999998,1484.995442,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,otherarable,324.314385,300.50154299999997,203.62929839999998,196.48437810000001,183.9963979,172.03953330000002,160.46417780000002,150.65173860000002,143.16749620000002,136.6964208,131.52136220000003,128.41452540000003,126.13702479999999,124.89152499999999,123.39200890000002,122.4612056,121.7690829,122.42331220000001,123.6813773,125.29508359999998,126.83903849999999,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,pasture (grazed),92.36679840000001,126.45334510000002,124.30818510000002,129.0706738,133.75586579999998,138.47167700000003,142.9410404,147.34368589999997,151.5756204,155.71283000000003,159.6749813,162.9351968,165.87154059999997,168.28948219999995,170.26194630000003,171.79718699999992,172.8660309,173.42627290000001,173.45207680000001,172.9052937,171.90715790000002,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,pasture (other),4166.267467000001,3926.013625,3504.9057090000006,3498.2613990000004,3488.334431,3478.5727130000005,3469.1446040000005,3460.7078250000004,3453.547412000001,3447.0507837000005,3441.510395800001,3437.824555800001,3434.9714768000003,3433.1940811000004,3431.5788982000004,3430.632230800001,3430.1542890000005,3430.8982180000003,3432.3320902000005,3434.2837666000005,3436.438011100001,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,shrubs,1557.2560735000004,1701.7586666000002,1940.1006535,1936.8833235,1931.7974093,1926.8949738,1922.2156642,1918.2507307,1914.9515872,1912.0009481,1909.5442426,1908.0324053,1906.9341199,1906.3554363,1905.8062104,1905.5641210000001,1905.5167884,1906.0715734,1906.92922,1907.9913272000001,1909.1056759,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,tundra,0.2010009,0.2067632,0.390214,0.390214,0.390214,0.390214,0.390214,0.390214,0.390214,0.390214,0.390214,0.390214,0.390214,0.390214,0.390214,0.390214,0.390214,0.390214,0.390214,0.390214,0.390214,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,urban,9.200743200000002,12.6797522,14.1604396,14.1604396,14.1604396,14.1604396,14.1604396,14.1604396,14.1604396,14.1604396,14.1604396,14.1604396,14.1604396,14.1604396,14.1604396,14.1604396,14.1604396,14.1604396,14.1604396,14.1604396,14.1604396,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,biomass,0.0,0.0,0.0,0.0,2.2118750683,4.4155906085000005,7.5080883912,10.374283863999999,11.441429191,12.73357868,14.084074072,15.408513517,16.86471395,18.365980053999998,20.852735692,23.374839173999998,26.248598340999997,28.493926535,30.718810076,32.888165493,35.331238202,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,crops,463.25419490000013,586.9997113999999,639.3725880000002,617.663974798,644.1546625089999,670.2928158849999,694.2042980319998,718.7912346800002,738.5229078809998,751.6193006699998,756.7330468270003,760.55297835,761.4041035360003,757.2442064220003,753.5522800859999,748.2730176029997,742.7989547029999,731.7823731700003,717.9059060419999,704.563838275,692.0136061219999,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,desert,4.538579,4.795164,4.7610358,4.7610358,4.7610358,4.7610358,4.7610358,4.7610358,4.7610358,4.7610358,4.7610358,4.7610358,4.7610358,4.7610358,4.7610358,4.7610358,4.7610358,4.7610358,4.7610358,4.7610358,4.7610358,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,forest (managed),117.4431068,152.1233737,160.5919356,173.0440604,184.5020886,194.855386,204.84729090000002,216.88464949999997,226.9886061,236.54490189999996,245.4755671,252.76899270000004,258.9436235,264.1862932,268.89304969999995,272.683561,275.4902383,276.86471750000004,277.5285772,276.91647500000005,275.69613389999995,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,forest (unmanaged),4282.371428399999,4153.2380056,4097.7129788,4098.037325899999,4072.7456543999997,4045.4254589999996,4019.4491727,3992.7161853999996,3971.0343227999997,3953.6163291999997,3941.3829358999997,3935.9765131,3933.2975517,3934.1941985999997,3935.2255203,3937.9891258999996,3941.5622575999996,3949.0835733999998,3958.6182728,3968.5672695,3978.2836024999997,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,grass,1008.0233955,859.6189801,824.774019,823.6787723,816.6202268,809.238938,802.4630854999999,796.1720243,791.1874273999999,787.2400269,784.45423131,783.2808560899999,782.6753953499999,782.8147706899999,782.98770412,783.54620842,784.2912966499999,785.91942883,787.9591012,790.1376447999999,792.3112111999999,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,otherarable,97.42775189999999,70.65452669999999,125.12663169999999,122.80850430000001,117.16072389999998,110.66890769999999,104.263875,97.8727671,92.40068319999999,87.742196,84.206032,82.7634114,82.0252964,82.17494579999999,82.4339093,83.1578059,84.1262578,86.03804900000002,88.34974170000001,90.78916089999998,93.17445790000002,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,pasture (grazed),217.3630506,334.30994699999997,357.76069,375.81150499999995,393.46514299999996,416.9951229999999,438.018805,454.95180000000005,469.537742,482.129596,492.72741399999995,491.00379899999996,487.75340299999993,483.311082,477.48328100000003,470.5602860000001,462.716891,454.53140799999994,446.041157,437.22235,428.190416,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,pasture (other),1610.4853383,1614.9420177999998,1585.1287192000002,1580.4232595,1563.9969738000002,1546.6408308000002,1531.2723266000003,1517.5623269000002,1506.9495938000002,1498.6821773000004,1492.8665193000002,1490.8428017000003,1489.9463041000001,1490.4771352000002,1491.1502110000004,1492.5996755000003,1494.4609325000004,1498.0206662000003,1502.4399276000001,1507.2304803000002,1512.0996132000002,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,shrubs,505.46872490000004,522.5363009000001,501.90021800000005,500.90056630000004,497.5096404,493.83512210000004,490.34089290000003,487.04316550000004,484.30543320000004,482.05834730000004,480.43743650000005,479.76957630000004,479.45857,479.599084,479.78858740000004,480.18368180000004,480.67241490000004,481.6327112,482.80567980000006,484.0525819,485.2670086,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,tundra,1.8959769999999998,1.9203000000000001,1.891311,1.891311,1.891311,1.891311,1.891311,1.891311,1.891311,1.891311,1.891311,1.891311,1.891311,1.891311,1.891311,1.891311,1.891311,1.891311,1.891311,1.891311,1.891311,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,urban,16.2411293,23.3799723,25.491687799999998,25.491687799999998,25.491687799999998,25.491687799999998,25.491687799999998,25.491687799999998,25.491687799999998,25.491687799999998,25.491687799999998,25.491687799999998,25.491687799999998,25.491687799999998,25.491687799999998,25.491687799999998,25.491687799999998,25.491687799999998,25.491687799999998,25.491687799999998,25.491687799999998,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,biomass,0.0,0.0,0.0,0.0,4.4275505513,8.673347382,14.538545295999999,20.91596542,23.280839963,25.440294512,27.372355741,29.584735828000003,31.850628211,33.871005281,37.232216642999994,40.503377768,44.08198986,46.405820209999995,48.482895791,50.26171530999999,52.50502806,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,crops,263.4344539,265.77893400000005,265.6121572,267.91588782899987,280.175127428,293.0899802510001,304.3696520719999,311.21742617699994,317.4898186500001,321.614467275,323.40392835399985,323.31460402100015,322.2520354730002,319.8036581550001,317.061292834,313.41879195999996,309.2474981649999,303.491694452,297.38795271799995,291.2754097450001,284.82452385500005,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,desert,226.16444,226.16487,226.16485,226.16485,226.16485,226.16485,226.16485,226.16485,226.16485,226.16485,226.16485,226.16485,226.16485,226.16485,226.16485,226.16485,226.16485,226.16485,226.16485,226.16485,226.16485,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,forest (managed),320.1262091,343.57194689999994,247.880065,260.8796098,281.4974068,302.51597549999997,323.3928579,349.1632153,371.74166169999995,392.1252281,409.01961320000004,419.3222255,426.5046408,430.2855088,433.0744271,433.9804462,433.5182537,429.7630601,424.2027229,417.67852619999996,411.0962055,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,forest (unmanaged),5299.8654955,5320.5862869,5431.9966051,5419.9472784,5393.474834400001,5366.1544788,5339.1800522,5311.3089213,5288.2458493,5268.4330624,5252.957686500001,5243.713417399999,5237.4390237,5234.8423641,5232.449575600001,5232.185906600001,5233.1764025,5238.5374403,5245.7115531,5253.8822823,5262.1532629,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,grass,103.41528170000001,53.429439099999996,78.3840446,78.1782735,77.6030262,77.0491744,76.5116008,76.0083537,75.65746,75.3676392,75.1506126,75.0117103,74.916067,74.8753653,74.8260073,74.8079362,74.8054219,74.874691,74.9708793,75.0839246,75.1968076,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,otherarable,240.16209899999998,247.214457,211.009298,206.98354100000003,196.708799,186.344092,175.876728,165.277384,157.309593,150.47548799999998,145.160066,141.726808,139.32045499999998,138.217609,137.00081999999998,136.508666,136.387785,137.90160400000002,140.05178999999998,142.57722199999998,145.06354599999997,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,pasture (grazed),26.106392200000002,31.5428012,29.074118199999997,30.553545500000002,31.565541099999997,32.5864027,33.4489821,34.2718102,35.057219200000006,35.837883,36.6215549,37.2644662,37.832886,38.3078978,38.645536,38.9243479,39.120208600000005,39.265747100000006,39.286373100000006,39.1557052,38.88745539999999,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,pasture (other),129.35621189,118.45336789000001,115.61573756000001,115.12012249000003,114.13958213000001,113.19200125,112.29998024000002,111.46886068,110.86086511000002,110.35674182000002,109.97173948000002,109.72415491000001,109.54924383000002,109.46352366000002,109.37673066000002,109.33915166000003,109.32874211000001,109.42467356,109.56710199000003,109.74262537000001,109.92688187000002,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,shrubs,2.3515723,2.2026167,2.2952556,2.2894413,2.2759541,2.2625,2.2491332,2.2354712,2.2252815,2.2166737,2.2100773,2.2060093,2.2032668,2.2021273,2.2009976,2.2007864,2.201108,2.2033566,2.2064089,2.2099401,2.213532,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,tundra,1996.1630148,1996.1555529000002,1996.1883338000002,1996.1883338000002,1996.1883338000002,1996.1883338000002,1996.1883338000002,1996.1883338000002,1996.1883338000002,1996.1883338000002,1996.1883338000002,1996.1883338000002,1996.1883338000002,1996.1883338000002,1996.1883338000002,1996.1883338000002,1996.1883338000002,1996.1883338000002,1996.1883338000002,1996.1883338000002,1996.1883338000002,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,urban,4.2498615,6.291534499999999,7.161206,7.161206,7.161206,7.161206,7.161206,7.161206,7.161206,7.161206,7.161206,7.161206,7.161206,7.161206,7.161206,7.161206,7.161206,7.161206,7.161206,7.161206,7.161206,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,biomass,0.0,0.0,0.0,0.0,0.06344529,0.12550998,0.21118425000000002,0.29305242,0.3265908,0.3603718,0.3938442,0.4350917,0.48129320000000003,0.5277906,0.6012375,0.6703471000000001,0.743077,0.7938647999999999,0.8424451,0.8869058999999999,0.9389898,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,crops,96.42306599999999,95.43602459999998,101.31539550000004,98.78300388999999,100.27856396,101.81733197,103.18146318000004,107.5284609,111.33757121999999,114.56370700999999,116.88626906199998,116.94224793300003,116.55231507299997,115.52541967799999,114.49743852999995,113.46316947200002,112.56939832599996,111.26207211100004,109.77536761000002,108.319381484,107.08796035099998,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,desert,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,forest (managed),27.811012,31.776331,32.460325999999995,34.513924,36.669106,38.730511,40.74405,41.877773,42.51094,42.926007000000006,43.234987000000004,44.342924,45.387392999999996,46.380664,47.33353,48.073224999999994,48.591963,48.861602,48.995965,48.974458,48.804161,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,forest (unmanaged),314.061463,290.832512,305.523416,305.14259,303.181862,301.18149999999997,299.293323,296.678525,294.528094,292.755248,291.43679799999995,291.02167,290.834685,290.91824699999995,291.028011,291.231981,291.47249999999997,291.97124499999995,292.598168,293.278353,293.92994999999996,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,grass,22.103966,22.874067,26.814933999999997,26.74724,26.499875,26.258816,26.039825,25.768300999999997,25.556011,25.387888,25.266579,25.221774999999997,25.198496,25.199765,25.203861999999997,25.217685999999997,25.236185,25.279082,25.334836,25.396827,25.457887,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,otherarable,28.61938,43.324424,38.433983999999995,37.38890299999999,34.807846,32.224858,29.793298,26.848511,24.438425,22.435921,20.92183,20.300406000000002,19.947596,19.900205999999997,19.889034,20.010648,20.202111,20.698349000000004,21.344153000000002,22.06085,22.765193,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,pasture (grazed),30.535076999999994,26.308274999999995,29.561794999999996,32.145272,34.490966,36.847773,38.96265,40.384962,41.558161000000005,42.501471,43.268483,43.308634,43.254076000000005,43.198603,43.080572,42.912591,42.691407999999996,42.478237,42.242351000000006,41.978971,41.672922,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,pasture (other),122.751334,130.15032799999997,105.82375199999998,105.22076299999998,103.97503699999999,102.805036,101.7882837,100.6620839,99.8074148,99.1500708,98.6844503,98.5250318,98.4447007,98.4498925,98.46679179999998,98.5196958,98.5913174,98.74949419999999,98.95548019999998,99.1871973,99.4198783,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,shrubs,2.9184455000000002,2.5880655,2.7372859000000003,2.7291363,2.7040348,2.6795203,2.65691066,2.62917047,2.60756366,2.5903214500000002,2.5777976500000004,2.57301962,2.57041051,2.5702947000000003,2.57036091,2.57141329,2.5729114,2.57693098,2.58219719,2.58811167,2.5939015,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,tundra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,urban,3.0053849999999995,4.94227,5.557485000000001,5.557485000000001,5.557485000000001,5.557485000000001,5.557485000000001,5.557485000000001,5.557485000000001,5.557485000000001,5.557485000000001,5.557485000000001,5.557485000000001,5.557485000000001,5.557485000000001,5.557485000000001,5.557485000000001,5.557485000000001,5.557485000000001,5.557485000000001,5.557485000000001,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,biomass,0.0,0.0,0.0,0.0,0.8978010939,1.8291555022,3.183509964,4.669346248000001,5.364047392,6.1352606210000005,6.887209907999999,7.724531686000001,8.60888159,9.425222241,10.742610505,11.994795504999999,13.343812604999998,14.204971256999999,14.966147681,15.626522539000002,16.443276263999998,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,crops,337.57703,257.14866989999996,274.2362822000001,268.55069543499997,272.306127371,276.899523931,281.4500792239999,293.4975665599998,303.966611429,312.90512127600033,319.581179478,323.533848961,325.6994528629999,325.69032181999995,325.28142300900004,323.66973167,321.247741104,316.51768272199985,310.77138189299995,304.503073642,298.048125198,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,desert,448.44933890000004,444.4308841,448.8914527,448.8914527,448.8914527,448.8914527,448.8914527,448.8914527,448.8914527,448.8914527,448.8914527,448.8914527,448.8914527,448.8914527,448.8914527,448.8914527,448.8914527,448.8914527,448.8914527,448.8914527,448.8914527,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,forest (managed),3.4064718999999997,3.1532367,3.4385690999999996,3.7744836000000004,4.2022083,4.6615599,5.1476107,5.5925999,5.9915465,6.3592664999999995,6.6737509,6.9004829,7.0734358,7.1852507999999995,7.2728249,7.3222577,7.3400017,7.2946165,7.210524,7.103941,6.9918405,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,forest (unmanaged),93.43000239999999,84.4898917,89.4723645,89.66255319999999,89.5038745,89.3115476,89.10734099999999,88.6464134,88.2669933,87.9418831,87.6932946,87.5767568,87.5098279,87.5069593,87.49937259999999,87.5268954,87.5710946,87.695558,87.8488801,88.0163755,88.1812501,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,grass,577.7196081000001,413.10931000000005,513.1377311000001,513.6157033999999,512.7438878,511.7577039,510.75729950000004,508.6953654,506.9855973000001,505.51880730000005,504.3952739,503.7949722000001,503.4375910000001,503.3745934000001,503.3209197000001,503.43782580000004,503.6587409000001,504.23421840000003,504.957665,505.7658417000001,506.59094070000003,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,otherarable,61.5881485,128.10784300000003,101.1183085,101.54313409999997,100.1680484,98.62985029999999,97.0068414,94.2112702,91.8836888,89.80406539999998,88.1587557,87.1709393,86.5420964,86.359163,86.1414095,86.18316089999999,86.366133,87.1109617,88.06773580000001,89.1380822,90.18730999999998,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,pasture (grazed),53.290358499999996,35.7143968,45.576342100000005,49.097939200000006,52.33707050000001,55.5326332,58.3915671,60.9369384,63.2219587,65.2114143,66.8215885,66.78053810000002,66.45689769999998,65.9638928,65.3340625,64.56049949999999,63.6577344,62.6576598,61.63273419999999,60.61599809999999,59.605854500000014,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,pasture (other),3474.5529638000007,3767.946659,3598.6702076999995,3599.2175058999997,3593.8581870999997,3588.0024531,3582.1930426999998,3571.9813857999998,3563.3554732,3555.8480627,3550.0265228,3547.0960533999996,3545.4533017999997,3545.3155048,3545.2653781999998,3546.1070072999996,3547.5045935,3550.6687856,3554.5452431,3558.8019559,3563.0932112999994,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,shrubs,398.8575680000001,321.26256099999995,376.920224,377.107381,376.551913,375.945044,375.332575,374.33902,373.53425,372.845903,372.33223300000003,371.9915977,371.788496,371.7486177,371.7117002,371.7683179,371.8806983,372.185465,372.5697,372.998248,373.428439,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,tundra,91.9407451,84.95392400000001,88.421862,88.421862,88.421862,88.421862,88.421862,88.421862,88.421862,88.421862,88.421862,88.421862,88.421862,88.421862,88.421862,88.421862,88.421862,88.421862,88.421862,88.421862,88.421862,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,urban,7.019664299999999,7.517963699999999,7.946627299999999,7.946627299999999,7.946627299999999,7.946627299999999,7.946627299999999,7.946627299999999,7.946627299999999,7.946627299999999,7.946627299999999,7.946627299999999,7.946627299999999,7.946627299999999,7.946627299999999,7.946627299999999,7.946627299999999,7.946627299999999,7.946627299999999,7.946627299999999,7.946627299999999,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,biomass,0.0,0.0,0.0,0.0,8.49449385851,16.65349660089,27.8954187832,38.7373431798,43.354224226300005,48.488009414800004,53.9928893862,59.1135827803,64.6899036116,70.0404317789,79.203088332,88.39538738120001,98.72128883859999,106.2270235862,113.50322751280001,120.27906335690001,128.3143185861,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,crops,1283.4231148000008,1373.0980311000005,1240.9893296999999,1216.7521300550002,1218.7683137699996,1220.5024495850002,1218.2058638390004,1221.2018118509989,1222.7914555879993,1219.7765720559994,1211.359513804,1208.000112223,1202.0537346469998,1192.636268125,1181.5431169169992,1169.6154533539989,1157.4123908669994,1143.2897569300007,1128.8758666030003,1115.8292822360004,1105.645462683,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,desert,1145.0965787,1151.8131293999998,1165.56988,1165.56988,1165.56988,1165.56988,1165.56988,1165.56988,1165.56988,1165.56988,1165.56988,1165.56988,1165.56988,1165.56988,1165.56988,1165.56988,1165.56988,1165.56988,1165.56988,1165.56988,1165.56988,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,forest (managed),424.1483844,338.62028669999995,326.5752901000001,348.4114267,364.8495485,380.1762180999999,394.91921730000007,409.93124399999994,425.28805400000005,440.797677,456.53684999999996,467.892882,478.486868,488.77909,497.200455,504.428853,509.905254,515.0130350000001,518.3780600000001,519.7103280000001,517.676098,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,forest (unmanaged),1308.9450053,1256.5884447,1414.0497294000002,1412.7754032,1401.8124116000001,1391.0654045,1381.179718,1370.5008868,1362.7717505,1356.7904184000001,1352.7739798,1350.7079543,1349.7376982,1350.1186391,1350.4013997,1351.3053176,1352.4730163000002,1355.2449753,1358.6053221,1362.1812810000001,1365.3175664,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,grass,504.35595300000006,365.31238167000004,450.91330066999996,449.61825987000003,445.58107016,441.72066543,438.25691917500006,434.77658292999996,432.226868839,430.248395924,428.881270948,428.260963891,427.97050675300005,428.065180051,428.16313452,428.443909056,428.81515678299996,429.621350329,430.601146378,431.65466298100006,432.620636906,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,otherarable,19.940618,200.4999753,25.344465900000003,24.7191962,23.9130877,23.043993600000004,22.206214900000003,21.3901087,20.716881700000002,20.1535689,19.734982900000002,19.698666700000004,19.7654739,19.942634199999997,20.1365776,20.386227299999998,20.671065300000002,21.0589388,21.4783945,21.902386,22.3029629,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,pasture (grazed),121.38181139999999,239.30584,259.6039258,280.911095,299.4820603,319.3062369,336.4119465,347.47197120000004,355.5999673,361.0912205,364.09615599999995,355.23036750000006,345.09318240000005,334.1072818,322.6835948000001,310.89937150000003,298.7566325,286.3207094,274.19245929999994,262.60671859999997,251.6735633,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,pasture (other),3877.1191146999995,3750.7314621000005,3660.3621754,3645.3019862999995,3617.3509940999998,3589.5179072999995,3564.4905324999995,3541.1470552999995,3523.6207852,3509.9850279999996,3500.6251561999998,3499.3206698999998,3500.4813070999994,3504.4425571999996,3508.6443870999997,3514.2516888999994,3520.6742034999997,3530.1455493999997,3540.704612,3551.5734784,3561.6467628999994,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,shrubs,275.9709656,263.31511963,307.2040345600001,306.5517011900001,304.7889022500001,303.0547531100001,301.4756806100001,299.8836789900001,298.6706301100001,297.71056274000006,297.0411519600001,296.8162641900001,296.7630908100001,296.9093895800001,297.0653100200001,297.31471397000007,297.6119534200001,298.11983662000006,298.7023142400001,299.3037304300001,299.8446090400001,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,tundra,391.48606170000005,393.61301749999996,474.4220948,474.4220948,474.4220948,474.4220948,474.4220948,474.4220948,474.4220948,474.4220948,474.4220948,474.4220948,474.4220948,474.4220948,474.4220948,474.4220948,474.4220948,474.4220948,474.4220948,474.4220948,474.4220948,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,urban,28.1278478,47.0971569,54.963393700000005,54.963393700000005,54.963393700000005,54.963393700000005,54.963393700000005,54.963393700000005,54.963393700000005,54.963393700000005,54.963393700000005,54.963393700000005,54.963393700000005,54.963393700000005,54.963393700000005,54.963393700000005,54.963393700000005,54.963393700000005,54.963393700000005,54.963393700000005,54.963393700000005,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,biomass,0.0,0.0,0.0,0.0,0.0341147607,0.074500816,0.134463723,0.196997214,0.22966646300000002,0.263265787,0.28832603,0.31877640900000004,0.34985479399999997,0.38075622000000003,0.43429254,0.48492998000000004,0.5390790999999999,0.57163388,0.5998506700000001,0.62346781,0.65345904,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,crops,36.487889199999984,34.04439469999999,31.594534,30.767709820499995,32.48792215639999,34.390892838000006,36.29946374210001,40.76586173430002,44.71475125400001,48.1630673036,50.713941868300005,51.43579232909999,51.52670235629999,50.85303105940001,50.15286631989999,49.241822788400015,48.2864304173,46.6814710057,44.813434845500005,42.909505005199996,41.18081383649999,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,desert,0.9572251,1.1625311,1.1497829000000002,1.1497829000000002,1.1497829000000002,1.1497829000000002,1.1497829000000002,1.1497829000000002,1.1497829000000002,1.1497829000000002,1.1497829000000002,1.1497829000000002,1.1497829000000002,1.1497829000000002,1.1497829000000002,1.1497829000000002,1.1497829000000002,1.1497829000000002,1.1497829000000002,1.1497829000000002,1.1497829000000002,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,forest (managed),5.958128,6.4131985,6.493207399999999,6.8560954999999995,7.437980500000001,8.021971200000001,8.6069745,9.1180691,9.482372900000001,9.7538582,9.9426913,10.2235031,10.475857600000001,10.695891599999998,10.9160018,11.0915833,11.231583200000001,11.2860718,11.2923147,11.2558656,11.1923832,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,forest (unmanaged),625.97974411,639.99494155,641.11923978,639.8807304200001,637.0355914400001,633.9564698300001,630.9053903,626.58788587,622.7689565000001,619.3981578300001,616.729316483,615.826719067,615.416910231,615.585903337,615.8526042650001,616.3637220300001,617.018194673,618.1990724880001,619.6245413620001,621.145424205,622.6171063830001,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,grass,60.3382535,68.34269160000001,67.78753389999999,67.60825879999999,67.24276159999998,66.85509259999999,66.4755194,65.9584605,65.508867,65.11708731,64.80887906,64.70203372,64.64845722,64.65733098,64.67648445,64.72247213,64.78414943,64.90407142,65.05159073,65.21111,65.36661926,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,otherarable,12.8886878,1.9303289000000001,1.7743801000000001,1.729860366,1.69074672,1.64444755,1.5949504899999998,1.53940492,1.47992329,1.4196324299999998,1.36539202,1.34422718,1.3316184100000001,1.3292479300000002,1.32939544,1.3345522600000002,1.3430675300000001,1.36004579,1.380156,1.40101891,1.42084217,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,pasture (grazed),26.874146999999997,32.067199,36.569312,40.231,43.622077,47.17615,50.541172,53.290243000000004,55.777224,58.009608,59.983374000000005,60.558552000000006,60.964344999999994,61.201139999999995,61.261590999999996,61.156324,60.86697399999999,60.450032,59.928636999999995,59.310176,58.592217999999995,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,pasture (other),364.99030300000004,348.90735800000004,346.26482300000004,344.56065900000004,342.147352,339.64727,337.2759901,334.4687055,332.0435409,329.95004909999994,328.29740250000003,327.7387925,327.44437179999994,327.453065,327.5299144,327.74950900000005,328.06469880000003,328.66030529999995,329.39587279999995,330.2015604,331.0069375,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,shrubs,11.2686024,12.0400171,12.0689448,12.037674299999999,11.9734014,11.9050462,11.837914999999999,11.7463272,11.66669902,11.59724561,11.542582979999999,11.52349191,11.51389991,11.51545047,11.518792,11.52693371,11.53786977,11.55923096,11.58550438,11.613912509999999,11.64158552,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,tundra,1.9900248,2.3214209,2.2959842999999998,2.2959842999999998,2.2959842999999998,2.2959842999999998,2.2959842999999998,2.2959842999999998,2.2959842999999998,2.2959842999999998,2.2959842999999998,2.2959842999999998,2.2959842999999998,2.2959842999999998,2.2959842999999998,2.2959842999999998,2.2959842999999998,2.2959842999999998,2.2959842999999998,2.2959842999999998,2.2959842999999998,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,urban,1.3115078000000002,1.8200973,1.9257994999999999,1.9257994999999999,1.9257994999999999,1.9257994999999999,1.9257994999999999,1.9257994999999999,1.9257994999999999,1.9257994999999999,1.9257994999999999,1.9257994999999999,1.9257994999999999,1.9257994999999999,1.9257994999999999,1.9257994999999999,1.9257994999999999,1.9257994999999999,1.9257994999999999,1.9257994999999999,1.9257994999999999,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,biomass,0.0,0.0,0.0,0.0,23.5061493,44.135635,70.11642,94.41175799999999,104.569049,114.794842,124.647727,132.106819,139.875363,149.541807,162.93740599999998,175.634376,189.34702700000003,198.63401599999997,207.382812,215.375147,224.812555,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,crops,407.82482459999994,340.0246171999999,338.3790895,331.4743026489998,320.12235841000006,310.4650778139998,297.8705107780999,285.5687325229999,279.52065892389993,273.04095590540004,266.3820873929001,262.0896000195999,257.4690605779,251.6991317551,244.22350294249998,237.06502200059995,229.48337145480005,223.86016800470014,218.47374427270003,213.4550257387,207.7339665576,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,desert,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,forest (managed),82.67825880000001,120.26983399999999,120.6186457,129.205747,128.604734,127.972776,124.64521900000001,122.124275,123.81062599999998,124.813937,125.22256,124.36481900000001,122.934189,120.273369,115.876659,111.474217,106.416537,102.813433,99.22814100000002,95.84673,91.90934899999998,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,forest (unmanaged),337.6808546,352.72460420000004,371.098916,370.90950219999996,366.3300334,362.2977901,358.3108051,354.68130659999997,352.6074139,350.8918589,349.5776491,348.70348779999995,348.03400509999994,347.50661099999996,346.8380421,346.31428909999994,345.8016128,345.68177069999996,345.65809859999996,345.7005387,345.65970409999994,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,grass,26.10908356,34.545014110000004,38.52768167,38.497499069999996,38.013143819999996,37.57330732,37.16181658,36.74564798,36.48073888,36.27333908,36.12427503,36.03548101,35.9732682,35.940085429999996,35.897183139999996,35.870135239999996,35.84678461,35.8643727,35.895046629999996,35.9338942,35.96718238,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,otherarable,46.1930062,56.90403799999999,44.745239,43.543083,38.773551,34.44029,30.247964999999997,26.218822999999997,23.629621999999998,21.504190999999995,19.888226000000003,18.869913999999998,18.123062,17.606905,16.991930999999997,16.546793,16.138552999999998,16.167234999999998,16.327094,16.571361000000003,16.741468,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,pasture (grazed),25.035065000000003,0.7659245000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,pasture (other),127.90789899999999,147.545815,138.963372,138.699437,137.0102192,135.50528409999998,134.06653189999997,132.70225749999997,131.85754329999997,131.17448499999998,130.66392359999998,130.34402949999998,130.11039549999998,129.95239969999997,129.7587553,129.6194272,129.49087459999998,129.50152039999998,129.55282369999998,129.630349,129.684213,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,shrubs,3.1767220000000003,3.061644,3.1104322,3.1136846,3.0834541,3.0533416,3.0244857,2.9909473,2.9680108,2.9501104,2.9374102,2.9301649000000003,2.9252663,2.9234408,2.9207851,2.919517,2.9186033,2.9214399,2.925564,2.9304646,2.9349701,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,tundra,0.0677652,0.279852,0.30344,0.30344,0.30344,0.30344,0.30344,0.30344,0.30344,0.30344,0.30344,0.30344,0.30344,0.30344,0.30344,0.30344,0.30344,0.30344,0.30344,0.30344,0.30344,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,urban,13.862011500000001,14.414957500000002,14.788969000000002,14.788969000000002,14.788969000000002,14.788969000000002,14.788969000000002,14.788969000000002,14.788969000000002,14.788969000000002,14.788969000000002,14.788969000000002,14.788969000000002,14.788969000000002,14.788969000000002,14.788969000000002,14.788969000000002,14.788969000000002,14.788969000000002,14.788969000000002,14.788969000000002,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,biomass,0.0,0.0,0.0,0.0,1.9077618796,3.7761764673,6.0695596830000005,8.96329283,13.59482552,18.668533847,23.201180348999998,28.828315833999998,34.2691512,38.793485368,47.600513680000006,56.61880411,66.95037178000001,73.51327384999999,79.49568062,84.82146197999998,91.70851621999999,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,crops,754.0405528000003,711.6049984000001,697.8103677,672.3001354981003,662.6347893567003,654.8897021297003,646.8613008866002,643.9489519753,638.5034520789001,631.6561386797001,623.9692152174002,619.3048929602,614.2594196136,608.9018416134998,602.2481368799997,595.3847727362,588.1376287474004,581.6873033541001,575.4074211947,569.3060377073997,562.5091831654001,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,desert,0.5890224000000001,0.8958975,0.8945633,0.8945633,0.8945633,0.8945633,0.8945633,0.8945633,0.8945633,0.8945633,0.8945633,0.8945633,0.8945633,0.8945633,0.8945633,0.8945633,0.8945633,0.8945633,0.8945633,0.8945633,0.8945633,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,forest (managed),352.138507,404.510174,384.572644,411.417317,435.982635,459.025033,481.01760800000005,500.19804000000005,516.0348,530.004441,542.1055840000001,546.976826,550.465268,552.9448809999999,552.7496279999999,551.4619969999999,548.7431929999999,546.327782,543.240054,539.932843,535.845904,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,forest (unmanaged),923.6872555,904.7491534,927.2741533,926.6837810000001,920.4783649,914.1347016000001,908.1185730999999,900.9828498,895.3797801,890.8161294,887.4553179000001,885.2860003,883.8542835,883.2712723999999,882.6022936,882.352424,882.3048858999999,883.2609911000001,884.6334541,886.2712780999999,887.8911589999999,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,grass,95.3531161,107.83519930000001,110.1372062,110.1338219,109.1345272,108.12794679999999,107.1947627,106.093381,105.2595023,104.6037396,104.1363741,103.8376474,103.64215358,103.56186321,103.46450440999999,103.42196037999999,103.40397205999999,103.52127684,103.69477898999999,103.90634249,104.11600569999999,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,otherarable,71.80497829999999,76.14973469999998,68.50679219999999,67.81444780999999,63.20842624,58.51006629,54.02995395,48.82620016999999,44.683398860000004,41.27849495,38.75074030000001,37.08527435,35.956980460000004,35.448704160000005,34.84062014,34.53493596,34.36452395999999,34.9426427,35.81696971,36.87858927,37.902204579999996,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,pasture (grazed),78.79799429999998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,pasture (other),461.61642853,497.8417201600001,496.15733174,496.06314893,492.43489351999995,488.70734355,485.17664647999993,480.9534132,477.66468848,475.0112007199999,473.0759922799999,471.82988903999996,471.00836344999993,470.67204369999996,470.27360443,470.11049263999996,470.0562218,470.57737319999995,471.33520345,472.24667977999997,473.1446242999999,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,shrubs,134.09922989999998,146.58000979999997,156.48335759999998,156.52958719999998,155.16114749999997,153.7709874,152.47276487,150.97567965,149.82136536,148.90364022999998,148.24802248999998,147.79270737,147.48616142999998,147.3483255,147.16339778,147.05736656,146.98097577,147.11131522,147.31888892,147.57864474,147.82460503,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,tundra,17.4540447,19.686097099999998,19.5972527,19.5972527,19.5972527,19.5972527,19.5972527,19.5972527,19.5972527,19.5972527,19.5972527,19.5972527,19.5972527,19.5972527,19.5972527,19.5972527,19.5972527,19.5972527,19.5972527,19.5972527,19.5972527,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,urban,61.6333256,81.3623267,89.7796705,89.7796705,89.7796705,89.7796705,89.7796705,89.7796705,89.7796705,89.7796705,89.7796705,89.7796705,89.7796705,89.7796705,89.7796705,89.7796705,89.7796705,89.7796705,89.7796705,89.7796705,89.7796705,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,biomass,0.0,0.0,0.0,0.0,0.464774938,0.949900334,1.664635494,2.39344026,2.6983973000000003,2.98503312,3.26123469,3.51889094,3.88461037,4.23808199,4.80560062,5.31119684,5.88742243,6.28652797,6.668898550000001,7.024526239999999,7.46667915,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,crops,330.2520814,281.4783337,312.00996549999996,304.8296354890001,305.53947685799994,306.8312971649999,307.81525067399997,312.8643382270001,316.79349840399993,319.6158628859999,321.180847727,322.505215795,323.0473198959999,322.73661167699987,322.27292513299994,321.4530669340001,320.3990902204,318.47168001409995,316.1376950046001,313.6031266335,310.9585139619,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,desert,0.0216445,0.0226744,0.0226999,0.0226999,0.0226999,0.0226999,0.0226999,0.0226999,0.0226999,0.0226999,0.0226999,0.0226999,0.0226999,0.0226999,0.0226999,0.0226999,0.0226999,0.0226999,0.0226999,0.0226999,0.0226999,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,forest (managed),17.241629800000002,25.4565372,27.670668300000003,31.227431600000003,35.014049099999994,38.9583085,43.111802000000004,46.636490800000004,49.7386572,52.6440412,55.2186279,56.6419,57.734799,58.468082,59.10123,59.48924900000001,59.692594,59.492897000000006,59.084443,58.543855,57.984944,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,forest (unmanaged),165.2913732,182.836949,180.9200854,181.7912726,181.5404988,181.1425674,180.7056609,179.620938,178.7233377,177.9789138,177.4365825,177.0702904,176.84585149999998,176.79301569999998,176.7552297,176.8062884,176.9096044,177.206888,177.5942051,178.0303501,178.47555649999998,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,grass,58.660880000000006,70.01935,70.65567,71.11747000000001,70.76780000000001,70.34604,69.92911000000001,69.24763,68.73173,68.33126,68.05635000000001,67.87262000000001,67.75874,67.732166,67.707611,67.73017300000001,67.77783500000001,67.933448,68.13754,68.37042000000001,68.61361000000001,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,otherarable,127.660099,124.61861,94.6433,96.54292,92.81273,88.57829999999998,84.24835,77.731942,72.586733,68.334135,65.173656,63.148859,61.805223999999995,61.309074,60.84123,60.83931,61.084683,62.31524400000001,63.978894999999994,65.884078,67.807298,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,pasture (grazed),45.162954000000006,15.2627981,14.0388804,13.940701599999999,13.8024102,13.7270659,13.654749,13.6000129,13.5693183,13.550400299999998,13.5387045,13.3632144,13.2010875,13.032296,12.8509953,12.6626984,12.4586454,12.2746692,12.0811245,11.886436900000001,11.684186299999999,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,pasture (other),57.7453619,101.5135233,101.4065467,101.87940789999999,101.39615799999999,100.8162424,100.23191929999999,99.2864581,98.5542283,97.96768270000001,97.54857100000001,97.29886769999999,97.1455636,97.1143433,97.08934289999999,97.1313178,97.21151950000001,97.4349401,97.7269459,98.0592756,98.4034585,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,shrubs,1.5294891,1.9702079000000001,1.9870712,2.0035427,1.9942454,1.98248556,1.97091603,1.95108058,1.93626276,1.92498441,1.91746313,1.91224507,1.90907783,1.90852171,1.90799436,1.90893347,1.91067066,1.91580841,1.9224511,1.93001745,1.9380285,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,tundra,3.50852,4.31489,4.30026,4.30026,4.30026,4.30026,4.30026,4.30026,4.30026,4.30026,4.30026,4.30026,4.30026,4.30026,4.30026,4.30026,4.30026,4.30026,4.30026,4.30026,4.30026,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,urban,8.057978,7.6380623,7.4774414,7.4774414,7.4774414,7.4774414,7.4774414,7.4774414,7.4774414,7.4774414,7.4774414,7.4774414,7.4774414,7.4774414,7.4774414,7.4774414,7.4774414,7.4774414,7.4774414,7.4774414,7.4774414,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,biomass,0.0,0.0,0.0,0.0,8.0829298,15.5606989,25.5040686,35.7012101,40.565353900000005,45.87527119999999,49.67573659999999,54.590325699999994,59.90592480000001,64.3601515,71.43686600000001,78.68032050000001,86.40467,91.702156,96.719481,101.35085,106.62697200000001,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,crops,269.0475446000001,258.82951000000014,240.34428539999996,242.31492207669996,245.68886532019988,248.64489308730003,248.96804241350003,247.6622882435,248.00935242639994,247.0539450219001,245.93072125099997,243.4924628189,240.1981104547001,236.74562717689997,231.69578128090004,226.27106911040002,220.50268735449987,215.62184178490008,210.6770312172001,205.85009556330002,200.6606118613999,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,desert,0.406495,0.405475,0.405629,0.405629,0.405629,0.405629,0.405629,0.405629,0.405629,0.405629,0.405629,0.405629,0.405629,0.405629,0.405629,0.405629,0.405629,0.405629,0.405629,0.405629,0.405629,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,forest (managed),27.160443700000005,31.5751836,37.933150000000005,40.19749,41.53429800000001,42.819207000000006,43.69252099999999,44.94364399999999,46.604634000000004,48.00796,49.38147299999999,49.81453799999999,49.96317699999999,50.047854,49.56183299999999,48.895818,47.958296000000004,47.204803,46.348912999999996,45.476521999999996,44.460157,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,forest (unmanaged),210.93220180000003,210.9820656,225.57296739999998,225.2169735,223.20389749999998,221.3234599,219.4943303,217.73436980000002,216.5615287,215.5818303,214.8975602,214.40765140000002,214.0486721,213.8876601,213.637942,213.46501030000002,213.3051671,213.3920693,213.55070920000003,213.75600100000003,213.9276173,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,grass,168.18744419000004,157.36175110000002,167.0268785,166.0862378,163.8881826,161.9680927,160.2397292,158.7806649,157.8167458,157.0295338,156.482395,156.11944525,155.86033865,155.73689079,155.56683927,155.44322713,155.34681319,155.41257249,155.53232342,155.6891468,155.8355396,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,otherarable,78.43383599999999,76.64150949999997,67.9130088,65.66635000000001,59.7985975,54.282395300000005,48.980601300000004,43.9911407,40.4664335,37.490965100000004,35.3523389,33.9008764,32.8480556,32.353183300000005,31.6952719,31.2632607,30.924607400000003,31.253109699999996,31.804146199999995,32.500114999999994,33.1370143,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,pasture (grazed),15.3703068,15.298428600000001,15.6492309,16.217314500000004,16.5276448,16.829756200000002,17.013002399999998,17.258192,17.509669900000002,17.680464099999995,17.825967699999996,17.754418599999997,17.6302576,17.4914597,17.253818700000004,16.974782100000002,16.658077600000006,16.380247199999996,16.1203511,15.8605325,15.581261699999997,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,pasture (other),164.7712053,179.32958749999997,170.74809129999994,169.81364679999993,167.65653039999995,165.71895309999994,163.95372809999995,162.38609549999995,161.32699119999995,160.46841539999994,159.86783129999995,159.48860929999995,159.22566419999995,159.11038319999994,158.95683459999995,158.86082079999994,158.79495249999994,158.90174559999994,159.06677459999995,159.27335169999995,159.47075489999995,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,shrubs,61.5691234,63.66110559999999,67.9653945,67.64013360000001,66.772244,66.00566950000001,65.3070358,64.6956135,64.292475,63.9647246,63.739043499999994,63.5846163,63.4728896,63.420073099999996,63.347780799999995,63.2987282,63.2578554,63.284720300000004,63.333316100000005,63.3967076,63.4534163,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,tundra,1.6765111,1.5347971,1.5519034,1.5519034,1.5519034,1.5519034,1.5519034,1.5519034,1.5519034,1.5519034,1.5519034,1.5519034,1.5519034,1.5519034,1.5519034,1.5519034,1.5519034,1.5519034,1.5519034,1.5519034,1.5519034,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,urban,5.966297400000001,7.9022262,8.4108611,8.4108611,8.4108611,8.4108611,8.4108611,8.4108611,8.4108611,8.4108611,8.4108611,8.4108611,8.4108611,8.4108611,8.4108611,8.4108611,8.4108611,8.4108611,8.4108611,8.4108611,8.4108611,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,biomass,0.0,0.0,0.0,0.0,0.189805,0.365883,0.601472,0.805356,0.875468,0.943316,1.00412,1.08412,1.16847,1.25231,1.38414,1.5197,1.68026,1.79771,1.90938,2.01425,2.14086,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,crops,7.697682499999999,6.8197032,6.536176499999999,6.19717902,6.033928769999999,5.890621320000003,5.732386150000002,5.652796680000001,5.5601753899999995,5.450597158000001,5.326635178,5.290252204999999,5.242457071,5.186899671,5.1301665309999995,5.07130819,5.0089239679999995,4.951617103,4.897222994999999,4.8417230139999985,4.7801966600000005,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,desert,19.213670699999998,19.3797739,20.120334700000004,20.120334700000004,20.120334700000004,20.120334700000004,20.120334700000004,20.120334700000004,20.120334700000004,20.120334700000004,20.120334700000004,20.120334700000004,20.120334700000004,20.120334700000004,20.120334700000004,20.120334700000004,20.120334700000004,20.120334700000004,20.120334700000004,20.120334700000004,20.120334700000004,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,forest (managed),30.98463,28.262410000000003,28.51878,29.71342,31.55521,33.35233,35.036989999999996,36.859469999999995,38.40343,39.70647,40.710249999999995,41.216300000000004,41.52958,41.63486,41.68645,41.62213,41.47372,41.12263,40.67726,40.19654,39.71514,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,forest (unmanaged),214.6325,219.071472,221.46170899999998,220.745901,219.344557,217.93730599999998,216.571504,215.07883499999997,213.891756,212.88766299999997,212.107033,211.62413399999997,211.29114299999998,211.12628,210.98256299999997,210.93102,210.935405,211.11982,211.38937299999998,211.71254299999998,212.04424999999998,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,grass,9.020421220000001,9.15225989,9.297554439999999,9.24595444,9.160322390000001,9.077932709999999,9.00181725,8.9226691,8.86122989,8.811175219999999,8.77341294,8.751314319999999,8.73636643,8.72911745,8.72315854,8.72135805,8.722200449999999,8.730948609999999,8.74366972,8.75899044,8.77504703,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,otherarable,2.8568350000000002,4.9248999,5.9097859999999995,5.6440909999999995,5.191139,4.748506,4.328672,3.886571,3.5370730000000004,3.245564,3.0208329999999997,2.889115,2.798704,2.753937,2.715629,2.702151,2.7038539999999998,2.754297,2.828116,2.916126,3.006263,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,pasture (grazed),6.9378251,7.6722156,7.169917000000001,7.4575354,7.7169916,7.997195800000001,8.258269799999999,8.4847383,8.677813,8.8549886,9.0267015,9.1559287,9.273663599999999,9.372405200000001,9.447293899999998,9.5080962,9.5535605,9.589554600000001,9.603429599999998,9.5849358,9.538516000000001,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,pasture (other),27.580084489999997,22.680128360000005,16.413495010000002,16.30493316,16.11959495,15.9442565,15.785297179999999,15.628447229999999,15.513770719999998,15.42246276,15.35443624,15.31294336,15.284241319999998,15.26895967,15.255612189999999,15.24926823,15.247028809999998,15.258056299999998,15.27582921,15.298654439999998,15.323064669999999,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,shrubs,0.20522469000000002,0.25408192,0.28427093,0.28270728,0.28009941,0.27758938,0.27526966,0.27285242,0.27097429,0.2694441,0.26829011,0.26761535,0.2671597,0.26693995,0.26675967,0.26670687,0.26673525,0.26700607,0.2673986,0.2678704,0.26836451,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,tundra,74.3942594,74.9506544,77.3142334,77.3142334,77.3142334,77.3142334,77.3142334,77.3142334,77.3142334,77.3142334,77.3142334,77.3142334,77.3142334,77.3142334,77.3142334,77.3142334,77.3142334,77.3142334,77.3142334,77.3142334,77.3142334,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,urban,2.0095543,2.3653885999999997,2.5059768,2.5059768,2.5059768,2.5059768,2.5059768,2.5059768,2.5059768,2.5059768,2.5059768,2.5059768,2.5059768,2.5059768,2.5059768,2.5059768,2.5059768,2.5059768,2.5059768,2.5059768,2.5059768,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,biomass,0.0,0.0,0.0,0.0,4.8794429,9.490865,15.704325,22.019986,24.815567,27.729994,30.694402,33.46146399999999,36.459435,39.342632,44.03132,48.678216,53.869789,57.699241,61.396924,64.89707,68.84057,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,crops,1448.1441087999995,1423.1402992999997,1444.2178766999987,1456.835539257,1472.5420140428998,1487.2403720557988,1498.8916483407,1513.7708575661982,1520.481374540699,1523.8695315848001,1524.0829847651999,1519.677995949401,1513.5352194237996,1505.7661936621007,1496.4350318896995,1486.3428788332,1475.3703698538993,1463.8767562015983,1451.9418473945998,1439.8642117793006,1427.1909242964998,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,desert,103.0261125,98.23209100000001,94.33241040000001,94.33241040000001,94.33241040000001,94.33241040000001,94.33241040000001,94.33241040000001,94.33241040000001,94.33241040000001,94.33241040000001,94.33241040000001,94.33241040000001,94.33241040000001,94.33241040000001,94.33241040000001,94.33241040000001,94.33241040000001,94.33241040000001,94.33241040000001,94.33241040000001,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,forest (managed),212.8848558,230.9330183,233.7854608,236.88054987999996,242.49439314999995,247.4439828,251.46401329999995,253.80823620000004,259.58743280000004,265.1487454,270.3318799,276.198053,281.7402313999999,286.9208604,291.78290110000006,296.32024599999994,300.5389985,304.179963,307.25858029999995,309.9572427,312.5766171,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,forest (unmanaged),461.77270626,456.32227146,488.42580056,485.54770088000004,480.9937003,476.75333335,472.90394107000003,468.78677293000004,466.09226721,463.96791188000003,462.43710282,461.775727,461.44255622000003,461.48252823,461.55545079,461.83281765,462.23886578,463.07602919000004,464.12137814,465.30322440000003,466.53738077,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,grass,198.04532236999998,187.6635233,193.66202462,192.08459315,189.61689859,187.43035281,185.536902833,183.62716278,182.392965125,181.451048136,180.78541224999998,180.48181849899998,180.311873244,180.288225423,180.279561915,180.351140703,180.47399758699999,180.76449565000001,181.141566939,181.579345574,182.045139192,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,otherarable,199.00148589999995,220.85198699999998,200.01238600000002,188.70225,170.455403,153.43084599999997,137.942642,121.36379299999999,110.034567,101.00800500000003,94.37262100000002,91.25474399999997,89.43468599999999,89.07631499999998,88.84223600000003,89.40946100000001,90.46890599999999,93.18522999999999,96.685098,100.68674000000001,104.851153,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,pasture (grazed),44.086433000000014,20.273710000000005,13.524020999999998,15.789400999999996,18.150863,20.22877,22.081557,23.718136,25.355064,26.869118000000004,28.269545999999995,28.521112,28.67644,28.775365999999998,28.760432,28.685438,28.531119,28.374272,28.174792000000004,27.924545,27.630831999999995,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,pasture (other),61.5609696,89.7349999,85.13118199999998,84.15134399999998,82.85168499999999,81.7705678,80.8749689,80.0345742,79.49239589999999,79.08671799999999,78.79906349999999,78.6863229,78.62050459999999,78.60397189999999,78.5931435,78.6098681,78.6445548,78.73436919999999,78.8530997,78.9935963,79.14466759999999,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,shrubs,229.36493731999997,222.276215,194.58954149999997,193.356407124,191.36510182099997,189.560017287,187.94814525399997,186.21947312499998,185.09659663699998,184.21721077499998,183.57503401099999,183.29188141599997,183.12662134399997,183.09312984999997,183.06861210699998,183.11762167799998,183.21193805199997,183.45756833699997,183.77521426699997,184.14278821699997,184.53026690899998,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,tundra,19.679546,21.706934,20.961478,20.961478,20.961478,20.961478,20.961478,20.961478,20.961478,20.961478,20.961478,20.961478,20.961478,20.961478,20.961478,20.961478,20.961478,20.961478,20.961478,20.961478,20.961478,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,urban,13.302846199999998,19.734887699999998,22.227069799999995,22.227069799999995,22.227069799999995,22.227069799999995,22.227069799999995,22.227069799999995,22.227069799999995,22.227069799999995,22.227069799999995,22.227069799999995,22.227069799999995,22.227069799999995,22.227069799999995,22.227069799999995,22.227069799999995,22.227069799999995,22.227069799999995,22.227069799999995,22.227069799999995,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,crops,233.345854,280.8240833,321.65994829999994,318.22738559000004,320.96720251,324.02189004999997,326.37172745,330.13408824000004,332.60952532999994,333.57922107,332.22477462,333.71846799,333.61204638000004,331.80977593,329.64900937,327.33797323000005,324.81126838999995,320.83276541,316.16475705,311.6254165700001,307.74329343000005,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,desert,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,forest (managed),95.94852,71.08344199999999,66.4348,70.534562,75.284644,79.863235,84.55488899999999,89.309164,93.398398,97.43459,101.69756,103.54238,105.53791,107.63052,109.8481,111.66001,113.27036,114.63468999999999,115.83707,116.61141,116.92262,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,forest (unmanaged),1023.72915,1001.93553,952.57613,951.2512800000001,945.5519270000001,939.652675,934.2119990000001,927.8419180000001,922.775065,918.8132820000001,916.320583,914.413526,913.512102,913.6944360000001,914.085718,914.8559640000001,915.916546,918.0780450000001,920.804696,923.7246560000001,926.5123480000001,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,grass,96.310314,97.25493800000001,93.628014,93.37791999999999,92.609152,91.842311,91.14537899999999,90.3645504,89.75787319999999,89.2853804,88.97359879999999,88.7589936,88.64624719999999,88.64205659999999,88.65758969999999,88.7158932,88.8052969,89.0079986,89.27062269999999,89.5602648,89.8449021,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,otherarable,12.7076,24.4155,41.6038,40.6526,38.2739,35.8297,33.5157,30.8723,28.7221,26.9651,25.7276,24.913,24.4553,24.3872,24.3887,24.5535,24.8335,25.5099,26.3785,27.3243,28.2424,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,pasture (grazed),14.926215,15.757932,15.494943,17.88348,20.128066,22.441538,24.563360000000003,26.56285,28.36459,29.95956,31.36586,31.0962,30.7417,30.3282,29.83279,29.27611,28.67593,28.081580000000002,27.47567,26.84529,26.1823,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,pasture (other),96.196721,78.004552,76.566529,76.036722,75.14911099999999,74.313155,73.600856,72.879074,72.33625599999999,71.926728,71.653887,71.520753,71.458844,71.472078,71.502099,71.56441,71.651093,71.81865099999999,72.03286,72.272521,72.515765,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,shrubs,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,tundra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,urban,4.105021000000001,7.99308,9.30522,9.30522,9.30522,9.30522,9.30522,9.30522,9.30522,9.30522,9.30522,9.30522,9.30522,9.30522,9.30522,9.30522,9.30522,9.30522,9.30522,9.30522,9.30522,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,biomass,0.0,0.0,0.0,0.0,0.255500705,0.492185616,0.811407591,1.1290849900000002,1.2553522,1.3817795650000002,1.500498722,1.646063078,1.8014088839999998,1.94437805,2.19421412,2.44361892,2.72605823,2.91784488,3.09884128,3.26335834,3.46942352,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,crops,31.257063,30.843581500000003,30.343746899999996,29.70617774,29.61637363999999,29.490505320000004,29.215678379999996,29.05565294000001,28.72088202,28.223387950000006,27.556380909999998,27.324575959999994,26.96464911,26.471290519999993,25.936107359999998,25.342648129999997,24.713199009999997,23.995609529999992,23.25279401000001,22.50675638,21.765981660000005,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,desert,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,forest (managed),34.742433,19.464526,20.880144,22.106789000000006,23.695366000000003,25.328189,26.959825000000002,28.720443,30.388497,31.957361000000002,33.37459499999999,34.065285,34.63501300000001,35.075181,35.436175,35.707772000000006,35.896713,35.950932,35.902758,35.791501,35.632231000000004,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,forest (unmanaged),229.691361,241.79192,243.41956699999997,243.01394999999997,241.656718,240.307862,239.011143,237.516911,236.39325,235.47645699999998,234.82072499999998,234.350023,234.071454,234.01506,233.966749,234.037627,234.17624999999998,234.57021199999997,235.076012,235.649175,236.22220199999998,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,grass,3.9402157,3.8075343,4.0066124,3.9947947,3.9645951,3.9350264999999998,3.9072074,3.8767191,3.8535065,3.8346702,3.8209953,3.8119544,3.8064492,3.8049106,3.8037475,3.804725,3.8070065,3.8137202,3.8225434,3.8326933,3.8430882,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,otherarable,5.7430375,5.514833,5.236709500000001,5.0899343,4.7903743,4.4902893,4.199707699999999,3.8741743000000004,3.6120652000000004,3.390294,3.2196599,3.1142412,3.0448145,3.0161282999999997,2.9924662999999994,2.9911402000000002,3.003669,3.0601794,3.1367482,3.224512,3.3129755000000003,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,pasture (grazed),0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,pasture (other),2.91783083,2.8227731200000004,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,shrubs,4.8084459,8.2272641,8.4032493,8.3783358,8.311079,8.245932700000001,8.185049300000001,8.117055,8.0664927,8.0259913,7.9970669999999995,7.9777824299999995,7.96613752,7.96301918,7.96045342,7.962447300000001,7.96712522,7.981459560000001,8.0002998,8.022005,8.0440861,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,tundra,0.127287,0.086505,0.0910635,0.0910635,0.0910635,0.0910635,0.0910635,0.0910635,0.0910635,0.0910635,0.0910635,0.0910635,0.0910635,0.0910635,0.0910635,0.0910635,0.0910635,0.0910635,0.0910635,0.0910635,0.0910635,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,urban,10.8265628,11.495371,11.673026499999999,11.673026499999999,11.673026499999999,11.673026499999999,11.673026499999999,11.673026499999999,11.673026499999999,11.673026499999999,11.673026499999999,11.673026499999999,11.673026499999999,11.673026499999999,11.673026499999999,11.673026499999999,11.673026499999999,11.673026499999999,11.673026499999999,11.673026499999999,11.673026499999999,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,biomass,0.0,0.0,0.0,0.0,4.184332239,8.315760908,13.990884930000002,19.753195060000003,22.11038481,24.481606859999996,26.710993079999998,29.05364387,31.47333739999999,33.69001465,37.42529328000001,41.04710462999999,44.99141819999999,47.595424339999994,49.986789370000004,52.07618392,54.54724584,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,crops,164.5595333999999,173.2604366000001,166.63966909999996,167.4879331307,174.49732967759996,181.26843415619996,186.6104686447,189.69848401140015,193.0586731615001,195.25591532240009,195.7963072699,195.9119537480001,195.13640596990007,193.2325368109001,190.6248385407999,187.9064547704001,185.2088288646001,182.18503026729996,178.90657099789993,175.71335053580012,172.64821442500002,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,desert,0.840457,0.845318,0.867397,0.867397,0.867397,0.867397,0.867397,0.867397,0.867397,0.867397,0.867397,0.867397,0.867397,0.867397,0.867397,0.867397,0.867397,0.867397,0.867397,0.867397,0.867397,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,forest (managed),34.282953,36.48315490000001,36.0659867,37.77140289999999,39.1289992,40.38792200000001,41.307492999999994,43.35134499999999,45.449519,47.344767,49.072010999999996,50.080037999999995,50.833855,51.370695,51.486484,51.283105,50.715650000000004,50.001321999999995,49.135219,48.16919,47.024726,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,forest (unmanaged),476.01168699999994,443.2448,449.85353,448.733902,445.039963,441.5170197,438.1013164,435.3292825,433.3508211,431.7067086,430.5299231,429.8177481,429.3632934,429.2373264,428.9863339,428.8328717,428.6688463,428.8889403,429.2442904,429.6600372,429.9844484,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,grass,123.24557926,118.95063050000002,131.88827550000002,131.4402821,130.3886288,129.3929288,128.4591958,127.6503388,127.04114976999999,126.53717309,126.16507223999999,125.96248461,125.83692397,125.79954941999999,125.75142082999999,125.73814023999999,125.73673694,125.83102887999999,125.96560129,126.11988305,126.26155723,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,otherarable,87.67835999999998,93.89682600000002,105.180024,102.34077300000001,95.42410600000001,88.58961099999999,81.84554,75.738751,71.08351600000002,67.143224,64.187005,62.456101000000004,61.33231099999999,60.93602500000001,60.403794999999995,60.15223700000001,59.974031000000004,60.619158999999996,61.587541,62.709024,63.696722,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,pasture (grazed),58.25324229999999,62.356904500000006,64.3389674,70.2357992,76.23261489999999,81.9503518,87.10432920000001,91.19983089999998,94.8124911,97.9092378,100.5509499,100.91226859999999,100.8892516,100.7468287,100.4792888,100.10784160000001,99.5525091,98.9578598,98.2154915,97.42698349999999,96.57945150000002,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,pasture (other),706.4248729000001,727.2780289,675.8648775,672.4812637000001,667.0286334000001,661.8877651000001,657.1921871000001,653.1187048,649.9099749000001,647.2585496,645.2481507000001,644.372356,643.8815203,643.7753098,643.6723224000001,643.7411370000001,643.9079628000001,644.4770247,645.2466595,646.1125966000001,646.9538100999999,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,shrubs,230.56948677,222.86094125999998,247.56305059000002,246.90333139,245.46986916000003,244.08472159000002,242.78299039,241.55460237,240.57804420000002,239.75730103,239.13428100000002,238.82764996000003,238.64771262000002,238.60625919,238.56484646200002,238.585672961,238.63860146800002,238.83854810500003,239.106385531,239.40728917,239.698429005,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,tundra,0.07467470000000001,0.054295800000000005,0.0588056,0.0588056,0.0588056,0.0588056,0.0588056,0.0588056,0.0588056,0.0588056,0.0588056,0.0588056,0.0588056,0.0588056,0.0588056,0.0588056,0.0588056,0.0588056,0.0588056,0.0588056,0.0588056,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,urban,8.199843300000001,10.9096548,11.819978,11.819978,11.819978,11.819978,11.819978,11.819978,11.819978,11.819978,11.819978,11.819978,11.819978,11.819978,11.819978,11.819978,11.819978,11.819978,11.819978,11.819978,11.819978,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,biomass,0.0,0.0,0.0,0.0,5.167905520000001,10.438806316700001,17.8733219766,25.108174499599997,28.777553302700003,32.816425885,36.285890467,39.520841206,42.88310123899999,45.904740581,50.963040499,55.836690189,61.108417566,64.481104636,67.590331933,70.45535405599999,74.06108127,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,crops,217.5516435,230.64186290000004,232.34953919999998,233.49838324599997,239.43081949599997,245.43737714300002,249.70368618300003,261.4220988039999,272.499939954,281.293988099,288.154235351,288.67996643999993,287.83221578999996,285.770374213,282.1342011869999,277.869729354,272.86221616700004,267.712789045,262.12671177800013,256.36067764899997,250.06691201700002,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,desert,2062.6683949999997,2073.046055,2061.9284620000003,2061.9284620000003,2061.9284620000003,2061.9284620000003,2061.9284620000003,2061.9284620000003,2061.9284620000003,2061.9284620000003,2061.9284620000003,2061.9284620000003,2061.9284620000003,2061.9284620000003,2061.9284620000003,2061.9284620000003,2061.9284620000003,2061.9284620000003,2061.9284620000003,2061.9284620000003,2061.9284620000003,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,forest (managed),2.2635525999999997,2.2011079999999996,2.2978520000000002,2.478254,2.669816,2.862936,3.031609,3.09854,3.1648009999999998,3.2017719999999996,3.2128560000000004,3.269691,3.302592,3.3142769999999997,3.2903809999999996,3.253262,3.200609,3.147666,3.0848430000000002,3.019266,2.9447859999999997,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,forest (unmanaged),12.765838779999997,7.179202,7.060933,7.0689969999999995,7.043623,7.016299,6.984463,6.9274439999999995,6.885425,6.848603000000001,6.818856,6.80852,6.800901,6.797091699999999,6.7903217,6.7855235,6.7811278999999995,6.7828509,6.7861644000000005,6.790527599999999,6.793672299999999,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,grass,106.3505165,131.6087586,127.1388651,126.98103440000001,125.98995740000001,125.0190536,124.04099860000001,122.6155145,121.60999960000001,120.7904046,120.1680329,119.93284320000001,119.7702211,119.6948691,119.5871697,119.5240775,119.4760942,119.5409367,119.6439596,119.7729374,119.88963910000001,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,otherarable,84.11632900000001,90.6610293,109.67993179999999,109.03317600000001,104.71429899999998,100.26519749999999,95.5559261,88.95147960000001,83.8583371,79.3905498,75.8204017,74.24639490000001,73.1190832,72.56132000000001,71.78114970000001,71.3050247,70.947651,71.3829334,72.07283220000001,72.9159604,73.6514688,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,pasture (grazed),13.736221299999999,15.218291,15.533910500000001,17.657644692999998,19.881579578,22.22687457,24.43320773,26.43489835,28.313616070000002,29.99746347,31.454948690000002,32.198727739999995,32.76663892,33.16333009,33.41683911,33.54788996999999,33.5747525,33.49648104,33.33867894,33.135111259999995,32.883620740000005,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,pasture (other),1937.2879682200003,1823.9001847,1866.67055061,1864.60154561,1859.45036994,1854.1156689099998,1848.80017536,1840.59632917,1833.68143812,1827.53919154,1822.4118471900001,1820.5583790399999,1819.32714928,1818.82337754,1818.3490899600001,1818.28145299,1818.4506303399999,1819.4225331,1820.72701275,1822.2245054,1823.71291929,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,shrubs,686.8700216,743.4627058,693.0266488,692.4390794,689.4099939999999,686.3763021,683.3348056,678.6036921,674.9672859,671.8798933,669.4311729,668.5428033999999,667.956323,667.7288847,667.4460907,667.3546653,667.3567929000001,667.7911188,668.3876439000001,669.0839874999999,669.7543979,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,tundra,0.102718,0.101694,0.100393,0.100393,0.100393,0.100393,0.100393,0.100393,0.100393,0.100393,0.100393,0.100393,0.100393,0.100393,0.100393,0.100393,0.100393,0.100393,0.100393,0.100393,0.100393,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,urban,10.4070964,16.1089724,18.3409002,18.3409002,18.3409002,18.3409002,18.3409002,18.3409002,18.3409002,18.3409002,18.3409002,18.3409002,18.3409002,18.3409002,18.3409002,18.3409002,18.3409002,18.3409002,18.3409002,18.3409002,18.3409002,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,biomass,0.0,0.0,0.0,0.0,3.276124,6.154061,9.772557,12.24686,12.867810000000002,13.44947,14.56033,15.417349999999999,16.351119999999998,17.27016,19.05874,20.78455,22.680010000000003,24.00318,25.258119999999998,26.434919999999998,27.83428,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,crops,176.74457609999988,187.81036250000005,183.89767710000007,181.58850930550003,177.8322465752001,174.60737950619998,170.79696419689995,169.96673716809994,169.88824006279995,169.5269603592,168.4680945547,167.33956877230003,166.09328280559996,164.68769908080003,162.8146757072,160.9371307716,158.97356944080002,157.16640233639995,155.37163146399993,153.62478915810001,151.7726542957001,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,desert,261.78839700000003,264.198175,265.366191,265.366191,265.366191,265.366191,265.366191,265.366191,265.366191,265.366191,265.366191,265.366191,265.366191,265.366191,265.366191,265.366191,265.366191,265.366191,265.366191,265.366191,265.366191,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,forest (managed),3.6598013,2.9409422,3.2159133,3.0457234,2.7468797,2.5063651000000005,2.2528541,1.9713763999999998,1.8028087,1.6585524000000003,1.5120274999999999,1.5061068,1.4974406,1.4873319,1.4437825,1.3998704000000002,1.348442,1.3120303,1.2763263,1.2436471,1.2053492,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,forest (unmanaged),0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,grass,16.2878959,13.2389087,13.303256,13.0929008,12.8259982,12.633483,12.484653100000001,12.353708600000001,12.2739325,12.2173754,12.176326900000001,12.16433579,12.15641501,12.15262635,12.147407260000001,12.14433855,12.142114300000001,12.14463014,12.149020530000001,12.154733980000001,12.16026611,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,otherarable,33.2599576,32.361857,28.694345200000004,26.557500299999997,23.7736286,21.4654969,19.470793200000003,17.2953301,15.687221800000003,14.3962847,13.373052199999998,13.079367,12.896646,12.8325364,12.7608843,12.753191100000002,12.781453400000002,12.9385612,13.154442399999999,13.4082677,13.6682213,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,pasture (grazed),33.51016,43.19952000000001,43.15954000000001,50.43723,57.23409,62.72889000000001,67.32797,70.54816,73.54504,76.13871,78.31412,79.16705999999998,79.83525999999998,80.4345,80.66767,80.83698,80.85244000000002,81.00776,81.0942,81.12664,81.02590000000002,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,pasture (other),17.692750900000004,7.623454000000001,7.6163872,7.466718500000001,7.3267185,7.233056600000001,7.164692110000001,7.10325216,7.06211057,7.031944080000001,7.009774180000001,7.003557370000001,6.999661190000001,6.998054940000001,6.9965591400000005,6.99628699,6.99677793,6.999565370000001,7.003524760000001,7.00829463,7.013352810000001,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,shrubs,265.591626,255.703591,260.938375,258.636766,255.80967600000002,253.49669400000005,251.55499730000003,249.33992520000004,247.69819270000005,246.40599360000004,245.41169310000004,245.14795420000002,244.99557300000004,244.96240770000003,244.93569840000004,244.9730728,245.05068110000002,245.25320980000004,245.51810680000006,245.82408920000006,246.14524630000005,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,tundra,26.807032,26.787769,26.894301,26.894301,26.894301,26.894301,26.894301,26.894301,26.894301,26.894301,26.894301,26.894301,26.894301,26.894301,26.894301,26.894301,26.894301,26.894301,26.894301,26.894301,26.894301,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,urban,2.4690608,3.9465445000000003,4.7256990000000005,4.7256990000000005,4.7256990000000005,4.7256990000000005,4.7256990000000005,4.7256990000000005,4.7256990000000005,4.7256990000000005,4.7256990000000005,4.7256990000000005,4.7256990000000005,4.7256990000000005,4.7256990000000005,4.7256990000000005,4.7256990000000005,4.7256990000000005,4.7256990000000005,4.7256990000000005,4.7256990000000005,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,biomass,0.0,0.0,0.0,0.0,1.69651331,3.4891270199999997,6.1376507600000005,9.145753229999999,10.818798690000001,12.59510582,14.3544509,15.992183,17.6674553,19.186919,21.7496981,24.293430700000002,27.1462089,28.898866100000003,30.4091221,31.682983900000004,33.2566514,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,crops,365.0616374,313.33526259999996,307.60092610000004,296.3484056980001,304.95281601300013,315.04314787999994,325.14584498900007,347.0445619639998,365.6216912239999,381.26728746,392.80914505399994,399.82465631500014,403.81691711299993,404.0840421439999,403.90523928899995,401.62052434599997,398.0114326490001,390.3389309720002,380.97111235199986,370.8007852439998,360.47503799500004,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,desert,68.362198,68.359746,68.370948,68.370948,68.370948,68.370948,68.370948,68.370948,68.370948,68.370948,68.370948,68.370948,68.370948,68.370948,68.370948,68.370948,68.370948,68.370948,68.370948,68.370948,68.370948,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,forest (managed),668.6554015,381.12867579999994,358.9730025,383.12851668,424.15666835,468.3166179,514.49107403,567.82180103,615.3786489900001,658.84976819,694.95724641,717.2773995000001,732.95144603,740.65823064,746.9187823599999,748.54633337,747.12263864,736.99166958,722.91015488,706.86176838,690.86861834,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,forest (unmanaged),9836.294819109999,10224.31286656,10254.270374329999,10245.83627166,10220.553709779999,10192.83083602,10163.7787298,10125.64359107,10092.09371345,10061.73454636,10036.88845567,10021.77390559,10011.42166042,10006.87966814,10003.02653588,10002.49785669,10004.06433702,10012.195690049999,10023.207208419999,10035.697083519999,10048.15260828,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,grass,1284.8810488699999,1253.3117555000001,1265.29293648,1263.66339816,1259.06285772,1254.11554651,1249.03742085,1242.60660645,1237.0875208,1232.2071348,1228.29359527,1225.93130183,1224.3256795900002,1223.62460379,1223.02487086,1222.9378577100001,1223.17148995,1224.4282894,1226.1384534200001,1228.0898876200001,1230.05177711,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,otherarable,996.4603549999999,891.6387549999998,879.645104,876.7289949999998,857.312407,835.6396550000001,812.7719229999998,781.9670540000002,755.485536,731.742347,712.5012919999999,700.53895,692.2909729999999,688.730754,685.2785040000001,684.502641,685.2819810000001,691.762245,700.5811090000001,710.587815,720.48622,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,pasture (grazed),84.0822503,40.4303963,45.7579786,45.87009319999999,46.04402339999999,47.0013743,47.8312806,48.835692,49.916023900000006,50.986704399999994,51.9999647,51.7814496,51.5173104,51.1219022,50.665568300000004,50.1233951,49.477065700000004,48.7128231,47.8723585,46.9692107,45.9828025,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,pasture (other),740.8249435,878.1530591999999,870.5946143,870.5650264999999,868.3979876999999,865.7774787,863.0574061,859.2393601,855.9486236,853.0050458,850.614463,849.3199921,848.4615643999999,848.1694504,847.8913977,847.9379362999999,848.1817651,849.114526,850.3378736,851.7205137,853.1161512,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,shrubs,15.20862416,14.988546670000002,15.189228100000001,15.18194561,15.14759629,15.109885679999998,15.07135818,15.01903184,14.974074129999998,14.93452245,14.90305798,14.88432018,14.871931619999998,14.86727287,14.86352317,14.864193109999999,14.867678949999998,14.879931899999999,14.89604151,14.91420004,14.93259063,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,tundra,1980.7455579999998,1975.754593,1976.151057,1976.151057,1976.151057,1976.151057,1976.151057,1976.151057,1976.151057,1976.151057,1976.151057,1976.151057,1976.151057,1976.151057,1976.151057,1976.151057,1976.151057,1976.151057,1976.151057,1976.151057,1976.151057,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,urban,18.8532477,18.033142899999998,17.5826521,17.5826521,17.5826521,17.5826521,17.5826521,17.5826521,17.5826521,17.5826521,17.5826521,17.5826521,17.5826521,17.5826521,17.5826521,17.5826521,17.5826521,17.5826521,17.5826521,17.5826521,17.5826521,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,biomass,0.0,0.0,0.0,0.0,0.907743136,1.76874057,2.94594878,4.089616780000001,4.563201820000001,5.039533940000001,5.45373822,6.00086124,6.5578854699999996,7.0455251599999995,7.89003186,8.70511206,9.61245088,10.17197232,10.69636401,11.1748653,11.794581160000002,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,crops,80.3696072,58.34360440000002,54.906734,57.02297493,58.621199012,60.123370989,61.42878383399999,62.373957597,63.01053731300001,63.11082026,62.486300805,62.66692426699999,62.56955963699998,62.052430382000004,61.563167092,61.033267265,60.595212243,59.793546399000014,58.850278535,57.977284063000006,57.207163994999995,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,desert,2.5908718,2.8418037,2.8594641,2.8594641,2.8594641,2.8594641,2.8594641,2.8594641,2.8594641,2.8594641,2.8594641,2.8594641,2.8594641,2.8594641,2.8594641,2.8594641,2.8594641,2.8594641,2.8594641,2.8594641,2.8594641,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,forest (managed),16.722621999999998,19.9042649,18.0388199,18.8579325,20.5869656,22.3334761,24.0687668,26.416359999999997,28.51357,30.434124999999998,32.094746,33.077448000000004,33.7718,34.192503,34.479808,34.571507000000004,34.485043000000005,34.115613,33.609172,32.98111,32.301932,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,forest (unmanaged),21.66027175,18.27946679,22.12091282,22.05842371,21.97704152,21.88539821,21.79068382,21.70532834,21.6323373,21.56766246,21.51859082,21.486771010000002,21.46527021,21.45937839,21.45180813,21.45156011,21.453769910000002,21.47420273,21.5026924,21.53311513,21.56120252,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,grass,176.21141000000003,147.209339,169.585141,168.871548,167.995282,167.059824,166.142101,165.177054,164.408973,163.762473,163.275768,163.007234,162.827909,162.769936,162.706369,162.700466,162.716958,162.871944,163.08067200000002,163.31626100000003,163.542086,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,otherarable,59.3389068,96.0263,72.72511,70.53332999999999,67.63922000000001,64.49741999999999,61.397143,58.07027299999999,55.298773000000004,52.890114000000004,50.98210099999999,49.992656999999994,49.321538,49.071892999999996,48.844997,48.84011,48.94839999999999,49.52618499999999,50.2995,51.177490999999996,52.044034999999994,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,pasture (grazed),45.109140000000004,53.432532,56.503975999999994,59.832314999999994,63.13229700000001,67.42993299999999,71.37321399999999,75.655595,79.702154,83.470966,86.99806600000001,87.59030000000001,87.980835,88.107392,87.897585,87.40219400000001,86.611828,85.694147,84.610912,83.354002,81.902849,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,pasture (other),776.4648749999999,782.8032939999999,779.14635,775.9603169999999,772.413954,768.325685,764.422862,760.237407,756.725139,753.689544,751.24193,750.271718,749.627182,749.431484,749.303977,749.430597,749.702617,750.448918,751.407928,752.499727,753.61661,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,shrubs,35.19809642,32.717004530000004,34.979032270000005,34.869172660000004,34.73238818,34.582213110000005,34.436486040000005,34.2803197,34.151379420000005,34.0409349,33.954714800000005,33.912135590000005,33.88402313,33.87550504,33.86823238,33.87130788,33.87963648,33.909567550000006,33.948527840000004,33.992250600000006,34.03576411,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,tundra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,urban,2.6935711999999996,4.801278400000001,5.4940488,5.4940488,5.4940488,5.4940488,5.4940488,5.4940488,5.4940488,5.4940488,5.4940488,5.4940488,5.4940488,5.4940488,5.4940488,5.4940488,5.4940488,5.4940488,5.4940488,5.4940488,5.4940488,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,crops,22.714059800000005,22.4769818,23.3687482,24.479215710000002,27.839472574000006,30.622396593999998,33.352954518,36.335600912000004,38.95487044,41.21103147999998,42.814490766999995,43.480534822,43.71539790600001,43.39540885099999,43.086937268999996,42.64779382200001,42.20527936800001,41.282953086,40.190719017,39.080170489000004,38.095716287,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,desert,2.2586988,2.3427854,2.3580247,2.3580247,2.3580247,2.3580247,2.3580247,2.3580247,2.3580247,2.3580247,2.3580247,2.3580247,2.3580247,2.3580247,2.3580247,2.3580247,2.3580247,2.3580247,2.3580247,2.3580247,2.3580247,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,forest (managed),3.1305093999999998,4.1140719,4.4317722,4.71108086,5.248482360000001,5.76818862,6.31237251,6.99548092,7.60174359,8.16057353,8.63146934,8.96526467,9.21854663,9.37055468,9.51217284,9.5856415,9.61030973,9.49970768,9.32795052,9.12235684,8.91327401,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,forest (unmanaged),915.8511292000001,907.4520367,909.9224494,908.7793517,907.0417121999999,904.1293554,901.1910582999999,898.1073633999999,895.305354,892.7786418,890.7413951,889.8267576,889.3261408,889.3246015,889.4327547,889.7724397,890.2349785,891.1411194,892.2446967999999,893.4236903999999,894.5650935,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,grass,165.3354608,171.3181985,173.36086609999998,172.777571,172.0111927,170.6916732,169.4368262,168.2214721,167.16615199999998,166.2588312,165.5511436,165.2952774,165.15781389999998,165.1626146,165.1951951,165.2858124,165.40127479999998,165.6435066,165.9471162,166.2813833,166.610261,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,otherarable,14.952034999999999,16.187935,12.616036999999999,12.529838000000002,12.552183,12.341560000000001,12.107693999999999,11.851538000000001,11.595225,11.343346,11.113726,11.019229,10.953871,10.92444,10.908451,10.914508999999999,10.933831999999999,10.985178999999999,11.051277,11.125579,11.200771,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,pasture (grazed),16.824641,20.347186,21.607411999999997,22.779141,21.821959,24.68323,27.414973,29.732529,31.835349,33.730934,35.433395000000004,35.979472,36.353303,36.566663,36.583578,36.417885,36.105406,35.683144,35.151263,34.515884,33.789821,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,pasture (other),176.06169599999998,172.267325,168.29344700000001,167.563122,167.126568,165.44907,163.912232,162.52634400000002,161.34913400000002,160.357482,159.58175200000002,159.31045400000002,159.1570778,159.1380252,159.1620952,159.2534181,159.3819217,159.62821399999999,159.939472,160.290857,160.65267300000002,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,shrubs,7.2100263,6.8666106,7.0374984000000005,7.018857000000001,6.9966451,6.9527884,6.9101680000000005,6.8679007,6.830368,6.7973731,6.7709498,6.7613157,6.7560511000000005,6.7560243,6.757225,6.7607203,6.7652921,6.7744549,6.7858524,6.7983548,6.8106906,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,tundra,4.251099,4.358691,4.4310659999999995,4.4310659999999995,4.4310659999999995,4.4310659999999995,4.4310659999999995,4.4310659999999995,4.4310659999999995,4.4310659999999995,4.4310659999999995,4.4310659999999995,4.4310659999999995,4.4310659999999995,4.4310659999999995,4.4310659999999995,4.4310659999999995,4.4310659999999995,4.4310659999999995,4.4310659999999995,4.4310659999999995,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,urban,2.1868628,3.0447306,3.349788,3.349788,3.349788,3.349788,3.349788,3.349788,3.349788,3.349788,3.349788,3.349788,3.349788,3.349788,3.349788,3.349788,3.349788,3.349788,3.349788,3.349788,3.349788,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,biomass,0.0,0.0,0.0,0.0,0.20908131200000002,0.4357434499999999,0.774607392,1.1702715300000002,1.3720195199999998,1.5905513299999998,1.80635033,2.01053726,2.2303340599999997,2.4294300399999997,2.7642689899999997,3.0964249900000005,3.4719028499999993,3.7219313300000003,3.94640398,4.14116533,4.383936589999999,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,crops,107.98060630000003,136.19252780000002,141.81262919999998,143.25944020230003,153.21470078489995,163.5343702630999,173.22410490189992,183.37211208469998,191.70947575759996,198.33096026399994,202.8140650962999,204.4207718883,204.8632536017999,203.73927422379992,202.59399725449993,200.7722670045,198.67001314089998,194.85347074559996,190.4520574828,185.90477241139996,181.46206063859998,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,desert,292.68025209999996,295.53194679999996,293.4455979,293.4455979,293.4455979,293.4455979,293.4455979,293.4455979,293.4455979,293.4455979,293.4455979,293.4455979,293.4455979,293.4455979,293.4455979,293.4455979,293.4455979,293.4455979,293.4455979,293.4455979,293.4455979,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,forest (managed),33.1258292,50.316953999999996,58.290116,61.64870499999999,66.743926,71.937136,77.18177499999999,83.30039699999999,88.57077199999999,93.35436299999998,97.39838200000001,100.30208400000001,102.55106900000001,104.05947500000003,105.368054,106.16853900000001,106.578028,106.11670399999998,105.159199,103.870697,102.47986999999999,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,forest (unmanaged),1530.307882,1493.8052020000002,1497.3541790000004,1494.8156680000002,1488.0547970000002,1480.9449500000003,1473.9715230000002,1466.2184240000004,1459.6913530000002,1454.1303030000004,1449.8751410000004,1447.7656190000002,1446.5312250000002,1446.3711530000003,1446.2883680000004,1446.7525100000003,1447.5206370000003,1449.4939790000003,1451.9629740000003,1454.6546330000003,1457.3075220000003,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,grass,529.51532955,512.9241964400001,539.65428011,538.2851319000001,534.9619334399999,531.5733673100001,528.37616052,525.1376409300001,522.4851732400002,520.28379756,518.6232204500002,517.85391428,517.4054375400001,517.35015604,517.3194732000002,517.49914272,517.79683488,518.5583473000002,519.5159379400002,520.56820917,521.62553742,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,otherarable,43.718044,43.6733317,40.0542845,39.36415045,38.110864734,36.74232643100001,35.33998748300001,33.78925705499999,32.42296028100001,31.205080311999996,30.222706803999994,29.701077921999996,29.363368342,29.248030025999995,29.158778504000004,29.195454426,29.308985515,29.671440398,30.136057999000002,30.645340087,31.148685109,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,pasture (grazed),27.273794100000003,43.081283299999996,45.57368829999999,48.66910850000001,51.48796210000001,54.6079035,57.530841300000006,60.00984610000001,62.212597599999995,64.12369950000001,65.74134980000001,65.88696759999999,65.80422890000001,65.5800974,65.2466369,64.78936320000001,64.2113409,63.5071804,62.7271343,61.9082548,61.0669071,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,pasture (other),985.8147515,979.0146084999998,931.0135170000002,927.9810062000003,921.9380524000002,915.6655368000003,909.7310829000002,903.8613988000001,898.9972368000002,894.9465653000001,891.8636223000002,890.5867936000001,889.8832288000002,889.8655561000002,889.9063112000002,890.3267926000002,890.9699737000002,892.4280762000002,894.2292177,896.1919032000002,898.1668732000002,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,shrubs,122.34274069999996,114.34857360000001,120.0981346,119.82761520000001,119.1295745,118.4094352,117.72078710000001,116.9915395,116.38921800000001,115.88546380000001,115.5058786,115.32310640000001,115.2185942,115.20749450000001,115.2049301,115.2502994,115.32294560000001,115.49967149999999,115.7218783,115.96586549999999,116.2094345,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,tundra,179.451496,181.54453699999996,182.477503,182.477503,182.477503,182.477503,182.477503,182.477503,182.477503,182.477503,182.477503,182.477503,182.477503,182.477503,182.477503,182.477503,182.477503,182.477503,182.477503,182.477503,182.477503,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,urban,3.9843577999999997,5.7615778,6.4199369,6.4199369,6.4199369,6.4199369,6.4199369,6.4199369,6.4199369,6.4199369,6.4199369,6.4199369,6.4199369,6.4199369,6.4199369,6.4199369,6.4199369,6.4199369,6.4199369,6.4199369,6.4199369,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,biomass,0.0,0.0,0.0,0.0,1.458734302,2.9884816300000003,5.18156108,7.63137796,8.86170703,10.22146754,11.51346934,12.622300549999999,13.77757201,14.6271037,16.120387400000002,17.5507914,19.236420999999996,20.2750236,21.2181265,22.0567464,23.112354399999997,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,crops,123.9005088,124.20562079999995,122.85832090000011,124.5002048217999,128.5133250265,132.12692381570005,134.9550602987999,139.80746036819994,143.90998067999996,147.04015771430008,149.08869825610006,148.7442720532001,147.8566998167999,146.47098858890013,144.81413938100005,142.97340206220008,140.95357312590002,138.63619789069998,136.15319875010002,133.634172245,131.10481169629992,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,desert,86.44322370000002,87.6517723,87.6938387,87.6938387,87.6938387,87.6938387,87.6938387,87.6938387,87.6938387,87.6938387,87.6938387,87.6938387,87.6938387,87.6938387,87.6938387,87.6938387,87.6938387,87.6938387,87.6938387,87.6938387,87.6938387,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,forest (managed),42.1504799,41.85038050000001,41.61787319999999,42.236653999999994,43.188000699999996,44.089274800000005,44.975136899999995,45.91128989999999,46.536222200000005,47.0908179,47.59439230000001,48.6522261,49.6652865,50.6162542,51.561998800000005,52.40140550000001,53.1529787,53.7333916,54.196706299999995,54.556819399999995,54.8399133,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,forest (unmanaged),122.39502845999999,127.49374674,128.33261884,127.59590548000001,126.38500837000002,125.27484263000001,124.29575344000001,123.29673488000002,122.51401082000002,121.89187907000003,121.43858852000001,121.26971523000002,121.18732587000001,121.20197252000001,121.23074368000002,121.30726597000002,121.41384153000003,121.62512269000003,121.88816311000001,122.18167230000002,122.47961281,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,grass,54.76671543999999,48.213580560000004,49.14146547000001,48.97609860000001,48.60647105,48.238103450000004,47.86023860000001,47.35440920000001,46.97050084000001,46.63968676000001,46.37396291000001,46.275431950000005,46.203238660000004,46.167354760000016,46.12187081000001,46.09268539000001,46.06666331000002,46.08132245000001,46.11036273000001,46.149265960000015,46.18426159000001,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,otherarable,102.87951899999999,99.754024,96.65173799999998,93.169578,87.01862100000001,81.00031599999998,75.117767,68.15528900000001,62.573964999999994,57.71393100000001,53.783088,52.17004099999999,51.07293599999999,50.62560899999999,50.13333600000001,49.96147599999999,49.925129999999996,50.614948999999996,51.605217,52.789582,53.954203000000014,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,pasture (grazed),17.474865500000003,20.2105934,19.998367899999998,24.4102036,29.268405899999998,34.14348799999999,38.7789029,43.0077727,46.91473830000002,50.3247572,53.2456979,54.028997399999994,54.5128256,54.8196661,54.821461600000006,54.6660463,54.3061544,53.917532800000004,53.431090299999994,52.8795743,52.22778039999999,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,pasture (other),315.60416789999994,312.56351019999994,314.63520550000004,312.70282860000003,309.8742261,307.17015860000004,304.5957709,301.61350325,299.30978749,297.38465245000003,295.86203766,295.34567371,294.98112768,294.79750471,294.60306059,294.49675458,294.42493595,294.53952678,294.72986330000003,294.97280712,295.21032127,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,shrubs,142.91082605,145.4632731,145.88240829999998,145.52661479999998,144.80541749999998,144.08660619999998,143.357837,142.3402697,141.527131,140.8107421,140.2180891,140.00956091,139.86108915,139.79164733,139.71105996999998,139.66822344,139.63833975999998,139.69515525,139.785258,139.89750899999999,140.00489729999998,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,tundra,18.637168,18.7942,18.9803803,18.9803803,18.9803803,18.9803803,18.9803803,18.9803803,18.9803803,18.9803803,18.9803803,18.9803803,18.9803803,18.9803803,18.9803803,18.9803803,18.9803803,18.9803803,18.9803803,18.9803803,18.9803803,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,urban,1.2842511,2.2458615,2.6542433,2.6542433,2.6542433,2.6542433,2.6542433,2.6542433,2.6542433,2.6542433,2.6542433,2.6542433,2.6542433,2.6542433,2.6542433,2.6542433,2.6542433,2.6542433,2.6542433,2.6542433,2.6542433,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,biomass,0.0,0.0,0.0,0.0,0.0461218,0.08851329999999999,0.1455737,0.202119,0.22607,0.252437,0.278547,0.303875,0.331267,0.356784,0.402175,0.44776099999999996,0.500325,0.537381,0.573526,0.6076079999999999,0.64988,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,crops,14.047322500000002,14.139187499999998,13.219178000000001,12.8397386646,12.682308261500001,12.5239938833,12.324826643799998,12.3364014698,12.2821398101,12.1638717056,11.979282802100002,11.890768451900001,11.758196665500002,11.5830867444,11.393330803800001,11.183684046100002,10.959495271199998,10.7066538788,10.447500862200002,10.187363090099998,9.9284665219,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,desert,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,forest (managed),5.01513,6.087,7.10231,7.55362,8.05406,8.55853,9.06766,9.48469,9.88181,10.268270000000001,10.63775,10.84264,11.033750000000001,11.206769999999999,11.36863,11.515799999999999,11.648959999999999,11.75465,11.8341,11.89522,11.943249999999999,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,forest (unmanaged),63.76333000000001,62.29711,62.06499,61.98924,61.611360000000005,61.23593,60.884100000000004,60.42309,60.07927,59.8082,59.619890000000005,59.50231,59.43902,59.43603,59.4391,59.475,59.531290000000006,59.65558,59.811350000000004,59.986900000000006,60.166070000000005,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,grass,0.1865911,0.16207549999999998,0.16446670000000002,0.16391160000000002,0.16246750000000001,0.161081,0.1598073,0.1583282,0.15722681000000002,0.15635774000000002,0.15573658,0.15536728000000002,0.15514434000000002,0.15507967,0.15503202000000002,0.15506966000000003,0.15515997,0.15542493000000002,0.15577394,0.15617701,0.15659226,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,otherarable,0.0,0.238164,0.307957,0.297601,0.277318,0.25734,0.238364,0.217145,0.200258,0.18622,0.175545,0.169275,0.165169,0.163464,0.162094,0.162034,0.162799,0.166116,0.170624,0.175811,0.181085,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,pasture (grazed),0.37231400000000003,0.294221,0.30378,0.318876,0.329947,0.33876,0.34428000000000003,0.34336,0.3387,0.33039799999999997,0.319136,0.301725,0.283411,0.26469699999999996,0.2454712,0.2263553,0.20753090000000002,0.18949680000000002,0.17210799999999998,0.1555329,0.1388119,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,pasture (other),0.06570256,0.05192155,0.05360811,0.053312109999999996,0.052697350000000004,0.052144869999999996,0.05167436,0.05116144,0.050808589,0.050553697,0.050394107,0.050332893000000004,0.050327919,0.05038676,0.050462093,0.050581509999999996,0.050737153,0.05098746,0.05130586,0.051687460000000005,0.05213305,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,shrubs,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,tundra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,urban,1.623478,1.804208,1.8576899999999998,1.8576899999999998,1.8576899999999998,1.8576899999999998,1.8576899999999998,1.8576899999999998,1.8576899999999998,1.8576899999999998,1.8576899999999998,1.8576899999999998,1.8576899999999998,1.8576899999999998,1.8576899999999998,1.8576899999999998,1.8576899999999998,1.8576899999999998,1.8576899999999998,1.8576899999999998,1.8576899999999998,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,biomass,0.0,0.0,0.0,0.0,0.6462027570000001,1.2800470359999998,2.171362139,3.1107422529999997,3.480792802,3.8412818570000002,4.240316794,4.718424972999999,5.24654692,5.769794480000001,6.626820449999999,7.49427725,8.46577775,9.186395580000001,9.902836370000001,10.573679550000001,11.37957428,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,crops,514.4861780999994,589.3579892000001,637.8237312000001,636.2128229359998,646.4286565179996,656.2431960719999,664.0737026550005,680.684244667,693.8627372010001,703.6171155549998,709.6003959669998,710.2058449819995,708.880381961,705.4532544299997,701.3994389129996,696.8050132269994,691.7761123889998,684.938678447,677.1645484300001,669.2862904410002,661.723866745,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,desert,0.4736614,0.3941989,0.3623491,0.3623491,0.3623491,0.3623491,0.3623491,0.3623491,0.3623491,0.3623491,0.3623491,0.3623491,0.3623491,0.3623491,0.3623491,0.3623491,0.3623491,0.3623491,0.3623491,0.3623491,0.3623491,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,forest (managed),123.782485,116.7250141,115.0299441,119.3331192,123.0666977,126.43813709999999,129.87267269999998,129.73963999999998,129.130436,128.77181,128.881708,131.23465199999998,133.828388,136.67871599999998,139.63717799999995,142.369856,144.947002,147.48629999999997,149.923705,152.010041,153.701931,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,forest (unmanaged),1949.3956369999999,1897.7646379999999,1856.481106,1849.7085359999999,1833.179379,1817.551925,1803.7693279999999,1786.147788,1772.6960926,1762.3119156,1754.9963409,1752.2849878,1751.0382712,1751.4145211,1752.0563664,1753.4074848999999,1755.2346140999998,1758.8210703999998,1763.3191932,1768.2676611,1773.2145194,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,grass,189.67791060000002,185.0987735,177.72368549999996,176.88433069999996,174.97717169999996,173.19785809999996,171.64495339999996,169.73299879999996,168.31137139999996,167.23495869999996,166.48741457999998,166.18767742999998,166.03444065999997,166.03988329999996,166.07127590999997,166.17251192999996,166.32130075999996,166.64322620999997,167.05848458999995,167.52411739999997,167.99517479999997,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,otherarable,37.048659099999995,6.723764899999999,6.707707300000001,6.44057085,5.92758096,5.434835250000001,4.986094799999999,4.458691460000001,4.0393197700000005,3.7011261900000005,3.45158833,3.3457858900000006,3.28868369,3.28583532,3.29183944,3.32454869,3.37473531,3.4827144300000006,3.61904662,3.76988589,3.9214645900000002,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,pasture (grazed),29.521648399999997,29.894541199999995,36.086011199999994,41.6715431,46.619880499999994,51.20502099999999,55.242727699999996,58.3205981,60.98573310000001,63.257448499999995,65.2353827,64.9732188,64.6628288,64.3345874,63.88486430000001,63.371618700000006,62.7905629,62.28295260000001,61.762432000000004,61.2173795,60.60602440000001,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,pasture (other),19.215946599999995,32.07098178,25.97963038,25.66404254,25.25127787,24.91408362,24.65012184,24.38666503,24.202230609999997,24.0694347,23.979436832999998,23.949172395999998,23.934514715,23.936599986,23.941946798,23.955729502,23.975495781,24.01435925,24.064425390999997,24.121768864,24.182109294,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,shrubs,17.001838499999998,17.16125258,16.63422507,16.550260079999997,16.368195099999998,16.20018149,16.05417167,15.8836342,15.75686531,15.66043527,15.59291304,15.56565863,15.55168786,15.5522511,15.55509019,15.56498695,15.57960866,15.61049893,15.65004385,15.69468146,15.7405295,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,tundra,0.981574,0.889825,0.959265,0.959265,0.959265,0.959265,0.959265,0.959265,0.959265,0.959265,0.959265,0.959265,0.959265,0.959265,0.959265,0.959265,0.959265,0.959265,0.959265,0.959265,0.959265,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,urban,8.793925100000001,14.2973624,16.5921788,16.5921788,16.5921788,16.5921788,16.5921788,16.5921788,16.5921788,16.5921788,16.5921788,16.5921788,16.5921788,16.5921788,16.5921788,16.5921788,16.5921788,16.5921788,16.5921788,16.5921788,16.5921788,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,biomass,0.0,0.0,0.0,0.0,22.66123,44.31442,74.16328000000001,102.84243,112.86943000000001,122.65466,130.99588,141.36796,152.1866,161.94313000000002,178.84865,195.3483,212.9332,224.35160000000002,235.0682,245.0916,257.6864,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,crops,1170.6209758999998,1203.9663361999997,1176.1074802,1158.9311607159993,1175.7877079319996,1194.421331917,1206.8083643639993,1229.149343914,1252.1163783320005,1268.2850019809991,1277.2420739949996,1274.588348426,1269.1723957850002,1259.9030303469997,1248.1666151929994,1235.2982809650002,1222.0931669199997,1206.703928203999,1190.374295683,1174.3419694240004,1157.7178822469998,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,desert,34.178445700000005,34.4579747,34.1181227,34.1181227,34.1181227,34.1181227,34.1181227,34.1181227,34.1181227,34.1181227,34.1181227,34.1181227,34.1181227,34.1181227,34.1181227,34.1181227,34.1181227,34.1181227,34.1181227,34.1181227,34.1181227,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,forest (managed),637.77328,571.41271,429.62475,457.29339,482.12025,505.77615000000003,527.04135,547.0803300000001,565.65229,582.32495,597.01825,606.90953,613.56188,617.8426899999998,618.9180200000001,618.01453,614.9581300000001,611.0556,605.5021499999999,598.6862600000001,590.6718500000001,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,forest (unmanaged),2345.4335300000002,2664.5117000000005,2833.8638700000006,2831.5286900000006,2812.7292300000004,2793.92156,2775.60681,2754.8900700000004,2739.31057,2726.62474,2717.3265400000005,2712.18055,2708.67351,2707.33615,2705.64757,2705.0119400000003,2704.8336700000004,2707.3659900000002,2710.88425,2714.87926,2718.65322,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,grass,588.5381490000001,376.53780299999994,392.29998000000006,391.744745,388.3839520000001,385.1589360000001,382.0968040000001,378.78819100000004,376.46358100000003,374.60685200000006,373.24140400000005,372.530002,372.05124900000004,371.8694030000001,371.6336790000001,371.5380390000001,371.4948100000001,371.81601700000004,372.27278000000007,372.80251300000003,373.307742,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,otherarable,685.0424689999999,559.003367,440.364944,434.960893,409.30656500000003,383.69208699999996,358.407337,330.01479299999994,308.79535799999996,291.18741930000004,277.94362000000007,270.59826580000004,265.53921840000004,263.4490288,260.87060280000003,259.7592665000001,259.28051990000006,262.5087330999999,267.1075082,272.3842063,277.37876760000006,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,pasture (grazed),52.723528699999996,9.085457700000003,19.615700299999993,20.564471199999996,21.1969389,21.879940199999997,22.472947600000005,23.000853099999997,23.541709500000003,24.0326853,24.484759200000003,24.8814713,25.229823399999997,25.524995899999997,25.7311202,25.8747863,25.927932699999996,25.9617963,25.907950199999995,25.8108382,25.6686305,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,pasture (other),2328.2256719999996,2330.380531,2450.0985049999995,2447.68045,2434.0712409999996,2420.586966,2406.9052119999997,2391.7956517,2381.3262013,2372.5386998,2365.7631945999997,2361.9752688999997,2359.3271253,2358.1861403,2356.6729816999996,2355.8920329999996,2355.3965674999995,2356.8217996,2358.9526545,2361.4488524,2363.7807563999995,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,shrubs,742.7980892999999,783.3026239000001,738.8099775000001,738.0809837,734.5266043,731.0337874,727.2829848,723.22222834,720.7085730000001,718.52936436,716.76857182,715.7533708000001,715.0430691800001,714.73072935,714.29441739,714.04712486,713.8670920600001,714.1983008300001,714.7139577300001,715.33871504,715.9189718900001,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,tundra,240.731956,240.7436154,240.67603309999998,240.67603309999998,240.67603309999998,240.67603309999998,240.67603309999998,240.67603309999998,240.67603309999998,240.67603309999998,240.67603309999998,240.67603309999998,240.67603309999998,240.67603309999998,240.67603309999998,240.67603309999998,240.67603309999998,240.67603309999998,240.67603309999998,240.67603309999998,240.67603309999998,thous km2, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,urban,116.3402092,168.99758419999998,186.829803,186.829803,186.829803,186.829803,186.829803,186.829803,186.829803,186.829803,186.829803,186.829803,186.829803,186.829803,186.829803,186.829803,186.829803,186.829803,186.829803,186.829803,186.829803,thous km2, Regional energy costs scenario,region,sector,1990,2005,2010,2015,2020,2025,2030,2035,2040,2045,2050,2055,2060,2065,2070,2075,2080,2085,2090,2095,2100,Units, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,electricity,6.89938,7.15629,10.1894,10.0835,9.6416,9.18847,8.7842,8.46789,8.2507,8.12556,8.0753,8.09294,8.14017,8.1633,8.19762,8.21006,8.19209,8.14468,8.10218,8.061,8.08449,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,nuclearFuelGenIII,0.181545,0.211038,0.220828,0.231419,0.242734,0.251386,0.260548,0.270421,0.28129,0.293081,0.305843,0.319585,0.334725,0.35115,0.365981,0.377209,0.389124,0.401623,0.414558,0.427744,0.440975,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,regional biomass,1.92552,1.95224,1.98083,2.00379,1.917,1.88241,1.85822,1.87633,1.95439,2.01189,2.0568,2.10289,2.14314,2.17108,2.19869,2.22478,2.24921,2.27162,2.28955,2.30246,2.32467,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,regional coal,0.585,0.588,0.65,0.654294,0.660046,0.667183,0.675705,0.685786,0.697847,0.711667,0.726665,0.742332,0.758521,0.774908,0.791305,0.807005,0.820881,0.831483,0.839345,0.842263,0.839338,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,regional natural gas,1.062,1.23,1.75,1.76257,1.77676,1.79409,1.81815,1.86063,1.92404,1.99495,2.07295,2.16225,2.24952,2.32856,2.39886,2.45859,2.49404,2.5041,2.51608,2.53006,2.5586,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,regional oil,1.52,1.789,3.428,3.48833,3.56285,3.65827,3.76726,3.86707,3.92543,3.95732,3.98177,4.00203,4.0152,4.02515,4.03545,4.04608,4.0564,4.05836,4.07773,4.16444,4.2621,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,electricity,5.88893,6.24946,6.91616,7.07429,7.05056,7.13192,7.09999,7.07434,7.06003,7.07095,7.09761,7.11656,7.13715,7.14647,7.1566,7.16438,7.15875,7.14607,7.13594,7.1194,7.10636,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,nuclearFuelGenIII,0.181545,0.211038,0.220828,0.231419,0.242734,0.251386,0.260548,0.270421,0.28129,0.293081,0.305843,0.319585,0.334725,0.35115,0.365981,0.377209,0.389124,0.401623,0.414558,0.427744,0.440975,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,regional biomass,1.92552,1.95224,1.98083,2.00379,1.917,1.88241,1.85822,1.87633,1.95439,2.01189,2.0568,2.10289,2.14314,2.17108,2.19869,2.22478,2.24921,2.27162,2.28955,2.30246,2.32467,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,regional coal,0.585,0.588,0.65,0.654294,0.660046,0.667183,0.675705,0.685786,0.697847,0.711667,0.726665,0.742332,0.758521,0.774908,0.791305,0.807005,0.820881,0.831483,0.839345,0.842263,0.839338,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,regional natural gas,1.062,1.23,1.75,1.76257,1.77676,1.79409,1.81815,1.86063,1.92404,1.99495,2.07295,2.16225,2.24952,2.32856,2.39886,2.45859,2.49404,2.5041,2.51608,2.53006,2.5586,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,regional oil,1.52,1.789,3.428,3.48833,3.56285,3.65827,3.76726,3.86707,3.92543,3.95732,3.98177,4.00203,4.0152,4.02515,4.03545,4.04608,4.0564,4.05836,4.07773,4.16444,4.2621,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,electricity,9.16995,8.23187,9.75579,9.18896,8.9843,8.81494,8.64261,8.51104,8.41727,8.35177,8.30498,8.27675,8.26468,8.22695,8.19362,8.14587,8.07287,7.97293,7.86413,7.74697,7.6924,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,nuclearFuelGenIII,0.181545,0.211038,0.220828,0.231419,0.242734,0.251386,0.260548,0.270421,0.28129,0.293081,0.305843,0.319585,0.334725,0.35115,0.365981,0.377209,0.389124,0.401623,0.414558,0.427744,0.440975,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,regional biomass,1.92552,1.95224,1.98083,2.00379,1.917,1.88241,1.85822,1.87633,1.95439,2.01189,2.0568,2.10289,2.14314,2.17108,2.19869,2.22478,2.24921,2.27162,2.28955,2.30246,2.32467,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,regional coal,0.585,0.588,0.65,0.654294,0.660046,0.667183,0.675705,0.685786,0.697847,0.711667,0.726665,0.742332,0.758521,0.774908,0.791305,0.807005,0.820881,0.831483,0.839345,0.842263,0.839338,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,regional natural gas,1.062,1.23,1.75,1.76257,1.77676,1.79409,1.81815,1.86063,1.92404,1.99495,2.07295,2.16225,2.24952,2.32856,2.39886,2.45859,2.49404,2.5041,2.51608,2.53006,2.5586,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,regional oil,1.52789,1.80539,3.44192,3.50116,3.57446,3.66751,3.77217,3.86687,3.92231,3.95221,3.97641,3.99703,4.01113,4.02211,4.03338,4.04486,4.05573,4.05788,4.07741,4.16282,4.25826,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,electricity,7.43553,7.38994,8.20962,8.29907,8.22543,8.27337,8.20415,8.12762,8.02211,7.95508,7.91311,7.89018,7.87514,7.84984,7.82671,7.79955,7.76262,7.72237,7.68302,7.64056,7.60288,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,nuclearFuelGenIII,0.181545,0.211038,0.220828,0.231419,0.242734,0.251386,0.260548,0.270421,0.28129,0.293081,0.305843,0.319585,0.334725,0.35115,0.365981,0.377209,0.389124,0.401623,0.414558,0.427744,0.440975,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,regional biomass,1.92552,1.95224,1.98083,2.00379,1.917,1.88241,1.85822,1.87633,1.95439,2.01189,2.0568,2.10289,2.14314,2.17108,2.19869,2.22478,2.24921,2.27162,2.28955,2.30246,2.32467,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,regional coal,0.585,0.588,0.65,0.654294,0.660046,0.667183,0.675705,0.685786,0.697847,0.711667,0.726665,0.742332,0.758521,0.774908,0.791305,0.807005,0.820881,0.831483,0.839345,0.842263,0.839338,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,regional natural gas,1.062,1.23,1.75,1.76257,1.77676,1.79409,1.81815,1.86063,1.92404,1.99495,2.07295,2.16225,2.24952,2.32856,2.39886,2.45859,2.49404,2.5041,2.51608,2.53006,2.5586,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,regional oil,1.54844,1.85973,3.50372,3.55729,3.62419,3.70599,3.7918,3.86613,3.91047,3.93287,3.95595,3.97762,3.99493,4.0097,4.02468,4.03958,4.05274,4.0557,4.07588,4.15507,4.24057,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,electricity,6.52487,6.60541,6.767,7.07431,7.16343,7.37291,7.43415,7.49248,7.55208,7.60972,7.66535,7.68177,7.70085,7.71312,7.72441,7.74224,7.76445,7.77137,7.77155,7.7513,7.71051,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,nuclearFuelGenIII,0.181545,0.211038,0.220828,0.231419,0.242734,0.251386,0.260548,0.270421,0.28129,0.293081,0.305843,0.319585,0.334725,0.35115,0.365981,0.377209,0.389124,0.401623,0.414558,0.427744,0.440975,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,regional biomass,1.92552,1.95224,1.98083,2.00379,1.917,1.88241,1.85822,1.87633,1.95439,2.01189,2.0568,2.10289,2.14314,2.17108,2.19869,2.22478,2.24921,2.27162,2.28955,2.30246,2.32467,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,regional coal,0.585,0.588,0.65,0.654294,0.660046,0.667183,0.675705,0.685786,0.697847,0.711667,0.726665,0.742332,0.758521,0.774908,0.791305,0.807005,0.820881,0.831483,0.839345,0.842263,0.839338,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,regional natural gas,1.062,1.23,1.75,1.76257,1.77676,1.79409,1.81815,1.86063,1.92404,1.99495,2.07295,2.16225,2.24952,2.32856,2.39886,2.45859,2.49404,2.5041,2.51608,2.53006,2.5586,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,regional oil,1.52222,1.79162,3.42998,3.49016,3.56451,3.6596,3.76797,3.86704,3.92497,3.95658,3.98099,4.0013,4.01461,4.02472,4.03515,4.04591,4.05631,4.05829,4.07769,4.16421,4.26156,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,electricity,7.22488,7.31835,8.01967,7.91607,7.84207,7.8951,7.83154,7.77517,7.72701,7.70001,7.69318,7.69952,7.71491,7.71916,7.72399,7.72978,7.72275,7.70506,7.6913,7.66966,7.65367,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,nuclearFuelGenIII,0.181545,0.211038,0.220828,0.231419,0.242734,0.251386,0.260548,0.270421,0.28129,0.293081,0.305843,0.319585,0.334725,0.35115,0.365981,0.377209,0.389124,0.401623,0.414558,0.427744,0.440975,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,regional biomass,1.92552,1.95224,1.98083,2.00379,1.917,1.88241,1.85822,1.87633,1.95439,2.01189,2.0568,2.10289,2.14314,2.17108,2.19869,2.22478,2.24921,2.27162,2.28955,2.30246,2.32467,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,regional coal,0.585,0.588,0.65,0.654294,0.660046,0.667183,0.675705,0.685786,0.697847,0.711667,0.726665,0.742332,0.758521,0.774908,0.791305,0.807005,0.820881,0.831483,0.839345,0.842263,0.839338,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,regional natural gas,1.062,1.23,1.75,1.76257,1.77676,1.79409,1.81815,1.86063,1.92404,1.99495,2.07295,2.16225,2.24952,2.32856,2.39886,2.45859,2.49404,2.5041,2.51608,2.53006,2.5586,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,regional oil,1.52,1.789,3.428,3.48833,3.56285,3.65827,3.76726,3.86707,3.92543,3.95732,3.98177,4.00203,4.0152,4.02515,4.03545,4.04608,4.0564,4.05836,4.07773,4.16444,4.2621,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,electricity,7.27701,7.25587,8.27052,8.36019,8.30837,8.30848,8.25433,8.20517,8.16063,8.14765,8.15068,8.1511,8.15477,8.13987,8.12315,8.09729,8.05317,8.00437,7.95468,7.90214,7.85261,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,nuclearFuelGenIII,0.181545,0.211038,0.220828,0.231419,0.242734,0.251386,0.260548,0.270421,0.28129,0.293081,0.305843,0.319585,0.334725,0.35115,0.365981,0.377209,0.389124,0.401623,0.414558,0.427744,0.440975,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,regional biomass,1.92552,1.95224,1.98083,2.00379,1.917,1.88241,1.85822,1.87633,1.95439,2.01189,2.0568,2.10289,2.14314,2.17108,2.19869,2.22478,2.24921,2.27162,2.28955,2.30246,2.32467,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,regional coal,0.585,0.588,0.65,0.654294,0.660046,0.667183,0.675705,0.685786,0.697847,0.711667,0.726665,0.742332,0.758521,0.774908,0.791305,0.807005,0.820881,0.831483,0.839345,0.842263,0.839338,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,regional natural gas,1.062,1.23,1.75,1.76257,1.77676,1.79409,1.81815,1.86063,1.92404,1.99495,2.07295,2.16225,2.24952,2.32856,2.39886,2.45859,2.49404,2.5041,2.51608,2.53006,2.5586,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,regional oil,1.52053,1.7905,3.42969,3.48989,3.56427,3.6594,3.76787,3.86704,3.92504,3.95669,3.9811,4.00141,4.0147,4.02478,4.03519,4.04593,4.05632,4.0583,4.07769,4.16424,4.26164,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,electricity,6.58128,6.87867,7.78959,7.92588,7.86678,7.93288,7.85255,7.78026,7.72615,7.69335,7.68059,7.68259,7.69718,7.70619,7.71775,7.71935,7.72038,7.70831,7.69689,7.67472,7.67725,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,nuclearFuelGenIII,0.181545,0.211038,0.220828,0.231419,0.242734,0.251386,0.260548,0.270421,0.28129,0.293081,0.305843,0.319585,0.334725,0.35115,0.365981,0.377209,0.389124,0.401623,0.414558,0.427744,0.440975,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,regional biomass,1.92552,1.95224,1.98083,2.00379,1.917,1.88241,1.85822,1.87633,1.95439,2.01189,2.0568,2.10289,2.14314,2.17108,2.19869,2.22478,2.24921,2.27162,2.28955,2.30246,2.32467,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,regional coal,0.585,0.588,0.65,0.654294,0.660046,0.667183,0.675705,0.685786,0.697847,0.711667,0.726665,0.742332,0.758521,0.774908,0.791305,0.807005,0.820881,0.831483,0.839345,0.842263,0.839338,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,regional natural gas,1.062,1.23,1.75,1.76257,1.77676,1.79409,1.81815,1.86063,1.92404,1.99495,2.07295,2.16225,2.24952,2.32856,2.39886,2.45859,2.49404,2.5041,2.51608,2.53006,2.5586,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,regional oil,1.52,1.789,3.428,3.48833,3.56285,3.65827,3.76726,3.86707,3.92543,3.95732,3.98177,4.00203,4.0152,4.02515,4.03545,4.04608,4.0564,4.05836,4.07773,4.16444,4.2621,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,electricity,7.89651,7.28096,8.85839,8.74887,8.57952,8.5092,8.32258,8.15441,8.02443,7.93786,7.88803,7.86973,7.87093,7.86149,7.85867,7.84683,7.81962,7.77185,7.73011,7.67891,7.68467,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,nuclearFuelGenIII,0.181545,0.211038,0.220828,0.231419,0.242734,0.251386,0.260548,0.270421,0.28129,0.293081,0.305843,0.319585,0.334725,0.35115,0.365981,0.377209,0.389124,0.401623,0.414558,0.427744,0.440975,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,regional biomass,1.92552,1.95224,1.98083,2.00379,1.917,1.88241,1.85822,1.87633,1.95439,2.01189,2.0568,2.10289,2.14314,2.17108,2.19869,2.22478,2.24921,2.27162,2.28955,2.30246,2.32467,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,regional coal,0.585,0.588,0.65,0.654294,0.660046,0.667183,0.675705,0.685786,0.697847,0.711667,0.726665,0.742332,0.758521,0.774908,0.791305,0.807005,0.820881,0.831483,0.839345,0.842263,0.839338,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,regional natural gas,1.062,1.23,1.75,1.76257,1.77676,1.79409,1.81815,1.86063,1.92404,1.99495,2.07295,2.16225,2.24952,2.32856,2.39886,2.45859,2.49404,2.5041,2.51608,2.53006,2.5586,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,regional oil,1.52179,1.79205,3.4308,3.49092,3.5652,3.66015,3.76826,3.86703,3.92479,3.95627,3.98067,4.001,4.01437,4.02453,4.03503,4.04583,4.05627,4.05826,4.07767,4.16411,4.26133,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,electricity,7.02714,7.0375,7.7818,6.93548,6.87853,7.06402,7.17317,7.28387,7.29832,7.32976,7.36903,7.42024,7.48142,7.51558,7.54686,7.56664,7.56299,7.53945,7.51527,7.49225,7.48683,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,nuclearFuelGenIII,0.181545,0.211038,0.220828,0.231419,0.242734,0.251386,0.260548,0.270421,0.28129,0.293081,0.305843,0.319585,0.334725,0.35115,0.365981,0.377209,0.389124,0.401623,0.414558,0.427744,0.440975,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,regional biomass,1.92552,1.95224,1.98083,2.00379,1.917,1.88241,1.85822,1.87633,1.95439,2.01189,2.0568,2.10289,2.14314,2.17108,2.19869,2.22478,2.24921,2.27162,2.28955,2.30246,2.32467,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,regional coal,0.585,0.588,0.65,0.654294,0.660046,0.667183,0.675705,0.685786,0.697847,0.711667,0.726665,0.742332,0.758521,0.774908,0.791305,0.807005,0.820881,0.831483,0.839345,0.842263,0.839338,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,regional natural gas,1.062,1.23,1.75,1.76257,1.77676,1.79409,1.81815,1.86063,1.92404,1.99495,2.07295,2.16225,2.24952,2.32856,2.39886,2.45859,2.49404,2.5041,2.51608,2.53006,2.5586,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,regional oil,1.52,1.789,3.428,3.48833,3.56285,3.65827,3.76726,3.86707,3.92543,3.95732,3.98177,4.00203,4.0152,4.02515,4.03545,4.04608,4.0564,4.05836,4.07773,4.16444,4.2621,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,electricity,7.70821,7.43847,10.8126,10.5179,10.0972,9.61405,9.16823,8.79986,8.53313,8.36443,8.26948,8.23825,8.24424,8.24557,8.26979,8.27306,8.238,8.16572,8.09524,8.02541,8.05534,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,nuclearFuelGenIII,0.181545,0.211038,0.220828,0.231419,0.242734,0.251386,0.260548,0.270421,0.28129,0.293081,0.305843,0.319585,0.334725,0.35115,0.365981,0.377209,0.389124,0.401623,0.414558,0.427744,0.440975,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,regional biomass,1.92552,1.95224,1.98083,2.00379,1.917,1.88241,1.85822,1.87633,1.95439,2.01189,2.0568,2.10289,2.14314,2.17108,2.19869,2.22478,2.24921,2.27162,2.28955,2.30246,2.32467,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,regional coal,0.585,0.588,0.65,0.654294,0.660046,0.667183,0.675705,0.685786,0.697847,0.711667,0.726665,0.742332,0.758521,0.774908,0.791305,0.807005,0.820881,0.831483,0.839345,0.842263,0.839338,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,regional natural gas,1.062,1.23,1.75,1.76257,1.77676,1.79409,1.81815,1.86063,1.92404,1.99495,2.07295,2.16225,2.24952,2.32856,2.39886,2.45859,2.49404,2.5041,2.51608,2.53006,2.5586,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,regional oil,1.52,1.789,3.428,3.48833,3.56285,3.65827,3.76726,3.86707,3.92543,3.95732,3.98177,4.00203,4.0152,4.02515,4.03545,4.04608,4.0564,4.05836,4.07773,4.16444,4.2621,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,electricity,7.67958,7.11201,8.07618,8.0775,7.91424,7.88036,7.78845,7.71611,7.62168,7.5878,7.60048,7.65585,7.73045,7.78357,7.83716,7.87136,7.87902,7.86734,7.85615,7.83944,7.83304,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,nuclearFuelGenIII,0.181545,0.211038,0.220828,0.231419,0.242734,0.251386,0.260548,0.270421,0.28129,0.293081,0.305843,0.319585,0.334725,0.35115,0.365981,0.377209,0.389124,0.401623,0.414558,0.427744,0.440975,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,regional biomass,1.92552,1.95224,1.98083,2.00379,1.917,1.88241,1.85822,1.87633,1.95439,2.01189,2.0568,2.10289,2.14314,2.17108,2.19869,2.22478,2.24921,2.27162,2.28955,2.30246,2.32467,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,regional coal,0.585,0.588,0.65,0.654294,0.660046,0.667183,0.675705,0.685786,0.697847,0.711667,0.726665,0.742332,0.758521,0.774908,0.791305,0.807005,0.820881,0.831483,0.839345,0.842263,0.839338,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,regional natural gas,1.062,1.23,1.75,1.76257,1.77676,1.79409,1.81815,1.86063,1.92404,1.99495,2.07295,2.16225,2.24952,2.32856,2.39886,2.45859,2.49404,2.5041,2.51608,2.53006,2.5586,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,regional oil,1.52,1.789,3.428,3.48833,3.56285,3.65827,3.76726,3.86707,3.92543,3.95732,3.98177,4.00203,4.0152,4.02515,4.03545,4.04608,4.0564,4.05836,4.07773,4.16444,4.2621,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,electricity,8.05451,7.30041,7.60394,7.71294,7.53671,7.6285,7.64883,7.68361,7.68254,7.69388,7.71209,7.75279,7.79892,7.83003,7.85785,7.87629,7.88086,7.86733,7.85695,7.8374,7.81914,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,nuclearFuelGenIII,0.181545,0.211038,0.220828,0.231419,0.242734,0.251386,0.260548,0.270421,0.28129,0.293081,0.305843,0.319585,0.334725,0.35115,0.365981,0.377209,0.389124,0.401623,0.414558,0.427744,0.440975,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,regional biomass,1.92552,1.95224,1.98083,2.00379,1.917,1.88241,1.85822,1.87633,1.95439,2.01189,2.0568,2.10289,2.14314,2.17108,2.19869,2.22478,2.24921,2.27162,2.28955,2.30246,2.32467,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,regional coal,0.585,0.588,0.65,0.654294,0.660046,0.667183,0.675705,0.685786,0.697847,0.711667,0.726665,0.742332,0.758521,0.774908,0.791305,0.807005,0.820881,0.831483,0.839345,0.842263,0.839338,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,regional natural gas,1.062,1.23,1.75,1.76257,1.77676,1.79409,1.81815,1.86063,1.92404,1.99495,2.07295,2.16225,2.24952,2.32856,2.39886,2.45859,2.49404,2.5041,2.51608,2.53006,2.5586,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,regional oil,1.52,1.789,3.428,3.48833,3.56285,3.65827,3.76726,3.86707,3.92543,3.95732,3.98177,4.00203,4.0152,4.02515,4.03545,4.04608,4.0564,4.05836,4.07773,4.16444,4.2621,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,electricity,7.56163,6.02046,7.15295,7.32502,7.26576,7.25476,7.19312,7.1424,7.11852,7.13155,7.17556,7.25172,7.347,7.42078,7.50131,7.56043,7.58884,7.58422,7.58482,7.57829,7.5971,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,nuclearFuelGenIII,0.181545,0.211038,0.220828,0.231419,0.242734,0.251386,0.260548,0.270421,0.28129,0.293081,0.305843,0.319585,0.334725,0.35115,0.365981,0.377209,0.389124,0.401623,0.414558,0.427744,0.440975,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,regional biomass,1.92552,1.95224,1.98083,2.00379,1.917,1.88241,1.85822,1.87633,1.95439,2.01189,2.0568,2.10289,2.14314,2.17108,2.19869,2.22478,2.24921,2.27162,2.28955,2.30246,2.32467,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,regional coal,0.585,0.588,0.65,0.654294,0.660046,0.667183,0.675705,0.685786,0.697847,0.711667,0.726665,0.742332,0.758521,0.774908,0.791305,0.807005,0.820881,0.831483,0.839345,0.842263,0.839338,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,regional natural gas,1.062,1.23,1.75,1.76257,1.77676,1.79409,1.81815,1.86063,1.92404,1.99495,2.07295,2.16225,2.24952,2.32856,2.39886,2.45859,2.49404,2.5041,2.51608,2.53006,2.5586,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,regional oil,1.5225,1.79294,3.43111,3.4912,3.56546,3.66035,3.76837,3.86702,3.92472,3.95615,3.98055,4.00089,4.01428,4.02447,4.03498,4.04581,4.05626,4.05825,4.07766,4.16408,4.26125,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,electricity,6.67054,6.77579,7.33817,7.05647,7.03602,7.12677,7.15356,7.19834,7.22994,7.27525,7.32604,7.38126,7.43859,7.47519,7.50974,7.53625,7.54314,7.53568,7.52845,7.51055,7.49673,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,nuclearFuelGenIII,0.181545,0.211038,0.220828,0.231419,0.242734,0.251386,0.260548,0.270421,0.28129,0.293081,0.305843,0.319585,0.334725,0.35115,0.365981,0.377209,0.389124,0.401623,0.414558,0.427744,0.440975,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,regional biomass,1.92552,1.95224,1.98083,2.00379,1.917,1.88241,1.85822,1.87633,1.95439,2.01189,2.0568,2.10289,2.14314,2.17108,2.19869,2.22478,2.24921,2.27162,2.28955,2.30246,2.32467,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,regional coal,0.585,0.588,0.65,0.654294,0.660046,0.667183,0.675705,0.685786,0.697847,0.711667,0.726665,0.742332,0.758521,0.774908,0.791305,0.807005,0.820881,0.831483,0.839345,0.842263,0.839338,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,regional natural gas,1.062,1.23,1.75,1.76257,1.77676,1.79409,1.81815,1.86063,1.92404,1.99495,2.07295,2.16225,2.24952,2.32856,2.39886,2.45859,2.49404,2.5041,2.51608,2.53006,2.5586,1975$/GJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,regional oil,1.53037,1.81706,3.46005,3.51777,3.58935,3.67922,3.77828,3.86664,3.91852,3.94601,3.96989,3.99089,4.00607,4.01829,4.03075,4.04329,4.05486,4.05726,4.07697,4.16064,4.25318,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,electricity,6.89902,7.1749,10.2119,10.0874,9.62627,9.19373,8.79856,8.46859,8.22566,8.06378,7.96299,7.90545,7.9024,7.8933,7.90092,7.91144,7.95745,7.93839,7.92499,7.91385,7.99572,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,nuclearFuelGenIII,0.181545,0.211038,0.220828,0.231272,0.242588,0.251486,0.260994,0.27127,0.282523,0.29464,0.30761,0.321446,0.3365,0.352731,0.366752,0.377786,0.389537,0.401641,0.414036,0.426542,0.438979,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,regional biomass,1.91897,1.95077,1.97791,1.99563,1.98116,1.98279,1.97898,1.98909,2.03665,2.083,2.12396,2.16631,2.20606,2.23642,2.28774,2.33286,2.37984,2.39995,2.41337,2.42144,2.43515,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,regional coal,0.585,0.588,0.65,0.6542,0.659721,0.666245,0.673375,0.680688,0.688057,0.695277,0.702215,0.708843,0.715355,0.721662,0.727725,0.733002,0.73789,0.742103,0.745664,0.748198,0.749196,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,regional natural gas,1.062,1.23,1.75,1.76112,1.77338,1.78826,1.80792,1.8384,1.88979,1.94579,2.00659,2.0729,2.14835,2.22256,2.29299,2.36086,2.42655,2.4656,2.48598,2.51435,2.55863,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,regional oil,1.52,1.789,3.428,3.48757,3.5632,3.66655,3.79227,3.91581,3.98961,4.05563,4.11168,4.15343,4.19049,4.22564,4.25883,4.36271,4.78524,4.56808,4.70253,4.82687,4.9454,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,electricity,5.89422,6.25924,6.93138,7.09132,7.06387,7.14263,7.10641,7.07061,7.04747,7.03866,7.04017,7.03287,7.03628,7.03114,7.02547,7.02275,7.01504,6.99784,6.97924,6.95785,6.95578,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,nuclearFuelGenIII,0.181545,0.211038,0.220828,0.231272,0.242588,0.251486,0.260994,0.27127,0.282523,0.29464,0.30761,0.321446,0.3365,0.352731,0.366752,0.377786,0.389537,0.401641,0.414036,0.426542,0.438979,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,regional biomass,1.91897,1.95077,1.97791,1.99563,1.98116,1.98279,1.97898,1.98909,2.03665,2.083,2.12396,2.16631,2.20606,2.23642,2.28774,2.33286,2.37984,2.39995,2.41337,2.42144,2.43515,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,regional coal,0.585,0.588,0.65,0.6542,0.659721,0.666245,0.673375,0.680688,0.688057,0.695277,0.702215,0.708843,0.715355,0.721662,0.727725,0.733002,0.73789,0.742103,0.745664,0.748198,0.749196,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,regional natural gas,1.062,1.23,1.75,1.76112,1.77338,1.78826,1.80792,1.8384,1.88979,1.94579,2.00659,2.0729,2.14835,2.22256,2.29299,2.36086,2.42655,2.4656,2.48598,2.51435,2.55863,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,regional oil,1.52,1.789,3.428,3.48757,3.5632,3.66655,3.79227,3.91581,3.98961,4.05563,4.11168,4.15343,4.19049,4.22564,4.25883,4.36271,4.78524,4.56808,4.70253,4.82687,4.9454,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,electricity,9.34527,8.30973,9.88049,9.354,9.11752,8.93185,8.74406,8.58925,8.47056,8.37697,8.29605,8.22116,8.17164,8.10221,8.04243,7.98006,7.92562,7.80786,7.68487,7.55946,7.52833,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,nuclearFuelGenIII,0.181545,0.211038,0.220828,0.231272,0.242588,0.251486,0.260994,0.27127,0.282523,0.29464,0.30761,0.321446,0.3365,0.352731,0.366752,0.377786,0.389537,0.401641,0.414036,0.426542,0.438979,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,regional biomass,1.91897,1.95077,1.97791,1.99563,1.98116,1.98279,1.97898,1.98909,2.03665,2.083,2.12396,2.16631,2.20606,2.23642,2.28774,2.33286,2.37984,2.39995,2.41337,2.42144,2.43515,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,regional coal,0.585,0.588,0.65,0.6542,0.659721,0.666245,0.673375,0.680688,0.688057,0.695277,0.702215,0.708843,0.715355,0.721662,0.727725,0.733002,0.73789,0.742103,0.745664,0.748198,0.749196,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,regional natural gas,1.062,1.23,1.75,1.76112,1.77338,1.78826,1.80792,1.8384,1.88979,1.94579,2.00659,2.0729,2.14835,2.22256,2.29299,2.36086,2.42655,2.4656,2.48598,2.51435,2.55863,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,regional oil,1.52808,1.80727,3.44452,3.50268,3.57714,3.67815,3.79974,3.918,3.98909,4.05306,4.10806,4.15002,4.18782,4.22409,4.25845,4.36053,4.7577,4.56808,4.70253,4.82687,4.9454,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,electricity,7.43776,7.39684,8.21946,8.3121,8.23466,8.2773,8.19762,8.1144,8.00376,7.92513,7.87023,7.83266,7.81162,7.78619,7.76432,7.74062,7.71712,7.68577,7.64527,7.60678,7.57927,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,nuclearFuelGenIII,0.181545,0.211038,0.220828,0.231272,0.242588,0.251486,0.260994,0.27127,0.282523,0.29464,0.30761,0.321446,0.3365,0.352731,0.366752,0.377786,0.389537,0.401641,0.414036,0.426542,0.438979,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,regional biomass,1.91897,1.95077,1.97791,1.99563,1.98116,1.98279,1.97898,1.98909,2.03665,2.083,2.12396,2.16631,2.20606,2.23642,2.28774,2.33286,2.37984,2.39995,2.41337,2.42144,2.43515,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,regional coal,0.585,0.588,0.65,0.6542,0.659721,0.666245,0.673375,0.680688,0.688057,0.695277,0.702215,0.708843,0.715355,0.721662,0.727725,0.733002,0.73789,0.742103,0.745664,0.748198,0.749196,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,regional natural gas,1.062,1.23,1.75,1.76112,1.77338,1.78826,1.80792,1.8384,1.88979,1.94579,2.00659,2.0729,2.14835,2.22256,2.29299,2.36086,2.42655,2.4656,2.48598,2.51435,2.55863,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,regional oil,1.54913,1.86786,3.51785,3.56808,3.63618,3.72573,3.8291,3.92629,3.98717,4.04349,4.09452,4.13703,4.17744,4.21784,4.25689,4.35133,4.66056,4.56808,4.70253,4.82687,4.9454,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,electricity,6.53004,6.61923,6.78644,7.09978,7.18763,7.39553,7.45505,7.50805,7.55748,7.59799,7.63186,7.61985,7.60892,7.59098,7.5689,7.55832,7.55897,7.55437,7.54824,7.52043,7.44634,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,nuclearFuelGenIII,0.181545,0.211038,0.220828,0.231272,0.242588,0.251486,0.260994,0.27127,0.282523,0.29464,0.30761,0.321446,0.3365,0.352731,0.366752,0.377786,0.389537,0.401641,0.414036,0.426542,0.438979,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,regional biomass,1.91897,1.95077,1.97791,1.99563,1.98116,1.98279,1.97898,1.98909,2.03665,2.083,2.12396,2.16631,2.20606,2.23642,2.28774,2.33286,2.37984,2.39995,2.41337,2.42144,2.43515,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,regional coal,0.585,0.588,0.65,0.6542,0.659721,0.666245,0.673375,0.680688,0.688057,0.695277,0.702215,0.708843,0.715355,0.721662,0.727725,0.733002,0.73789,0.742103,0.745664,0.748198,0.749196,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,regional natural gas,1.062,1.23,1.75,1.76112,1.77338,1.78826,1.80792,1.8384,1.88979,1.94579,2.00659,2.0729,2.14835,2.22256,2.29299,2.36086,2.42655,2.4656,2.48598,2.51435,2.55863,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,regional oil,1.52228,1.79192,3.43035,3.48973,3.5652,3.66822,3.79336,3.91613,3.98953,4.05526,4.11115,4.15293,4.1901,4.22542,4.25877,4.3624,4.78116,4.56808,4.70253,4.82687,4.9454,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,electricity,7.23616,7.32252,8.03412,7.95751,7.87981,7.93252,7.86637,7.80394,7.74675,7.70496,7.67829,7.66097,7.65714,7.64515,7.63337,7.62437,7.61345,7.5884,7.56096,7.52651,7.50302,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,nuclearFuelGenIII,0.181545,0.211038,0.220828,0.231272,0.242588,0.251486,0.260994,0.27127,0.282523,0.29464,0.30761,0.321446,0.3365,0.352731,0.366752,0.377786,0.389537,0.401641,0.414036,0.426542,0.438979,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,regional biomass,1.91897,1.95077,1.97791,1.99563,1.98116,1.98279,1.97898,1.98909,2.03665,2.083,2.12396,2.16631,2.20606,2.23642,2.28774,2.33286,2.37984,2.39995,2.41337,2.42144,2.43515,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,regional coal,0.585,0.588,0.65,0.6542,0.659721,0.666245,0.673375,0.680688,0.688057,0.695277,0.702215,0.708843,0.715355,0.721662,0.727725,0.733002,0.73789,0.742103,0.745664,0.748198,0.749196,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,regional natural gas,1.062,1.23,1.75,1.76112,1.77338,1.78826,1.80792,1.8384,1.88979,1.94579,2.00659,2.0729,2.14835,2.22256,2.29299,2.36086,2.42655,2.4656,2.48598,2.51435,2.55863,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,regional oil,1.52,1.789,3.428,3.48757,3.5632,3.66655,3.79227,3.91581,3.98961,4.05563,4.11168,4.15343,4.19049,4.22564,4.25883,4.36271,4.78524,4.56808,4.70253,4.82687,4.9454,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,electricity,7.28024,7.27537,8.32057,8.43896,8.3919,8.39702,8.34452,8.29145,8.24747,8.23112,8.22646,8.21436,8.21566,8.2024,8.18049,8.15389,8.12552,8.06978,7.99779,7.91388,7.82606,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,nuclearFuelGenIII,0.181545,0.211038,0.220828,0.231272,0.242588,0.251486,0.260994,0.27127,0.282523,0.29464,0.30761,0.321446,0.3365,0.352731,0.366752,0.377786,0.389537,0.401641,0.414036,0.426542,0.438979,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,regional biomass,1.91897,1.95077,1.97791,1.99563,1.98116,1.98279,1.97898,1.98909,2.03665,2.083,2.12396,2.16631,2.20606,2.23642,2.28774,2.33286,2.37984,2.39995,2.41337,2.42144,2.43515,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,regional coal,0.585,0.588,0.65,0.6542,0.659721,0.666245,0.673375,0.680688,0.688057,0.695277,0.702215,0.708843,0.715355,0.721662,0.727725,0.733002,0.73789,0.742103,0.745664,0.748198,0.749196,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,regional natural gas,1.062,1.23,1.75,1.76112,1.77338,1.78826,1.80792,1.8384,1.88979,1.94579,2.00659,2.0729,2.14835,2.22256,2.29299,2.36086,2.42655,2.4656,2.48598,2.51435,2.55863,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,regional oil,1.52054,1.79067,3.43,3.48941,3.5649,3.66798,3.7932,3.91609,3.98954,4.05531,4.11123,4.153,4.19016,4.22545,4.25878,4.36245,4.78176,4.56808,4.70253,4.82687,4.9454,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,electricity,6.58128,6.87937,7.79043,7.93668,7.86572,7.92003,7.8332,7.75017,7.68165,7.6282,7.59058,7.56188,7.55027,7.53516,7.52337,7.50375,7.4859,7.47601,7.44701,7.42238,7.43238,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,nuclearFuelGenIII,0.181545,0.211038,0.220828,0.231272,0.242588,0.251486,0.260994,0.27127,0.282523,0.29464,0.30761,0.321446,0.3365,0.352731,0.366752,0.377786,0.389537,0.401641,0.414036,0.426542,0.438979,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,regional biomass,1.91897,1.95077,1.97791,1.99563,1.98116,1.98279,1.97898,1.98909,2.03665,2.083,2.12396,2.16631,2.20606,2.23642,2.28774,2.33286,2.37984,2.39995,2.41337,2.42144,2.43515,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,regional coal,0.585,0.588,0.65,0.6542,0.659721,0.666245,0.673375,0.680688,0.688057,0.695277,0.702215,0.708843,0.715355,0.721662,0.727725,0.733002,0.73789,0.742103,0.745664,0.748198,0.749196,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,regional natural gas,1.062,1.23,1.75,1.76112,1.77338,1.78826,1.80792,1.8384,1.88979,1.94579,2.00659,2.0729,2.14835,2.22256,2.29299,2.36086,2.42655,2.4656,2.48598,2.51435,2.55863,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,regional oil,1.52,1.789,3.428,3.48757,3.5632,3.66655,3.79227,3.91581,3.98961,4.05563,4.11168,4.15343,4.19049,4.22564,4.25883,4.36271,4.78524,4.56808,4.70253,4.82687,4.9454,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,electricity,7.89659,7.2813,8.85899,8.73785,8.56151,8.49175,8.30499,8.12658,7.97896,7.86912,7.7902,7.73515,7.71159,7.68272,7.663,7.64394,7.62713,7.58133,7.53097,7.48067,7.51132,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,nuclearFuelGenIII,0.181545,0.211038,0.220828,0.231272,0.242588,0.251486,0.260994,0.27127,0.282523,0.29464,0.30761,0.321446,0.3365,0.352731,0.366752,0.377786,0.389537,0.401641,0.414036,0.426542,0.438979,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,regional biomass,1.91897,1.95077,1.97791,1.99563,1.98116,1.98279,1.97898,1.98909,2.03665,2.083,2.12396,2.16631,2.20606,2.23642,2.28774,2.33286,2.37984,2.39995,2.41337,2.42144,2.43515,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,regional coal,0.585,0.588,0.65,0.6542,0.659721,0.666245,0.673375,0.680688,0.688057,0.695277,0.702215,0.708843,0.715355,0.721662,0.727725,0.733002,0.73789,0.742103,0.745664,0.748198,0.749196,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,regional natural gas,1.062,1.23,1.75,1.76112,1.77338,1.78826,1.80792,1.8384,1.88979,1.94579,2.00659,2.0729,2.14835,2.22256,2.29299,2.36086,2.42655,2.4656,2.48598,2.51435,2.55863,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,regional oil,1.52184,1.7924,3.43132,3.49062,3.56602,3.66891,3.7938,3.91627,3.9895,4.0551,4.11093,4.15273,4.18994,4.22533,4.25875,4.36227,4.77949,4.56808,4.70253,4.82687,4.9454,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,electricity,7.03646,7.04004,7.78104,6.93279,6.87204,7.04165,7.14049,7.23345,7.22951,7.23776,7.25034,7.26851,7.31068,7.33215,7.35555,7.37507,7.39128,7.38021,7.35605,7.33927,7.35219,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,nuclearFuelGenIII,0.181545,0.211038,0.220828,0.231272,0.242588,0.251486,0.260994,0.27127,0.282523,0.29464,0.30761,0.321446,0.3365,0.352731,0.366752,0.377786,0.389537,0.401641,0.414036,0.426542,0.438979,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,regional biomass,1.91897,1.95077,1.97791,1.99563,1.98116,1.98279,1.97898,1.98909,2.03665,2.083,2.12396,2.16631,2.20606,2.23642,2.28774,2.33286,2.37984,2.39995,2.41337,2.42144,2.43515,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,regional coal,0.585,0.588,0.65,0.6542,0.659721,0.666245,0.673375,0.680688,0.688057,0.695277,0.702215,0.708843,0.715355,0.721662,0.727725,0.733002,0.73789,0.742103,0.745664,0.748198,0.749196,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,regional natural gas,1.062,1.23,1.75,1.76112,1.77338,1.78826,1.80792,1.8384,1.88979,1.94579,2.00659,2.0729,2.14835,2.22256,2.29299,2.36086,2.42655,2.4656,2.48598,2.51435,2.55863,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,regional oil,1.52,1.789,3.428,3.48757,3.5632,3.66655,3.79227,3.91581,3.98961,4.05563,4.11168,4.15343,4.19049,4.22564,4.25883,4.36271,4.78524,4.56808,4.70253,4.82687,4.9454,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,electricity,7.70821,7.4385,10.821,10.5108,10.0618,9.60818,9.16775,8.78456,8.49265,8.29289,8.15998,8.07688,8.04654,8.00879,7.98698,7.96809,7.9624,7.88354,7.79561,7.7152,7.77605,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,nuclearFuelGenIII,0.181545,0.211038,0.220828,0.231272,0.242588,0.251486,0.260994,0.27127,0.282523,0.29464,0.30761,0.321446,0.3365,0.352731,0.366752,0.377786,0.389537,0.401641,0.414036,0.426542,0.438979,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,regional biomass,1.91897,1.95077,1.97791,1.99563,1.98116,1.98279,1.97898,1.98909,2.03665,2.083,2.12396,2.16631,2.20606,2.23642,2.28774,2.33286,2.37984,2.39995,2.41337,2.42144,2.43515,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,regional coal,0.585,0.588,0.65,0.6542,0.659721,0.666245,0.673375,0.680688,0.688057,0.695277,0.702215,0.708843,0.715355,0.721662,0.727725,0.733002,0.73789,0.742103,0.745664,0.748198,0.749196,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,regional natural gas,1.062,1.23,1.75,1.76112,1.77338,1.78826,1.80792,1.8384,1.88979,1.94579,2.00659,2.0729,2.14835,2.22256,2.29299,2.36086,2.42655,2.4656,2.48598,2.51435,2.55863,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,regional oil,1.52,1.789,3.428,3.48757,3.5632,3.66655,3.79227,3.91581,3.98961,4.05563,4.11168,4.15343,4.19049,4.22564,4.25883,4.36271,4.78524,4.56808,4.70253,4.82687,4.9454,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,electricity,7.67996,7.11205,8.07626,8.06957,7.8932,7.85379,7.7522,7.65617,7.53445,7.46875,7.44685,7.46087,7.51436,7.55711,7.61202,7.6581,7.70129,7.7185,7.71865,7.7214,7.74204,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,nuclearFuelGenIII,0.181545,0.211038,0.220828,0.231272,0.242588,0.251486,0.260994,0.27127,0.282523,0.29464,0.30761,0.321446,0.3365,0.352731,0.366752,0.377786,0.389537,0.401641,0.414036,0.426542,0.438979,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,regional biomass,1.91897,1.95077,1.97791,1.99563,1.98116,1.98279,1.97898,1.98909,2.03665,2.083,2.12396,2.16631,2.20606,2.23642,2.28774,2.33286,2.37984,2.39995,2.41337,2.42144,2.43515,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,regional coal,0.585,0.588,0.65,0.6542,0.659721,0.666245,0.673375,0.680688,0.688057,0.695277,0.702215,0.708843,0.715355,0.721662,0.727725,0.733002,0.73789,0.742103,0.745664,0.748198,0.749196,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,regional natural gas,1.062,1.23,1.75,1.76112,1.77338,1.78826,1.80792,1.8384,1.88979,1.94579,2.00659,2.0729,2.14835,2.22256,2.29299,2.36086,2.42655,2.4656,2.48598,2.51435,2.55863,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,regional oil,1.52,1.789,3.428,3.48757,3.5632,3.66655,3.79227,3.91581,3.98961,4.05563,4.11168,4.15343,4.19049,4.22564,4.25883,4.36271,4.78524,4.56808,4.70253,4.82687,4.9454,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,electricity,8.05979,7.30366,7.61159,7.72406,7.54507,7.63166,7.64623,7.66888,7.65523,7.64885,7.64582,7.66062,7.68946,7.70645,7.72037,7.7307,7.74194,7.72841,7.71295,7.69339,7.68378,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,nuclearFuelGenIII,0.181545,0.211038,0.220828,0.231272,0.242588,0.251486,0.260994,0.27127,0.282523,0.29464,0.30761,0.321446,0.3365,0.352731,0.366752,0.377786,0.389537,0.401641,0.414036,0.426542,0.438979,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,regional biomass,1.91897,1.95077,1.97791,1.99563,1.98116,1.98279,1.97898,1.98909,2.03665,2.083,2.12396,2.16631,2.20606,2.23642,2.28774,2.33286,2.37984,2.39995,2.41337,2.42144,2.43515,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,regional coal,0.585,0.588,0.65,0.6542,0.659721,0.666245,0.673375,0.680688,0.688057,0.695277,0.702215,0.708843,0.715355,0.721662,0.727725,0.733002,0.73789,0.742103,0.745664,0.748198,0.749196,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,regional natural gas,1.062,1.23,1.75,1.76112,1.77338,1.78826,1.80792,1.8384,1.88979,1.94579,2.00659,2.0729,2.14835,2.22256,2.29299,2.36086,2.42655,2.4656,2.48598,2.51435,2.55863,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,regional oil,1.52,1.789,3.428,3.48757,3.5632,3.66655,3.79227,3.91581,3.98961,4.05563,4.11168,4.15343,4.19049,4.22564,4.25883,4.36271,4.78524,4.56808,4.70253,4.82687,4.9454,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,electricity,7.56155,6.02433,7.15893,7.333,7.25953,7.23482,7.15992,7.08414,7.0354,7.0156,7.02132,7.04885,7.1159,7.17218,7.24019,7.29846,7.35409,7.37711,7.38139,7.39166,7.44387,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,nuclearFuelGenIII,0.181545,0.211038,0.220828,0.231272,0.242588,0.251486,0.260994,0.27127,0.282523,0.29464,0.30761,0.321446,0.3365,0.352731,0.366752,0.377786,0.389537,0.401641,0.414036,0.426542,0.438979,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,regional biomass,1.91897,1.95077,1.97791,1.99563,1.98116,1.98279,1.97898,1.98909,2.03665,2.083,2.12396,2.16631,2.20606,2.23642,2.28774,2.33286,2.37984,2.39995,2.41337,2.42144,2.43515,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,regional coal,0.585,0.588,0.65,0.6542,0.659721,0.666245,0.673375,0.680688,0.688057,0.695277,0.702215,0.708843,0.715355,0.721662,0.727725,0.733002,0.73789,0.742103,0.745664,0.748198,0.749196,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,regional natural gas,1.062,1.23,1.75,1.76112,1.77338,1.78826,1.80792,1.8384,1.88979,1.94579,2.00659,2.0729,2.14835,2.22256,2.29299,2.36086,2.42655,2.4656,2.48598,2.51435,2.55863,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,regional oil,1.52256,1.79339,3.43169,3.49096,3.56633,3.66917,3.79397,3.91631,3.98949,4.05504,4.11085,4.15265,4.18988,4.22529,4.25874,4.36222,4.77887,4.56808,4.70253,4.82687,4.9454,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,electricity,6.67401,6.79118,7.35946,7.0881,7.06661,7.15664,7.17934,7.21226,7.2325,7.25945,7.287,7.3143,7.35262,7.37393,7.3917,7.40598,7.41227,7.40116,7.38031,7.35483,7.33799,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,nuclearFuelGenIII,0.181545,0.211038,0.220828,0.231272,0.242588,0.251486,0.260994,0.27127,0.282523,0.29464,0.30761,0.321446,0.3365,0.352731,0.366752,0.377786,0.389537,0.401641,0.414036,0.426542,0.438979,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,regional biomass,1.91897,1.95077,1.97791,1.99563,1.98116,1.98279,1.97898,1.98909,2.03665,2.083,2.12396,2.16631,2.20606,2.23642,2.28774,2.33286,2.37984,2.39995,2.41337,2.42144,2.43515,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,regional coal,0.585,0.588,0.65,0.6542,0.659721,0.666245,0.673375,0.680688,0.688057,0.695277,0.702215,0.708843,0.715355,0.721662,0.727725,0.733002,0.73789,0.742103,0.745664,0.748198,0.749196,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,regional natural gas,1.062,1.23,1.75,1.76112,1.77338,1.78826,1.80792,1.8384,1.88979,1.94579,2.00659,2.0729,2.14835,2.22256,2.29299,2.36086,2.42655,2.4656,2.48598,2.51435,2.55863,1975$/GJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,regional oil,1.53062,1.82029,3.46603,3.52216,3.59494,3.69276,3.80896,3.92066,3.98847,4.04996,4.1037,4.14587,4.18455,4.22215,4.25797,4.35775,4.72536,4.56808,4.70253,4.82687,4.9454,1975$/GJ, Regional oil production by fuel scenario,region,fuel,1990,2005,2010,2015,2020,2025,2030,2035,2040,2045,2050,2055,2060,2065,2070,2075,2080,2085,2090,2095,2100,Units, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,crude oil,0.341064,0.529418,0.729395,1.15884,1.30469,1.44154,1.55515,1.64762,1.7194,1.80263,1.94863,2.2324,2.56221,2.98357,3.4265,3.85805,4.22119,4.49182,4.67662,4.2603,0.598914,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Eastern,unconventional oil,0.0,0.0,0.0,0.0115563,0.0191915,0.0324093,0.0553992,0.0905893,0.134608,0.195831,0.281459,0.421458,0.618935,0.909005,1.29893,1.79106,2.38034,3.0798,3.82903,5.02755,9.34657,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,crude oil,2.21116,3.03753,3.58936,4.30245,4.45503,4.59049,4.53172,4.27758,3.81579,3.30531,2.9231,2.79101,2.72368,2.73962,2.74409,2.7312,2.67163,2.56797,2.44829,2.06595,0.271209,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Northern,unconventional oil,0.0,0.0,0.0,0.0429053,0.0655319,0.103205,0.161433,0.235189,0.29873,0.359078,0.422211,0.526919,0.65794,0.834683,1.04024,1.26793,1.50654,1.76072,2.00456,2.43802,4.23245,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,crude oil,0.248747,0.350567,0.524169,0.657008,0.749831,0.813267,0.849412,0.862088,0.862697,0.876706,0.931205,1.05487,1.19928,1.38425,1.5862,1.78884,1.95703,2.07656,2.15216,1.94324,0.272085,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Southern,unconventional oil,0.0,0.0,0.0,0.00655188,0.0110297,0.0182842,0.0302586,0.0473992,0.0675387,0.0952424,0.134503,0.19915,0.289701,0.421739,0.601301,0.830448,1.10357,1.42379,1.7621,2.2932,4.24612,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,crude oil,0.742294,1.2309,1.24288,1.56107,1.76234,1.99608,2.19751,2.36432,2.49996,2.6722,2.95379,3.4406,4.05624,4.78731,5.56429,6.333,6.99137,7.48319,7.82882,7.14682,1.00717,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Africa_Western,unconventional oil,0.0,0.0,0.0,0.0155675,0.0259234,0.0448767,0.0782818,0.129994,0.195716,0.290298,0.426644,0.649557,0.979838,1.45855,2.10932,2.94002,3.94245,5.13082,6.40992,8.43393,15.7178,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,crude oil,0.869353,1.08432,1.29441,1.63434,1.71408,1.75515,1.74142,1.65749,1.52599,1.36261,1.25441,1.21045,1.20504,1.22469,1.25763,1.28505,1.29784,1.28553,1.25725,1.07433,0.142687,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Argentina,unconventional oil,0.00874727,0.042487,0.0499845,0.0852128,0.10533,0.133684,0.17335,0.214019,0.240526,0.260753,0.284871,0.326794,0.385162,0.463739,0.563751,0.678381,0.807281,0.949679,1.0893,1.32326,2.29994,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,crude oil,1.59089,2.12771,2.25013,2.27874,2.34031,2.34714,2.30232,2.17317,1.98526,1.78007,1.63769,1.54872,1.47708,1.43233,1.38453,1.32642,1.25657,1.17106,1.08436,0.896835,0.114928,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Australia_NZ,unconventional oil,0.0,0.0,0.0,0.0227243,0.0344251,0.0527693,0.0820154,0.119485,0.155422,0.193381,0.236546,0.292386,0.356809,0.436388,0.52485,0.615775,0.708583,0.802934,0.887833,1.05835,1.79354,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,crude oil,2.4986,3.80076,4.5027,5.58974,6.0524,6.2868,6.31274,6.07912,5.72811,5.24871,4.92734,4.7769,4.76076,4.81924,4.93016,5.03081,5.07739,5.01333,4.87074,4.13198,0.545621,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Brazil,unconventional oil,0.0278285,0.135167,0.159019,0.271306,0.34775,0.45001,0.593926,0.746443,0.864038,0.967311,1.08417,1.25652,1.48991,1.79438,2.18087,2.62842,3.13301,3.68083,4.20023,5.07116,8.77082,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,crude oil,3.21804,3.71498,3.33728,3.30555,3.28067,3.15494,2.90549,2.56864,2.21763,1.89072,1.67752,1.57277,1.50595,1.49314,1.48487,1.47728,1.45455,1.41138,1.36164,1.1564,0.145723,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Canada,unconventional oil,0.133074,0.646362,0.76042,0.855414,0.953055,1.07032,1.19939,1.26494,1.2117,1.12833,1.06045,1.05036,1.05746,1.10678,1.16902,1.24078,1.319,1.40993,1.49771,1.71684,2.71514,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,crude oil,1.28888,1.78827,1.93161,1.95288,2.062,2.12459,2.13284,2.04816,1.91864,1.78438,1.732,1.74401,1.78103,1.86258,1.96199,2.06469,2.15014,2.19019,2.19243,1.91224,0.259143,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central America and Caribbean,unconventional oil,0.00776849,0.0377324,0.0443909,0.0684814,0.0876886,0.115645,0.157115,0.202983,0.24079,0.2817,0.335366,0.413519,0.512974,0.649487,0.824533,1.03674,1.28683,1.57091,1.85725,2.31536,4.12326,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,crude oil,2.76661,1.16603,1.49347,1.90338,2.06596,2.2183,2.29029,2.26913,2.18055,2.04669,1.96193,1.94606,1.95925,2.00145,2.04333,2.06958,2.07152,2.04639,2.00855,1.7543,0.237197,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Central Asia,unconventional oil,0.0,0.0,0.0,0.018981,0.0303896,0.0498728,0.0815869,0.124761,0.17071,0.222345,0.28338,0.3674,0.473281,0.609784,0.77459,0.960776,1.16814,1.4031,1.64452,2.07024,3.70167,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,crude oil,5.25142,14.391,19.1894,21.951,25.1374,27.5491,29.0516,29.4882,28.9143,27.8254,27.0012,26.7791,26.7783,27.0541,27.25,27.3343,27.1083,26.4258,25.2812,21.0309,2.73799,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",China,unconventional oil,0.0163678,0.0794991,0.093528,0.335727,0.518057,0.806039,1.26929,1.89726,2.55316,3.31339,4.18173,5.33008,6.73249,8.49524,10.568,12.9093,15.4853,18.2959,20.8513,24.9555,42.906,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,crude oil,0.44182,0.52299,0.581162,0.760061,0.812608,0.832772,0.838714,0.815559,0.779973,0.732643,0.717028,0.734472,0.781518,0.844087,0.919477,0.991811,1.05204,1.08675,1.09914,0.966243,0.130948,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Colombia,unconventional oil,0.00519542,0.0252347,0.0296879,0.0499766,0.0621978,0.0778641,0.1008,0.12483,0.142917,0.15977,0.181968,0.217544,0.269492,0.339785,0.432705,0.543968,0.674124,0.821464,0.969213,1.20623,2.13241,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,crude oil,3.42578,2.97939,3.02366,3.18575,3.30236,3.3142,3.23708,3.00441,2.69343,2.34216,2.10799,1.96303,1.86811,1.80894,1.77,1.7166,1.64777,1.55631,1.47722,1.26342,0.166393,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-12,unconventional oil,0.0,0.0,0.0,0.0317692,0.0485765,0.0745111,0.115314,0.165188,0.210863,0.254444,0.304477,0.370604,0.451266,0.551132,0.670977,0.79691,0.929182,1.06708,1.20949,1.49096,2.59671,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,crude oil,24.2373,27.5795,24.5568,24.5337,24.4026,23.875,22.603,20.3127,17.2405,14.1745,12.0248,10.8149,9.88601,9.41242,8.97079,8.52423,8.01574,7.42718,6.86857,5.68947,0.725771,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",EU-15,unconventional oil,0.0178474,0.0866868,0.101984,0.355915,0.481619,0.67461,0.960571,1.27879,1.49681,1.66598,1.84374,2.13619,2.47109,2.94258,3.46741,4.01564,4.57019,5.13483,5.65891,6.74569,11.3663,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,crude oil,4.10798,0.988965,0.900538,0.994001,1.02656,1.04109,1.02914,0.977888,0.900135,0.815681,0.766207,0.75366,0.753348,0.764742,0.773366,0.77371,0.763431,0.742356,0.717453,0.618551,0.0824272,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Eastern,unconventional oil,0.0,0.0,0.0,0.00991248,0.0151004,0.0234062,0.036661,0.0537661,0.0704697,0.0886128,0.11067,0.142285,0.181981,0.232994,0.29317,0.359186,0.4305,0.508994,0.587421,0.729949,1.28635,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,crude oil,1.60824,1.84152,1.82568,2.76204,2.95158,3.05421,3.04664,2.91474,2.65704,2.31515,2.02578,1.8656,1.7611,1.69269,1.62663,1.55915,1.47288,1.37323,1.27831,1.06527,0.136444,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Europe_Non_EU,unconventional oil,6.15873E-4,0.00299114,0.003519,0.0333572,0.0503029,0.0768501,0.118251,0.171044,0.218536,0.261069,0.30096,0.35977,0.432278,0.521964,0.622244,0.728772,0.834833,0.945193,1.04967,1.25987,2.13282,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,crude oil,0.95278,1.00034,1.00087,0.866146,0.885636,0.888197,0.862566,0.776459,0.660656,0.546938,0.470826,0.430941,0.400821,0.387582,0.374664,0.360828,0.344014,0.323243,0.302204,0.252682,0.0324824,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",European Free Trade Association,unconventional oil,8.43257E-4,0.00409566,0.00481841,0.0131907,0.0181881,0.0259134,0.0376011,0.0498681,0.0582554,0.0650583,0.0728575,0.0857198,0.100724,0.12166,0.14526,0.170374,0.196482,0.22377,0.249228,0.299815,0.508992,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,crude oil,2.57276,5.2652,6.8756,8.42194,10.2323,11.8932,13.2275,14.1519,14.7305,15.0477,15.4049,16.0156,16.5188,17.0157,17.3695,17.5089,17.3458,16.8672,16.3023,13.9788,1.86129,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",India,unconventional oil,0.0,0.0,0.0,0.0839861,0.150514,0.267389,0.471202,0.778098,1.15322,1.63473,2.22507,3.02361,3.99034,5.18417,6.58449,8.1283,9.78136,11.5649,13.3477,16.4963,29.047,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,crude oil,1.48448,2.81393,3.08337,4.31914,5.28916,6.12383,6.75317,7.1393,7.31605,7.31826,7.30154,7.47679,7.62321,7.76265,7.75894,7.68731,7.45092,7.09817,6.67549,5.5492,0.718772,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Indonesia,unconventional oil,0.00372942,0.0181141,0.0213105,0.0756681,0.122048,0.196519,0.317829,0.487268,0.676637,0.903388,1.16265,1.5202,1.94799,2.46785,3.03735,3.65634,4.27909,4.93429,5.52255,6.59984,11.283,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,crude oil,10.7896,10.6485,8.75407,8.39994,7.99771,7.82586,7.53549,6.75036,5.70567,4.67022,3.97686,3.55253,3.22149,3.03611,2.87122,2.72782,2.55181,2.34912,2.1575,1.7742,0.226711,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Japan,unconventional oil,0.0,0.0,0.0,0.0837667,0.117643,0.175944,0.268437,0.371147,0.446685,0.507357,0.574414,0.670687,0.778193,0.925013,1.08843,1.26636,1.43897,1.61067,1.76647,2.09373,3.53803,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,crude oil,3.24917,4.29714,4.09564,3.91197,3.9608,3.98473,3.90376,3.63192,3.27708,2.92171,2.76596,2.74846,2.82014,2.97742,3.17322,3.3534,3.4949,3.55279,3.54591,3.08292,0.416606,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Mexico,unconventional oil,0.0235224,0.114251,0.134411,0.1792,0.215596,0.271387,0.351135,0.428535,0.4775,0.522819,0.59381,0.708521,0.868338,1.09435,1.38948,1.73822,2.14339,2.59629,3.04685,3.77337,6.68309,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,crude oil,7.31174,12.4561,15.5208,17.2487,18.1811,18.8883,18.9692,18.2119,16.8073,15.1538,14.0156,13.5542,13.2061,13.0969,13.0146,12.7934,12.4387,11.8465,11.1844,9.33576,1.22339,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Middle East,unconventional oil,0.0,0.0,0.0,0.172009,0.267438,0.424654,0.675738,1.00132,1.31581,1.64626,2.0244,2.55891,3.19011,3.99023,4.9336,5.9392,7.0142,8.12251,9.15731,11.0171,19.0921,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,crude oil,0.456803,0.714512,0.951841,1.59289,1.7718,1.96884,2.15104,2.29806,2.40093,2.47691,2.59124,2.83186,3.0247,3.30553,3.55412,3.77355,3.88618,3.90781,3.85124,3.33447,0.446622,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Pakistan,unconventional oil,7.91555E-4,0.00384445,0.00452293,0.0241498,0.0362531,0.0572704,0.0935463,0.147317,0.211402,0.294297,0.400633,0.562922,0.75971,1.03719,1.37756,1.78139,2.21921,2.70491,3.17582,3.95617,6.99811,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,crude oil,11.4724,6.62802,7.09295,7.46228,7.5024,7.52801,7.34845,6.84057,6.09332,5.30314,4.80548,4.58772,4.47972,4.48243,4.48494,4.44458,4.35488,4.21038,4.05279,3.48586,0.463707,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Russia,unconventional oil,0.0,0.0,0.0,0.0744161,0.110357,0.169248,0.261774,0.376107,0.477033,0.576115,0.6941,0.866123,1.08213,1.36566,1.70016,2.06335,2.45573,2.88683,3.31826,4.11364,7.23654,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,crude oil,0.771506,1.03002,0.976135,0.846232,0.930071,0.897746,0.819222,0.749172,0.695491,0.627863,0.562999,0.540208,0.528125,0.527675,0.525374,0.519558,0.506692,0.486709,0.4637,0.391646,0.051201,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Africa,unconventional oil,0.0,0.0,0.0,0.00843887,0.013681,0.0201835,0.0291831,0.0411909,0.0544485,0.0682089,0.0813191,0.101987,0.127576,0.160767,0.19916,0.241199,0.285725,0.33371,0.379659,0.46218,0.799036,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,crude oil,0.95648,1.37765,1.83582,2.09491,2.14445,2.00083,1.86734,1.71301,1.61586,1.52296,1.46737,1.46725,1.48624,1.53663,1.59734,1.65366,1.69531,1.70565,1.69131,1.46183,0.194757,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Northern,unconventional oil,0.0197177,0.0957721,0.112674,0.161289,0.190852,0.215704,0.256235,0.296042,0.330244,0.365695,0.404715,0.466333,0.543421,0.648867,0.781159,0.935024,1.11258,1.31342,1.51287,1.84501,3.19811,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,crude oil,0.882983,1.44716,1.87931,2.37877,2.59701,2.73817,2.78877,2.71317,2.56908,2.3719,2.25519,2.22804,2.25119,2.31811,2.41182,2.49647,2.5503,2.54967,2.50732,2.15198,0.288673,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South America_Southern,unconventional oil,0.00940733,0.0456927,0.0537561,0.0980218,0.128116,0.170447,0.231391,0.298179,0.352098,0.403023,0.463815,0.554625,0.673978,0.833308,1.03787,1.27669,1.5479,1.84846,2.14139,2.62181,4.61466,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,crude oil,0.232121,0.565789,0.636926,1.17938,1.44199,1.70027,1.92005,2.08436,2.21006,2.30387,2.4221,2.65224,2.88997,3.1382,3.33893,3.50151,3.58071,3.58548,3.52701,3.04817,0.410403,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Asia,unconventional oil,3.86677E-4,0.00187809,0.00220955,0.0162287,0.0272661,0.0464262,0.0794237,0.128485,0.188772,0.267407,0.367832,0.520064,0.718378,0.976977,1.28648,1.64556,2.03787,2.47548,2.90287,3.61126,6.4236,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,crude oil,2.12301,4.37557,4.47512,4.38974,4.3696,4.28336,4.07539,3.6896,3.15362,2.62806,2.26104,2.05826,1.89602,1.81093,1.71893,1.62981,1.52495,1.40573,1.28983,1.05995,0.135366,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",South Korea,unconventional oil,0.0,0.0,0.0,0.0437758,0.0642752,0.0963003,0.145177,0.202861,0.246891,0.285503,0.326583,0.388581,0.458008,0.551737,0.651616,0.756621,0.859924,0.963831,1.05606,1.25085,2.1125,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,crude oil,3.26587,6.67465,8.52226,9.90684,11.2317,12.2364,12.9268,13.1753,13.0363,12.7315,12.6205,12.9913,13.4915,14.0965,14.537,14.8693,14.9273,14.7237,14.3042,12.225,1.62414,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Southeast Asia,unconventional oil,0.0114401,0.0555656,0.0653712,0.181774,0.269495,0.405592,0.624631,0.918442,1.22602,1.59232,2.0301,2.66215,3.46826,4.50198,5.71048,7.09093,8.58988,10.2506,11.8471,14.552,25.5116,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,crude oil,1.15653,2.00626,1.98018,1.87673,1.94552,1.95327,1.89305,1.7498,1.53764,1.32297,1.1691,1.07963,1.00976,0.980494,0.947402,0.917441,0.874373,0.816387,0.756008,0.62102,0.0793758,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",Taiwan,unconventional oil,0.00324557,0.0157645,0.0185463,0.037909,0.0506732,0.0693471,0.0967858,0.127673,0.149965,0.170268,0.192302,0.225084,0.263039,0.316323,0.37504,0.440078,0.505385,0.570267,0.627726,0.740637,1.2486,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,crude oil,33.4669,38.2249,32.9557,33.2149,33.3429,32.7388,31.0782,28.2549,24.9272,21.682,19.7208,18.7898,18.3224,18.3444,18.4415,18.4239,18.1875,17.6195,17.0006,14.5346,1.89904,EJ, -"Core_Ref,date=2015-29-11T20:35:01+19:00",USA,unconventional oil,0.491657,2.38804,2.80944,3.42315,3.93095,4.61609,5.49275,6.17813,6.31712,6.31523,6.44696,6.91503,7.58362,8.58536,9.8073,11.1426,12.5894,14.1462,15.7077,18.8083,31.7864,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,crude oil,0.341064,0.529418,0.729395,0.938591,1.24452,1.65354,2.14801,2.73842,3.50082,4.39851,5.41748,6.60545,7.82259,9.04041,10.2185,10.6867,3.4228,5.06407E-8,5.56379E-10,0.0,0.0,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Eastern,unconventional oil,0.0,0.0,0.0,0.00877299,0.0172071,0.0351089,0.0718532,0.141766,0.255693,0.444214,0.737706,1.17481,1.7812,2.57746,3.57013,5.12582,13.4774,19.047,20.3262,21.2735,21.9655,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,crude oil,2.21116,3.03753,3.58936,3.65152,4.18106,4.82358,5.34414,5.70519,5.99352,6.17396,6.2581,6.38575,6.45258,6.45444,6.3896,5.9338,1.71088,2.32295E-8,2.36648E-10,0.0,0.0,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Northern,unconventional oil,0.0,0.0,0.0,0.0341307,0.0578085,0.102417,0.178767,0.295353,0.437754,0.62352,0.852174,1.13574,1.46925,1.84019,2.23238,2.84612,6.73662,8.7371,8.64546,8.48584,8.29148,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,crude oil,0.248747,0.350567,0.524169,0.793114,1.04496,1.35595,1.67589,1.99152,2.37349,2.81512,3.29937,3.85691,4.3898,4.90153,5.37228,5.45336,1.67593,2.44368E-8,2.6282E-10,0.0,0.0,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Southern,unconventional oil,0.0,0.0,0.0,0.00741322,0.0144479,0.0287902,0.0560602,0.103099,0.173354,0.284304,0.44928,0.685969,0.999554,1.39745,1.87695,2.61568,6.599,9.19117,9.60158,9.85571,10.1239,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,crude oil,0.742294,1.2309,1.24288,1.58814,2.02728,2.8227,3.79223,4.89881,6.23528,7.77826,9.50018,11.5018,13.5892,15.6737,17.6578,18.3431,5.7852,8.57038E-8,9.34278E-10,0.0,0.0,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Africa_Western,unconventional oil,0.0,0.0,0.0,0.0148443,0.0280297,0.059933,0.126854,0.253607,0.455411,0.785541,1.29365,2.04565,3.09426,4.46865,6.16923,8.79819,22.7794,32.2349,34.1319,35.3987,36.4982,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,crude oil,0.869353,1.08432,1.29441,1.39366,1.347,1.4503,1.50127,1.51235,1.51211,1.48321,1.43648,1.40895,1.37576,1.33545,1.28897,1.16507,0.315311,4.19897E-9,0.0,0.0,0.0,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Argentina,unconventional oil,0.00874727,0.042487,0.0499845,0.0750019,0.0852095,0.113527,0.151612,0.197083,0.236363,0.278137,0.321555,0.371838,0.427165,0.484776,0.542806,0.645046,1.38551,1.71694,1.66843,1.61125,1.55302,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,crude oil,1.59089,2.12771,2.25013,2.33556,2.45988,2.54531,2.60494,2.63392,2.6823,2.68794,2.66385,2.63792,2.60445,2.55901,2.49632,2.29981,0.671303,8.94724E-9,0.0,0.0,0.0,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Australia_NZ,unconventional oil,0.0,0.0,0.0,0.0218305,0.034011,0.0540433,0.0871383,0.136356,0.195909,0.27146,0.36274,0.469167,0.59303,0.729584,0.872159,1.10309,2.64327,3.36524,3.31968,3.24638,3.14088,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,crude oil,2.4986,3.80076,4.5027,5.52082,5.75594,6.3155,6.62662,6.74396,6.84009,6.79248,6.59355,6.45178,6.25933,6.02202,5.7491,5.15809,1.3929,1.82871E-8,1.84344E-10,0.0,0.0,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Brazil,unconventional oil,0.0278285,0.135167,0.159019,0.276136,0.339804,0.463587,0.63098,0.833586,1.02053,1.22353,1.42657,1.65526,1.8992,2.14595,2.38581,2.8232,6.06623,7.42631,7.13797,6.81768,6.50446,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,crude oil,3.21804,3.71498,3.33728,3.32343,3.34164,3.26903,3.12984,2.96655,2.89745,2.80747,2.70878,2.67492,2.65465,2.64497,2.62834,2.42799,0.592773,7.93669E-9,0.0,0.0,0.0,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Canada,unconventional oil,0.133074,0.646362,0.76042,0.903123,1.0209,1.16979,1.35199,1.52849,1.63536,1.71699,1.77025,1.83403,1.90134,1.96992,2.03088,2.22492,3.93106,4.52004,4.4309,4.31161,4.15376,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,crude oil,1.28888,1.78827,1.93161,2.11117,2.301,2.50348,2.65224,2.74028,2.82408,2.87012,2.87797,2.90697,2.86409,2.81995,2.74585,2.52861,0.705863,9.52488E-9,0.0,0.0,0.0,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central America and Caribbean,unconventional oil,0.00776849,0.0377324,0.0443909,0.0756052,0.0995064,0.138147,0.195324,0.269957,0.346225,0.437662,0.542069,0.665897,0.793271,0.934719,1.07657,1.32421,2.97115,3.76829,3.70143,3.60357,3.49244,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,crude oil,2.76661,1.16603,1.49347,1.76467,1.98437,2.27466,2.47594,2.5955,2.66765,2.67103,2.62227,2.57106,2.50962,2.44625,2.36831,2.15808,0.61445,8.20753E-9,0.0,0.0,0.0,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Central Asia,unconventional oil,0.0,0.0,0.0,0.0164943,0.0274365,0.0482968,0.0828228,0.134367,0.194839,0.269753,0.357078,0.457275,0.57144,0.697437,0.827434,1.03511,2.41941,3.08702,3.01424,2.93062,2.84286,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,crude oil,5.25142,14.391,19.1894,22.7518,26.4971,30.6735,33.2801,34.5087,35.0555,34.6992,33.5271,32.0483,30.3023,28.4095,26.4224,23.1477,6.35233,8.13173E-8,7.89113E-10,0.0,0.0,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",China,unconventional oil,0.0163678,0.0794991,0.093528,0.340362,0.531676,0.872129,1.39695,2.12861,2.92884,3.88331,4.93646,6.04803,7.21646,8.37901,9.47065,11.3189,25.3785,30.9215,29.0669,27.1856,25.2283,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,crude oil,0.44182,0.52299,0.581162,0.684864,0.756076,0.813146,0.863852,0.899285,0.935626,0.961494,0.979667,1.00949,1.03718,1.0599,1.07453,1.02058,0.287572,3.95093E-9,0.0,0.0,0.0,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Colombia,unconventional oil,0.00519542,0.0252347,0.0296879,0.0466902,0.0598956,0.0786288,0.106077,0.139997,0.171407,0.207165,0.24703,0.294463,0.349761,0.411411,0.477391,0.589439,1.30602,1.65733,1.66183,1.64905,1.62385,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,crude oil,3.42578,2.97939,3.02366,3.19667,3.3627,3.44122,3.44915,3.37094,3.26097,3.08702,2.88139,2.73759,2.5879,2.44538,2.29097,2.02919,0.567141,7.34085E-9,0.0,0.0,0.0,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-12,unconventional oil,0.0,0.0,0.0,0.0298792,0.0464936,0.0730657,0.115378,0.174511,0.238174,0.311764,0.392363,0.486892,0.589262,0.697187,0.800415,0.973288,2.23313,2.76104,2.65387,2.54586,2.43221,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,crude oil,24.2373,27.5795,24.5568,25.0975,25.3093,25.0038,24.4231,23.5453,22.8062,21.7424,20.6384,19.8319,19.0072,18.1838,17.2455,15.4079,4.31939,5.64523E-8,5.62588E-10,0.0,0.0,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",EU-15,unconventional oil,0.0178474,0.0866868,0.101984,0.354615,0.484484,0.684294,0.994378,1.41782,1.86997,2.39815,3.00497,3.71074,4.49717,5.33664,6.15824,7.51298,17.2198,21.4318,20.6977,19.9028,19.0214,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,crude oil,4.10798,0.988965,0.900538,0.887516,0.878887,0.85674,0.877837,0.879864,0.877982,0.858314,0.831415,0.816875,0.80249,0.785113,0.758993,0.687606,0.194368,2.59447E-9,0.0,0.0,0.0,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Eastern,unconventional oil,0.0,0.0,0.0,0.0082956,0.0121517,0.0181908,0.0293646,0.0455499,0.0641259,0.0866828,0.113215,0.145285,0.182726,0.223839,0.265175,0.329806,0.765329,0.975835,0.95014,0.919271,0.883613,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,crude oil,1.60824,1.84152,1.82568,1.97965,2.15922,2.33107,2.44999,2.51477,2.56421,2.56606,2.53059,2.50131,2.45366,2.38967,2.30557,2.0967,0.599336,7.91951E-9,0.0,0.0,0.0,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Europe_Non_EU,unconventional oil,6.15874E-4,0.00299114,0.003519,0.022898,0.0351816,0.056132,0.0902142,0.140047,0.197943,0.270234,0.355669,0.455615,0.568838,0.690598,0.813769,1.01342,2.37356,2.99164,2.91706,2.82812,2.72866,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,crude oil,0.95278,1.00034,1.00087,0.994409,1.00815,1.00361,0.984161,0.9555,0.935525,0.904829,0.871559,0.847925,0.821922,0.794199,0.7608,0.687222,0.195156,2.57928E-9,0.0,0.0,0.0,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",European Free Trade Association,unconventional oil,8.43257E-4,0.00409566,0.00481841,0.0148078,0.020152,0.0284468,0.0412079,0.0588221,0.0780413,0.101142,0.128208,0.159904,0.195635,0.234143,0.272611,0.335963,0.77954,0.980658,0.957507,0.9295,0.89603,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,crude oil,2.57276,5.2652,6.8756,8.76127,11.9531,14.8867,17.4325,19.4391,21.3007,22.6392,23.4527,24.1572,24.3775,24.2357,23.8545,22.0233,6.27366,8.51011E-8,8.58227E-10,0.0,0.0,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",India,unconventional oil,0.0,0.0,0.0,0.0818915,0.165267,0.316082,0.583137,1.00635,1.55576,2.28638,3.19359,4.29647,5.55075,6.9097,8.33424,10.5634,24.7027,32.0083,31.3536,30.4965,29.5977,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,crude oil,1.48448,2.81393,3.08337,3.58539,4.39744,5.37294,6.16669,6.72087,7.17921,7.41796,7.4556,7.50426,7.41368,7.22597,6.9589,6.2915,1.75434,2.32515E-8,2.31851E-10,0.0,0.0,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Indonesia,unconventional oil,0.00372942,0.0181141,0.0213105,0.0620492,0.099706,0.168939,0.280825,0.442418,0.631357,0.864038,1.13224,1.45025,1.79795,2.16091,2.52063,3.10102,7.05112,8.88176,8.56947,8.20441,7.8496,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,crude oil,10.7896,10.6485,8.75407,8.3626,7.96946,7.69322,7.3586,6.89751,6.43352,5.9125,5.42472,5.01825,4.64197,4.27032,3.8948,3.36922,0.914366,1.16141E-8,1.13333E-10,0.0,0.0,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Japan,unconventional oil,0.0,0.0,0.0,0.0781651,0.110188,0.163347,0.246154,0.357079,0.469891,0.597114,0.738692,0.892519,1.05697,1.21749,1.36075,1.61603,3.60034,4.3683,4.14038,3.92214,3.69409,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,crude oil,3.24917,4.29714,4.09564,4.33284,4.639,4.8675,4.9958,4.99309,4.96155,4.85062,4.70464,4.64548,4.58555,4.50751,4.41482,4.07151,1.12989,1.52297E-8,1.57017E-10,0.0,0.0,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Mexico,unconventional oil,0.0235224,0.114251,0.134411,0.20425,0.259028,0.339332,0.453865,0.591796,0.713524,0.846586,0.991199,1.16597,1.36678,1.58354,1.81161,2.20897,4.88742,6.1524,6.05551,5.91802,5.77512,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,crude oil,7.31174,12.4561,15.5208,17.0695,18.5987,20.2346,21.4264,22.0263,22.3336,22.1776,21.6834,21.3926,20.7865,20.1029,19.305,17.4359,4.89523,6.48838E-8,6.4637E-10,0.0,0.0,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Middle East,unconventional oil,0.0,0.0,0.0,0.159548,0.25715,0.429631,0.716739,1.14029,1.6312,2.23975,2.95265,3.80477,4.73306,5.73142,6.74474,8.36303,19.2751,24.4041,23.6138,22.7149,21.9264,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,crude oil,0.456803,0.714512,0.951841,1.11223,1.30584,1.49483,1.67687,1.84252,2.02673,2.20524,2.36673,2.55854,2.69364,2.82631,2.94385,2.87702,0.858601,1.21832E-8,1.28478E-10,0.0,0.0,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Pakistan,unconventional oil,7.91555E-4,0.00384445,0.00452293,0.0164822,0.0259981,0.0422322,0.0700292,0.113194,0.168796,0.246193,0.347815,0.482142,0.640782,0.832885,1.0545,1.40615,3.429,4.63149,4.7315,4.77835,4.79075,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,crude oil,11.4724,6.62802,7.09295,7.23031,7.01738,7.18102,7.20672,7.0667,6.85397,6.51653,6.16297,5.91481,5.69227,5.47406,5.21965,4.6728,1.31021,1.72976E-8,1.72315E-10,0.0,0.0,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Russia,unconventional oil,0.0,0.0,0.0,0.0675816,0.0970241,0.152471,0.241073,0.365838,0.500599,0.658117,0.83922,1.05198,1.29613,1.56068,1.82363,2.24128,5.159,6.50598,6.29517,6.06431,5.80686,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,crude oil,0.771506,1.03002,0.976135,1.06126,1.16132,1.31223,1.44229,1.54561,1.61666,1.63769,1.62214,1.62682,1.61515,1.59452,1.56411,1.44946,0.423706,5.68253E-9,0.0,0.0,0.0,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Africa,unconventional oil,0.0,0.0,0.0,0.00991955,0.0160568,0.0278619,0.0482461,0.0800153,0.118077,0.165393,0.22089,0.289338,0.367769,0.454605,0.546464,0.695226,1.66835,2.13731,2.12358,2.09075,2.03545,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,crude oil,0.95648,1.37765,1.83582,1.83073,1.60611,1.70546,1.7501,1.73807,1.71395,1.67201,1.62112,1.61918,1.60265,1.59471,1.55649,1.42497,0.384772,5.15246E-9,0.0,0.0,0.0,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Northern,unconventional oil,0.0197177,0.0957721,0.112674,0.146506,0.148394,0.190842,0.246406,0.30696,0.352037,0.398813,0.446659,0.509444,0.575815,0.652111,0.721279,0.851103,1.79427,2.20635,2.16592,2.10786,2.03553,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,crude oil,0.882983,1.44716,1.87931,2.1612,2.3775,2.68105,2.87926,2.97494,3.03383,3.0363,2.98689,2.96154,2.90007,2.82363,2.73045,2.48218,0.681808,9.09767E-9,0.0,0.0,0.0,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South America_Southern,unconventional oil,0.00940733,0.0456927,0.0537561,0.0913914,0.119928,0.170217,0.240359,0.3271,0.408728,0.501259,0.600717,0.715509,0.838201,0.967968,1.09906,1.32665,2.91523,3.64269,3.54764,3.43746,3.34105,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,crude oil,0.232121,0.565789,0.636926,0.83168,1.0753,1.33661,1.55914,1.73272,1.90958,2.06417,2.19507,2.35744,2.49857,2.62006,2.72515,2.64804,0.783864,1.12257E-8,1.18208E-10,0.0,0.0,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Asia,unconventional oil,3.86677E-4,0.00187809,0.00220955,0.0110962,0.0196425,0.0352295,0.0616149,0.101928,0.153758,0.22451,0.316195,0.437507,0.587508,0.765327,0.969668,1.28772,3.11864,4.25528,4.34388,4.38679,4.42414,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,crude oil,2.12301,4.37557,4.47512,4.57136,4.72129,4.7973,4.75849,4.60429,4.37979,4.07806,3.7454,3.45583,3.15848,2.87378,2.59571,2.2213,0.604694,7.55427E-9,0.0,0.0,0.0,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",South Korea,unconventional oil,0.0,0.0,0.0,0.0427284,0.0652778,0.101859,0.159177,0.23836,0.319891,0.411851,0.510017,0.614635,0.719184,0.819326,0.906883,1.06544,2.381,2.84132,2.65548,2.48038,2.30624,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,crude oil,3.26587,6.67465,8.52226,9.52884,10.9305,12.267,13.3368,14.0738,14.6764,15.0166,15.1131,15.2905,15.3158,15.2096,14.9663,13.859,3.99814,5.38006E-8,5.50294E-10,0.0,0.0,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Southeast Asia,unconventional oil,0.0114401,0.0555656,0.0653712,0.173238,0.258457,0.399464,0.625057,0.948178,1.31471,1.77467,2.32118,2.98086,3.73929,4.5717,5.44216,6.85116,16.1054,20.5858,20.3654,19.9744,19.4674,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,crude oil,1.15653,2.00626,1.98018,1.97853,1.9893,1.9885,1.94616,1.87783,1.80102,1.69895,1.57927,1.48166,1.38618,1.29986,1.21383,1.08164,0.298089,3.85755E-9,0.0,0.0,0.0,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",Taiwan,unconventional oil,0.00324557,0.0157645,0.0185463,0.0398333,0.0513553,0.069734,0.0969808,0.132988,0.167919,0.207237,0.248635,0.294446,0.343469,0.395154,0.445206,0.538218,1.20674,1.48157,1.42516,1.36264,1.29172,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,crude oil,33.4669,38.2249,32.9557,33.2946,33.836,33.5891,32.7078,31.2972,30.2732,28.9111,27.4207,26.5083,25.6544,24.8911,23.9866,21.7138,5.75368,7.54884E-8,7.87368E-10,0.0,0.0,EJ, +"Core_Ref,date=2017-3-11T14:30:25-04:00",USA,unconventional oil,0.491657,2.38804,2.80944,3.57981,4.1603,4.94327,5.97082,7.04722,7.77658,8.44264,9.04146,9.75068,10.5305,11.3773,12.1793,13.9627,28.4548,33.8547,32.9232,31.8503,30.6135,EJ, diff --git a/output/gcam_diagnostics/gcam_data/Core/tax_25_5.csv b/output/gcam_diagnostics/gcam_data/Core/tax_25_5.csv index a0f1ad13df..28f45d7865 100644 --- a/output/gcam_diagnostics/gcam_data/Core/tax_25_5.csv +++ b/output/gcam_diagnostics/gcam_data/Core/tax_25_5.csv @@ -1,4488 +1,4244 @@ Final energy by aggregate end-use sector and fuel scenario,region,sector,fuel,1990,2005,2010,2015,2020,2025,2030,2035,2040,2045,2050,2055,2060,2065,2070,2075,2080,2085,2090,2095,2100,Units, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,building,1 liquids,0.0448266,0.06626972,0.07425672999999999,0.11980113,0.131199,0.15665465,0.18099171,0.21084133000000002,0.24313294,0.28367707000000003,0.33146256999999996,0.37624631,0.42616613000000003,0.47674046000000003,0.48971137,0.48889526,0.4804106,0.4027763,0.3341198,0.2702379,0.18404489999999998,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,building,2 gas,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,building,3 coal,3.9100001000000003E-4,5.518002E-4,5.709993E-4,6.794307E-4,4.377178E-4,4.0542856E-4,3.7060614000000003E-4,3.4449668E-4,2.7813781E-4,2.3245672E-4,1.9810601E-4,1.4082615E-4,1.0582991E-4,8.318511E-5,5.0459070000000004E-5,3.3862177000000006E-5,2.4130703E-5,1.2613828999999999E-5,7.474644999999999E-6,4.821907E-6,2.6768998E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,building,4 biomass,0.1563437,0.22469619999999998,0.2820818,0.361818,0.455315,0.525784,0.586863,0.623412,0.611546,0.591245,0.554695,0.4934842,0.4193403,0.3500613,0.2415562,0.1559683,0.1033935,0.0519583,0.02659937,0.014415,0.0065411,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,building,5 electricity,0.015242390000000001,0.03374176,0.05263095,0.10648944000000002,0.13955738,0.17914953,0.2324044,0.30075850000000004,0.3885803,0.5024645,0.6485987,0.8443284999999999,1.0884264000000001,1.3831630000000001,1.7458371,2.1444712,2.5574275,3.0178281,3.4820382,3.942419,4.427192,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,building,6 hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,building,7 trad biomass,1.377214,2.0188930000000003,2.5967089999999997,2.6376340000000003,2.688501,2.717759,2.7199199999999997,2.717129,2.692078,2.651425,2.554599,2.4108400000000003,2.206937,1.9891999999999999,1.763464,1.5552759999999999,1.352449,1.185773,1.021474,0.876924,0.790038,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,building,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,industry,1 liquids,0.054588197,0.08156386700000001,0.1206729,0.2223215,0.2688565,0.346907,0.43966510000000003,0.5605914000000001,0.7104408999999999,0.9047621,1.1454753000000002,1.4304382000000002,1.7721086000000001,2.1613399999999996,2.518485,2.8585760000000002,3.164794,3.3022370000000003,3.411779,3.4884269999999997,3.481938,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,industry,2 gas,0.0,0.00153791,0.00491755,0.010217894000000002,0.015853864000000002,0.021169391000000003,0.027211410999999998,0.03460769300000001,0.041576383999999994,0.04913853,0.05743065399999999,0.065129799,0.07375858100000003,0.081337229,0.08873565500000001,0.09693186100000002,0.10299250300000003,0.10865480000000001,0.11791769699999997,0.12472849299999995,0.13284985289999998,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,industry,3 coal,0.0045074699999999995,0.00358983,0.00541175,0.0102899,0.00909342,0.00983342,0.0106549,0.0117899,0.0120255,0.0126566,0.0137065,0.0132731,0.0134867,0.0135354,0.0113892,0.0103743,0.00948282,0.00756879,0.00652298,0.00594154,0.00542042,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,industry,4 biomass,0.44015706,0.60519625,0.67671868,1.0048495,1.2865190000000002,1.5567792999999999,1.8535217,2.1682219,2.475613,2.8167077999999997,3.1582148,3.484579,3.740593,3.929788,3.732553,3.304442,2.855455,2.009367,1.3443798,0.9019710000000001,0.5178688,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,industry,5 electricity,0.012891650000000001,0.02265804,0.0285127,0.07083679,0.09174758999999999,0.11819807,0.15537895000000002,0.20506607999999998,0.27322797,0.36439854,0.48403830000000003,0.6545567,0.8797512,1.1553858000000001,1.55582033,2.03124154,2.49797607,3.14512333,3.70681616,4.114392064,4.530299302,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.00490701,0.00940554,0.01564037,0.02478512,0.037819,0.057432899999999995,0.0856866,0.1158446,0.1609451,0.2206855,0.301249,0.400055,0.5088440000000001,0.6705760000000001,0.848312,1.046596,1.196802,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,industry,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,industry,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,transportation,1 liquids,0.2055768013,0.294335236,0.41363129400000004,0.552173784,0.62136724,0.7006837749999999,0.7847612810000002,0.8818155309999998,0.9840545590000006,1.1125313420000003,1.2628129719999996,1.4688344890000005,1.7218953650000002,2.0277222029999997,2.3605309080000003,2.723596752,3.1112640789999984,3.413008358,3.7056694689999996,3.9549502890000015,3.9560139239999996,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,transportation,2 gas,0.0,0.0,0.0,0.0059674398,0.014002671000000005,0.02672897253,0.04398295433000001,0.06734878399000001,0.09619809114000001,0.13360024325999997,0.18397447330999994,0.24156008920000002,0.3107759816,0.3940293324999999,0.4891817366000001,0.6012297106000001,0.7297683099999999,0.8668986039999999,1.0270217950000002,1.2150234310000003,1.413679029,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,transportation,3 coal,1.67599E-4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,transportation,4 biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,transportation,5 electricity,0.0,1.7599920000000002E-5,1.779993E-5,9.06911723E-5,2.0212449720000003E-4,3.375047547E-4,5.237413457000001E-4,7.403417434999998E-4,0.0010231260739999998,0.001367421438,0.0017841889889999994,0.00246834445,0.0033511893299999996,0.00455370081,0.00640889094,0.009177610470000002,0.013293013299999998,0.020027855900000002,0.0310351366,0.048734217700000006,0.0711315121,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,transportation,6 hydrogen,0.0,0.0,0.0,0.0,2.8342273E-5,1.07922119E-4,2.38594882E-4,4.47344955E-4,7.303309150000001E-4,0.001177870894,0.0018782996229999998,0.00315233666,0.0050369058,0.00780441362,0.011997008399999998,0.0180659065,0.02649733219,0.038488272700000006,0.0562123658,0.0814194879,0.11547889149999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,transportation,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,transportation,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,building,1 liquids,0.31737679999999996,0.45582348,0.4418922,0.5363198,0.5322233,0.5702090000000001,0.5746612,0.5758478,0.5694130999999999,0.5668439000000001,0.5625143,0.5563697,0.5493404,0.5391677,0.497358,0.4478229,0.4001106,0.31804,0.2512465,0.196328,0.13608325,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,building,2 gas,0.049185502,0.1752676,0.224411,0.2777421,0.3016917,0.3287278,0.3370169,0.3388543,0.328729,0.31801240000000003,0.3054174,0.2901056,0.2752435,0.260635,0.2303983,0.2020957,0.1769423,0.135438,0.1048288,0.0822067,0.05785094,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,building,3 coal,1.700006E-6,7.56700006E-4,3.499998E-6,4.0730869999999994E-6,2.5050729000000003E-6,2.2747899E-6,1.9483069E-6,1.6802118E-6,1.2640878E-6,9.848192E-7,7.830116999999999E-7,5.274999E-7,3.7557703E-7,2.7761904E-7,1.5883480999999998E-7,9.910102E-8,6.564533999999999E-8,3.2721631999999995E-8,1.8814732999999998E-8,1.2054995E-8,7.06592E-9,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,building,4 biomass,0.0033089001,0.0065225,0.0070573,0.00699085,0.00804816,0.00841005,0.00835534,0.00791754,0.00706358,0.00628457,0.005461580000000001,0.0046365,0.003771524,0.003022994,0.002044829,0.001284573,8.31734E-4,4.178676E-4,2.1427540000000002E-4,1.1650779999999999E-4,5.36771E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,building,5 electricity,0.11678708,0.3554645,0.4836962,0.6224211,0.7243128000000001,0.8103639,0.9137895,1.0125519,1.0898196,1.1659161,1.241632,1.3320797,1.4311604999999998,1.5425566,1.6711589999999998,1.7948733,1.8990361999999998,2.0186072,2.1168503000000003,2.1952588,2.285585,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,building,6 hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,building,7 trad biomass,0.062738,0.0925072,0.1004378,0.10180449999999999,0.10453390000000001,0.10685069999999999,0.1086482,0.11060299999999999,0.11238930000000001,0.1144512,0.1167692,0.12016389999999999,0.1242266,0.12899187,0.13455606,0.13997283000000002,0.14526929,0.15059102,0.15635052,0.1626409,0.16888145000000002,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,building,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,industry,1 liquids,0.5869305,0.8191328999999999,0.7419,0.932084,0.9596580000000001,1.0503369999999999,1.103195,1.15658,1.200157,1.25145,1.30038,1.357213,1.411387,1.4639639999999998,1.471847,1.4588130000000001,1.43406,1.3590339999999999,1.2822599999999997,1.196082,1.078327,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,industry,2 gas,0.5557745000000001,0.9602778999999999,1.1113282,1.3700748999999999,1.4926039700000002,1.63038509,1.7174179,1.7827477600000001,1.78644583,1.7858898,1.7723192,1.7363644919999999,1.70015832,1.6675415199999997,1.5551476999999998,1.4555843700000002,1.36378891,1.1871607299999996,1.0536887400000001,0.9567257550000001,0.852004268,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,industry,3 coal,0.07924339999999999,0.0726766,0.0501127,0.0606246,0.0448773,0.0410338,0.0375,0.0348975,0.0293871,0.0252779,0.0218992,0.0168894,0.013528,0.0112022,0.00802865,0.00632348,0.00512699,0.00366785,0.00287262,0.00240752,0.00203625,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,industry,4 biomass,0.02697865,0.0438617,0.0871743,0.105923,0.1342999,0.1497987,0.1633407,0.1716962,0.173882,0.1747327,0.1726065,0.1712186,0.1645279,0.1563555,0.1367753,0.1122122,0.092616,0.0668958,0.0483214,0.0366659,0.02640994,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,industry,5 electricity,0.1247622,0.2386472,0.2951302,0.3713513,0.43266314,0.4753168,0.5442403299999999,0.6141230999999999,0.6712442000000001,0.7283683,0.7838143,0.8509760000000001,0.9210025,0.9999549999999999,1.1058524,1.22046931,1.32199589,1.48344049,1.6194387870000002,1.722789569,1.842746949,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.002264904,0.004057009,0.0061078799999999996,0.00852278,0.01122353,0.014470249999999999,0.01822107,0.02087246,0.02427816,0.028752029999999998,0.0336291,0.0382293,0.042702000000000004,0.049822599999999995,0.056982599999999994,0.0648199,0.0703097,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,industry,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,industry,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,transportation,1 liquids,0.73730089,1.138068019,1.5997735289999997,1.9188975619999995,2.0419920019999998,2.191194732,2.2977105969999996,2.3888887879999996,2.430666778000001,2.475465602,2.4989467990000014,2.5909990080000003,2.6995817099999995,2.822508913,2.9196875299999987,2.997710257000002,3.054469494,3.022920958999998,2.971822653000001,2.8876733760000004,2.6647202049999996,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,transportation,2 gas,0.0,0.0103799178,0.015653388,0.0386756756,0.06408739809999998,0.1042033128,0.15178947409999996,0.21093613160000002,0.2713561652,0.34130809509999993,0.4367894972,0.5194840827999999,0.6089109516999999,0.7076877199999998,0.808894105,0.9158999779999998,1.0256749009999997,1.124948189,1.2383497050000003,1.3673250610000003,1.486054634,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,transportation,3 coal,6.99992E-7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,transportation,4 biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,transportation,5 electricity,0.001799988,0.00316035,0.00363956,0.004574575132,0.0053677711129999995,0.006027325697000001,0.0067247510609999995,0.007365698399,0.007905737759999998,0.008449342350000005,0.009001545490000002,0.010030159119999998,0.011210812630000004,0.0127477649,0.0149993959,0.018115433400000002,0.0223326696,0.0285981647,0.03826453960000001,0.052885746000000004,0.06947575,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,transportation,6 hydrogen,0.0,0.0,0.0,0.0,1.0621360000000001E-4,4.1908183E-4,8.6691566E-4,0.00151356003,0.002178022117,0.0030693629499999996,0.00430843524,0.0062889750399999994,0.00870737661,0.011712276890000001,0.015817104649999997,0.021064179500000006,0.027583979300000002,0.035861252100000005,0.04763389190000001,0.063516349,0.0825684943,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,transportation,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,transportation,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,building,1 liquids,0.03188183,0.0405157,0.08338994999999999,0.0811859,0.08709025000000001,0.09711749,0.10201948,0.10786864,0.11647894,0.13065100000000002,0.15105952,0.17486216,0.20159946,0.23073114,0.24675876000000002,0.25465934,0.25948262,0.2280181,0.1975765,0.1677526,0.12113199999999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,building,2 gas,0.0,0.0,0.0028465,0.00298944,0.00350706,0.00393394,0.00417925,0.00440176,0.00462216,0.00498966,0.00554908,0.00615614,0.00683392,0.00760987,0.00789514,0.00822937,0.00862502,0.00775929,0.007126,0.00658584,0.00535787,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,building,3 coal,0.010053918,0.00376001,0.0034279030000000004,0.0034658031,0.0023128717,0.0021348134,0.0019131588,0.0017354258000000001,0.0013900552000000001,0.0011608447,0.0010018569,7.394305000000001E-4,5.695834E-4,4.557128E-4,2.8396728E-4,1.9458428E-4,1.4158533000000002E-4,7.645648000000001E-5,4.6929905E-5,3.1167831E-5,1.8057657E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,building,4 biomass,0.0797127,0.13983790000000001,0.15706189999999998,0.1639722,0.209643,0.24165509999999998,0.26490800000000003,0.27748510000000004,0.2745237,0.2707778,0.2628827,0.2463172,0.2173775,0.18667820000000002,0.1331309,0.0881703,0.05989995,0.03074494,0.01618367,0.0089689,0.004180097,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,building,5 electricity,0.02358604,0.04908358,0.06535547,0.09637099,0.11619542,0.13436823,0.15789899,0.18547460999999998,0.21912958,0.26704616,0.3307129,0.4124266,0.5245677,0.6681111000000001,0.8525948999999999,1.0693947000000001,1.3043135000000001,1.5743118,1.8572444000000001,2.1493338,2.4557461,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,building,6 hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,building,7 trad biomass,0.9525201,1.331009,1.516337,1.529416,1.567803,1.5992030000000002,1.61472,1.6320599999999998,1.6431099999999998,1.644114,1.627106,1.6196389999999998,1.585484,1.537592,1.431367,1.2865229999999999,1.133416,0.9969779999999999,0.855201,0.718582,0.627737,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,building,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,industry,1 liquids,0.04276275,0.06480983,0.07667958000000001,0.0947731,0.11802670000000001,0.14927459999999998,0.18087930000000002,0.21911319999999998,0.2682096,0.33594,0.426012,0.5398487,0.6768335,0.8415116,1.0079535,1.1746645,1.3441511000000002,1.4732429,1.605824,1.738408,1.8373021999999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,industry,2 gas,0.01846021,0.02548748,0.03251982,0.04326382,0.05358111,0.063100836,0.07136546400000002,0.08028715900000001,0.09037008100000002,0.10277483000000001,0.11778983000000001,0.132324273,0.148893628,0.167071014,0.18262075,0.19708954400000006,0.20741525000000002,0.20037764299999997,0.191987231,0.183144478,0.16937582840000004,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,industry,3 coal,0.07109597000000001,0.03916395,0.02958568,0.03652632,0.03511132,0.037207370000000003,0.03809055,0.03954497,0.0397013,0.04146538,0.04481758,0.04471533,0.04547172,0.046691159999999995,0.040912069999999995,0.03682992,0.03304389,0.023430299999999998,0.01757392,0.01367771,0.00976063,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,industry,4 biomass,0.296921395,0.476782008,0.5514989969999999,0.56495182,0.71141539,0.81832849,0.90274347,0.97695406,1.05290401,1.1513571699999998,1.26715695,1.39634061,1.48255846,1.5393369,1.4355728,1.2364156,1.0473139,0.7063876,0.45799104999999996,0.29763426,0.1619949,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,industry,5 electricity,0.0484582,0.08214114,0.08241878,0.13803987,0.158423822,0.178665878,0.20838286,0.24496500000000002,0.29140358,0.35786076,0.44438574000000003,0.55300369,0.70588484,0.90288282,1.18037336,1.51088169,1.83507018,2.246303752,2.593490766,2.856132939,3.068833631,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.002221297,0.0040268100000000005,0.0061067199999999995,0.00875816,0.01248475,0.0180899,0.026559660000000002,0.0366656,0.0512741,0.07166739999999999,0.0980902,0.1268898,0.1574576,0.1974883,0.239232,0.285092,0.31909299999999996,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,industry,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,industry,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,transportation,1 liquids,0.15221095989999997,0.2130339799,0.316482939,0.344218529,0.379942665,0.409660558,0.433772018,0.4590084964000001,0.4882951490999999,0.5316323106999998,0.5846691429999998,0.6657324029999997,0.7656210430000002,0.8864225179999995,1.0183010940000001,1.159977243,1.309751185,1.4290354469999995,1.5388370499999997,1.6294547819999994,1.6224757100000005,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,transportation,2 gas,0.0,0.0,0.0,0.0033916109099999996,0.009384237540000001,0.01800546798,0.02850531149,0.04206885388,0.058278189889999985,0.08002379553,0.11116797142000001,0.14420994385,0.18462831289999998,0.23325113999999997,0.2886937636,0.3539310683000001,0.42951335310000005,0.5107797915000001,0.607698328,0.7230316820000003,0.8460604890000002,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,transportation,3 coal,0.00552251,2.09295E-4,2.09296E-4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,transportation,4 biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,transportation,5 electricity,4.45992E-5,4.09995E-5,7.69992E-5,1.6071116280000003E-4,2.6526000820000005E-4,3.7001334799999995E-4,5.015396537000001E-4,6.398941204E-4,8.022697550000002E-4,0.0010015855910000002,0.0012358642289999999,0.001602251151,0.0020870739300000002,0.00275514945,0.0037818578,0.0053248878300000005,0.007626707600000001,0.0113945941,0.017631899700000002,0.027856209999999996,0.040763903100000005,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,transportation,6 hydrogen,0.0,0.0,0.0,0.0,1.9306676E-5,6.9273905E-5,1.37890653E-4,2.40229001E-4,3.57346552E-4,5.615788930000001E-4,8.826517800000001E-4,0.001472498545,0.0023537359019999995,0.00367468217,0.00573549426,0.008780256200000001,0.01313504285,0.01938714514,0.0288610769,0.042678745500000004,0.061276289799999994,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,transportation,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,transportation,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,building,1 liquids,0.12946160099999998,0.160705604,0.185731176,0.249433758,0.283210248,0.364880551,0.449518163,0.5517312999999999,0.66829779,0.8184706399999999,1.00629589,1.21640796,1.4665393699999998,1.7472438000000001,1.94423295,2.08432246,2.18301285,1.98894348,1.7668907800000002,1.51274339,1.08675576,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,building,2 gas,0.0,0.005986,0.0077441,0.0102723,0.0120113,0.0145875,0.0171049,0.0198476,0.0224146,0.0255265,0.0293218,0.0330409,0.0375237,0.0428961,0.045707,0.0487926,0.052059,0.0479565,0.044633,0.0416315,0.0342488,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,building,3 coal,0.002655,0.003553999909,0.003992399987,0.005645787588,0.004183273586,0.0045053043890000005,0.00471085505,0.00492077754,0.004431791485,0.004089510591,0.003808007793,0.0029725484187,0.002405370417,0.0019999333513,0.0012919554487000001,9.036477557E-4,6.568235542E-4,3.5781262499E-4,2.1527299184E-4,1.3835311005E-4,7.760263255E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,building,4 biomass,0.1991744,0.2311539,0.2366298,0.3106891,0.421923,0.532035,0.642974,0.7333879999999999,0.7736719999999999,0.805566,0.8154819999999999,0.789166,0.726396,0.6556331,0.497282,0.35014389999999995,0.2510952,0.1397664,0.0783102,0.04597653,0.02292708,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,building,5 electricity,0.048461569999999995,0.11137040000000001,0.1300411,0.17157709999999998,0.2142474,0.27077280000000004,0.3500457,0.44901769999999996,0.5654031,0.714078,0.9069283,1.1627433,1.498986,1.924748,2.4919729999999998,3.1765229999999995,3.9365820000000005,4.888902,5.918217,7.025995,8.258343,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,building,6 hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,building,7 trad biomass,3.31438953,5.054457299999999,5.700202,6.025495599999999,6.2982372,6.5069148,6.6475405,6.7743008,6.8637315,6.9211774,6.902689,6.9185102,6.8416563,6.7210987,6.5924985,6.4358078,6.2279676,6.0749866,5.8435938,5.3654107,4.929714499999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,building,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,industry,1 liquids,0.0919113,0.12798400000000001,0.1194882,0.1813443,0.2373593,0.33758590000000005,0.4633737,0.6270200000000001,0.8307622,1.0954502000000002,1.430909,1.84627,2.353459,2.950225,3.538627,4.115438,4.678016,5.047935000000001,5.396204,5.715449,5.888645,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,industry,2 gas,0.046632190000000004,0.17940138,0.14319431999999999,0.20178372899999997,0.235698365,0.2940743169999999,0.357436119,0.432357881,0.511603505,0.6070812351999999,0.7223728460000002,0.8449803043000003,0.9964909463,1.1683088795999998,1.3141575140000004,1.4732567310000004,1.6010895490000003,1.5684414120000003,1.4908346080000003,1.3664219360000003,1.1368451343,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,industry,3 coal,0.00928509,0.0129947,0.0181149,0.0278184,0.02649265,0.03034542,0.03461367,0.03961559,0.04172254,0.04481878,0.049152709999999995,0.04874425,0.050296,0.0518361,0.04451878,0.03996815,0.03620835,0.02785793,0.023001840000000003,0.020147870000000002,0.01736914,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,industry,4 biomass,0.65619142,1.10237948,1.25090791,1.61733915,2.0330309,2.52178596,3.0502962,3.6081518,4.160293299999999,4.781244200000001,5.4371835,6.1214396,6.720515300000001,7.2442521,7.1639781000000005,6.6066525,5.9334236,4.414072099999999,3.0940317,2.1282276,1.2320358999999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,industry,5 electricity,0.04768488,0.050792989999999996,0.06320081999999999,0.09114530000000001,0.11491024999999999,0.14920419999999998,0.20188083,0.27094075,0.35608984,0.4653791,0.607113,0.7977553000000001,1.0573545999999998,1.3828976000000002,1.8818563,2.5363303000000004,3.2368989800000003,4.29872009,5.3261381299999995,6.17086925,7.0013719619999994,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.00592437,0.011754440000000001,0.019961279999999998,0.03206038,0.0496228,0.07614,0.1153522,0.1604014,0.22933720000000002,0.325468,0.468053,0.648641,0.854111,1.192485,1.581854,2.00837,2.41213,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,industry,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,industry,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,transportation,1 liquids,0.4134070389999999,0.7722052100000001,0.7672579799999999,0.9018171140000002,1.004593191,1.146876479,1.295677529,1.460850863,1.6282421139999996,1.8300249419999997,2.0580767189999998,2.3763043379999997,2.761346808,3.2188911019999997,3.7111074360000007,4.234975916000001,4.776317796000001,5.187006980000001,5.560967623,5.849642445,5.7823088149999995,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,transportation,2 gas,0.0,0.0,0.0,0.009716103399999999,0.0250519106,0.0512360933,0.08644439879999999,0.13368790831000005,0.19056464876000004,0.2642584927,0.36410482340000017,0.4770324311,0.6138403924999999,0.7785220420000002,0.9660320920000002,1.1856868430000003,1.436634677,1.699855841,2.004600359,2.358077479,2.7230604330000006,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,transportation,3 coal,2.52794E-4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,transportation,4 biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,transportation,5 electricity,0.0,1.959982E-5,5.85995E-5,2.2647164800000002E-4,4.8187489500000003E-4,7.875847714E-4,0.0012155352856,0.0017022086187999997,0.002288419273,0.0029810852300000005,0.0038072575,0.00514908357,0.0069048572,0.00935475337,0.013202082,0.0190975205,0.0279934453,0.04241735719999999,0.0661308836,0.104308971,0.15158317100000002,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,transportation,6 hydrogen,0.0,0.0,0.0,0.0,5.2738510000000004E-5,2.1739865E-4,4.830118E-4,9.074554530000001E-4,0.0014650345039999995,0.002377013089,0.00381665667,0.006439196539999999,0.01034714326,0.01610856261,0.02488465566,0.03756648990000001,0.0551619385,0.07997326560000001,0.1167040637,0.16883312709999998,0.23814121989999998,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,transportation,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,transportation,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,building,1 liquids,0.0809572,0.05584122,0.06752019000000001,0.07870909,0.07936276,0.08245024000000001,0.08286626999999999,0.08311925999999999,0.08441770000000001,0.08542425,0.08707797999999999,0.08693747999999998,0.08709942000000001,0.08643217,0.08369700000000001,0.07825493000000001,0.07268269000000001,0.06256902,0.04893741,0.03682574,0.023710710000000003,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,building,2 gas,0.21289954,0.30026179999999997,0.3653123099999999,0.4612575,0.47875854000000007,0.50893049,0.52060335,0.5233825099999999,0.5199391,0.50927544,0.50041956,0.47452618,0.44972333,0.42184978000000006,0.37116421,0.32310651,0.28192956399999997,0.214387985,0.165376999,0.128721918,0.090449951,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,building,3 coal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,building,4 biomass,0.0036417999999999997,0.016199799999999997,0.0115951989,0.00950197,0.010704862,0.010854733000000002,0.010793035,0.010210808,0.009226156999999999,0.008280138999999999,0.0072947446,0.0062149774,0.005061672299999999,0.0040326403,0.0027255508999999996,0.0016884715000000002,0.0010763252,5.382944200000001E-4,2.7878292E-4,1.5455375999999998E-4,7.243945799999999E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,building,5 electricity,0.06391749,0.15595868,0.20692470000000002,0.3014286,0.3464718,0.3842567,0.4432707,0.5024353,0.5682822,0.631155,0.7037856,0.776841,0.8650149,0.9608600999999999,1.0879151,1.2155513,1.3388856000000002,1.4752763,1.5857939,1.6600807,1.7488645,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,building,6 hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,building,7 trad biomass,0.005148801,0.0028465,0.0020511,0.001269993,0.001217725,0.001108966,9.94015E-4,9.05887E-4,8.52703E-4,8.09369E-4,7.503799999999999E-4,7.36233E-4,6.934329999999999E-4,6.349462E-4,5.926521E-4,5.332864E-4,4.6218809999999997E-4,4.215665E-4,3.753218E-4,3.317814E-4,3.01896E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,building,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,industry,1 liquids,0.19623962,0.48063700000000004,0.47314339999999994,0.5678424000000001,0.5954694,0.6367723,0.6652722,0.6929704,0.7244078,0.7541095,0.7895637999999999,0.8122612,0.8399119,0.8679109999999999,0.8877185999999999,0.8990405,0.9158746,0.9151092,0.8880537,0.8592313,0.8149938,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,industry,2 gas,0.28787105,0.46724465,0.45276187,0.55308255,0.575176866,0.6099589939999999,0.631806691,0.6447076480000001,0.6445812430000001,0.637215058,0.630831339,0.602705382,0.5778574000000001,0.553192963,0.5018939579999998,0.4586792660000001,0.42319553899999995,0.35252539999999993,0.3052836548999999,0.2708413659999999,0.23299014820000002,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,industry,3 coal,0.02473931,0.01063244,0.00766045,0.0110068,0.00853251,0.00822319,0.00798351,0.00778477,0.00699075,0.0063227,0.00582406,0.00470094,0.00397799,0.00345671,0.00259245,0.00211328,0.00177294,0.00125393,0.00102775,9.033E-4,7.98078E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,industry,4 biomass,0.058771409999999996,0.05098543,0.038758230000000005,0.04784855,0.05816772,0.065263,0.07161290000000001,0.0754658,0.0779934,0.07918800000000001,0.0800712,0.079259,0.0766017,0.0727525,0.0628224,0.050627,0.0413215,0.027937860000000002,0.019332059999999998,0.01403198,0.00925232,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,industry,5 electricity,0.07634254,0.15035727000000002,0.16188983,0.20439667,0.22803616000000002,0.24085107,0.27334195000000006,0.30636941,0.34138121,0.37536329,0.41160123,0.45199484,0.49992577,0.55368991,0.6343818259999999,0.723839006,0.812570097,0.9413032459999999,1.0639877458,1.1612566123,1.2745327314000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.001199102,0.002053223,0.003023299,0.004136254,0.00545823,0.00699628,0.00883374,0.01002311,0.01169702,0.01370473,0.0163966,0.01906226,0.02196463,0.026608939999999998,0.029885,0.0321905,0.032234700000000005,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,industry,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,industry,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,transportation,1 liquids,0.4180661689,0.4871503766,0.6195451658999999,0.8122985732000001,0.8717719951999998,0.9306258521000002,0.9887531035999999,1.0353153685999996,1.0782565013000003,1.109611279,1.14355375316,1.1726087521800002,1.21864814786,1.2704712127100002,1.3317613142599996,1.3923467390900002,1.4570553550099998,1.4955645902599999,1.502131990819999,1.4699668579599998,1.3829151266989996,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,transportation,2 gas,0.007575793,0.11095770000000002,0.09329499999999999,0.120983913,0.126830457,0.136207176,0.15365151400000004,0.1778470646,0.211951204,0.25064959119999997,0.305741424,0.3465389756,0.393088132,0.44294521100000006,0.49618486599999995,0.551565714,0.610729388,0.655240458,0.7026492719999998,0.75185029,0.8054227400000002,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,transportation,3 coal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,transportation,4 biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,transportation,5 electricity,0.001099893,0.002065683,0.002219177,0.0045253343849999995,0.007132198669999999,0.009127001457000001,0.011572517497000003,0.014317888773000002,0.017464998460000002,0.02084623861,0.025240191089999996,0.03067710306,0.03752054376999999,0.04564652284,0.05637701137999999,0.06930856058000001,0.08468729882,0.10298458318999999,0.12481014750000001,0.14916843292,0.17595815021,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,transportation,6 hydrogen,0.0,0.0,0.0,0.0,4.7903911E-4,0.00163618546,0.0034034508,0.00573137459,0.008404482559999999,0.01133171203,0.015083846439999998,0.019429007800000005,0.024801974100000002,0.031064332799999997,0.0391399143,0.0486558856,0.059547150900000005,0.07192599100000001,0.08592070069999999,0.1003766233,0.11649256600000002,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,transportation,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,transportation,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,building,1 liquids,0.03407399,0.04177629,0.04571119,0.04462567,0.04820298,0.05154138,0.05247381,0.05316551,0.05389649,0.0542737,0.054117160000000004,0.05168433,0.048723340000000004,0.04530422,0.03976104,0.03423851,0.029688739999999998,0.02355243,0.017151350000000003,0.01252084,0.007579715000000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,building,2 gas,0.1194685,0.1701608,0.18619310000000003,0.20387950000000002,0.2139063,0.2276101,0.2339579,0.23770539999999998,0.23766739999999997,0.23442200000000002,0.228362,0.2140164,0.1983239,0.181955,0.15701809999999997,0.13511789999999999,0.11628179999999999,0.0884899,0.06807415,0.053289020000000006,0.0368582,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,building,3 coal,0.0108836,0.0056511,0.0031814,0.003384972,0.002308886,0.002125224,0.001881351,0.0016658670000000001,0.0013070520000000002,0.001036785,8.27003E-4,5.437182E-4,3.682049E-4,2.555334E-4,1.3603969999999998E-4,7.8676E-5,4.840376E-5,2.192779E-5,1.140744E-5,6.524052E-6,3.184961E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,building,4 biomass,0.0804129,0.06672469999999998,0.0635434,0.06297200900000001,0.072008354,0.07552053999999998,0.077643842,0.07616681,0.071160025,0.065631978,0.059393087000000004,0.051700645,0.043054767,0.035181051000000005,0.024641611,0.015854886300000003,0.0104782707,0.0054551831,0.0029008292000000002,0.0016345663399999998,7.6860674E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,building,5 electricity,0.2963367,0.4695266,0.5169308,0.5661634099999999,0.59687272,0.63448534,0.6836306,0.7316317999999999,0.7762494,0.8198694,0.8613148,0.9000865,0.9380629,0.9696781,1.0010111,1.0232624000000001,1.038035,1.0540561,1.0635561,1.0709226,1.0735881,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,building,6 hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,building,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,building,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,industry,1 liquids,0.36748899999999995,0.517473,0.5251750000000001,0.5302739999999999,0.56815,0.6055470000000001,0.634123,0.663927,0.692192,0.719848,0.744316,0.757387,0.765754,0.770966,0.7612080000000001,0.747391,0.737053,0.715858,0.679722,0.6545679999999999,0.6163694,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,industry,2 gas,0.4086009,0.6497929,0.7403268,0.8066243,0.8435434100000002,0.8874444400000001,0.9115281399999999,0.9231161499999999,0.91558078,0.8983443800000002,0.8725114200000001,0.8273880280000001,0.7808610499999998,0.7358014820000001,0.6694425949999998,0.6148324969999999,0.5665731079999999,0.49151534500000016,0.4437799150000001,0.4072419801000001,0.36569551350000007,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,industry,3 coal,0.2866992,0.2602018,0.2586948,0.2821199,0.2486046,0.24694649999999999,0.24007030000000001,0.23389358999999998,0.21555238999999998,0.19863685,0.18311305000000003,0.15263091,0.12818035,0.10820521,0.077985787,0.058104044,0.04429504,0.0275307326,0.0185452282,0.013260645100000001,0.0085310952,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,industry,4 biomass,0.11540802,0.18016538,0.17053739999999998,0.18327149,0.23284835,0.26659413000000004,0.2916813,0.30604148,0.31503689,0.31687142999999995,0.31132998,0.29833453000000004,0.27185258,0.24184583,0.19151755,0.14128396999999998,0.10651527,0.06617339,0.041491490000000006,0.027251869999999997,0.01516864,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,industry,5 electricity,0.27971266,0.36347565000000004,0.36620450000000004,0.38217415,0.37266235999999997,0.37102530499999997,0.38873275999999996,0.40822553,0.426034,0.4468355,0.46910464,0.50276517,0.54214457,0.58209629,0.644826529,0.705216004,0.754799616,0.8373854602,0.9046831269,0.95295601542,1.00562275105,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.0018288,0.003060673,0.004470142,0.00610724,0.00805183,0.01034002,0.01291671,0.01463279,0.01662395,0.01887369,0.02208943,0.024942899999999997,0.02767112,0.0326426,0.0353646,0.0368857,0.035221,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,industry,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,industry,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,transportation,1 liquids,1.111433237,1.481560313,1.5674822019999997,1.6387793490000002,1.6715453057,1.6819909148999999,1.7057453185000004,1.7285843999999997,1.7758302550000002,1.808857869,1.837515379,1.841962283,1.8431744830000003,1.8357923239999998,1.8144098670000002,1.7794051059999996,1.7455903860000006,1.6881525229999998,1.6167751499999998,1.551281666,1.440073132,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,transportation,2 gas,0.00280456,0.00196737,0.00293014,0.010557773999999999,0.022636964000000006,0.042189016999999995,0.06543591329999998,0.09283984379999999,0.12013947440000002,0.14960216690000003,0.18747867840000002,0.21239584789999996,0.237272006,0.26085406599999994,0.28250462800000004,0.30120976299999996,0.31845594000000005,0.32908745000000006,0.33961963900000003,0.35338224500000004,0.36382569600000003,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,transportation,3 coal,0.00313931,0.00556707,0.00519028,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,transportation,4 biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,transportation,5 electricity,0.00688453,0.012806060000000001,0.01409089,0.015326359279999998,0.017479636479999994,0.0204529762,0.02392367909,0.02795966759,0.032043065399999994,0.036778945900000005,0.04212593299999999,0.0482220352,0.055130846100000006,0.0626637763,0.07126535969999999,0.08068301700000001,0.091042808,0.10288112599999999,0.116950712,0.134045539,0.15046909,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,transportation,6 hydrogen,0.0,0.0,0.0,0.0,0.0012900939999999999,0.0042341548,0.008157945799999998,0.0130204016,0.017901517419999992,0.0234949465,0.029579574,0.03608712710000001,0.04313284550000001,0.05038887079999999,0.0581270676,0.06592944189999998,0.07379743819999998,0.08205559429999999,0.090925187,0.10074270199999998,0.11045537100000002,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,transportation,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,transportation,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,building,1 liquids,0.26170908,0.28452226999999997,0.29511307,0.31491239000000004,0.3400501,0.36663539,0.37997738000000003,0.38674150999999996,0.39795194,0.40575578,0.41765656,0.41024778000000006,0.40934247,0.40350730000000007,0.37636915000000004,0.34505656,0.31781616999999995,0.25868672000000004,0.19587374000000002,0.144199035,0.090030681,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,building,2 gas,0.008330203,0.018753295,0.020511394000000002,0.020248686,0.021698923999999998,0.023325974,0.024260405,0.024530818,0.024592187,0.024224703,0.023999342,0.022523137999999998,0.021443614,0.020208727,0.017579762999999998,0.015391306,0.013648687,0.010237656000000001,0.007895019999999999,0.006162104999999999,0.00432634,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,building,3 coal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,building,4 biomass,0.03403213,0.02750209,0.028632170000000002,0.02670989,0.03111667,0.033079410000000004,0.03436997,0.03365825,0.03128753,0.02854017,0.025627989999999996,0.02166893,0.0177224,0.014119360000000001,0.009311374,0.005687413,0.0035973109999999997,0.001706965,8.511629000000001E-4,4.568838999999999E-4,2.050108E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,building,5 electricity,0.28585505,0.54394357,0.71496184,0.83475412,0.96824104,1.10441452,1.2515398,1.3827476,1.5317231,1.6803269000000003,1.8680425999999999,2.0398338000000003,2.2752842,2.5510785,2.9211081,3.337852,3.7817617,4.238133299999999,4.644952099999999,4.946792,5.2734068999999995,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,building,6 hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,building,7 trad biomass,0.33324729999999997,0.344634,0.3045312,0.2800761,0.2778233,0.268632,0.2573807,0.24755829999999998,0.2398755,0.2304363,0.2169953,0.20797949999999998,0.193277,0.1741712,0.1533701,0.1307196,0.1085667,0.08926500000000001,0.0731706,0.0602098,0.05015227,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,building,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,industry,1 liquids,0.8698092199999999,1.19577257,1.4597838899999998,1.6799859400000001,1.8322267700000001,1.9967596099999998,2.1311685399999996,2.25360747,2.38932952,2.51540631,2.65338338,2.7324830200000005,2.82951472,2.92188457,2.9715430200000004,3.0119026499999997,3.0745093999999997,3.0704765000000003,3.0312719,3.0013101,2.9482031,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,industry,2 gas,0.09288741,0.38515378,0.48677990000000004,0.55922684,0.60049558,0.6488604900000001,0.6860199800000001,0.7103218799999999,0.72667463,0.7328507200000001,0.7366337399999999,0.7174509809999998,0.7036808990000001,0.686111424,0.6464780129999999,0.61208964,0.5807097800000001,0.5114162200000001,0.459455037,0.4204724410000001,0.3787081534,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,industry,3 coal,0.34375381,0.42253438000000004,0.473102,0.51745626,0.46256963,0.4658083,0.4608096099999999,0.45330393,0.4261243,0.398127312,0.37491168900000005,0.316162409,0.27207910199999996,0.234539491,0.171719355,0.12995521000000002,0.100316159,0.060437412999999995,0.039338081000000004,0.027011545999999997,0.016511353,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,industry,4 biomass,1.3566461,1.8667909999999999,2.2407679999999996,2.085333,2.3899109999999997,2.567593,2.71131,2.771262,2.787611,2.757998,2.6999910000000003,2.579068,2.406837,2.199046,1.8299050000000001,1.4382959999999998,1.144565,0.785112,0.5616289999999999,0.428775,0.318656,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,industry,5 electricity,0.3866913,0.634961,0.7953729,1.0176837,1.1135117200000002,1.21697092,1.34280512,1.46427595,1.5955495000000002,1.731118,1.8887452999999998,2.0590743000000002,2.2736020000000003,2.52588777,2.9283679000000005,3.3634125200000002,3.7656330540000003,4.289966576,4.699739568,4.9636975833,5.2254995911,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.00709294,0.01209128,0.01790485,0.0246063,0.03293769,0.0427219,0.0542639,0.0618732,0.07288510000000001,0.085754,0.1025915,0.11872740000000001,0.13490760000000002,0.1585343,0.1705566,0.17586580000000002,0.16731580000000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,industry,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,industry,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,transportation,1 liquids,1.4371470827000001,2.3649152317000004,3.1654882089,3.3816408301000003,3.618725083199999,3.810133391299998,3.9745097908,4.0776129061,4.210665405900001,4.3012549395,4.3866537482000005,4.4340881717,4.5418142885,4.66451587387,4.81597910344,4.976735984440002,5.1560736903099995,5.236116252789999,5.200045471619998,5.0358101393800005,4.675132278358002,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,transportation,2 gas,8.36891E-5,0.06780453,0.069981,0.10521815500000001,0.154600405,0.22758682799999996,0.3239947949999999,0.4429655386,0.5882110629999999,0.7509101949999999,0.982677311,1.1325036250000002,1.3110481099999998,1.501060613,1.7013943200000003,1.9137183300000002,2.13883381,2.30351234,2.4742134900000012,2.649712160000001,2.8368825600000003,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,transportation,3 coal,2.09291E-4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,transportation,4 biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,transportation,5 electricity,0.00377809,0.00380799,0.00552558,0.012297010217,0.02404246305,0.035184829550000005,0.04805225769000001,0.06299227051999999,0.08037546458000001,0.10125915989,0.12845877457,0.15460106414999997,0.18416058086,0.21587898462,0.25645716502,0.30350840407999996,0.3556930608800001,0.41608312502,0.48686823927,0.5619089523799999,0.6539555319400001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,transportation,6 hydrogen,0.0,0.0,0.0,0.0,0.001713506,0.005853247999999999,0.011810148,0.0196805947,0.028400538000000003,0.038700237,0.05144284,0.063938373,0.07955520299999999,0.09782923299999997,0.12239116900000002,0.151965501,0.185661309,0.22594360500000002,0.27347021,0.32400995,0.3816263099999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,transportation,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,transportation,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,building,1 liquids,0.3656467,0.4587433,0.2171697,0.20130182,0.20210539000000002,0.20283837999999998,0.19623506000000002,0.19013592,0.18296948999999998,0.17660487000000002,0.16989110999999998,0.15957691999999998,0.14877093,0.13798823999999998,0.12234369,0.10660725,0.09279831,0.07403064399999999,0.054216136,0.038597018,0.022993874,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,building,2 gas,0.8236374099999999,1.0358261,0.9836261,1.0368764,1.03693463,1.05126437,1.02816229,0.99302703,0.93084232,0.8663901700000001,0.80134593,0.71394017,0.6313460900000001,0.55711209,0.456922781,0.377961897,0.31479813300000004,0.22884090399999998,0.17012543100000002,0.12842699,0.08556119599999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,building,3 coal,0.0021766999999999997,0.0014651,1.256E-4,1.24201E-4,7.75781E-5,6.66021E-5,5.49088E-5,4.527E-5,3.24946E-5,2.38366E-5,1.76625E-5,1.08817E-5,6.96981E-6,4.64323E-6,2.38238E-6,1.34929E-6,8.18852E-7,3.6776E-7,1.89647E-7,1.07029E-7,5.17114E-8,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,building,4 biomass,0.0624551,0.0790735,0.103143,0.0981177,0.109407,0.111038,0.10975,0.102691,0.0897467,0.0775813,0.0655285,0.0531655,0.0412399,0.0316873,0.0203721,0.0122297,0.00765359,0.00367971,0.00183672,9.78419E-4,4.30991E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,building,5 electricity,0.8585177,1.0758274,1.100556,1.1761761,1.2248329999999998,1.2654751,1.3257472,1.3896591,1.4574168,1.5226373,1.5844659,1.6601829,1.7312024,1.7933487000000001,1.8750592999999998,1.9417373999999998,1.9908891,2.0621803,2.1099509000000003,2.1364727,2.16427832,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,building,6 hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,building,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,building,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,industry,1 liquids,0.8764222700000001,1.36547341,1.3019718200000001,1.2963392,1.31699868,1.34805192,1.35363717,1.3575644,1.34255714,1.3313088699999998,1.3171813099999998,1.28961171,1.2634026500000002,1.24444893,1.20727501,1.17724106,1.15829315,1.1292286599999999,1.09216242,1.06162285,1.02061492,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,industry,2 gas,1.0861326900000001,1.2254316299999999,1.25087059,1.30352394,1.2937256000000001,1.3069238099999996,1.2865195300000005,1.2531369499999996,1.1878926699999999,1.1227027700000003,1.0554933499999999,0.9717954669999999,0.89513268,0.8295058,0.7399298800000002,0.67143083,0.61653213,0.5340354700000001,0.48034321199999996,0.44447066,0.4057906813,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,industry,3 coal,0.18334609999999998,0.19644940000000002,0.1733004,0.1850031,0.15454449,0.14831282,0.13944066,0.1315483,0.11619884,0.10324063,0.09221913999999999,0.07424478,0.060715170000000006,0.0504739,0.035837259999999996,0.02696987,0.021031236999999998,0.013617074,0.009810915,0.007615816000000001,0.0056576790000000005,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,industry,4 biomass,0.2419296,0.3328179,0.27276030000000007,0.28392513999999996,0.32768108,0.35078462,0.36504234,0.36730928,0.35863848,0.34690992,0.33196387,0.31188802000000004,0.28446490999999996,0.25673663,0.20970286,0.16193373,0.12745474299999998,0.084396429,0.056926487,0.0405441524,0.026094799000000002,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,industry,5 electricity,0.67832704,0.9242125,0.75812417,0.78599988,0.788553653,0.79141087,0.82302485,0.86177036,0.9069628500000001,0.95382872,0.9985209299999999,1.06634448,1.13676494,1.20693139,1.311664661,1.410220899,1.495270223,1.6253467869,1.7244870602,1.7924868729999999,1.8600600419800002,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.002866362,0.00468123,0.00658511,0.008632560000000001,0.010697670000000001,0.01302698,0.01557588,0.0168297,0.01845838,0.020466230000000002,0.02292574,0.025189239999999998,0.02746,0.03131991,0.0330487,0.0336987,0.03189979,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,industry,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,industry,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,transportation,1 liquids,1.735409367,2.1987840540000003,2.4395011820000003,2.552411369999999,2.5913907922000003,2.5807618749,2.5494912307000006,2.5021393400000003,2.477920030000001,2.4458127199999993,2.3990665099999995,2.3773675300000003,2.3692704399999993,2.3655625199999997,2.35808608,2.3499073400000006,2.3436198600000004,2.31990348,2.2815927199999995,2.239058090000001,2.1402744,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,transportation,2 gas,0.001507013,0.0016743020000000001,0.001716204,0.0174573882,0.03968969709999999,0.0733663385,0.10966683670000002,0.1499911897,0.18525417890000004,0.22205856840000002,0.2695378809,0.3008121335000001,0.3336302044,0.36694862100000003,0.4008811140000001,0.43488935799999995,0.468208888,0.4977523549999999,0.530686011,0.5692107609999998,0.6131531859999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,transportation,3 coal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,transportation,4 biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,transportation,5 electricity,0.00310027,0.00367337,0.00264148,0.0036129251999999995,0.0077802803,0.0150493356,0.0239684888,0.03530045071,0.0462947124,0.059850951,0.076009306,0.09133476300000001,0.10630211199999999,0.12047928299999999,0.135105623,0.150412028,0.16619620699999998,0.18396512099999998,0.204230346,0.22696672700000003,0.253855946,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,transportation,6 hydrogen,0.0,0.0,0.0,0.0,0.0016951660000000001,0.005719692,0.01114479,0.018160135,0.024701879000000003,0.032171305000000004,0.040280526999999997,0.04834369299999999,0.056700787999999995,0.06524740899999999,0.074511089,0.084416406,0.094765666,0.10648428699999997,0.119589843,0.13399315,0.14994526,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,transportation,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,transportation,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,building,1 liquids,0.19962509,0.18280681000000001,0.14563479000000001,0.12989245,0.13265475,0.14600104,0.15598434,0.16402742,0.17271114,0.18182762,0.19481196,0.19858434,0.20568841999999998,0.21269295000000002,0.20701491,0.19808572000000002,0.18975415,0.15725018,0.12296359000000001,0.093784112,0.060054832,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,building,2 gas,0.0026111999300000004,0.0067608996,0.006056400009999999,0.0062887841800000005,0.00647809523,0.00722721748,0.0078717926,0.0083305291,0.008631393020000001,0.008844121590000002,0.009165757209999998,0.008973772060000001,0.00889418609,0.00879821245,0.008007395700000001,0.00731787638,0.0067306084900000005,0.005228516960000001,0.0041809604,0.00337521407,0.00241759295,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,building,3 coal,2.4299997E-5,4.899999E-5,7.35E-5,7.305944000000001E-5,4.418915E-5,3.9810999E-5,3.5273419E-5,3.1129812E-5,2.4238329E-5,1.933638E-5,1.5940136999999998E-5,1.0833504E-5,7.8322912E-6,5.8822223E-6,3.4146175999999998E-6,2.1760184E-6,1.4782712E-6,7.2705961E-7,4.1155461E-7,2.5362816E-7,1.32560705E-7,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,building,4 biomass,0.027327987999999998,0.042627778000000005,0.046862899,0.047012021,0.05227367499999999,0.056057143,0.05819472,0.05669404,0.051812014,0.046675492,0.041685415,0.035061714,0.028645393000000005,0.02306718,0.015422888999999999,0.009637511000000001,0.0062423567,0.0030318386,0.0015497959,8.5287411E-4,3.8642834E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,building,5 electricity,0.113476292,0.195164677,0.222235499,0.2520044,0.29639372999999997,0.34361465999999996,0.40842239,0.4806813200000001,0.57378083,0.67716216,0.8051259799999999,0.93632341,1.10229165,1.29441907,1.54224111,1.8146684400000002,2.1064998299999997,2.4097177,2.6810291,2.892163,3.1177460000000004,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,building,6 hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,building,7 trad biomass,0.327264,0.4026073,0.4420999,0.4452606,0.4424821,0.4318257,0.40998609999999996,0.3853631,0.3583784,0.32977009999999995,0.298118,0.27303869999999997,0.2432515,0.2118744,0.17981640000000002,0.14889618000000002,0.12013033,0.09554201000000001,0.07608263,0.061161679999999996,0.04923208,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,building,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,industry,1 liquids,0.29809169999999996,0.28863489999999997,0.2886614,0.2776126,0.295358,0.3250133,0.3505277,0.3751167,0.40376910000000005,0.43265410000000004,0.4664535,0.48785880000000004,0.5119251,0.5343521999999999,0.5435931,0.5448459,0.5458518,0.5192814,0.471271,0.42058699999999993,0.35237520000000006,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,industry,2 gas,0.135274,0.5527302000000001,0.7142509000000001,0.76267277,0.8155413980000001,0.8998651099999999,0.984743956,1.05890552,1.1253942909999999,1.1830008010000004,1.2458389049999998,1.265376548,1.2900121779999998,1.3109578480000004,1.2852170849999995,1.265299932,1.2549339699999997,1.177205039,1.1258823339000004,1.0853204441,1.0346420257500002,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,industry,3 coal,0.00853943,0.0182511,0.0156137,0.0202899,0.01659051,0.01686776,0.01716023,0.01742704,0.01640646,0.01548461,0.014806940000000001,0.01238403,0.01077883,0.00958108,0.00733397,0.00604325,0.005127952,0.003664352,0.0029777980000000003,0.002584292,0.002224374,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,industry,4 biomass,0.28771163,0.14346239,0.12963233000000002,0.1369915,0.1665219,0.1935885,0.221977,0.2432165,0.2604787,0.2735996,0.28570270000000003,0.2886419,0.2843767,0.2747751,0.2377419,0.1925094,0.15793749999999998,0.10523400000000001,0.0716138,0.051053799999999996,0.0321754,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,industry,5 electricity,0.04906937,0.11436448,0.11606292,0.14405866,0.17450258,0.20128647,0.2411826,0.2875646,0.34703985000000004,0.41166331,0.48490474,0.5638910199999999,0.65511409,0.7532511,0.8875852399999999,1.0302577099999999,1.1732784800000002,1.3558001880000001,1.518672072,1.6468496955,1.7957500092999998,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.0027101599999999997,0.00490399,0.00765508,0.010931360000000001,0.01490557,0.01989838,0.0263143,0.0311803,0.0380808,0.0467853,0.0572913,0.0686491,0.081227,0.0967112,0.1096575,0.1226467,0.1273273,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,industry,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,industry,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,transportation,1 liquids,0.45712311970999997,0.8199270491999999,0.929745754,0.9430423140000002,0.9938521725999998,1.05278269291,1.121862020375,1.1866681643990002,1.2683093500509999,1.347624720147,1.4368471939130003,1.5252499238759998,1.6410426882029991,1.7729635656799996,1.922736529749999,2.0814346469100005,2.25601360609,2.3809267014,2.4536752331300002,2.4639453911699993,2.378326588040001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,transportation,2 gas,0.0,0.0,0.0,0.0061400257483999994,0.01714825157,0.03517782333389999,0.060312593225599995,0.09294435131178004,0.1336333606277,0.1819592165311501,0.25051483641893,0.30327154515389987,0.3673159820666999,0.4398100672508999,0.5217732415635999,0.6142740392780001,0.7210445373530004,0.8205035503970001,0.9335221300950002,1.0580323823350002,1.197420816906,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,transportation,3 coal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,transportation,4 biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,transportation,5 electricity,3.75595E-4,3.75398E-4,9.163940000000001E-4,0.0015835225137999995,0.0029469824086600003,0.00423794547335,0.0058531624849599995,0.007788717202180001,0.010158667601600004,0.0131439474355,0.01719347386069999,0.022710148144,0.030082598317,0.03941828863400001,0.052356233434,0.06870569555,0.089184735402,0.11441881141,0.14468247650999996,0.17915800484,0.21781911801,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,transportation,6 hydrogen,0.0,0.0,0.0,0.0,3.5829240199999993E-4,0.0012551883900000001,0.0025736067206000002,0.004342722661399998,0.0064213276028,0.009121164454,0.012700623183000002,0.017190181316000003,0.023122004385999997,0.030540050800000006,0.040636695016999985,0.05312427372000002,0.06840550789,0.08648780203999996,0.10722948089000002,0.12972248460000002,0.15578057839999998,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,transportation,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,transportation,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,building,1 liquids,0.6593595,0.1389404,0.4440808,0.5820793999999999,0.6502521,0.7455259000000001,0.8159227,0.8744369999999999,0.9334652,0.9827612,1.0242974,1.0396529,1.0433461,1.034851,1.0023939,0.9448766,0.8853568,0.7760967000000001,0.6320359999999999,0.5011699000000001,0.3343846,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,building,2 gas,1.6334394,1.1480690000000002,1.118998,1.407222,1.593291,1.786996,1.928521,2.0286039999999996,2.100102,2.138405,2.1568820000000004,2.108775,2.041265,1.960819,1.814911,1.676319,1.554418,1.3490349999999998,1.189454,1.060996,0.891206,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,building,3 coal,0.1318733,0.017269800000000002,0.1842459,0.18661243,0.1194514,0.103336377,0.088526937,0.07565993,0.057099205,0.043663351,0.033835780999999995,0.022133224,0.015123192399999999,0.010607072700000001,0.0059550936,0.0036343138,0.0023406894,0.0011681179,6.6853649E-4,4.1567020999999996E-4,2.2503623999999998E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,building,4 biomass,0.026371699999999998,0.0180835,0.0205952,0.018920185,0.021349999999999997,0.02153142,0.02143531,0.02013618,0.017978413,0.015796024000000002,0.013654533,0.011371293999999999,0.009148091,0.007234348,0.0050165800000000005,0.003211016,0.0021322025000000003,0.0011720960000000003,6.621287E-4,3.978292E-4,2.0850925000000004E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,building,5 electricity,0.118443223,0.191195505,0.18565219500000002,0.28244220999999997,0.34653449000000003,0.39540991000000003,0.46229774,0.52874818,0.6084666400000001,0.68592343,0.76120545,0.8460312,0.93051068,1.0162707599999998,1.1500843,1.2812213799999999,1.39962451,1.5910741000000002,1.7798593,1.9531001,2.1699146000000002,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,building,6 hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,building,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,building,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,industry,1 liquids,0.6271662,0.3493981,0.34506349999999997,0.418620341,0.456106082,0.5222963140000001,0.578187372,0.6342648399999999,0.6963316970000001,0.7589524929999999,0.8229622740000001,0.87415669,0.922968144,0.970551072,1.014192968,1.0483274660000002,1.0897344961,1.1282393801000001,1.1467807655,1.1762314218000003,1.176844005,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,industry,2 gas,0.5559638,0.9350109000000001,1.3609149999999999,1.54458809,1.68782687,1.83002023,1.9183728799999995,1.9693770599999998,1.9799314599999998,1.964267756,1.9342660459999999,1.8394832329999997,1.7343178209999999,1.626181103,1.439808367,1.276180998,1.1423326380000003,0.9226063950000002,0.7792917319999998,0.6818902644,0.5667670163,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,industry,3 coal,0.8018986,0.46026922000000003,0.6165355499999999,0.69236863,0.64689064,0.66687395,0.6671461399999999,0.66093537,0.6211555,0.58075166,0.54394676,0.45868002999999996,0.38832805,0.32951006,0.23768297,0.17633122999999998,0.134408853,0.08175510700000001,0.053715501000000006,0.037487183,0.022505907,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,industry,4 biomass,0.001507,0.004227902,0.002888394,0.0034521630000000003,0.004473039999999999,0.00514988,0.005762150000000001,0.00615234,0.00644007,0.00660941,0.006684310000000001,0.0066330700000000005,0.00633956,0.0059241499999999996,0.00504401,0.00396799,0.00316427,0.002129208,0.001465662,0.001071364,7.06995E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,industry,5 electricity,0.6045806,0.40294248,0.41245642,0.543054,0.60557611,0.63791969,0.70035634,0.75964942,0.8338333099999999,0.9039314799999999,0.96982877,1.04545335,1.12165888,1.19948417,1.3296311399999998,1.4518351810000003,1.5579299880000002,1.730838396,1.8767940333,1.9961641825,2.1126568565,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.0040155569999999995,0.007007340000000001,0.010480370000000001,0.0144878,0.01929255,0.02490608,0.03136311,0.03562177,0.0411779,0.0475621,0.0562786,0.0642963,0.0727339,0.0874989,0.09695129999999999,0.104215,0.1021432,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,industry,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,industry,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,transportation,1 liquids,0.6583389149000001,0.4508526822,0.5779941610000001,0.7726623609,0.8900985189999997,1.0217819690999996,1.1487001651,1.2692978277000004,1.4027463328999994,1.5369152443,1.6761364867999993,1.8042177091000005,1.9335315559000004,2.0675493776999994,2.1926500133,2.3084677700999987,2.4277163288999994,2.50614761862,2.5455801001799996,2.5680436975399994,2.4656993539000003,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,transportation,2 gas,0.007282598300000001,0.0054410685,0.0154861418,0.02915896584,0.045148077250000015,0.06764161755,0.09430988639,0.12460783827,0.15929459317999992,0.19685818200000005,0.23933348042,0.27664246780999996,0.31496129732,0.35399516785000007,0.39102982210000004,0.4275124234,0.46481159299999997,0.49576055230000016,0.5288567192999997,0.5685650813,0.6026735564999997,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,transportation,3 coal,0.00209284,0.00146499,0.00117201,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,transportation,4 biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,transportation,5 electricity,0.0413727874,0.019703302199999998,0.0193370096,0.027864980240899995,0.0344477525124,0.0414913534409,0.04943836338560001,0.057783343791500005,0.0673107699221,0.077338633977,0.08823994793899997,0.100859397662,0.115071355873,0.13167160675499998,0.15207981379600002,0.17617444386999997,0.20469003264,0.24073556549000003,0.28620748038999994,0.3432837534499999,0.40599995903999986,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,transportation,6 hydrogen,0.0,0.0,0.0,0.0,3.433842592E-4,0.0012233905861000001,0.0026227076651999994,0.004602686485,0.007355287589,0.0109693845177,0.0157566667877,0.021642278768300008,0.028614912807999996,0.036867437494000004,0.046774510442000004,0.058299216614999996,0.07170580538000002,0.08804967675600002,0.10790762338700001,0.13173308549499999,0.157089987101,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,transportation,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,transportation,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,building,1 liquids,0.3061648,1.555234,2.050779,2.678442,3.639331,4.648056,5.570506,6.453749999999999,7.308527000000001,8.05321,8.61932,8.8735,8.93206,8.84642,8.37658,7.8009200000000005,7.26327,6.3167,5.174321,4.107591,2.930326,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,building,2 gas,0.0961327,0.6612279,1.3825318,1.9823827,2.71941,3.494809,4.2334119999999995,4.890334,5.429319,5.810703999999999,6.035001,6.074762,6.045549,5.985114,5.776946000000001,5.695479,5.602886,5.167359,4.78465,4.357428,3.8706018,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,building,3 coal,4.07266,2.942506,2.8680760000000003,3.2534349999999996,2.157084,1.9929640000000002,1.7996450000000002,1.605948,1.2578370000000003,0.9946,0.789806,0.5243454999999999,0.3612976,0.25599689999999997,0.1427544,0.0869161,0.056144809999999996,0.028411250000000002,0.016883,0.011151959999999999,0.006923490000000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,building,4 biomass,4.707E-4,2.559E-4,1.905E-4,2.001561E-4,2.46264E-4,2.699695E-4,2.825522E-4,2.7710880000000003E-4,2.573332E-4,2.3270609999999998E-4,2.0404899999999998E-4,1.691425E-4,1.331829E-4,1.026853E-4,6.581749999999999E-5,3.9504809999999996E-5,2.459749E-5,1.155986E-5,5.67091E-6,3.024051E-6,1.3194340000000001E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,building,5 electricity,0.2950606,2.0792284,3.5675333,4.783513,5.9987545,7.4126853,9.1195099,10.913426099999999,12.628232400000002,14.320419900000001,15.9853339,17.590307600000003,19.2667114,20.931539200000003,22.7777885,24.4990417,25.9278662,27.428986000000002,28.41313,28.558458,29.055813999999998,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,building,6 hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,building,7 trad biomass,8.39255,8.28969,8.064680000000001,6.90845,6.36707,5.5114,4.70171,3.98602,3.48395,3.02528,2.6021799999999997,2.352038,2.078745,1.8084959999999999,1.622965,1.417997,1.214936,1.139719,1.09311,1.090354,1.21085,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,building,8 district heat,0.10248519999999998,0.6540789,0.7637187000000001,0.9535382,0.9277898,1.0163820000000001,1.0767894999999998,1.1095722,1.0477334,0.9739578000000001,0.8933015999999999,0.7254124,0.5936950999999999,0.48854190000000003,0.34114859999999997,0.24886259,0.188625,0.1251757,0.09113245,0.06946397,0.050448256999999996,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,industry,1 liquids,2.6242009,5.240338,7.020378,8.119762000000001,9.673582779999998,10.924692010000001,11.93930236,12.828167949999997,13.64583505,14.35409583,14.925186505,15.328369815999999,15.61503289,15.893280204,15.991356,16.079790000000003,16.258586,16.284269,15.975142,15.508167,14.947635,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,industry,2 gas,0.374396,0.799275,1.376136,1.9853117,2.3173265,2.606239730000001,2.82686377,2.9830072599999995,3.0718053999999992,3.1047820300000004,3.0903727200000013,3.020498279999999,2.92529202,2.832124049999999,2.6796250300000004,2.5753260899999995,2.4797817299999996,2.1940955300000007,1.95102931,1.754878682,1.5358427190000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,industry,3 coal,10.413069,21.075282,26.004498,30.455748,29.774348799999995,30.704625500000002,30.850284800000004,30.570913200000003,28.932576899999997,27.156628599999994,25.248818799999995,21.842876959999998,18.819087500000002,16.2488793,12.288997859999998,9.587607705000002,7.690040403999999,5.216259858180001,3.849885859223,2.997325092517601,2.24464696883254,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,industry,4 biomass,2.31E-4,2.201E-4,1.918E-4,2.24199E-4,3.07835E-4,3.62642E-4,4.09883E-4,4.39406E-4,4.62935E-4,4.75541E-4,4.75877E-4,4.75358E-4,4.5184E-4,4.18538E-4,3.5177E-4,2.72468E-4,2.12876E-4,1.34241E-4,8.33369E-5,5.31838E-5,2.8173E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,industry,5 electricity,1.661754,5.534131,9.307801999999999,10.167335999999999,10.579701100000001,10.8224426,11.396058,11.89193,12.36206,12.867186000000002,13.412227999999999,14.434947999999999,15.592528,16.780082299999997,18.8103043,20.511384200000002,21.85024625,23.987182559999997,25.303825930000002,25.696944703,26.238957665,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.02553467,0.04592662,0.0703993,0.0987967,0.1337456,0.17488700000000001,0.2217559,0.26246590000000003,0.310465,0.36619199999999996,0.444645,0.515265,0.586704,0.695324,0.747566,0.762888,0.70148,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,industry,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,industry,8 district heat,0.514364,1.86154,2.28925,2.71929,2.90946,3.20284,3.39227,3.51986,3.50045,3.42755,3.30591,2.97459,2.64048,2.33175,1.80865,1.4261,1.15043,0.774717,0.536102,0.376135,0.226,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,transportation,1 liquids,1.3319613839999997,6.077096404999999,8.780945389000001,10.363861320000003,12.260998632000002,14.307670230000008,16.406904759199996,18.532181108900012,20.447560439399997,22.247063537900022,23.884645520999996,25.3875289335,26.886597868899997,28.40302469360001,29.755882161399995,31.164739905200005,32.632068649,33.490741926000005,33.58878932100001,32.65110274980001,30.993127166499995,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,transportation,2 gas,0.0,0.05478884174,0.2997685478,0.44599205118000007,0.61010651203,0.7885992277799999,1.00071032165,1.2469385686909995,1.5168182045700003,1.8174475220500004,2.1756582906000004,2.501886846100001,2.8502635769000007,3.2189063788,3.6142018953000012,4.082687416299999,4.6142201999,5.1799551599,5.7979687591000015,6.3509108785,7.092808975200003,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,transportation,3 coal,0.410488,0.167929,0.131807,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,transportation,4 biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,transportation,5 electricity,0.0224580899891,0.072697999979,0.143434199946,0.18736611655040003,0.22856527258649997,0.2701897013118,0.31601612694349995,0.3622069108362702,0.40619581686720013,0.45116251074099994,0.49896538228100007,0.5536416674079998,0.6132507768300001,0.68075126346,0.7636097388800002,0.85825187869,0.9628777242200003,1.0882861563,1.2227360178000002,1.3395411863000009,1.4818110605000003,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,transportation,6 hydrogen,0.0,0.0,0.0,0.0,0.00103067102,0.003948778679999999,0.00837077051,0.015008795904999999,0.022220450805,0.031467212200000004,0.04291039702000001,0.0593909118,0.07776437621000001,0.0984455515,0.12319700429999998,0.15212976659999997,0.18438514219999996,0.22346968110000007,0.26698033679999994,0.3067479444000001,0.3479089351,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,transportation,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,transportation,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,building,1 liquids,0.050818050000000003,0.03436699,0.03302752,0.05068062,0.05436729,0.059924250000000005,0.06434888,0.06902749000000001,0.07567401000000001,0.08263778,0.09161909,0.09765751999999998,0.10537087,0.11268236000000001,0.11559848,0.11434740999999998,0.11291437,0.09876573,0.07969532,0.06258959,0.04116694,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,building,2 gas,0.00447901,0.03733909,0.04575303,0.06474595,0.07186763,0.08051765,0.08784447,0.0943684,0.10144538,0.10760433,0.11542117000000002,0.11804507000000002,0.12178757,0.12459096000000001,0.11867158,0.11154815,0.105441604,0.08423998199999999,0.068641839,0.056677837999999994,0.041440442999999993,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,building,3 coal,0.00514881,0.002679,0.0021767,0.00253893,0.00168303,0.00157519,0.00142842,0.00129788,0.0010594,8.80707E-4,7.50353E-4,5.3147E-4,3.95136E-4,3.00224E-4,1.76551E-4,1.10811E-4,7.33621E-5,3.50369E-5,1.90897E-5,1.14479E-5,5.81939E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,building,4 biomass,0.0030139,0.015362698,0.014609205100000001,0.015597657800000001,0.0187157252,0.020589543000000002,0.022117994,0.022401159,0.021517901000000002,0.020321607000000002,0.018899181400000003,0.016677661700000002,0.0141910153,0.0117897446,0.008218316800000002,0.0052472897,0.0034466833000000004,0.0017261142999999998,9.093361699999999E-4,5.1722448E-4,2.4590322E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,building,5 electricity,0.0664531,0.09299784999999999,0.10953852,0.15750528,0.18119806000000002,0.19742697999999997,0.22902701999999997,0.26395165,0.3056428,0.35084586,0.40801875000000004,0.46484290000000006,0.5404983999999999,0.6321793,0.7558020000000001,0.9003962,1.0584969000000002,1.2356544,1.3992533,1.5268594,1.6695357,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,building,6 hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,building,7 trad biomass,0.14111010000000002,0.0457948,0.0595668,0.0510138,0.052274799999999996,0.0535504,0.052087400000000006,0.050381999999999996,0.0491862,0.0476722,0.045328,0.0443332,0.0420893,0.038790000000000005,0.0355418,0.031404600000000005,0.0269245,0.0231565,0.01982954,0.017148240000000002,0.01497405,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,building,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,industry,1 liquids,0.0826317,0.1350403,0.1260403,0.1898949,0.2162436,0.2440958,0.275339,0.3096019,0.3522168,0.3976169,0.45192299999999996,0.5010729,0.559287,0.6207750999999999,0.681401,0.7344704000000001,0.7867226,0.8111493999999999,0.8074944000000001,0.7970843,0.7673929,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,industry,2 gas,0.045250719999999994,0.11310564000000001,0.1281834,0.17596822,0.198338162,0.219471942,0.24147404299999997,0.264359825,0.28850044399999997,0.310081814,0.33357323,0.34836575999999997,0.364868652,0.3785038500000001,0.3809538099999999,0.37903006999999994,0.37331661,0.33486426099999994,0.3018432593,0.2732582793,0.23323214150000005,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,industry,3 coal,0.09008286,0.08568747,0.06563637,0.09162580000000001,0.08669272,0.09102679999999999,0.09570891000000001,0.10049073,0.10156230999999999,0.10220524,0.10435249999999999,0.09584649,0.08995764,0.08471082,0.0689037,0.0574622,0.04858626,0.03264006,0.02344181,0.0175762,0.01161749,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,industry,4 biomass,0.08388743,0.06932007999999999,0.05739002,0.07357767999999999,0.09574308000000001,0.1115411,0.1291542,0.143949,0.1597333,0.1738067,0.1884884,0.20031369999999998,0.2079595,0.21093679999999998,0.1963382,0.16822979999999998,0.1438662,0.10071064,0.0699429,0.05014257,0.03106936,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,industry,5 electricity,0.03144656,0.04919917,0.05774638,0.0793968,0.08996457,0.09450231,0.1085907,0.12425273,0.1423096,0.16170881,0.18471296,0.21023404000000004,0.24362335999999998,0.28382145999999997,0.34892566999999997,0.428483618,0.510383806,0.635057892,0.7516683077,0.8431697123999999,0.9599794897,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,industry,6 hydrogen,0.0,0.0,0.0,0.0,4.187663E-4,7.52671E-4,0.001193663,0.001762857,0.002559554,0.003597463,0.00498837,0.00628624,0.00817326,0.010611780000000001,0.01430767,0.01842689,0.0231905,0.030667599999999996,0.036912200000000006,0.042599,0.0449131,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,industry,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,industry,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,transportation,1 liquids,0.25982116699999996,0.3344904186,0.36995192759999995,0.47616121359999986,0.5156526668,0.5436606656999999,0.5802002012999998,0.6146465197000001,0.6549875133,0.69348158597,0.7368118140399998,0.7790158694299997,0.8354392568100002,0.89871477282,0.9716097531899999,1.04677017956,1.1271094572,1.1852061290400004,1.2150142756600004,1.210227576021,1.1570542018529997,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,transportation,2 gas,5.441354E-4,0.00996141,0.02314587,0.032331725,0.037729239,0.045228359999999995,0.058242269,0.076159125,0.1005383527,0.12909413900000002,0.1687124206,0.20136769669999996,0.23964761400000006,0.28199017200000004,0.329276776,0.38094972200000005,0.438168614,0.48722316299999996,0.540532569,0.5969265830000001,0.6606387939999997,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,transportation,3 coal,4.18988E-5,4.18985E-5,4.18984E-5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,transportation,4 biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,transportation,5 electricity,0.0,1.7009829999999998E-4,2.039978E-4,7.114635495E-4,0.0015753093470000001,0.0023395355779999992,0.003357695475,0.004593376021000003,0.006110186274000001,0.00791063116,0.010341820709999994,0.013671263069999998,0.018060908450000003,0.0235493959,0.031033217539999998,0.04047282798999999,0.05214055016999999,0.06628998196,0.08333102807000001,0.10250769181799999,0.12355739626899997,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,transportation,6 hydrogen,0.0,0.0,0.0,0.0,2.6277794999999995E-4,8.4659956E-4,0.0017864652400000002,0.00306154658,0.004628459935000001,0.00647611547,0.008915628010000001,0.01193785311,0.01587618986,0.020699781999999996,0.027098013900000002,0.0349047499,0.044176407699999996,0.0548481849,0.06697340739999999,0.0796620156,0.09391257609999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,transportation,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,transportation,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,building,1 liquids,0.24714139999999998,0.1732166,0.1214777,0.1352331,0.15629490000000001,0.170008,0.1791366,0.1855545,0.1988288,0.208086,0.2176746,0.21753070000000002,0.21478999999999998,0.20528190000000002,0.1897711,0.16901159999999998,0.1486016,0.1212294,0.0975134,0.0767916,0.05202375,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,building,2 gas,0.5517149,0.871065,0.860852,0.971917,1.12231,1.2310379999999999,1.3167499999999999,1.368253,1.4400810000000002,1.467279,1.4888260000000002,1.438239,1.376847,1.2843779999999998,1.1639559999999998,1.041774,0.9259638000000001,0.7621129,0.6308037,0.5279954,0.40175630000000007,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,building,3 coal,0.9297528000000002,0.29515509999999995,0.395786,0.39633299,0.23762550000000002,0.19965106,0.16768383,0.14214993999999997,0.10886918999999999,0.08454106999999998,0.06665795,0.0443517,0.030716921000000005,0.021694381999999998,0.01249949,0.00775083,0.005008602599999999,0.0025912788,0.0014831223999999998,9.112196999999999E-4,4.8798805000000003E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,building,4 biomass,0.18079330000000002,0.4032788,0.4865389,0.4623635,0.56240842,0.5757383100000001,0.5782546299999999,0.54905245,0.5049135800000001,0.4525314,0.39436079999999996,0.33676217999999997,0.27140313900000007,0.21226377600000002,0.145617852,0.090901379,0.057883489999999996,0.0302729129,0.0159079665,0.0088084629,0.0040913458700000006,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,building,5 electricity,0.4053528,0.6730073,0.7623021,0.91273944,1.03308421,1.14147719,1.2816322,1.4093068,1.5731383,1.7176455,1.8771383999999998,1.9854311,2.0971642,2.1597787,2.2512334000000003,2.2894072000000003,2.2971429,2.3421757000000003,2.3760159,2.4160865,2.4493522,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,building,6 hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,building,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,building,8 district heat,0.6968018,0.4931711,0.4878252,0.5076466,0.47004189999999996,0.46598639999999997,0.4561966,0.44092770000000003,0.41672988000000005,0.38708734,0.35790105,0.31073555999999997,0.26873294999999997,0.2289117,0.18075364000000002,0.13988431,0.10835770000000002,0.074420809,0.051762101,0.036844473999999995,0.023225586,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,industry,1 liquids,1.1898275,0.89237042,0.7025773399999999,0.760755087,0.815793503,0.855250072,0.8819107400000001,0.9014930671,0.9296820685999998,0.9506308304999999,0.9745200869,0.9708740468000001,0.9672217444000001,0.9547666475400002,0.9311746000000001,0.903048,0.8822854,0.8469977000000001,0.83165308,0.83317413,0.81140624,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,industry,2 gas,1.5291414,0.89348242,0.73652373,0.7599660100000001,0.8317212500000001,0.8730714999999997,0.8888480099999998,0.8885689999999999,0.8817705299999999,0.8637229999999999,0.8414498700000002,0.79627499,0.7520748700000001,0.7111074,0.6572076900000001,0.61273881,0.5766362200000001,0.52110536,0.48265928,0.45665585099999995,0.42446052100000004,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,industry,3 coal,1.8672813000000001,0.9568871000000001,0.7632927000000002,0.7940556999999999,0.7055598,0.7022961,0.6666453000000001,0.6281361,0.5656286,0.5064968999999999,0.45911009999999997,0.36877235,0.30177864000000004,0.24817765,0.17556824,0.12879977,0.09737100000000001,0.058982181,0.03897696,0.027778144999999997,0.0174222227,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,industry,4 biomass,0.0631665,0.1629606,0.19644910000000002,0.2073387,0.2673826,0.30047630000000003,0.3263851,0.3367462,0.346178,0.3455027,0.33992310000000003,0.3239743,0.2948964,0.2605479,0.208064,0.1547673,0.1180438,0.07434858,0.04767036,0.03265411,0.01929796,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,industry,5 electricity,0.7759121,0.6411228,0.5702613000000001,0.6299387,0.64072916,0.64230427,0.6683837200000001,0.6919112199999999,0.72348009,0.75529538,0.79280686,0.8326002699999999,0.8818707100000001,0.92474672,1.00831861,1.07729379,1.1337623500000003,1.227861499,1.307273058,1.382490464,1.4351996113,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,industry,6 hydrogen,0.0,0.0,0.0,0.0,6.50329E-4,0.0010834339999999999,0.001573337,0.0021151900000000003,0.002782596,0.003534921,0.0044022,0.00491854,0.00549173,0.00609855,0.0068122,0.0073271,0.0077846899999999995,0.008624360000000001,0.00945127,0.01050593,0.010807190000000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,industry,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,industry,8 district heat,0.750089,0.318937,0.301512,0.31767,0.317115,0.325966,0.329998,0.329189,0.324435,0.315343,0.306688,0.28215,0.258424,0.233632,0.196646,0.162549,0.135535,0.0972035,0.0711992,0.0539051,0.0351515,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,transportation,1 liquids,1.1127674199999997,1.58671671,1.95276451,2.063390009,2.139930346,2.1707492359999994,2.207058593,2.21529775,2.275008634999999,2.3093411930000007,2.353427114,2.3763570040000004,2.4240806249999998,2.442188546,2.459576922999997,2.4442307947999997,2.4240403841999987,2.3546419871,2.2954000006000004,2.2481769621000005,2.10033942869,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,transportation,2 gas,2.9306526000000006E-4,0.001716241981,0.003683602396,0.022344911609,0.048478753749,0.0851226844938,0.1284428709196,0.17706715696999997,0.22989689231999996,0.28551235552000004,0.3615045932999999,0.4112848035000001,0.46840913599999995,0.5207010699999999,0.5769053789999998,0.6296579469999998,0.685866865,0.732837379,0.7949328239999998,0.8774482300000003,0.9409189440000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,transportation,3 coal,0.00774369,2.09293E-4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,transportation,4 biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,transportation,5 electricity,0.05481289988,0.03924419995,0.0329016,0.036185890953000004,0.040081846521,0.04388268299800001,0.048414905983,0.0532407869714,0.05943249349999999,0.06625905577,0.07525204425,0.08418361133,0.09526966923000002,0.10649461749999999,0.12139019980000003,0.1372858926,0.15544160889999997,0.17841829010000002,0.20781279189999996,0.2463016558,0.28372273979999996,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,transportation,6 hydrogen,0.0,0.0,0.0,0.0,5.647156E-4,0.0019219507999999998,0.00391721232,0.006553963800000001,0.009658455079999998,0.013480080969999999,0.018425204,0.023679519599999994,0.029676958900000012,0.0355002715,0.0421242402,0.04871693199999999,0.055656838499999986,0.0636739602,0.07352166970000001,0.08594685569999999,0.09721768980000002,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,transportation,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,transportation,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,building,1 liquids,3.514818,3.1240650000000003,2.567219,2.487598,2.4512470000000004,2.4384,2.3614859999999998,2.291365,2.220928,2.160126,2.0964490000000002,1.996434,1.8889859999999998,1.768807,1.568902,1.36639,1.186215,0.9397000000000001,0.7401175,0.5667474,0.36509379999999997,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,building,2 gas,4.076220500000001,6.4774638,6.419635799999999,6.50469172632,6.37283062342,6.402282550775,6.283911464531,6.102047391357,5.779258317546001,5.438576257878999,5.087527206095,4.638977160371,4.231995123661,3.8616700961265007,3.3888680698040003,3.0060360521963,2.6637530392081,2.1555020266144,1.7429220182709002,1.4147750127069,1.02038800814646,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,building,3 coal,1.0913161,0.13412570000000001,0.166614,0.16517824,0.10122315,0.08683313000000001,0.07291056,0.061559836,0.045434059,0.034306309,0.02622433,0.016698749,0.011076487000000001,0.007599029,0.0040264291,0.0023390483999999995,0.0014439445000000001,6.675991E-4,3.5213580000000006E-4,2.0386211E-4,1.0130282999999999E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,building,4 biomass,0.8571030000000001,0.9811536999999999,1.261439,1.1964748,1.3244987,1.3300424999999998,1.3166581000000002,1.2447636,1.11228,0.9872167,0.857223,0.7252897899999998,0.5851813499999999,0.46622075999999996,0.31848649000000007,0.20191312,0.13263539000000002,0.07119003099999999,0.039034005000000004,0.022712079,0.0113743114,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,building,5 electricity,3.3000860000000003,4.7709209999999995,5.288907999999999,5.44769,5.6601,5.849818,6.140090000000001,6.425805,6.727013000000001,7.021026999999999,7.305960000000001,7.647546999999999,7.982702999999999,8.279424,8.674434000000002,8.98828,9.247525,9.666296,10.044335,10.414522,10.6952101,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,building,6 hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,building,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,building,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,industry,1 liquids,5.894795099999999,6.3460536,5.5634467,5.6588806499999995,5.621671458000001,5.655526071000001,5.599503753000001,5.547116883,5.4403415729999995,5.3493891942000005,5.247451559,5.1216183364,4.9941628048,4.8770541904,4.665496699999999,4.4885985,4.3511284,4.1636852,4.0511948,3.9819949,3.8120588000000004,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,industry,2 gas,3.7821637900000002,5.29568818,4.82271882,4.959281509999999,4.773540199999999,4.79213938,4.547309010000001,4.25408242,3.832417710000001,3.442433999999999,3.08470685,2.709840213,2.404146331,2.15322032,1.8506797999999998,1.6370139400000001,1.4650674900000005,1.20986549,1.02624771,0.8978676500000001,0.756150708,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,industry,3 coal,3.3663794,1.9464392,1.7209446000000002,1.8058071999999998,1.4335177,1.349993,1.2458352,1.1553627,0.9994196,0.8707409,0.7618699999999999,0.60444875,0.48567884,0.39449168,0.27025412,0.193793491,0.143568733,0.0854237,0.055826975,0.03955257190000001,0.0255764729,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,industry,4 biomass,0.682894,0.975345,1.2491425,1.289184,1.546693,1.698264,1.775929,1.771974,1.693696,1.5943520000000002,1.4759860000000002,1.340773,1.171905,1.008875,0.769095,0.5541311,0.4123044,0.2541757,0.1610989,0.1099419,0.06725616,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,industry,5 electricity,3.21347,3.8579847000000003,3.6044654,3.642146,3.6051652,3.5499317,3.6264364000000002,3.7227358,3.8460988,3.9674573,4.0663086,4.2789021,4.4698157,4.636472699999999,4.8943653000000005,5.1073461,5.272601280000001,5.53306731,5.726061570000001,5.872178407000001,5.943594819,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.1466367,0.2345194,0.3269072,0.42590500000000003,0.525841,0.632494,0.740202,0.775142,0.821704,0.88849,0.942064,0.9825619999999999,1.018701,1.089898,1.160764,1.2443300000000002,1.243647,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,industry,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,industry,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,transportation,1 liquids,11.88477438499,15.5463074349,14.879495818099999,14.955108027590004,14.8227316756,14.533058285029997,14.183491388686006,13.766056202918998,13.453088598288003,13.110359274909998,12.721348014368001,12.405207675453997,12.131802293970997,11.867475432473004,11.507199744302993,11.116701476009998,10.734690231210001,10.173198836649002,9.649543370814001,9.151972148080999,8.298723787076996,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,transportation,2 gas,0.008706588599999999,0.0221433445,0.058225655700000004,0.140313968742,0.26307737040499996,0.45150821276699993,0.6425855985529999,0.8430380053919001,0.9879322665606,1.1356581598091,1.3026691205635996,1.4182525717450996,1.5296414462240004,1.6337232254729994,1.7305944338429997,1.8224506621549996,1.9079721230169995,1.9773116937,2.0502699187780005,2.129939265312,2.1682961712260003,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,transportation,3 coal,8.37166E-4,8.36967E-5,4.60482E-4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,transportation,4 biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,transportation,5 electricity,0.16501863,0.20612039999999998,0.2055559,0.21271385902170004,0.22908823538750997,0.25139541460809006,0.27559430627524295,0.30286845249643,0.32625872334514994,0.35378414996706004,0.38449094161382,0.4206306042384901,0.4614164040054199,0.5061840127726,0.559080656976,0.6197342242784003,0.6881261445344,0.7724093461203,0.8762391895967999,1.0049050992208,1.1210482835400002,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,transportation,6 hydrogen,0.0,0.0,0.0,0.0,0.00738236659997,0.024380561156890003,0.04564302777135001,0.07111414223265002,0.09282143112491999,0.11743494260006,0.14356615431400002,0.17083327238719995,0.19983921143001998,0.22987075709437998,0.26227071828785004,0.2966614943435101,0.33247729053809993,0.3727058204181001,0.4200670060241,0.4757332090184001,0.5287063033180001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,transportation,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,transportation,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,building,1 liquids,0.32767999999999997,0.0815851,0.1169568,0.13004670000000002,0.136019,0.1440202,0.1473286,0.15009240000000001,0.15382400000000002,0.1573936,0.1611092,0.1572072,0.1508389,0.1419438,0.12367429999999999,0.1046581,0.0882148,0.06517239999999999,0.046747300000000006,0.0332152,0.01960021,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,building,2 gas,0.4727254,0.6914017,0.6817742,0.78274968,0.80317354,0.8221281500000001,0.8286072,0.8255143500000001,0.8223368999999999,0.8124023800000001,0.80148586,0.77437582,0.74262379,0.7047883099999999,0.64743282,0.5915018699999999,0.53961562,0.45953388,0.39179285,0.33448724,0.262721329,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,building,3 coal,0.370461,0.07015729999999999,0.0408972,0.0362534,0.02073715,0.016787129999999997,0.013410890000000002,0.01078337,0.007705109999999999,0.00562261,0.00417558,0.0025769599999999997,0.0016588409999999999,0.0010941470000000002,5.61534E-4,3.1357E-4,1.8609939999999998E-4,8.19696E-5,4.12463E-5,2.27187E-5,1.062795E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,building,4 biomass,0.0228556,0.0411484,0.0728782,0.06369534,0.06931078,0.06694499,0.06416767,0.058328149999999995,0.051150379999999995,0.04424395,0.03772136,0.03136294,0.025151774000000002,0.019749578,0.013704430000000002,0.008701324,0.005684738,0.0030466241,0.0016527212,9.395997E-4,4.5773837999999996E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,building,5 electricity,0.117210499,0.21450207,0.255932339,0.326579837,0.35299618499999996,0.37287567600000004,0.41281906999999995,0.45868865,0.51956053,0.58345012,0.65350511,0.73005572,0.8057327599999999,0.87255826,0.95448873,1.02016185,1.07053298,1.14209367,1.19880059,1.24727181,1.30181515,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,building,6 hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,building,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,building,8 district heat,0.7695724,0.4095267,0.35609419999999997,0.3675392,0.33205280000000004,0.3176258,0.30160020000000004,0.2833259,0.2609304,0.238845,0.21829854999999998,0.19195397,0.16852744,0.14695426,0.12060992,0.09804287,0.07992355999999999,0.058456570000000006,0.043162683,0.032115165,0.021528132000000002,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,industry,1 liquids,1.0898259000000001,0.2304388,0.27313619999999994,0.28801251,0.30415453000000003,0.317476,0.32793642,0.33967871,0.35691443000000006,0.37517293999999995,0.39551478999999995,0.412877799,0.429335462,0.44389575400000003,0.45619471100000003,0.462339366,0.46958722399999997,0.47730288699999995,0.48185419,0.48807468,0.4807127727,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,industry,2 gas,1.4035244000000002,0.9338967,0.7051748999999999,0.7531928,0.76558166,0.78450214,0.7870533700000001,0.7816765700000001,0.76636762,0.74932409,0.7320076500000003,0.6979703029999998,0.6659905279999999,0.635007078,0.58029897,0.5362903179999999,0.5019369709999998,0.44109959000000004,0.402408586,0.37994537700000003,0.3538068977,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,industry,3 coal,1.60298597,0.9294597,0.76335939,0.8058991400000001,0.6977556100000001,0.67750546,0.6495955099999999,0.6234275300000001,0.5721760100000001,0.52645979,0.4882875,0.40959592,0.34649863999999997,0.294129498,0.213114197,0.15935529899999998,0.12254836899999999,0.0757748861,0.050884300599999994,0.0366630775,0.0237288446,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,industry,4 biomass,0.0021767,0.009460300000000001,0.036962398,0.038549031,0.04719319899999999,0.052393028,0.056088400000000004,0.05739137,0.05770736,0.0571816,0.05613383999999999,0.05385616,0.04974557,0.04498482000000001,0.036500172,0.027580033,0.021247191999999998,0.013348222000000002,0.008392845,0.005526577,0.0030272140000000003,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,industry,5 electricity,0.9016712,0.36485223,0.35591256,0.39508643,0.39955267,0.3897546,0.40597252999999994,0.42705287999999997,0.46071977999999997,0.49493845999999997,0.53108285,0.58166978,0.6353094399999999,0.68578843,0.76741504,0.836652576,0.892967178,0.982076329,1.0497426971000001,1.1037723702,1.1464011486999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,industry,6 hydrogen,0.0,0.0,0.0,0.0,8.03517E-4,0.001319005,0.001893122,0.0025339150000000003,0.003287529,0.00416539,0.00518663,0.00585308,0.0066858,0.00764898,0.00874415,0.00959637,0.01036866,0.01165439,0.01252128,0.01337789,0.013347939999999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,industry,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,industry,8 district heat,1.4268,0.611497,0.366962,0.385305,0.38649,0.393105,0.395087,0.392734,0.385945,0.375909,0.365262,0.343536,0.31992,0.295104,0.254446,0.216586,0.185408,0.138467,0.104634,0.0805562,0.0540687,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,transportation,1 liquids,0.66139176,0.31830357000000004,0.44644283,0.5502233700000001,0.5801879600000001,0.6046705130000001,0.634831231,0.6652062649999998,0.707606375,0.751382855,0.7998739210000001,0.8504620749999998,0.9028168377,0.9517009023999999,0.9899454012,1.0186027800000002,1.0424042708,1.0436036674999993,1.0340071937300006,1.0183450275300001,0.9531464563700003,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,transportation,2 gas,0.0030971621,0.0053992359,0.0027623203,0.01094330156,0.01980170323,0.032292862449999994,0.047549641700000006,0.06514955490000003,0.08467040979999996,0.10585210080000002,0.13125448570000003,0.1544766953,0.17917190490000004,0.204046352,0.227670789,0.25108461600000004,0.27517043599999996,0.2955346889999999,0.31740589299999994,0.3434743920000001,0.36219134799999997,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,transportation,3 coal,0.00339042,0.00251139,0.00150688,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,transportation,4 biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,transportation,5 electricity,0.0615388,0.0356149,0.0317076,0.04153515256999999,0.04626922044,0.05103599527700001,0.057417414517000005,0.06450538809800001,0.07309048942999997,0.08252887851,0.09369901226,0.10590657557,0.11977265129999995,0.1350155433,0.15323793580000003,0.17374938680999996,0.19721538665,0.22680213081,0.26288568058999995,0.30807655436000003,0.35718260879999997,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,transportation,6 hydrogen,0.0,0.0,0.0,0.0,2.3987363999999998E-4,8.288837400000002E-4,0.0017740470000000002,0.0031133074700000003,0.004850382129999999,0.00708175439,0.010069304930000002,0.013902699800000001,0.018455472500000004,0.023655503900000006,0.029679718700000003,0.0364872995,0.04418343789999999,0.0533815125,0.0644732505,0.07788582370000002,0.09164322300000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,transportation,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,transportation,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,building,1 liquids,0.17455621,0.17007719,0.1032687,0.1973976,0.2178009,0.2410264,0.2549105,0.2654312,0.2763856,0.2844651,0.2904519,0.28838980000000003,0.2839745,0.2734415,0.2495307,0.22091020000000003,0.19424419999999998,0.1533785,0.1192292,0.0914646,0.05845179,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,building,2 gas,0.0816269,0.3223216,0.3145365,0.6700346,0.7599206,0.8542434,0.9212473999999999,0.9649425,0.9873991,0.9887743,0.9777773,0.9319006,0.880716,0.8187683,0.7158854,0.6243432999999999,0.5461672,0.4244776,0.33656680000000005,0.2729045,0.1945073,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,building,3 coal,0.2178393,0.1388081,0.3130292,0.39262830000000004,0.25156375000000003,0.22211083,0.19270583,0.16784855999999998,0.12967067000000002,0.10164327999999999,0.0802429,0.053116937,0.036534792999999996,0.025729968,0.014079422000000001,0.008365804,0.0052608402,0.0024790118999999996,0.0013290398,7.836815000000001E-4,3.9558758E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,building,4 biomass,0.3855306,0.29917289999999996,0.27460159999999995,0.29767248999999996,0.33975102,0.35105171,0.35547238000000003,0.34140967,0.31066229,0.27807001000000003,0.24356171999999998,0.20552678000000002,0.16656542000000002,0.13281700000000002,0.090792686,0.057649979,0.037907722,0.01996603,0.0108335804,0.006307870299999999,0.0031157859,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,building,5 electricity,0.1666106,0.38871759999999994,0.49538309999999997,0.9417884,1.0730182,1.1987082,1.3214901,1.4236022,1.503829,1.5763634,1.6490377999999999,1.7161385,1.7807229000000002,1.8398163,1.9237713,1.9916254,2.0428567,2.120214,2.1905114,2.261358,2.3067098,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,building,6 hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,building,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,building,8 district heat,0.021989,0.0230787,0.025238299999999998,0.03931751,0.03602545,0.03649169000000001,0.035968230000000004,0.03477101,0.031820760000000003,0.028801355999999997,0.025883048999999998,0.021833162999999996,0.018542028000000002,0.015766373,0.012295188,0.009724357999999999,0.0077870100000000005,0.005470442999999999,0.0039403694,0.0028979694999999995,0.0018570404999999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,industry,1 liquids,0.61257837,0.5968394,0.6605515099999999,0.888133076,0.9500102630000001,1.0145611303000002,1.0576065753,1.0944921542,1.1208307371000001,1.1420306961,1.1560790419999998,1.1533485384999997,1.14452745258,1.12944922343,1.0879025,1.04149347,0.9988720799999999,0.9333793399999999,0.8831270400000001,0.8478524000000001,0.79048188,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,industry,2 gas,0.14119378,0.27539649,0.41689839999999995,0.6068845100000001,0.6794209999999999,0.7397843300000002,0.7769126099999999,0.79758694,0.8066524900000002,0.8018911000000001,0.7836230900000002,0.7497745790000001,0.709294254,0.6626628320000002,0.5893161880000002,0.52515846,0.471931425,0.39099507000000006,0.332011618,0.28965908999999995,0.23838312659999994,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,industry,3 coal,0.3951578,0.5029057,0.4900551,0.7107066499999999,0.6545544400000001,0.6665687400000001,0.66242014,0.6547450600000001,0.61243796,0.570191631,0.529430149,0.446765228,0.37897173199999995,0.321750872,0.23302125299999998,0.17361729099999998,0.13246039800000003,0.08101836000000001,0.053399718,0.037495538,0.0227285485,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,industry,4 biomass,0.0198223,0.0301546,0.0367114,0.043947023,0.055240199999999996,0.06015365,0.06485934,0.06692442000000001,0.06686266,0.06558452,0.06309908,0.06053599,0.056029640000000006,0.051093309999999996,0.04339356,0.034860484000000004,0.028487896,0.020877592,0.015709942,0.0127054403,0.0099666219,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,industry,5 electricity,0.2033621,0.29853250000000003,0.38256270000000003,0.5153591,0.55175763,0.57551093,0.60287551,0.6240823099999999,0.6370652299999999,0.6522251,0.6680194,0.6973464999999999,0.72586712,0.75756916,0.8213003999999999,0.8766864200000001,0.9204142799999999,1.0049098269999999,1.071967455,1.1273267770000002,1.174675133,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,industry,6 hydrogen,0.0,0.0,0.0,0.0,6.96788E-4,0.0012067660000000002,0.001805247,0.002504671,0.0033484250000000004,0.0043394639999999995,0.00546761,0.00629908,0.0073037499999999995,0.0083354,0.00953253,0.01043672,0.01123975,0.01267644,0.01396127,0.01554204,0.01610424,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,industry,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,industry,8 district heat,0.0179455,0.0518088,0.0556186,0.0823855,0.0870584,0.0934303,0.0973313,0.09954,0.0988609,0.0968773,0.0939178,0.0879757,0.0817611,0.0753672,0.0649267,0.0555035,0.0476415,0.035995,0.0274124,0.0211613,0.0140461,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,transportation,1 liquids,0.57466775,0.8779712999999999,0.95386852,1.5899333930000001,1.7426155599999995,1.866244096,1.949717203,1.9957453570000006,2.01368768,2.0246368089999995,2.020789647,2.0154693673999997,2.0088758657999994,1.9911002898000003,1.9592103824000004,1.9113630299,1.8572553706000003,1.7725999532999999,1.6896106486,1.6097369516799998,1.4640747945599997,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,transportation,2 gas,0.0,1.2569668999999996E-4,0.0028882340400000006,0.023612964790000003,0.04132196658,0.06893934294500002,0.102245429401,0.1395453952,0.1770986835,0.2130041398,0.2529168107,0.28895682829999997,0.32301025590000004,0.35449352200000006,0.38424269399999994,0.41136877099999997,0.436820728,0.4578171490000001,0.481842106,0.511507294,0.5305954669999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,transportation,3 coal,7.53474E-4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,transportation,4 biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,transportation,5 electricity,0.0047498098,0.004089939,0.0037967297,0.006619180655,0.00877351215,0.011706696649999997,0.015359515550000003,0.019672026400000004,0.02455056733,0.029695791290000002,0.03578754305000001,0.04288179311,0.050882574199999996,0.05963831443000001,0.06978495431000001,0.08126658850999999,0.09427277701,0.10995867804,0.12955852124,0.15402819721000008,0.17551010473000003,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,transportation,6 hydrogen,0.0,0.0,0.0,0.0,9.824897E-4,0.0031816921000000003,0.0064231581000000005,0.010517267500000002,0.0152046627,0.0199976662,0.0254507519,0.0314721546,0.037919366,0.04450348199999999,0.051446043,0.058624518,0.066063699,0.07426307400000001,0.08401040399999998,0.09563448200000002,0.10631533600000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,transportation,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,transportation,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,building,1 liquids,0.25459979,0.2119493,0.1942364,0.1458059,0.14605664,0.1453724,0.14115563,0.13482506,0.12968260999999998,0.12455094,0.11984428,0.11149906999999999,0.10343237999999998,0.09529141,0.0832335,0.0709043,0.06010825,0.045738923,0.03310541,0.023513001000000002,0.013845024,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,building,2 gas,0.0405206,0.0704745,0.07877970000000001,0.06816305,0.06818468,0.06875403,0.06750082,0.06506012,0.06124789,0.05697805,0.05287103,0.04689984,0.04159228,0.03684603,0.030500297999999995,0.025557613000000003,0.021498278,0.01574856,0.011778373000000002,0.008927143,0.0058981450000000005,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,building,3 coal,0.0018718989999999998,0.0017874000000000002,4.0679999999999997E-4,3.7719819E-4,2.3041686099999997E-4,1.91993191E-4,1.5587688E-4,1.2602347E-4,9.0521174E-5,6.5912405E-5,4.8556124E-5,2.9301189E-5,1.85228061E-5,1.21857951E-5,6.1243753E-6,3.40078E-6,2.0191871E-6,8.9120244E-7,4.5188133E-7,2.5220083E-7,1.21640948E-7,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,building,4 biomass,0.052335099999999996,0.055011,0.06963760000000001,0.07267269500000001,0.08155836,0.08382764000000001,0.08435622999999999,0.08032887,0.071717545,0.062989527,0.054025709,0.043802825000000004,0.034064331999999996,0.026189796,0.016660424,0.009937163999999998,0.006181501900000001,0.0029592514,0.0014812218,7.9505177E-4,3.5739573000000005E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,building,5 electricity,0.31109322,0.34174506,0.36375479,0.33218774,0.35111634,0.37036943,0.39139941,0.41231878,0.42841376,0.44610886000000005,0.46467738,0.48778036999999996,0.5085425299999999,0.52583086,0.5444210300000001,0.55863255,0.56813051,0.57983146,0.58911529,0.59687585,0.5967019,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,building,6 hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,building,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,building,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,industry,1 liquids,0.21590712999999997,0.22477619999999998,0.22737726,0.208772092,0.21383445270000004,0.22083597940000002,0.22526070153,0.22859341292999996,0.23088844758,0.23403288618999998,0.23743595677999996,0.24073183042,0.24436995569,0.24889455611900002,0.2507964188,0.25327554080000003,0.2569605838,0.2603810789,0.2640097515,0.26937854510000003,0.26804110362,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,industry,2 gas,0.10917080100000001,0.230933504,0.232654903,0.21515325000000005,0.205908136,0.20137740399999998,0.19131236799999998,0.17888110599999998,0.16355784000000007,0.148285714,0.13405190100000003,0.1178609547,0.1040397543,0.09263175900000001,0.07791218299999998,0.06715676499999998,0.05897458500000003,0.04761199469999999,0.04061276170000001,0.036358428100000006,0.03202372028,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,industry,3 coal,0.050495029999999996,0.03998891,0.038732380000000004,0.0379691,0.03030017,0.028366469999999998,0.026159440000000003,0.024128519999999997,0.02077508,0.01793926,0.015599059999999998,0.012178729999999999,0.00969616,0.007863479999999999,0.0053887729999999995,0.003941924,0.0030121339999999996,0.001904179,0.0013774249999999998,0.001103661,8.68728E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,industry,4 biomass,0.04076151,0.07529916,0.07674693999999999,0.06700259,0.08024298,0.08521882,0.08580841,0.08136362,0.07581662,0.06899644999999999,0.062227260000000006,0.05433127,0.04624547,0.03915344,0.02930017,0.0209173,0.01546633,0.0094213,0.006005411,0.004143208,0.002602279,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,industry,5 electricity,0.27421286,0.31001748999999995,0.30193238,0.31817563000000004,0.31280420800000003,0.317614023,0.32742269500000004,0.34022528800000007,0.346411438,0.35501505,0.36216463,0.38016874,0.39476115000000006,0.40675313199999996,0.420655899,0.432231843,0.440624724,0.4526949364,0.4612449642,0.4676136253,0.46662371142,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.01408954,0.02223587,0.03032314,0.038203799999999996,0.0461632,0.054211999999999996,0.0624501,0.06455140000000001,0.067889,0.07221570000000001,0.0761736,0.078024,0.07929,0.0823899,0.0825509,0.0824907,0.0768723,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,industry,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,industry,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,transportation,1 liquids,0.43711524500000004,0.520658647,0.547153511,0.49205786399999996,0.49465714999999993,0.4880653679999999,0.4796845010000001,0.467659445,0.46001288399999984,0.4504900539999999,0.44063349900000004,0.4349958799,0.4300375479999999,0.42504988800000015,0.4170127420000001,0.40707179200000015,0.396762501,0.38072175500000005,0.363124809,0.3457298200000002,0.31474362300000003,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,transportation,2 gas,0.0,5.02284704E-4,0.00301380219,0.005954693199999998,0.010766619849999999,0.01800600359,0.02521858041499999,0.032775302490000005,0.03813607706,0.043996450280000016,0.05071064605999998,0.05564069174999998,0.06046352956000001,0.06500568204000001,0.0691459545,0.07297937850000001,0.07642852259999999,0.07914418559999999,0.0819939376,0.0851488741,0.08707640670000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,transportation,3 coal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,transportation,4 biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,transportation,5 electricity,0.012997019999999998,0.01329472,0.01327883,0.012976259195000001,0.013929663020000002,0.015055886889999998,0.016205836484,0.017462708001,0.01848961992,0.019763313260000005,0.02119489721999999,0.0229541964,0.02487419649999999,0.026947483000000008,0.029369940499999993,0.0321067057,0.0351442123,0.038882386199999994,0.04348159229999999,0.04915038840000001,0.054440286000000004,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,transportation,6 hydrogen,0.0,0.0,0.0,0.0,2.658539E-4,8.675606000000001E-4,0.0016022779000000003,0.0024869015900000004,0.0032176819100000003,0.0041319227,0.005127030300000001,0.0062000371,0.0073593977,0.0085762102,0.0099115291,0.011326855100000002,0.0127959125,0.014418499800000003,0.016274384500000003,0.018405539,0.020425910600000003,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,transportation,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,transportation,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,building,1 liquids,0.4600417,0.8832046,0.959934,1.30507,1.73503,2.27964,2.80955,3.37881,3.98433,4.60281,5.17553,5.64828,5.95226,6.06405,5.71274,5.19176,4.60862,3.47733,2.59256,1.87544,1.12421,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,building,2 gas,0.0017163,0.0025953,0.0010046,0.0014394,0.00192393,0.00256051,0.00321109,0.0038767,0.00449683,0.00506111,0.005525,0.00582787,0.00593868,0.00588036,0.00542424,0.00486849,0.00429026,0.00324476,0.00244566,0.0018687,0.00125832,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,building,3 coal,0.446688,0.391768,0.576203,0.7776449999999999,0.6453422,0.7127931999999999,0.7273187000000001,0.718869,0.6224088999999999,0.5326472,0.4477932,0.3152998,0.22372209999999998,0.1590634,0.08757668,0.0510913,0.03111224,0.01362081,0.006738555,0.003661589,0.001687087,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,building,4 biomass,0.197244,0.251118,0.268741,0.349144,0.538656,0.698934,0.818308,0.871766,0.872891,0.832909,0.75541,0.654647,0.52771,0.406967,0.263873,0.15526,0.0933653,0.0416368,0.0191292,0.0094708,0.00385577,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,building,5 electricity,0.184944475,0.57539058,0.85964419,1.35061856,1.9401699800000003,2.77075199,3.9193918000000005,5.3528201,6.968176400000001,8.7698684,10.7308871,12.7683729,14.8546946,16.9057695,19.053796,21.042673,22.792056,24.562978,26.041133000000002,27.2625,28.31447,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,building,6 hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,building,7 trad biomass,4.4472504,5.21060866,5.57558156,5.04559128,4.707147,4.20366295,3.6304584699999998,3.0888161000000003,2.6568720200000002,2.25589103,1.88263559,1.61187104,1.34698089,1.09380294,0.91831923,0.74021703,0.57761008,0.449913012,0.333873454,0.243535789,0.179683716,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,building,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,industry,1 liquids,0.7228806999999999,2.0383724,2.24164569,2.8447445000000005,3.7571045,4.8193937,5.8701779,6.965532350000001,8.173648702,9.362191374999998,10.456331200000001,11.364281119999998,12.049823640000003,12.577155417,12.687702900000001,12.6199023,12.4994887,11.86257,11.493564000000001,11.221618999999999,10.737086999999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,industry,2 gas,0.2956998,0.7698883999999999,1.01945869,1.5343244000000005,1.9829409,2.5242188999999997,3.0962298,3.6932930999999996,4.1383977,4.520826700000001,4.815577210000001,4.9132628500000015,4.913697550000001,4.861888879999998,4.567066559999999,4.268089160000001,3.986454309999999,3.4196307100000007,3.00829314,2.7518642,2.4796058000000007,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,industry,3 coal,1.515456,1.9327159999999999,2.890781,4.32318,4.9296500000000005,5.94725,6.80991,7.6203,7.98776,8.1966,8.24602,7.55072,6.832039999999999,6.13947,4.82821,3.866291,3.128746,2.123765,1.553919,1.211096,0.901321,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,industry,4 biomass,0.94205929,1.1423207,1.2223073,1.4907393999999998,2.2708509,3.0234224,3.7883289,4.4729323,5.0956817,5.59681,5.929925,6.170609,6.081516,5.804892,5.066484,4.027826,3.17361,2.029754,1.276238,0.83808,0.473668,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,industry,5 electricity,0.5576199,1.0825294,1.5689967,2.2648740000000003,2.8443948000000003,3.5303511,4.433111,5.4435207000000005,6.4042425,7.3707592,8.339751600000001,9.2107524,10.128057,11.074974,12.4198951,13.8230485,15.1148232,17.0259644,18.56525568,19.7255449,20.739947301,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.004735909999999999,0.00994816,0.01738533,0.02760564,0.0414417,0.0589909,0.07880329999999999,0.0941745,0.1116721,0.1351609,0.15959689999999999,0.1837625,0.2082512,0.240691,0.274839,0.3115,0.317588,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,industry,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,industry,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,transportation,1 liquids,1.1069142999999997,1.5296741999999999,2.4980453000000002,3.1335447899999993,3.7936839399999984,4.55263537,5.336480446,6.177088059999998,7.016226194000001,7.904703359999999,8.802014689999996,9.831118530000001,10.906448280000005,12.026069709999991,12.944882770000001,13.813265010000002,14.647521939999999,14.902913950000002,15.165720669999992,15.289119099999995,14.544369970999998,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,transportation,2 gas,0.0,0.02762464,0.09630910000000001,0.161295557,0.25771485899999996,0.40862200699999995,0.621451511,0.9081178389999999,1.2635918139999998,1.684462207,2.223858116,2.7178832870000003,3.2496001509999997,3.8150892230000006,4.360777916000001,4.937010390000001,5.5498223499999995,6.030747320000001,6.609129559999999,7.315636990000002,7.858060850000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,transportation,3 coal,0.101546,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,transportation,4 biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,transportation,5 electricity,0.01472184,0.0357306,0.0466132,0.056452236647,0.06673673766099998,0.07844392547200003,0.091731583252,0.10684816336840004,0.12347017165999996,0.14210088491,0.16320536547000003,0.18722812864000002,0.213927542,0.24367925839999996,0.280845517,0.3233121292999998,0.37180637289999996,0.4396226624,0.5231416379999998,0.6271819729999999,0.7510274140000002,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,transportation,6 hydrogen,0.0,0.0,0.0,0.0,8.419231999999999E-5,3.3462429E-4,7.8420035E-4,0.001556007766,0.002690680876,0.00443362242,0.00698255994,0.01097642468,0.01611197339,0.022901908390000003,0.032104148799999996,0.044202951300000015,0.05984096469999999,0.0810348277,0.1111172612,0.1510843048,0.1982290138,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,transportation,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,transportation,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,building,1 liquids,0.2814667,0.4546411,0.3158761,0.5530027,0.796949,1.119053,1.440128,1.758959,2.071468,2.37121,2.632539,2.857733,3.02331,3.109179,2.980536,2.761112,2.465708,1.920592,1.461892,1.070513,0.6682937999999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,building,2 gas,7.53498E-4,0.0018836999999999999,0.0063208,0.01144498,0.01627519,0.02328914,0.03057381,0.03800679,0.044952990000000005,0.05153070999999999,0.057113950000000004,0.06128184,0.0639502,0.06482742,0.05945673,0.053024440000000006,0.04567837,0.033298470000000004,0.02439205,0.01809892,0.01204963,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,building,3 coal,0.0,4.19E-5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,building,4 biomass,0.042697189999999996,0.0251997,0.0225625,0.0277048,0.0348299,0.0393806,0.0422511,0.0420317,0.039288,0.035672,0.0314993,0.02681017,0.02190803,0.01740363,0.012018689999999999,0.00751921,0.00473783,0.002300404,0.001129291,5.863590000000001E-4,2.575683E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,building,5 electricity,0.04948782,0.2339792,0.34830839999999996,0.6131141,0.840193,1.129311,1.4885579999999998,1.88346,2.294082,2.7201310000000003,3.142048,3.545172,3.9248700000000003,4.2880389999999995,4.639067000000001,4.986466,5.270478000000001,5.614207,5.815635,5.903428999999999,5.989075,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,building,6 hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,building,7 trad biomass,1.41181,1.78826,1.93778,1.72233,1.57688,1.37667,1.18093,1.00215,0.860595,0.72557,0.604168,0.517972,0.438991,0.364559,0.324671,0.276997,0.229239,0.194915,0.158683,0.125879,0.103557,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,building,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,industry,1 liquids,0.4106464799999999,0.7316704,0.7715635000000001,1.1134812,1.4665369,1.8390173,2.1623863,2.4540773999999996,2.7215703,2.9783760999999997,3.2123863999999998,3.410848,3.5698796,3.6900843,3.6979211,3.6628291,3.5892119,3.3582338000000003,3.1387805,2.9049717,2.5932796,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,industry,2 gas,0.56046308,0.9859714100000001,1.0291714,1.5493608,1.93010959,2.3342034900000006,2.66577409,2.91438973,3.055026329999999,3.14193385,3.172894079999999,3.1263783350000005,3.04951606,2.9512547300000005,2.7468825540000004,2.551161344,2.348450408,1.9970077279999998,1.6937767380000002,1.4493994699999997,1.1737130950000003,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,industry,3 coal,0.0896639,0.349156,0.538446,0.8751399999999999,0.95148,1.099038,1.204996,1.278886,1.2637209999999999,1.233803,1.193045,1.053637,0.933601,0.827773,0.643615,0.5151884,0.4161952,0.2826122,0.20203929999999998,0.1509036,0.1044065,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,industry,4 biomass,0.366359198,0.29419201,0.29268510000000003,0.46168326,0.68271181,0.88537398,1.07805342,1.22415845,1.33444149,1.4184332,1.4721077,1.5129835,1.4980712,1.4477829,1.2966318,1.0741173000000002,0.88091753,0.61169174,0.41130519,0.28194456,0.16634149999999998,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,industry,5 electricity,0.052332260000000005,0.1537673,0.1843889,0.3080524,0.38224186,0.45271288000000004,0.54658274,0.6384922299999999,0.7178871299999999,0.7944062199999999,0.8668367600000001,0.9259796,0.9865935,1.0543002000000001,1.1790513,1.3399455,1.52119191,1.8721155500000002,2.19733088,2.469925804,2.8018811809999997,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.00462162,0.00922439,0.01521489,0.0225316,0.031194680000000002,0.0411437,0.052015900000000004,0.0588475,0.0683478,0.0836503,0.101265,0.1226274,0.1454956,0.18672640000000001,0.230303,0.275133,0.313639,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,industry,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,industry,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,transportation,1 liquids,0.4973025299999999,1.1106036400000001,1.5672106600000002,2.1689737200000003,2.656104,3.209681710000001,3.7765044679999997,4.355903394999999,4.919039006999998,5.4850002159999995,6.011582940000002,6.615684669999999,7.187073089999998,7.722977419999999,8.058403169999997,8.335741480000001,8.504542029999998,8.459639650000003,8.32879027,8.081431299999995,7.520039518000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,transportation,2 gas,0.0,2.0917818E-4,4.1865607E-4,0.03242628868,0.08116057097,0.15986721312,0.27034367618000005,0.41952383569999985,0.6069603917000002,0.837729072,1.1269130107,1.4307609219999997,1.7548951539999997,2.09811647,2.4263212430000003,2.774708531,3.1205814719999987,3.450105517,3.7919009320000003,4.18276895,4.573010250000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,transportation,3 coal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,transportation,4 biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,transportation,5 electricity,0.0,0.0,0.0,8.8106342E-5,6.380807669999998E-4,0.001332623046,0.0024145955570000007,0.004018198432000001,0.006265816327999999,0.009331553850000002,0.013430324180000001,0.018886318699999998,0.02561514808,0.03393709808,0.0444094495,0.057698942399999995,0.07401139229999999,0.0968754579,0.12607838189999998,0.16252762259999995,0.20061397,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,transportation,6 hydrogen,0.0,0.0,0.0,0.0,1.5034094E-4,5.9749071E-4,0.00141600487,0.0027908107099999997,0.00482050997,0.007831821020000001,0.012105447709999998,0.01843688641,0.02587912372,0.0346745349,0.0446317266,0.0565178506,0.0699902868,0.08757157479999998,0.10958644340000001,0.1352894097,0.16511897309999998,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,transportation,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,transportation,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,building,1 liquids,1.526862,1.7262730000000002,1.2785410000000001,1.129803,1.052395,1.063983,1.049283,1.0309439999999999,1.011319,0.9912449999999999,0.967951,0.922558,0.8716010000000001,0.812525,0.7233310000000001,0.6277032,0.5457996,0.435202,0.3344718,0.2553669,0.1660088,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,building,2 gas,0.4780083,0.9357639999999999,1.120498,1.023761,1.04671,1.07975,1.087191,1.075974,1.038573,0.990388,0.9354739999999999,0.854063,0.7694696,0.6836444,0.5649529,0.4703037,0.3967115,0.2970418,0.2307206,0.184745,0.1325517,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,building,3 coal,0.0410149,0.0231682,0.0213486,0.0211581,0.0126365,0.0105762,0.00895228,0.00762654,0.00570576,0.0043708,0.00342213,0.00223798,0.00154594,0.00110481,6.34285E-4,4.03568E-4,2.73029E-4,1.46325E-4,9.02424E-5,6.05993E-5,3.57198E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,building,4 biomass,0.0041988,9.693E-4,7.974E-4,7.35437E-4,8.61922E-4,8.91443E-4,9.12029E-4,8.75817E-4,7.88149E-4,6.98817E-4,6.09029E-4,5.03968E-4,4.02225E-4,3.15112E-4,2.08543E-4,1.29636E-4,8.45063E-5,4.29658E-5,2.31397E-5,1.35392E-5,6.53488E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,building,5 electricity,1.4177565,2.2208717,2.3330016,2.6086169000000003,2.6662144,2.6587064999999996,2.6831804000000004,2.7052313000000003,2.7416761000000003,2.7676861,2.7912765999999998,2.8125653,2.8308919,2.8423949,2.8742368,2.8848053,2.8719437,2.8940807,2.9057500000000003,2.918697,2.9218108000000003,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,building,6 hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,building,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,building,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,industry,1 liquids,3.4373119,3.3297011000000003,2.836253,2.722162,2.6144641,2.6143981,2.5928978999999996,2.5682314,2.5429987,2.5168608,2.4902014,2.431447,2.3678649999999997,2.2994803,2.1901515000000003,2.0642153000000003,1.9536681,1.8051948,1.6676450000000003,1.5651492999999999,1.4333145999999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,industry,2 gas,0.1692301,0.3262731,0.4310851,0.4269678,0.43871095900000007,0.447856678,0.44983226500000006,0.44559081599999995,0.43499367000000005,0.420779913,0.4039695839999999,0.38180478499999987,0.3568607000000001,0.330393645,0.29046711299999994,0.255269505,0.22650602599999992,0.18272548799999994,0.15107408000000003,0.1284042279,0.10190534589999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,industry,3 coal,2.1460001,2.0289324,1.9999818,1.9253567999999999,1.6875593000000002,1.6338777,1.56741478,1.49983656,1.3660414300000001,1.24253304,1.13224518,0.94140678,0.78504406,0.6544738299999999,0.46387003,0.33970184999999997,0.25617177,0.15485736000000003,0.10268394799999998,0.073442708,0.047277004,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,industry,4 biomass,0.107288,0.108003,0.114363,0.105047,0.12424,0.13361,0.141502,0.144382,0.14494,0.143329,0.139905,0.135099,0.125512,0.113615,0.0925327,0.0698712,0.0534655,0.0332048,0.0206448,0.0134793,0.00726808,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,industry,5 electricity,1.2285506,1.2428390999999999,1.2170935,1.4542939,1.4716055199999998,1.41416139,1.40003701,1.3921899,1.41002362,1.42786184,1.4497423999999999,1.49479772,1.54963108,1.6125531100000001,1.73372517,1.83919043,1.9183799910000001,2.063571562,2.171933396,2.252695408,2.3183983827,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.0018059410000000001,0.002968376,0.004275846,0.00572055,0.00738521,0.00929999,0.011453099999999999,0.01290419,0.014643960000000001,0.01653923,0.01876186,0.0202276,0.021519820000000002,0.02374505,0.02516322,0.0267525,0.0265129,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,industry,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,industry,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,transportation,1 liquids,3.347624,4.0051274,3.5703535800000004,3.54300609,3.42881357,3.28021296,3.1769750349999994,3.0892740099999982,3.0811093800000013,3.05605311,3.043655989999999,2.9955186300000003,2.9520019799999995,2.912856179999999,2.867306699999999,2.81212679,2.7620809599999996,2.691875510000001,2.6156511399999993,2.539804119999999,2.41091315,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,transportation,2 gas,0.0,0.0,0.0,0.025859031,0.05921526299999999,0.10423722299999999,0.152243624,0.20449305000000004,0.250808243,0.299068862,0.36413533400000003,0.40274319700000005,0.44117915799999996,0.47880636999999987,0.51590001,0.55185185,0.58730853,0.62143691,0.66148989,0.7085632399999999,0.7623678,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,transportation,3 coal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,transportation,4 biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,transportation,5 electricity,0.060527974,0.068607672,0.069446673,0.06967697550000002,0.07090582779999999,0.072425046,0.07432582779999998,0.07650180705999998,0.07838489239999998,0.0805783538,0.08321226400000001,0.08610546200000004,0.08947229,0.093188129,0.09769503199999999,0.10303736900000002,0.109232432,0.11728485200000001,0.12785236499999997,0.141709195,0.15459522699999997,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,transportation,6 hydrogen,0.0,0.0,0.0,0.0,0.001179164,0.0039057008999999997,0.0073311724,0.0114063264,0.014951111299999998,0.0189394783,0.023237171800000005,0.027604104399999996,0.032228170599999995,0.036940467,0.041903455,0.046995705,0.052119843,0.057765881999999984,0.06422868300000001,0.071802285,0.07962927600000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,transportation,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,transportation,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,building,1 liquids,0.29774939999999994,0.352377,0.3386892,0.3321144,0.32193890000000003,0.3412553,0.3691411,0.3955758,0.4271445,0.46024869999999996,0.5053862,0.5348421,0.5702067,0.6038448,0.6172823999999999,0.6151911999999999,0.6123831999999999,0.547918,0.4580313,0.3710561,0.2589974,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,building,2 gas,0.0339066,0.0380508,0.0404367,0.03276427,0.036298500000000004,0.04047712,0.0446236,0.048212189999999995,0.0514917,0.05439964,0.058401140000000004,0.05972855,0.061402409,0.06271099,0.059755868999999996,0.056866301,0.054544615,0.04458518,0.037489252,0.031893131000000005,0.024386729,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,building,3 coal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,building,4 biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,building,5 electricity,0.13416608,0.264536,0.2992663,0.27453989999999995,0.3186664,0.366516,0.4260307,0.48799960000000003,0.5603727,0.6376991000000001,0.7410909999999999,0.8453804,0.9922044999999999,1.1771505,1.4346822,1.7457123,2.0971001,2.506303,2.9112923000000004,3.2524954,3.6401950000000003,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,building,6 hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,building,7 trad biomass,0.27636,0.266313,0.259741,0.261532,0.285443,0.289218,0.28697300000000003,0.283165,0.280649,0.27595800000000004,0.266347,0.262947,0.252393,0.236983,0.222613,0.2049726,0.1845022,0.1693529,0.1567906,0.14607900000000001,0.14043450000000002,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,building,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,industry,1 liquids,0.6548573,0.7202426,0.621747,0.6903955,0.6955767999999999,0.7508459000000001,0.824715,0.9001693000000001,0.990137,1.083618,1.1958135,1.2928117000000001,1.3994723,1.508304,1.613744,1.7019719999999998,1.795629,1.859511,1.873586,1.872722,1.841332,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,industry,2 gas,0.7903174000000001,0.7277781,1.0076536999999999,0.9220593499999999,1.0116233799999998,1.1121437299999999,1.20824023,1.2870225599999998,1.3489100199999995,1.3962378999999996,1.4502167009999998,1.449458895,1.4444478259999993,1.4288943100000002,1.331391708,1.2382620409999998,1.158894019,0.9650916199999999,0.839904121,0.7509658607,0.6433839406,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,industry,3 coal,0.0712458,0.0655946,0.0827154,0.08021249999999999,0.0718161,0.0735948,0.0748592,0.07595350000000001,0.0727801,0.0697876,0.0680027,0.0590633,0.0522804,0.0465786,0.035179550000000004,0.02762732,0.02230605,0.01438229,0.01031056,0.00793701,0.0057147299999999995,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,industry,4 biomass,0.08162710000000001,0.058059799999999995,0.0428646,0.0415353,0.0549086,0.0639671,0.0733683,0.0805051,0.0868492,0.0919248,0.0968835,0.100103,0.1004068,0.09863569999999999,0.0883683,0.0736275,0.0620522,0.0438033,0.0321603,0.02504692,0.01829445,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,industry,5 electricity,0.2051789,0.419459,0.4628484,0.4693024,0.5280158,0.58368078,0.65181339,0.71953686,0.79421611,0.86867005,0.9571656,1.0484544999999998,1.17023335,1.3146794499999999,1.53030083,1.7704781299999999,2.00615101,2.338127642,2.628747467,2.841708827,3.0840130141,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.002095154,0.003685142,0.00571501,0.0082221,0.01144768,0.01545533,0.02080967,0.02527823,0.0311704,0.0382747,0.0474499,0.0563865,0.0662381,0.0804859,0.0908507,0.0996643,0.1023789,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,industry,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,industry,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,transportation,1 liquids,1.2913929498999999,2.0116369730000003,2.3119429410000003,2.2122685120000005,2.2650773640000006,2.328132584000001,2.4272831849999994,2.5096859555999997,2.627062451499999,2.718115537899999,2.815078792999999,2.9228471808000003,3.073474553900001,3.2482196173000015,3.4617784922000014,3.6885871723000014,3.936840049400001,4.115579382600001,4.198001200400001,4.155197933079998,3.9404582333500007,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,transportation,2 gas,0.0,6.697205999999999E-4,5.022403E-4,0.018885114300000002,0.055745211999999995,0.116060613,0.19816381064000005,0.3024427623,0.4255170071,0.5680629349,0.7767399917,0.9183629180000004,1.0882298069999998,1.276426087,1.4815464799999993,1.7071119800000003,1.95965184,2.17753243,2.4237658000000013,2.6972855700000005,3.0119002400000006,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,transportation,3 coal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,transportation,4 biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,transportation,5 electricity,0.002738878,0.00393267,0.0042794700000000005,0.006146985386,0.01091271846,0.015164284900000002,0.02007631485,0.025655942472000003,0.03167841746,0.039003243630000003,0.0489225985,0.06190832149999999,0.07859319420000001,0.09918312289999996,0.12750961700000002,0.1629520636,0.206263424,0.2586514053,0.32180282528,0.39328050503999995,0.47243817461,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,transportation,6 hydrogen,0.0,0.0,0.0,0.0,0.0011064841999999999,0.003962972299999999,0.007978730100000001,0.01321806163,0.018652912820000003,0.025577762399999995,0.0347751582,0.0457160403,0.059572835899999996,0.0763395996,0.0988823801,0.12637050600000002,0.15878045699999999,0.19614273399999999,0.23906095600000002,0.284570112,0.336407887,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,transportation,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,transportation,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,building,1 liquids,0.8066001999999999,1.2065308,0.9912865,1.152271,1.1692536,1.2818239999999999,1.3396972999999999,1.3866129,1.4432911,1.5008565,1.5684772000000002,1.5862196000000002,1.5982249,1.5837070999999998,1.5013382999999998,1.3763337,1.2652438,1.05873,0.8599438,0.6994775999999999,0.5212871,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,building,2 gas,0.14357978999999998,1.2777344,1.6716381999999999,1.7930895999999998,1.9177788000000002,2.0613892,2.1380208,2.1818252,2.1978400000000002,2.1975361999999996,2.1978386000000003,2.1249956,2.0409411,1.9340125000000004,1.7213376999999999,1.5316653,1.3791696,1.10996013,0.93523868,0.8162252299999999,0.69115352,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,building,3 coal,0.0,3.767E-4,3.767E-4,3.88206E-4,2.53708E-4,2.27073E-4,1.97863E-4,1.72962E-4,1.34234E-4,1.06886E-4,8.66902E-5,5.95005E-5,4.22501E-5,3.06753E-5,1.72631E-5,1.04967E-5,6.71891E-6,3.17826E-6,1.71673E-6,1.02015E-6,5.28432E-7,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,building,4 biomass,0.0152789,0.026622899999999998,0.0221021,0.02250874,0.026562259999999997,0.028889909999999998,0.02981708,0.029175310000000003,0.02710702,0.0250603,0.022971810000000002,0.0200696,0.016830229999999998,0.013814680000000001,0.009429729999999999,0.00599071,0.003945129,0.00196025,0.001021383,5.76312E-4,2.726287E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,building,5 electricity,0.5163690000000001,1.3263669999999999,1.936499,2.254816,2.601893,2.9254409999999997,3.34567,3.7739439999999993,4.238729,4.679031999999999,5.125532,5.539540000000001,5.993748,6.4336,6.982564999999999,7.4885,7.963956999999999,8.485105,8.914983,9.244216999999999,9.611525,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,building,6 hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,building,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,building,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,industry,1 liquids,1.592816,2.8579470000000002,3.3534040000000003,3.8924709999999996,4.055123999999999,4.403554,4.691654000000001,4.978734,5.282411,5.586032000000001,5.890495,6.124886999999999,6.335947999999999,6.505081000000001,6.579452999999999,6.523229,6.450674,6.209139,5.847989,5.50007,5.027513,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,industry,2 gas,1.2614097,3.0656559999999997,4.911979999999999,5.4512417,5.90020389,6.37066373,6.7493086600000005,7.039492509999999,7.168509530000001,7.2345165499999995,7.266263180000001,7.0665479499999995,6.839097560000002,6.57684004,5.96750283,5.4331822,4.983844069999998,4.11793868,3.514557205999999,3.0678508840000003,2.543172574299999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,industry,3 coal,0.0249486,0.0627063,0.0788642,0.0877506,0.0823108,0.0855483,0.087373,0.0887738,0.0853579,0.0820095,0.0792062,0.0690879,0.0607575,0.0535131,0.0400603,0.0309594,0.0245469,0.0155254,0.0106088,0.00763771,0.00484822,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,industry,4 biomass,0.0045627,0.0030558,0.0032232,0.00355544,0.00449506,0.00517049,0.00582045,0.00629719,0.00666666,0.0069579,0.00719402,0.00729463,0.00716026,0.00686684,0.00595056,0.00478865,0.00389299,0.00259239,0.00172334,0.00118878,7.00336E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,industry,5 electricity,0.1850514,0.450775,0.6261705999999999,0.761026,0.9070410999999999,1.0272479,1.2332712,1.4596536999999998,1.7016254999999998,1.9371843,2.1632924000000004,2.4086523,2.6850827999999995,2.9844224,3.4370105,3.9190791399999996,4.3786605100000004,5.12710972,5.79853265,6.347895632,6.980380198,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.011888639999999999,0.02096318,0.031529600000000005,0.044095,0.0593688,0.07837670000000001,0.1018999,0.1204904,0.1448349,0.17410710000000001,0.210779,0.24334899999999998,0.276593,0.328142,0.37280599999999997,0.42074100000000003,0.45941200000000004,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,industry,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,industry,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,transportation,1 liquids,3.1603038000000003,5.2676101,6.7368046,7.548564650000001,8.160543439999998,8.81721444,9.44125967,9.99812683,10.556983039999997,11.043617769999997,11.46760767,11.96566675,12.49942163,12.952005650000002,13.370103119999996,13.653588919999995,13.927861309999997,13.882423179999996,13.657372380000004,13.251853419999996,12.406626020000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,transportation,2 gas,0.0,0.010798614,0.19621490000000003,0.252280176,0.3230647447,0.44111262679999996,0.6063295283,0.8221826322999999,1.0836926354999998,1.3856876246,1.7854071506000007,2.1214548009999996,2.4890276219999996,2.855590538,3.2288519919999996,3.5954942989999994,3.987674525,4.310941990000001,4.6757345599999995,5.087775079999998,5.524581509999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,transportation,3 coal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,transportation,4 biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,transportation,5 electricity,0.0,3.774E-4,0.0011005,0.0032413353000000002,0.0078138988,0.0146614854,0.023880851199999997,0.036091213819999995,0.0504457049,0.0686470887,0.09180979600000003,0.12343416400000001,0.16125131600000003,0.20481953499999997,0.26321796000000003,0.334548939,0.4243447099999999,0.5347990000000001,0.67724315,0.8533710400000001,1.03864161,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,transportation,6 hydrogen,0.0,0.0,0.0,0.0,0.004376753,0.015343603,0.031265114999999996,0.053111840000000014,0.07698521709999999,0.10627446399999999,0.14190567799999998,0.19077753300000003,0.247033742,0.30796615199999994,0.384750158,0.4702159199999999,0.5692104700000001,0.6791128999999999,0.80972908,0.95782828,1.12524267,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,transportation,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,transportation,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,building,1 liquids,0.0619528,0.0394321,0.0559668,0.08430112000000001,0.09013489,0.110325,0.1338919,0.16309849999999998,0.19867089999999998,0.2435229,0.296388,0.350939,0.409566,0.46977209999999997,0.4964186,0.5151617,0.5184879,0.4616181,0.4095273,0.3541868,0.2785749,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,building,2 gas,0.07363178,0.1864444,0.25002939,0.39858012000000004,0.4573771000000001,0.5564882,0.6715804000000001,0.8000399000000001,0.9333496,1.0809722000000002,1.2333368,1.3592271,1.4727089,1.5699079,1.5595067,1.5281427,1.468179,1.2579620999999999,1.0854471,0.9511808,0.7929235,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,building,3 coal,1.256E-4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,building,4 biomass,0.004479,0.0073255,0.0079953,0.00926016,0.011255,0.0127865,0.0138746,0.0139781,0.0132433,0.0122499,0.0110399,0.00937093,0.00760519,0.00598155,0.00403843,0.00249015,0.00156694,7.56859E-4,3.7218E-4,1.94065E-4,8.43376E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,building,5 electricity,0.04819869,0.1434035,0.16888090000000003,0.3135346,0.3869862,0.4813735,0.6194073,0.7995936,1.0233515,1.2972018,1.618671,2.004627,2.44163,2.938132,3.507103,4.124369,4.727372,5.415257,6.013871,6.521228000000001,7.019202,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,building,6 hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,building,7 trad biomass,0.6844110000000001,0.9536132,1.0434866,0.8339449,0.832736,0.7913902,0.7140596,0.6242867000000001,0.5460191,0.46621785,0.39093095,0.32803345,0.26888462,0.21338087,0.17549607,0.13913956,0.10848268999999999,0.08600968,0.06657296,0.05080653,0.04030433,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,building,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,industry,1 liquids,0.07430152000000001,0.1009245,0.0730875,0.1283445,0.152723,0.198405,0.2524527,0.3189122,0.40269390000000005,0.5016488,0.6107287,0.7273497,0.840276,0.9441219,1.0326543000000001,1.1138400000000002,1.1844540000000001,1.2362339999999998,1.292469,1.3217919999999999,1.31129,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,industry,2 gas,0.17790501,0.4387343,0.45493481,0.7503247000000001,0.90396188,1.1431542200000002,1.42883461,1.7622164500000004,2.1114252500000004,2.48593325,2.854760969999999,3.1232969799999997,3.332269125999999,3.4795902009999997,3.426766993,3.358860417,3.2707941940000005,2.92782748,2.6581469699999998,2.485218083,2.2807567579999994,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,industry,3 coal,0.08292469999999999,0.14734719999999998,0.1689471,0.292115,0.302153,0.350063,0.40196699999999996,0.45762800000000003,0.491289,0.521934,0.546676,0.514776,0.480797,0.444732,0.355828,0.292682,0.243707,0.1701377,0.1266018,0.1001772,0.0761645,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,industry,4 biomass,0.096696602,0.1420315,0.15542609999999998,0.25532498,0.35303084,0.4705743,0.61245078,0.76103842,0.91364616,1.0676670000000001,1.2075904,1.3123407,1.3526445,1.3401351,1.1911514,0.974695,0.7887077,0.5137266,0.32709769,0.21469823,0.11836052,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,industry,5 electricity,0.05531751,0.09991363,0.1086529,0.2329088,0.30234218,0.38354169,0.50709536,0.67223656,0.87638658,1.11546002,1.3772165600000001,1.6645241000000002,1.9527010999999999,2.2349568,2.5853287,2.9595483999999996,3.3090655,3.7805107099999997,4.16036981,4.44095955,4.717819347,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.0017084449999999998,0.0035981499999999996,0.00650153,0.010751650000000001,0.01668367,0.02469652,0.0347565,0.0420871,0.051609699999999994,0.0658799,0.0796079,0.0973282,0.1171915,0.144995,0.1754409,0.2091034,0.2266132,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,industry,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,industry,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,transportation,1 liquids,0.21350999699999998,0.38381247,0.45341848999999995,0.6807270930000001,0.7822020689999999,0.9278928419999997,1.1023683630000003,1.303577075,1.5256777929999998,1.7804462960000003,2.060341836,2.419012438,2.833382363999998,3.314213889000001,3.7798361739999984,4.267472356000002,4.7144960230000015,5.027179047,5.2644448100000005,5.38802291,5.249706773000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,transportation,2 gas,0.0,0.03616307,0.10518189,0.16267011550000002,0.19042330449999997,0.2307229058,0.28483437719999993,0.35364214941,0.43834119235999996,0.5432136443,0.6709787445000001,0.8217595851,0.9968079021000001,1.2019778020000003,1.4208319169999999,1.6691932029999998,1.928082549,2.1810490210000006,2.446236697,2.737661082999999,3.023441988,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,transportation,3 coal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,transportation,4 biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,transportation,5 electricity,1.255997E-4,4.19E-5,0.0,2.5457930699999996E-5,1.78339623E-4,3.847753293E-4,7.380977015999997E-4,0.0013066539144,0.0021891840549999996,0.0034929712860000003,0.0054234006130000015,0.00833145774,0.01258474349,0.018920234939999996,0.02846251774,0.04221044361,0.060855199,0.0884992735,0.1269928856,0.1795401217,0.2393574866,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,transportation,6 hydrogen,0.0,0.0,0.0,0.0,3.537E-5,1.52746072E-4,3.90555906E-4,8.266474999999999E-4,0.001547636819,0.002753250631,0.00474312125,0.008291071709999999,0.01351949899,0.021369458949999996,0.03244274637,0.0479283948,0.0677226575,0.0948384428,0.1310199988,0.17690109109999996,0.23318793929999998,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,transportation,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,transportation,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,building,1 liquids,0.588301,0.3016854,0.26790369999999997,0.2937553,0.2807769,0.2914792,0.2904453,0.28716200000000003,0.2841538,0.2794881,0.2744763,0.26004720000000003,0.2445542,0.2262128,0.1984676,0.1689803,0.1441622,0.1111797,0.0798987,0.0566962,0.0335649,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,building,2 gas,2.3815825999999998,1.762557,1.8189009,1.8698512999999999,1.9872272,2.0594544,2.1060458,2.1266426000000003,2.1591942,2.1655735000000003,2.1664158000000002,2.1385058,2.0971555,2.0294714,1.91891318,1.7947493200000002,1.6681438000000002,1.4581375699999997,1.2684085399999998,1.10154815,0.8799006699999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,building,3 coal,1.658079,0.232742,0.1683193,0.1613804,0.0961476,0.0812898,0.06664439999999999,0.054742900000000004,0.0396856,0.02928293,0.02198471,0.01365441,0.0088319,0.00584343,0.00298772,0.001661545,9.86294E-4,4.33254E-4,2.191395E-4,1.223967E-4,5.8236199999999996E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,building,4 biomass,0.3046985,0.0730037,0.0764363,0.07017496,0.08180272,0.08212767000000001,0.08181063,0.07750341000000001,0.07186028,0.06571234000000001,0.059217439999999996,0.05243212,0.044265240000000004,0.036348277,0.026467360000000002,0.01742745,0.011716271,0.0064084936,0.0035209925000000003,0.0020247937,9.9132029E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,building,5 electricity,0.63153697,0.80470873,1.09742372,1.22154645,1.41736008,1.5542578599999999,1.7462338799999997,1.92947683,2.1482134,2.34747212,2.54406089,2.7397848099999997,2.93020947,3.08999111,3.30233935,3.4792639,3.6207351,3.8477968999999996,4.0444757,4.2212162,4.4358616,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,building,6 hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,building,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,building,8 district heat,3.990745,2.4137690999999997,2.3949975,2.2887252,2.1119229,2.0243461000000003,1.9343021999999999,1.8340334,1.7171756999999999,1.5971534,1.4830214,1.3316980999999999,1.1925978,1.0594785,0.8951501900000001,0.74848456,0.62597641,0.47829553,0.36379122999999997,0.27664198,0.189640056,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,industry,1 liquids,2.8505017,1.9883918999999999,2.184765,2.3098966,2.2337881000000004,2.2647174,2.2726727999999996,2.2861178,2.3236154,2.3631436999999997,2.4091878,2.4348189,2.4604413999999997,2.4753654999999997,2.4927017,2.4796111,2.47584624,2.48687831,2.4316163399999997,2.3782352500000004,2.26120842,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,industry,2 gas,3.363707,3.3279929999999998,3.9936939999999996,4.0255562,3.9867183099999997,4.01353849,3.94624326,3.84692669,3.68220258,3.5127688600000004,3.3537986,3.110865150000001,2.8956114299999993,2.6941133699999997,2.38785476,2.1474601100000004,1.9564291100000002,1.65397575,1.48678291,1.4029113610000001,1.3170860099999997,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,industry,3 coal,2.1714852000000002,1.5131527,1.7338037000000002,1.7317812,1.43294261,1.36746517,1.27663744,1.19781038,1.07015232,0.9606013500000001,0.87099518,0.71369508,0.59217441,0.49318270000000003,0.34872032000000003,0.25451036,0.19093041000000002,0.114170111,0.07400145699999999,0.051097309,0.0305299381,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,industry,4 biomass,0.04345073,0.11909169,0.10820812,0.10726257,0.13062894,0.14417591,0.15106845000000002,0.15170666000000002,0.14897156,0.14426879,0.13865682000000001,0.13037511,0.11791341,0.10403256,0.08124636,0.05914598,0.04431456,0.02712682,0.01690279,0.011148469000000001,0.006206154,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,industry,5 electricity,2.4058756000000003,1.7063656,1.7454181,1.7803101000000001,1.88251643,1.8671584399999999,1.96011688,2.05216554,2.1896886600000003,2.31906658,2.4445772000000003,2.6093805,2.78145688,2.94465011,3.22472132,3.47494006,3.67805052,4.011892576,4.278078303,4.4832654937,4.6588244892,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.015369879999999999,0.0247498,0.0349279,0.04601028,0.0584284,0.072748,0.08931850000000001,0.09991789999999999,0.1136486,0.129299,0.1503481,0.1687418,0.186983,0.2189216,0.2370132,0.2471663,0.23648639999999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,industry,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,industry,8 district heat,4.51044,2.70488,2.68588,2.66174,2.59018,2.58689,2.55317,2.49516,2.3904,2.271,2.15521,1.96722,1.78873,1.61458,1.35325,1.12757,0.94873,0.700788,0.524749,0.400662,0.267269,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,transportation,1 liquids,3.598682,3.2053257,3.6054604799999996,3.842588099999999,4.0202042,4.19877054,4.41304157,4.611539762999998,4.85178687,5.065731209999999,5.29970505,5.510699371000001,5.760079271000001,5.995054630000002,6.1757080989999995,6.318974871000002,6.459304318,6.4768510853,6.413760520299999,6.341549814300001,5.9661095277,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,transportation,2 gas,0.046960201,0.00200891008,0.004729429299999999,0.0303299381,0.06702443457000003,0.11727846153999999,0.17521287169000002,0.23908446259999996,0.304001329,0.3728643337999999,0.45581714809999996,0.5234983515999999,0.5968607589999999,0.667823283,0.731192039,0.7900855320000001,0.8467245700000001,0.88708276,0.9285719899999998,0.98164678,1.0134010400000002,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,transportation,3 coal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,transportation,4 biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,transportation,5 electricity,0.2426047,0.2092506,0.2179506,0.23897344351000002,0.26695722196999994,0.29061975974000004,0.3209627496400001,0.35153712043000007,0.38673246349999996,0.4226616207,0.46343370539999984,0.5056054717999999,0.5550055195000002,0.6084256156,0.6722414954000001,0.7438353087,0.8240758024000001,0.9238647267000002,1.0474797052000002,1.2028780602999998,1.3736423020000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,transportation,6 hydrogen,0.0,0.0,0.0,0.0,9.878228E-4,0.0033984733,0.0070375093,0.0119958271,0.01778074607,0.0251464482,0.03456265869999999,0.04619204829999999,0.05997478510000001,0.07521993000000002,0.092797735,0.11253149099999997,0.13464020999999998,0.16124350399999998,0.193251479,0.23181496400000007,0.270868173,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,transportation,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,transportation,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,building,1 liquids,0.0262462,0.05533895,0.0503995,0.04106675,0.0488002,0.057811799999999997,0.0619831,0.064715,0.06742530000000001,0.0693322,0.07028029999999999,0.0705389,0.07026450000000001,0.0694544,0.0653436,0.060758999999999994,0.0566425,0.049089999999999995,0.043358139999999996,0.038751270000000004,0.03399485,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,building,2 gas,7.116E-4,2.93E-4,9.209E-4,9.71932E-4,0.00153881,0.00204616,0.0023356,0.00250417,0.00262209,0.0026622,0.00262911,0.00253335,0.00240036,0.00225182,0.00195522,0.00169379,0.00147815,0.00111059,8.44395E-4,6.50181E-4,4.39215E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,building,3 coal,0.09991965,0.19837479999999996,0.1378031,0.10553051,0.07539222000000001,0.07308726,0.06626781999999999,0.05945337,0.04714675,0.03797307,0.03056083,0.02077875,0.014622369999999999,0.01061953,0.005996565000000001,0.0037179780000000003,0.002452942,0.001231694,7.05664E-4,4.4884600000000003E-4,2.709382E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,building,4 biomass,0.0310183,0.0378833,0.0401437,0.0364513,0.0456879,0.0514489,0.0543682,0.0541037,0.0511651,0.0476373,0.0427315,0.036956,0.0302612,0.0243573,0.0163166,0.0102308,0.00665343,0.00331371,0.0016833,9.04182E-4,4.02867E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,building,5 electricity,0.17634375000000002,0.2814237,0.3041112,0.21294563,0.25136033,0.27863530000000003,0.3000939,0.3187012,0.3305336,0.34158710000000003,0.3565102,0.37676699999999996,0.4046486,0.435234,0.470096,0.5013814,0.5270641,0.5494816,0.5694096000000001,0.5863503000000001,0.6015762,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,building,6 hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,building,7 trad biomass,0.233914,0.305578,0.323662,0.316054,0.32898099999999997,0.33394100000000004,0.334866,0.335213,0.33614299999999997,0.336596,0.334558,0.33532,0.333239,0.33009,0.326232,0.319201,0.307299,0.29706299999999997,0.283773,0.2692434,0.25964560000000003,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,building,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,industry,1 liquids,0.19000296999999997,0.15944470000000002,0.1831791,0.2003141,0.22288,0.2485028,0.26800969999999996,0.28731799999999996,0.30375379999999996,0.32039039999999996,0.3341804,0.3501307,0.3636562,0.3775407,0.3812079,0.3835279,0.3853807,0.380334,0.3785192,0.3767714,0.371465,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,industry,2 gas,0.02257948,0.09150445,0.08841911,0.13872721999999998,0.17107602600000002,0.19017932600000004,0.19888046299999998,0.20280688300000005,0.20276746400000004,0.20080181699999997,0.19539006100000006,0.19213848800000002,0.186860368,0.18114572200000006,0.17080897199999995,0.16074576499999998,0.15043171,0.13248859000000002,0.117800786,0.10617447099999998,0.09389436880000002,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,industry,3 coal,0.9110977800000001,0.9380253000000001,0.8812772,0.7941118899999999,0.72485706,0.7350344,0.71623476,0.6963666599999999,0.6410227,0.59196728,0.5420491500000001,0.46193518,0.39432051999999995,0.33954888,0.25084873,0.19165595,0.149102921,0.094231887,0.06317786699999998,0.04482226,0.029463922999999996,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,industry,4 biomass,0.17091411,0.22009988,0.2330342,0.20740616,0.25574034,0.28630381,0.30617132,0.31559302,0.31945893,0.31982577,0.31254865,0.30908631,0.29327086,0.27331467,0.23162968,0.18183859,0.14261133,0.09165629,0.056891664,0.035947814,0.018837666,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,industry,5 electricity,0.32037499,0.43187219000000004,0.44714826,0.41003653,0.401233675,0.382176727,0.37761966999999996,0.37886148000000003,0.37308738999999996,0.37280800999999997,0.37837465,0.39891299,0.42708487,0.45885547,0.50950893,0.5561449170000001,0.5885814890000001,0.639571831,0.670972425,0.6833487295,0.6932625093000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,industry,6 hydrogen,0.0,0.0,0.0,0.0,7.97769E-4,0.001376415,0.002008897,0.002727627,0.0035780499999999997,0.00458685,0.0056532399999999995,0.00650946,0.00737467,0.00837738,0.0094467,0.0103165,0.01107737,0.01257901,0.013828739999999999,0.01491493,0.014859379999999998,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,industry,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,industry,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,transportation,1 liquids,0.562205418,0.7680692379999998,0.7259392179999999,0.6557369153,0.6698956769100001,0.6868566006200001,0.6897082205399998,0.6892442404500001,0.6797392659999999,0.6697602267999997,0.6526089257999999,0.6546261570000003,0.6592893559999999,0.6662000570000001,0.6656659729999996,0.6624524180000002,0.656500552,0.6315566000000001,0.605204349,0.5752043459999999,0.5193228410000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,transportation,2 gas,0.0,0.0,0.0,0.003347620153,0.010855762421,0.021951393422,0.033792773521400005,0.0480122140965,0.060950705088999996,0.07622164696799998,0.0994967787388,0.11307677234,0.1289491519,0.14615013720000003,0.16291129619999994,0.18055230700000002,0.19821601550000004,0.2125561802,0.22886560580000007,0.24606612570000003,0.25840348290000004,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,transportation,3 coal,0.00196731,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,transportation,4 biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,transportation,5 electricity,0.014360640000000001,0.01955692,0.01247515,0.011977705540000001,0.012374516050000001,0.012604135162000001,0.012747769531999999,0.012878739759999999,0.01276410073,0.012691886137000003,0.012638231405,0.012897070619999998,0.013220966550000001,0.013661084120000002,0.014258378660000001,0.014990809329999999,0.015795336899999998,0.017021013740000004,0.0187063954,0.02108953799999999,0.024055152899999998,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,transportation,6 hydrogen,0.0,0.0,0.0,0.0,2.3070439E-5,9.2349157E-5,1.72273154E-4,2.84486108E-4,3.52275825E-4,4.7882024200000004E-4,6.480689529999998E-4,9.043807570000001E-4,0.0011995300679999998,0.00154066995,0.00202872441,0.0026481843799999994,0.0034128721200000003,0.00434630828,0.005710440849999999,0.007585924770000001,0.009678742110000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,transportation,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,transportation,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,building,1 liquids,0.0888535701,0.07287971951000001,0.051679080509999996,0.062237100399999995,0.060781447120000005,0.0650557762,0.06764356964,0.07050817152000001,0.07237719342,0.0736889326,0.07605680125,0.07538266619,0.07552719258000001,0.07476227985,0.06949456586,0.06302886046999999,0.057296272100000004,0.04567557407,0.034216918480000004,0.025287968825000003,0.015801573359,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,building,2 gas,0.02555590109,0.0665322059,0.06459767129999999,0.0612200392,0.0611329338,0.0655839521,0.0687607318,0.071457082,0.07174413190000001,0.0708514737,0.0706260516,0.0672138242,0.06456193179999999,0.0613794797,0.0534633952,0.046619094400000005,0.041006101499999996,0.0304068553,0.023407389110000003,0.01842955308,0.013007104449999998,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,building,3 coal,1.72E-5,3.34999E-5,5.0E-5,4.5453E-5,2.78331E-5,2.522E-5,2.24759E-5,2.0274E-5,1.59055E-5,1.2675E-5,1.04212E-5,7.07636E-6,5.1016E-6,3.78217E-6,2.14539E-6,1.32641E-6,8.71393E-7,4.0957E-7,2.22553E-7,1.33128E-7,6.80286E-8,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,building,4 biomass,0.0053866009999999995,0.0071071050999999994,0.0074292477,0.0065372803,0.0074083242,0.0080166874,0.008390810700000001,0.0083790907,0.0077701212000000006,0.0070641227,0.0063691473,0.005427091,0.00449650949,0.0036485644,0.00244450436,0.0015246591900000001,9.8499128E-4,4.719169E-4,2.3878441E-4,1.31153789E-4,5.9619129E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,building,5 electricity,0.10319879879999999,0.171635714,0.210287947,0.26014634810000004,0.2852119152,0.3179566044,0.3604185806,0.4030471538,0.456596508,0.513576045,0.5824338020000001,0.648146821,0.728764917,0.8153639739999999,0.9216097910000001,1.029164938,1.136884286,1.243972007,1.3294274440000002,1.383782564,1.444188659,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,building,6 hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,building,7 trad biomass,0.017020091199999997,0.0220903096,0.0231320917,0.020243024300000002,0.021002448700000002,0.020877207199999998,0.0201883185,0.0194793954,0.0185505758,0.017423301800000002,0.016019789,0.0150232439,0.0136755244,0.0121273829,0.0104602887,0.0087705345,0.0071547105,0.0057199933,0.0046034471000000006,0.0037765508,0.0031234395999999998,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,building,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,industry,1 liquids,0.15314626,0.28261492,0.516244,0.635594,0.6590118,0.7129888,0.7598267000000001,0.8090976,0.855802,0.9012694000000001,0.9542599999999999,0.9901814999999999,1.0326435,1.074908,1.0958560000000002,1.1098961999999999,1.1328536,1.1146756999999998,1.0765587,1.0435912,0.9904413000000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,industry,2 gas,0.55030897,0.72586358,0.4740083399999999,0.45586342,0.467251805,0.491238767,0.510552821,0.5233707439999999,0.5219973389999998,0.5138460410000001,0.50513897,0.48282550199999996,0.462829815,0.4419326279999999,0.401723331,0.36880593500000003,0.34143906700000004,0.28842483500000005,0.251997314,0.22381486699999997,0.19065217903,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,industry,3 coal,0.019381080000000002,0.00154882,0.00833015,0.009200539,0.007221245,0.007088949,0.0070183,0.006959163,0.006348771,0.0058287519999999995,0.005436399,0.004440874,0.00378311,0.003292408,0.002448041,0.001969398,0.0016331689999999999,0.0011297619,9.090535E-4,7.86185E-4,6.815958E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,industry,4 biomass,0.01894989,0.02406889,0.02091007,0.02049057,0.02497497,0.02815353,0.031507139999999996,0.03384798,0.035367800000000005,0.036242800000000006,0.0368767,0.036856,0.0359307,0.0343663,0.0298457,0.02427491,0.02000839,0.01371381,0.00981491,0.0074213000000000005,0.00523389,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,industry,5 electricity,0.09501386,0.14124471,0.15445955,0.19678851,0.22264452,0.24165548,0.27147678999999997,0.29868184999999997,0.33576659000000003,0.37561274999999994,0.41754078,0.46292929000000005,0.51297139,0.5664589800000001,0.64828338,0.734387757,0.81799404,0.9436080410000001,1.0556743345,1.1355220407000002,1.2358186034,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.0059312900000000005,0.010200500000000001,0.01531254,0.02142322,0.0281975,0.035855,0.0452593,0.052041199999999996,0.0616705,0.0732884,0.0876403,0.1025731,0.1194132,0.1446681,0.1652154,0.18348520000000001,0.18598789999999998,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,industry,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,industry,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,transportation,1 liquids,0.4714198560999999,0.6944513426000001,0.8181829919,0.9152674369999999,0.9392941501999998,0.9781472151000001,1.0247276789000004,1.0664436264000001,1.1185536803999998,1.1649818966000003,1.2139995233000003,1.2639252685000009,1.3343604543999998,1.4101744577,1.4966108781999998,1.5841177513000002,1.679114864649999,1.7439138510299999,1.76740138966,1.7397676017600001,1.64227075575,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,transportation,2 gas,0.0,0.0055667320000000005,4.1855030000000006E-4,0.010597495699999999,0.023957394899999998,0.04694768860000001,0.07908655968999997,0.12088311889999998,0.17148164400000002,0.22993122630000004,0.31294747550000007,0.37457018470000003,0.44635301700000024,0.5241351550000001,0.6068270280000002,0.6955461729999998,0.7936110919999999,0.8749347620000001,0.96288132,1.0554500699999996,1.15715645,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,transportation,3 coal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,transportation,4 biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,transportation,5 electricity,0.001006994,9.483949999999999E-4,0.001105594,0.002129708905,0.003754645669000001,0.005297584580000001,0.007173039160000001,0.009357460175000002,0.011898828989999997,0.014936959679999999,0.019032512659999997,0.024485239179999996,0.03154144895,0.04008180963,0.051573020530000006,0.06570878423,0.08291028564,0.10363328843000003,0.12820612982,0.15541744920999997,0.18517624328000004,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,transportation,6 hydrogen,0.0,0.0,0.0,0.0,4.4770415E-4,0.00161229264,0.00331366441,0.0055587271999999995,0.00806640746,0.011063594960000001,0.01502449292,0.019797814800000004,0.0258924285,0.03312499390000001,0.0425834582,0.053951869599999994,0.0673260444,0.0826643435,0.10004863520000001,0.11814643499999998,0.138490162,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,transportation,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,transportation,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,building,1 liquids,0.13010091,0.153752,0.17430530000000002,0.21794609999999998,0.235179,0.2598832,0.2731572,0.28182240000000003,0.2923282,0.3011926,0.3126754,0.31261209999999995,0.31542060000000005,0.3146898,0.3005544,0.2785569,0.2574417,0.21282810000000002,0.163096,0.12142328,0.07753683,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,building,2 gas,0.0103813001,0.020929909,0.02867399,0.039823135,0.043855237,0.049126646,0.052261352,0.053863717000000005,0.054607752999999995,0.054490284,0.054621833999999994,0.05205556599999999,0.050021928,0.047572092999999996,0.0418554753,0.036654937199999994,0.0322647966,0.024090667399999998,0.0185428738,0.0144754162,0.010262302650000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,building,3 coal,0.0010465,1.675E-4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,building,4 biomass,0.0254091,0.015069601,0.0168277,0.017816116,0.020809654,0.02206828,0.022589099,0.021685797,0.019536437999999996,0.017296598,0.015046829,0.012409135,0.009855118000000001,0.0076414975,0.0049062066,0.0029056918000000004,0.0017819174,8.233795000000001E-4,4.0347753999999997E-4,2.1453714E-4,9.650989E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,building,5 electricity,0.10551392000000001,0.21653306,0.2750106,0.39284589999999997,0.4721087,0.5580517,0.6705956,0.7832959,0.9120881,1.0461532,1.2059183000000002,1.3563935,1.5414474,1.7519698999999997,2.0171036,2.3008134,2.5874934,2.8774775,3.1224735,3.2912885000000003,3.4727951,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,building,6 hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,building,7 trad biomass,0.2725087,0.2679878,0.3247083,0.28809779999999996,0.2807717,0.2657543,0.2471059,0.2303885,0.21546189999999998,0.2000266,0.1821411,0.1706628,0.15543800000000002,0.1378416,0.1212817,0.1036575,0.08600949999999999,0.07181660000000001,0.0599464,0.050289,0.04334881,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,building,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,industry,1 liquids,0.1967838,0.290257,0.34224740000000003,0.4327958,0.47673340000000003,0.5379156,0.5851573,0.6305855,0.6855345,0.7411679,0.8057734999999999,0.8611656999999999,0.9250534,0.9907017799999999,1.05266904,1.11264676,1.1855815699999999,1.2536170100000001,1.2986596300000002,1.33745734,1.359232271,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,industry,2 gas,0.06932975,0.18659275,0.20529212,0.28321754,0.31105632699999997,0.34817342700000004,0.37656192800000005,0.39877282999999997,0.4144915620000001,0.42447147599999996,0.434650371,0.429965856,0.42725709099999987,0.42304876399999997,0.39843636499999996,0.37986272199999993,0.36512551199999993,0.32052352050000005,0.29721182709999994,0.28405153310000003,0.27250784491,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,industry,3 coal,0.04035313,0.0701991,0.054418,0.07515,0.065955,0.0677441,0.0676981,0.06695090000000001,0.06239360000000001,0.0579012,0.054313099999999996,0.0453816,0.03878089,0.03334127,0.02411746,0.01826206,0.01426728,0.00882484,0.00614396,0.00462215,0.00332767,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,industry,4 biomass,0.12105912,0.1723377,0.21725330000000004,0.27164710000000003,0.3464197,0.4065034,0.43833779999999994,0.44947170000000003,0.454673,0.45086180000000003,0.44486459999999994,0.4282546,0.40022159999999996,0.36439130000000003,0.2928031,0.2202435,0.1698517,0.10491994,0.06696578,0.04537706,0.027598705,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,industry,5 electricity,0.13557943,0.26741949,0.30462776999999996,0.41129,0.46500748000000003,0.5201257999999999,0.60695473,0.6919510799999999,0.7807485500000001,0.86608012,0.9554606400000001,1.04639744,1.14632467,1.25388451,1.39936245,1.55505237,1.700458978,1.879820656,2.030046259,2.1279870927999998,2.2340196454,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.02566168,0.045509799999999996,0.0680599,0.0936658,0.12463060000000001,0.160325,0.2025062,0.231697,0.2720156,0.318023,0.372281,0.421667,0.47462400000000005,0.542463,0.579585,0.601818,0.58206,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,industry,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,industry,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,transportation,1 liquids,0.4360760169,0.8188218146999999,1.1318187618000002,1.3949389186999999,1.5307017592,1.6621677661999998,1.7894843232000004,1.8931166836000004,2.0072660385,2.1097189555000004,2.2202449646000004,2.3200198872,2.4540550810000004,2.6033948479,2.776957496979999,2.9551114588100003,3.146819933800001,3.2807340198699992,3.3404929468699995,3.31124325097,3.152843486960002,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,transportation,2 gas,2.5107E-4,0.006278254999999999,0.0320192,0.05141914399999999,0.07058872599999999,0.10102639199999999,0.14496618900000002,0.202057339,0.27586209600000006,0.361770077,0.48060821070000004,0.5752442190000002,0.6845290430000001,0.804282694,0.9367939570000001,1.08073752,1.2394431800000005,1.37411343,1.5230915299999996,1.6844990600000003,1.87015958,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,transportation,3 coal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,transportation,4 biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,transportation,5 electricity,0.0012762799999999999,0.00129868,0.0020444729999999998,0.0043894200619999995,0.007992489863000002,0.011200432470000004,0.01507037526,0.019420530565000007,0.02462127608,0.030623389709999997,0.03838446640000001,0.048277457489999995,0.06076773882,0.07579472523000001,0.09568295104,0.11981273137000001,0.14856892858000004,0.1826503564399999,0.22286077081999997,0.26747979739000005,0.31625467141999997,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,transportation,6 hydrogen,0.0,0.0,0.0,0.0,7.88731E-4,0.0026705445,0.005493471789999999,0.009197476529999998,0.01362479282,0.018823316279999995,0.0254798845,0.033325772,0.043158069599999994,0.05481317480000001,0.0699083808,0.08783314089999998,0.10847688280000001,0.13179799599999997,0.15790684300000005,0.18480803399999998,0.214833984,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,transportation,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,transportation,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,building,1 liquids,0.054633970000000004,0.0732849,0.06141538,0.1103162,0.1389689,0.1852729,0.2336535,0.28709710000000005,0.3472053,0.4172167,0.49513759999999996,0.5753333,0.65858,0.739811,0.7841330000000001,0.819036,0.8376030000000001,0.7996428,0.7667384,0.7264552,0.6641527,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,building,2 gas,0.018148588,0.061061769999999994,0.09557380000000001,0.20099478,0.27571599999999996,0.37270679999999995,0.47424079999999996,0.5789893,0.6795808999999999,0.7847393,0.8903051,0.9793436,1.0606664000000001,1.1297313,1.1267989,1.1065668,1.0643032000000001,0.9149154999999999,0.7891775999999999,0.6964391999999999,0.5943746,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,building,3 coal,6.02201E-4,4.19E-5,4.19E-5,6.05037E-5,4.29458E-5,4.21252E-5,3.98611E-5,3.73706E-5,3.08342E-5,2.58049E-5,2.17992E-5,1.54295E-5,1.13399E-5,8.47833E-6,5.03068E-6,3.16009E-6,2.05335E-6,9.953E-7,5.33893E-7,3.08131E-7,1.53816E-7,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,building,4 biomass,0.00328211,0.0104303,0.0122853,0.01333779,0.015877330000000002,0.017549500000000003,0.01847222,0.018409389999999998,0.017407,0.01624155,0.014938590000000002,0.013105970000000002,0.01111266,0.009216829999999999,0.0065179999999999995,0.00420775,0.002763347,0.001375381,6.9666E-4,3.73292E-4,1.660153E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,building,5 electricity,0.02245924,0.07592080000000001,0.11322221999999998,0.2274067,0.3237229,0.44049279999999996,0.5993833,0.7882284,1.0120809,1.2803375999999997,1.5919755,1.9557569999999997,2.365204,2.826503,3.327036,3.8893269999999998,4.453913,5.100025,5.693009,6.227656,6.759691,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,building,6 hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,building,7 trad biomass,0.7144003,0.8983974,0.9657846,0.7820926,0.7231413999999999,0.6464586999999999,0.5653411,0.4933646,0.43624660000000004,0.379035,0.3248628,0.2818927,0.2400028,0.1988279,0.1730971,0.1442924,0.11774,0.1004387,0.0840419,0.070371,0.06638379999999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,building,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,industry,1 liquids,0.036071800999999994,0.09899977,0.10556119,0.20866231000000002,0.27772814,0.3855976,0.4960584,0.6161457,0.7518125,0.9057329000000001,1.0722778000000002,1.252338,1.4254353000000002,1.5800461,1.6792715,1.757428,1.825041,1.854312,1.904494,1.924015,1.891805,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,industry,2 gas,0.065176001,0.13604497999999998,0.12779869,0.25650575999999997,0.36600635,0.5105019399999999,0.6742570200000001,0.8510619300000002,1.0294625300000002,1.2204689499999999,1.415613617,1.5840479119999997,1.7340367809999997,1.8614578549999998,1.8853082569999995,1.8973816649999997,1.9074198349999998,1.8112618510000005,1.7464065200000003,1.7280506320000004,1.7075634020000003,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,industry,3 coal,0.01806101,0.0366185,0.0484522,0.1098407,0.1358237,0.18038310000000002,0.22863699999999998,0.280677,0.313288,0.33766,0.356506,0.34077,0.322309,0.301697,0.24553439999999999,0.2052253,0.17458780000000002,0.1285849,0.10099860000000001,0.0843939,0.0694697,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,industry,4 biomass,0.0354933001,0.076563997,0.08441169899999999,0.157843536,0.24606013000000002,0.34732219000000003,0.45273749999999996,0.5494777799999999,0.63657891,0.71815991,0.7882695,0.8452119,0.8611616,0.8417113,0.7267159,0.5713457000000001,0.4465689,0.2777698,0.17086282,0.1093944,0.05991514,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,industry,5 electricity,0.022735304,0.07382385,0.11970438,0.29464595,0.44867862,0.63395323,0.88970304,1.18181857,1.5040275600000002,1.86009073,2.23236247,2.6296848000000006,3.0139006,3.3667445000000003,3.7064787999999997,4.033016,4.3229341,4.63542027,4.863720229999999,5.00396108,5.126555516000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.01996552,0.0439919,0.0787624,0.1265284,0.1885466,0.26771069999999997,0.36410109999999996,0.43376,0.5205299999999999,0.6421669999999999,0.748505,0.866768,0.988761,1.139672,1.2841,1.425308,1.4850889999999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,industry,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,industry,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,transportation,1 liquids,0.107439487,0.249720797,0.33080693,0.5220907959999999,0.65436139,0.8100521619999997,0.9777621849999999,1.1533261335000002,1.336747798,1.5387279400000007,1.7552922880000004,2.026087886,2.3318658579999996,2.6774572049999996,2.997175988,3.336639261,3.653746807,3.876416092999999,4.055319152000001,4.162529248000001,4.076257903999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,transportation,2 gas,0.0,0.0033485453,0.038590551,0.06620687589999999,0.08829715509999998,0.11725207100000001,0.15412352333,0.19967199407000003,0.25578929526,0.3255546053000001,0.41257156790000016,0.5149680467000001,0.6340831208000001,0.772740512,0.923534217,1.0992556710000003,1.2896775710000006,1.4910923069999997,1.710729621,1.9646312360000002,2.2372702439999994,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,transportation,3 coal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,transportation,4 biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,transportation,5 electricity,0.0,4.49986E-5,0.0,1.78522346E-5,1.6000129589999998E-4,3.5758953650000003E-4,6.891372584999999E-4,0.0011953759252000002,0.0019518800539999998,0.003020864008,0.004528537025,0.006691768078,0.00972582762,0.01406042304,0.02042520501,0.029466457370000004,0.041645069900000005,0.0596343487,0.0844514187,0.11812780490000001,0.1560280346,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,transportation,6 hydrogen,0.0,0.0,0.0,0.0,3.3931815E-5,1.36639043E-4,3.3509543E-4,6.78601595E-4,0.001224764806,0.002101911666,0.00347570253,0.005833258179999998,0.009155708459999998,0.01393560407,0.020436795110000003,0.02946173981,0.0409531524,0.056636260800000005,0.07743237289999999,0.10358098680000001,0.13547995459999998,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,transportation,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,transportation,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,building,1 liquids,0.4201908,0.44006429999999996,0.3184006,0.3078804,0.30849319999999997,0.3103646,0.30588329999999997,0.3024757,0.3007491,0.2997653,0.2971239,0.2906651,0.2810023,0.2678553,0.239806,0.2118498,0.1852616,0.1466116,0.11530580000000001,0.08770486000000001,0.05648703,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,building,2 gas,0.025367096,0.48277591,0.5273668,0.5578898400000001,0.5639862800000001,0.5768587,0.5847485900000001,0.58743651,0.5810338899999999,0.56937832,0.5520472,0.52511341,0.49397246000000006,0.46073346,0.40777541000000006,0.35872387,0.31419499800000006,0.25119222500000005,0.200482146,0.16154631800000002,0.11710627900000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,building,3 coal,0.3627172,0.039934399999999995,0.0357903,0.0362625,0.022161689999999998,0.01899466,0.01628461,0.01406477,0.01076007,0.008400069999999999,0.006622230000000001,0.0044185959999999995,0.003050643,0.002163097,0.001193965,7.11649E-4,4.4588500000000003E-4,2.125035E-4,1.137659E-4,6.637E-5,3.34497E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,building,4 biomass,0.0183765,0.0153053,0.0284943,0.02742881,0.030507809999999996,0.03052544,0.030413330000000002,0.028624240000000002,0.0253887,0.02224036,0.01905111,0.01594811,0.012757480000000002,0.01009605,0.00687987,0.00432682,0.002806631,0.001481483,7.879359999999999E-4,4.44175E-4,2.113431E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,building,5 electricity,0.12284752,0.589635,0.7525306,0.8007265,0.8396875,0.871017,0.9098846,0.9493697,0.990491,1.0290828,1.0625352,1.0982968,1.1291324999999999,1.1559566000000001,1.1864623,1.2086816,1.2168153,1.2468305,1.2624073,1.2728768000000001,1.2856407,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,building,6 hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,building,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,building,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,industry,1 liquids,0.8011166,1.7973961999999999,2.0111908,1.9755099,1.9163062,1.8736917999999998,1.8185462000000001,1.7661998,1.7047861,1.6496799000000002,1.5906411999999999,1.5294298,1.4633898,1.4003623,1.2984723000000002,1.2102813,1.1299034000000001,1.0334619,0.95910253,0.89611299,0.8194322799999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,industry,2 gas,0.004186,0.2131205,0.3077273,0.31487161,0.31778457790000003,0.3186542425,0.31427931259999997,0.3065623657000001,0.29417353200000007,0.2796471304,0.26249421669999995,0.24495472605,0.22499070549999994,0.20482880559,0.17449715099999996,0.1486698616,0.12753320890000003,0.09780311879999999,0.0769552888,0.06251113850000001,0.04751959989999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,industry,3 coal,0.5766204,0.819407,1.0418972999999998,1.1106204,0.902204,0.8609324000000002,0.80564303,0.7547465699999999,0.66253951,0.58382848,0.51525582,0.41549444,0.33782849000000004,0.27748211,0.19305518,0.14033632000000001,0.10516508999999999,0.06469808,0.043421308,0.031704787,0.021985192,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,industry,4 biomass,0.01142769,0.07017287,0.09122543000000001,0.09279843,0.10967201,0.11668113,0.12286444,0.12499144,0.12521615,0.12364050000000001,0.11984631,0.11695567,0.10883693,0.09862539,0.07961034,0.059297230000000006,0.04464312,0.027317673,0.016730619,0.010829334,0.006033392699999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,industry,5 electricity,0.2133295,0.6863393999999999,0.8574934000000001,0.87137,0.8971742363999999,0.8888606544000001,0.8953531090000001,0.9029904990000001,0.9164823569999999,0.929629816,0.938117388,0.9711700600000001,1.00030914,1.0284230500000002,1.0771128900000002,1.11875529,1.14473386,1.1932363719999999,1.22031249,1.2340984819999998,1.2435118047,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.02993394,0.048220620000000006,0.0684106,0.090572,0.1143582,0.1394869,0.1645392,0.1731123,0.1853644,0.20847,0.2225566,0.2398153,0.2574144,0.282733,0.307512,0.333997,0.336959,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,industry,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,industry,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,transportation,1 liquids,0.68469438,1.71825924,1.72698246,1.76383049,1.7788265599999997,1.78071773,1.7832112699999996,1.7855250910000002,1.798026630000001,1.80892484,1.8085661499999997,1.8193825800000007,1.8299998599999996,1.8373947199999994,1.8195679300000003,1.7972766800000006,1.7702340599999997,1.7152089400000003,1.664610600000001,1.6193719899999997,1.5368117000000003,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,transportation,2 gas,0.0,0.013561670500000001,0.04281960640000001,0.059380707399999996,0.07857146779999999,0.10255615790000001,0.12756637821,0.1540256903,0.17765845900000002,0.20219747579999997,0.22977683880000002,0.25198551700000005,0.27344554600000004,0.294374862,0.31272531800000003,0.329972137,0.34477499699999997,0.35756712300000015,0.369151566,0.38155436999999987,0.39200628000000004,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,transportation,3 coal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,transportation,4 biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,transportation,5 electricity,0.0036425700000000004,0.00936098,0.00787093,0.00919099145,0.01061581533,0.01217823204,0.013864092959999998,0.015714106158,0.017596706339999997,0.0197395004,0.022137599700000007,0.0249366255,0.028188768200000006,0.0319280694,0.036299611499999995,0.0416322261,0.04789561670000001,0.056003139,0.066682465,0.080681239,0.09492901000000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,transportation,6 hydrogen,0.0,0.0,0.0,0.0,3.774877E-4,0.0012760236,0.002456483,0.00393726007,0.005375562109999999,0.00710926291,0.009067710699999999,0.011180522099999998,0.013598798900000002,0.0163763674,0.0194313859,0.0230414866,0.027084334100000006,0.03196870599999999,0.0381536316,0.0457661537,0.0540612776,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,transportation,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,transportation,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,building,1 liquids,0.145745179,0.2975683,0.3677825,0.47410372,0.59992728,0.77969774,0.95414256,1.1460604399999998,1.35399494,1.5875415,1.8346741,2.0598767,2.2635149,2.4454795000000003,2.4184946,2.3057111,2.1655613,1.7465791000000002,1.3802005899999998,1.0638897200000001,0.68697621,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,building,2 gas,0.007363999996,0.0076224,0.010142699999,0.01479098536,0.01883957438,0.02473467949,0.03061422499,0.0366939712,0.04240085328,0.04815097442999999,0.053649761889999995,0.05776125556,0.06086788054,0.0634459748,0.0602081465,0.05635272195,0.0524350584,0.04162354734,0.0333812063,0.026989415,0.019148994,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,building,3 coal,0.183440898,0.206412499,0.1968259,0.22959020000000002,0.176765525,0.174066971,0.16533195,0.154456475,0.129181209,0.10797363100000001,0.090168531,0.06327564599999999,0.045502154,0.033601967999999996,0.019187055999999997,0.011727704299999999,0.0075937024,0.0035940297999999997,0.0019347889,0.0011356656,5.698101000000001E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,building,4 biomass,0.272676769,0.2479129,0.288989,0.336615108,0.41903836,0.48483726,0.5338242099999999,0.55101575,0.53629923,0.51032189,0.47460255,0.42057613,0.3574175600000001,0.298211572,0.21089506300000002,0.13663929,0.091182281,0.046259833900000005,0.0241341139,0.0134145074,0.00615893389,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,building,5 electricity,0.23937809997999998,0.6757096999900001,0.928389,1.2708695251999997,1.6081868864,1.9784821624000002,2.4883779091,3.0723782329000002,3.7085269476000002,4.4206706184,5.1866702088,6.008036616,6.862890621,7.724026436,8.589097968,9.485327129,10.229989239000002,11.014099504,11.570274716,11.88486604,12.21790344,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,building,6 hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,building,7 trad biomass,1.20571901,1.2835728,1.3275854,1.2793548,1.24775382,1.19612896,1.11217011,1.0259833999999999,0.95670205,0.87884292,0.79789644,0.73497498,0.66647677,0.5950854400000001,0.54280262,0.47873629,0.41632175,0.36199943,0.30892305,0.26109301,0.2226485,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,building,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,industry,1 liquids,0.677915883,1.8502666399999999,2.37940917,2.959202035,3.5602847768,4.2187508628,4.830074301899999,5.404324149499999,5.9184918071,6.385273538119999,6.8079786238699995,7.15288980346,7.44507300617,7.6883280775600005,7.706961,7.637034,7.532243,7.133559,6.726137,6.306966,5.749288,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,industry,2 gas,0.1642166,0.9714824,0.9065112,1.21586982,1.4542262300000002,1.7266625000000002,1.96322971,2.1685389299999995,2.31798865,2.42454075,2.4954635000000005,2.5119870920000005,2.5047421780000003,2.485895995,2.3605875210000002,2.2394461599999995,2.11977705,1.8267336699999999,1.576550321,1.367612283,1.0983813599999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,industry,3 coal,1.0184368,1.0654502000000001,1.3361501,1.79505859,1.82208399,2.0307262499999994,2.19341088,2.331959360000001,2.3296710599999995,2.3015902209999997,2.2606168259999997,2.035392084,1.844867958,1.6809375650000002,1.336709077,1.1008027336000004,0.9219439864,0.64655492024,0.48280639388,0.37634860929540004,0.2719796969391899,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,industry,4 biomass,0.692809,0.8231203,0.9243520999999999,1.0843898,1.4889017,1.8475848,2.1948975,2.472292,2.7008734,2.8726260000000003,2.991271,3.0938890000000003,3.0863020000000003,3.017592,2.7105200000000003,2.25554,1.8801439999999998,1.3076364,0.8916473,0.6242122,0.3746361,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,industry,5 electricity,0.22067319999999999,0.5629354,0.7494938,0.9910243999999999,1.18375574,1.3246905,1.5614846000000002,1.8084824000000002,2.0469049000000004,2.2799801,2.5061743,2.7577971999999997,3.0363477000000003,3.3094689,3.7518926,4.276136459999999,4.74612826,5.56671263,6.25019291,6.746037751999999,7.394641535,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.01165478,0.02260776,0.03709413,0.0557299,0.079473,0.10909340000000001,0.1452242,0.1773075,0.2188924,0.2686623,0.334572,0.400597,0.469707,0.581089,0.6965140000000001,0.8341799999999999,0.943482,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,industry,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,industry,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,transportation,1 liquids,1.75573923,3.8195774600000005,5.2725095,6.13225177,6.94929606,7.848523672999999,8.804446235,9.794226771000003,10.765232916000002,11.796037613000003,12.835080470000001,14.03758336,15.282644390000002,16.579518760000006,17.587834319999995,18.57198658,19.432187340000002,19.77991564,19.90932927,19.741328080000002,18.859732969999992,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,transportation,2 gas,4.179575E-5,0.008078178,0.07806096000000001,0.12938889269999998,0.1963282829,0.2936407434,0.42627717559999995,0.6004878190999999,0.8139221290000002,1.0765843408000002,1.4172016139999999,1.7659963253000002,2.1526457039999998,2.580859037,3.0149565520000006,3.5044997879999995,4.027543497000001,4.55392433,5.131774879999999,5.765565310000002,6.427586789999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,transportation,3 coal,5.86271E-4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,transportation,4 biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,transportation,5 electricity,6.70882E-4,0.001947758,0.00757753,0.009034018877000002,0.011035776410999997,0.013173837779999996,0.015980887976300005,0.019408891732000003,0.023639158445000003,0.028822892760000003,0.03534228735000001,0.04406410294999999,0.05486153620999999,0.06831593859999999,0.08641304039999999,0.11015578589999997,0.13975212940000004,0.18207264790000002,0.23668260120000004,0.30402768999999996,0.3774838349999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,transportation,6 hydrogen,0.0,0.0,0.0,0.0,2.0264935000000001E-4,7.823496500000001E-4,0.00177621921,0.00339177272,0.005563756324,0.008829618439999999,0.013549442350000001,0.021137515120000002,0.030684627799999996,0.042795324399999994,0.05795786339999999,0.0772277275,0.1001913548,0.1304548233,0.16917761080000002,0.2150775294,0.26936757800000005,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,transportation,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,transportation,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,building,1 liquids,0.08824089,0.09703159,0.0897061,0.08113913,0.1181761,0.1407842,0.1542213,0.16380879999999998,0.17164110000000002,0.1765958,0.1781089,0.1782996,0.1766246,0.1755873,0.16880610000000001,0.1586856,0.14760426000000001,0.13263607000000002,0.12120716,0.11030650000000002,0.09951721,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,building,2 gas,0.022311393,0.040813510000000004,0.04638091,0.04446817,0.07168604,0.08747961000000001,0.09794732,0.10476639999999998,0.10808126000000001,0.10831808,0.10584389,0.10202460000000001,0.09714311,0.09307629,0.08574038,0.07700674,0.06893932,0.058613410000000005,0.051745229999999996,0.04790245,0.04625474,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,building,3 coal,2.512E-4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,building,4 biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,building,5 electricity,0.11036494,0.3137887,0.3250402,0.34065880000000004,0.5239866,0.6300456000000001,0.7106566999999999,0.7755624999999999,0.8233756,0.8562828,0.8741744,0.8849897,0.8914742,0.9084711999999999,0.9196901,0.9267714,0.923882,0.9199942000000001,0.9075884000000001,0.8909488999999999,0.8820227,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,building,6 hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,building,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,building,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,industry,1 liquids,0.40834463,0.90940835,1.07257871,1.01712296,0.99910705,1.00451088,0.9988284100000001,0.9913643,0.97977916,0.96731365,0.9529888799999999,0.92697246,0.90058143,0.874509,0.8257507,0.7758723000000001,0.7300498999999999,0.6661625,0.6174418900000002,0.57251661,0.52426164,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,industry,2 gas,0.0154882,0.0411484,0.047092499999999995,0.05427687,0.06065711,0.06523525000000001,0.0683359,0.07043569999999999,0.0723373,0.0732332,0.0730425,0.0727323,0.0709192,0.06818160000000001,0.06129312,0.052028,0.04387303,0.03160631,0.02353448,0.018009425,0.012087045999999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,industry,3 coal,0.2587376,0.6617664,0.7448994,0.6001354000000001,0.5493412,0.5720001,0.5672563,0.5593631000000001,0.5250147,0.489466,0.4543298,0.3788244,0.31508493000000004,0.26257902,0.18117859,0.12841354,0.09563239000000001,0.05880853,0.04071549,0.03077702,0.022408437000000003,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,industry,4 biomass,0.0,0.0012139,0.002093,0.00206059,0.00256804,0.00283775,0.00308966,0.00324653,0.00339111,0.00349069,0.00353945,0.00361571,0.00354675,0.00339384,0.00295234,0.00227528,0.00174081,0.00105336,6.40188E-4,4.08134E-4,2.15398E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,industry,5 electricity,0.16508645,0.40165094,0.45714601,0.5462712,0.562730437,0.562542836,0.5765569030000001,0.5913253270000001,0.6045536229999999,0.6183217929999999,0.632785328,0.6482266470000001,0.666177368,0.6874898,0.7225649500000001,0.76684806,0.8071576300000001,0.865457354,0.902302522,0.924041204,0.9490937846999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,industry,6 hydrogen,0.0,0.0,0.0,0.0,3.342389E-4,5.636972E-4,8.33035E-4,0.001150167,0.001536354,0.001980764,0.0024699599999999998,0.002762097,0.0031588099999999997,0.0038158199999999997,0.00449925,0.005083519999999999,0.00560943,0.006207310000000001,0.00688911,0.00768245,0.00779862,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,industry,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,industry,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,transportation,1 liquids,0.37201123999999997,0.72623976,0.7443938299999999,0.7307731369999999,0.773835592,0.8068381221000003,0.8315627956000002,0.8539262628,0.8687084250000001,0.8764503220000004,0.8701469020000003,0.872385921,0.8712693659999999,0.8836362005,0.8796231289999997,0.8728069891999995,0.8585817129000001,0.8220149248999999,0.7809961537999998,0.7335764119999999,0.6626173941,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,transportation,2 gas,0.0,0.0,0.0,0.00555230157,0.014902452650000002,0.02711030892,0.04231502374,0.06207869936,0.08415338460999998,0.10915198836999998,0.14316194696999995,0.16495222199999998,0.18826080249999994,0.21679777529999997,0.24329872390000004,0.2705971573000001,0.29619062060000007,0.3177901305,0.339569262,0.3625575453000001,0.3816640705,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,transportation,3 coal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,transportation,4 biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,transportation,5 electricity,7.117860000000001E-4,0.001880965,0.00418053,0.004621016212999999,0.0053442490621,0.005991324694049999,0.006765483248640001,0.007664077735299999,0.008578485510199999,0.009562566135000002,0.010609757404,0.011697262907000003,0.012913094188000001,0.014599013986000001,0.016675906550000005,0.019350972350000002,0.02242916605,0.026958033880000003,0.03196999333,0.037474526819999986,0.04357049521000002,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,transportation,6 hydrogen,0.0,0.0,0.0,0.0,2.1771463E-5,7.9270133E-5,1.62198795E-4,2.89929939E-4,4.233962609999999E-4,6.11204098E-4,8.610524409999999E-4,0.001155823209,0.0014705726700000002,0.00186213776,0.0023143483999999996,0.00285451319,0.00346888037,0.00433574059,0.005472615730000001,0.00682133731,0.00832104249,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,transportation,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,transportation,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,building,1 liquids,1.995717,1.903792,1.538606,1.4760259999999998,1.520255,1.578673,1.600559,1.630779,1.681025,1.734051,1.7938010000000002,1.822957,1.8428030000000002,1.837229,1.8021699999999998,1.716127,1.629487,1.4830234,1.2437787,1.0160115,0.7112426000000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,building,2 gas,6.857001499999999,7.5971238,7.623211599999999,7.901981300000001,8.2032687,8.6178629,8.859617799999999,9.045770399999999,9.127701,9.1211447,9.0965297,8.78669231,8.44418599,8.0241569,7.308132800000001,6.670648679999999,6.1136392,5.11253012,4.33938964,3.7244627200000004,2.8964299419999997,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,building,3 coal,0.4034468,0.0880316,0.0631667,0.0609929,0.0408642,0.0371085,0.0329358,0.0294125,0.0233667,0.0188653,0.0153818,0.0104218,0.00726292,0.00513618,0.00280248,0.00165317,0.0010406,4.82315E-4,2.55897E-4,1.50547E-4,7.52516E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,building,4 biomass,0.566659,0.5762028,0.5111529,0.49100509999999997,0.568389,0.594221,0.615532,0.607786,0.570542,0.532362,0.4882501,0.436203,0.3735757,0.3138354,0.22942479999999998,0.1541387,0.1074111,0.061139700000000005,0.03565923,0.02216549,0.01168697,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,building,5 electricity,6.341497,9.952225,10.400421,11.553556,12.12036,12.765052,13.461408,14.170491,14.930004,15.695177,16.572846000000002,17.384143,18.306917,19.177771999999997,20.288448000000002,21.258719,22.107905,23.182499,24.194488999999997,25.112104000000002,26.172863,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,building,6 hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,building,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,building,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,industry,1 liquids,6.9232604,8.417748000000001,7.2263361,7.4053317,7.675066000000001,8.057914,8.354646,8.659193,8.949569,9.248313,9.585478,9.760100999999999,9.950714999999999,10.104607,10.148232,10.124576300000001,10.1473359,9.980632400000001,9.7399414,9.565514799999999,9.2101646,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,industry,2 gas,7.36497798,6.818757400000001,6.594192659999999,6.7169471,7.0151861,7.429535400000001,7.6642343,7.850508099999999,7.915733200000001,7.902173499999999,7.856496609999998,7.5456215600000025,7.22562609,6.86509873,6.228902019999997,5.693995270000001,5.2417625999999995,4.35990709,3.6947134200000002,3.1949273269999994,2.5649883672999994,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,industry,3 coal,2.652244,1.6495320000000002,1.544009,1.5562600000000002,1.37006,1.3916080000000002,1.378983,1.373612,1.290511,1.214017,1.153332,0.9747866,0.8396220999999999,0.7282601,0.5397128,0.4168011,0.33152957,0.21194116,0.14983538000000002,0.11403424000000001,0.080077403,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,industry,4 biomass,1.6154229599999999,1.60173148,1.47476959,1.48138751,1.87883846,2.17190761,2.4382564899999997,2.6437758000000002,2.82681724,2.9666332,3.0676449000000003,3.0793137,2.9323304,2.6940451,2.1845712,1.6486055000000002,1.28509699,0.8131092400000001,0.52300221,0.35463660999999996,0.20157844,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,industry,5 electricity,3.2840121,3.4674655,3.2956417,3.7751389,3.7802721299999997,3.83067752,3.98070818,4.1589237,4.3717646000000006,4.6319121,4.9606247,5.3835812,5.943747800000001,6.5849812,7.601234659999999,8.640996900000001,9.61139749,11.042062146000001,12.339587641,13.433094331,14.637058002,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.015208300000000001,0.02567504,0.03804527,0.053021,0.0716455,0.094473,0.12233449999999998,0.1451333,0.17502,0.21010850000000003,0.2589928,0.307079,0.359062,0.443592,0.503895,0.5552429999999999,0.5565910000000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,industry,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,industry,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,transportation,1 liquids,21.628502289999997,27.76724092,26.014380390000003,27.19705056999999,27.667454020000005,27.878841650000002,28.041901929999995,28.16942799999999,28.7505979,29.21950330000001,29.725548700000008,30.155012899999992,30.75349859999999,31.263400200000003,31.77372530000001,32.1131422,32.41776400000001,32.29347789999999,31.981064100000008,31.463445100000005,30.191017800000015,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,transportation,2 gas,0.0,0.0223528,0.029762,0.19126589,0.446067036,0.8679626549999999,1.340836022,1.8848664519999996,2.405035829,2.970556850000001,3.710755902,4.239098398000001,4.811129761,5.3785172800000005,5.96814933,6.543397000000001,7.11250881,7.58087167,8.11714957,8.71913042,9.457953730000002,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,transportation,3 coal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,transportation,4 biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,transportation,5 electricity,0.014848598900000001,0.026844098,0.027507697999999997,0.033904413,0.05294910800000001,0.08332970600000003,0.11910923300000001,0.16228320599999999,0.206467697,0.26027489800000003,0.3263600179999999,0.40324138499999995,0.49951622,0.61252628,0.7579490700000001,0.9339808700000001,1.14309029,1.4046072100000002,1.74216577,2.16038748,2.62563165,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,transportation,6 hydrogen,0.0,0.0,0.0,0.0,0.01245579,0.04139917,0.07904165,0.12581509600000002,0.17250134199999995,0.22754789400000003,0.29123414,0.36177713000000006,0.44604200000000005,0.5403156499999999,0.65514643,0.78449994,0.92724052,1.0971743600000001,1.2997083,1.5286717900000002,1.7911421999999997,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,transportation,7 trad biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,transportation,8 district heat,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,building,1 liquids,0.0448266,0.06626972,0.07425672999999999,0.08879800000000002,0.11679722000000001,0.16319058,0.22395056000000002,0.30242451000000004,0.40212918,0.52254937,0.66712604,0.8072595999999999,0.9620666999999999,1.115145,1.1622689,1.1701114,1.0139271,0.8898301,0.7370923,0.6173629,0.465908,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,building,3 coal,3.9100001000000003E-4,5.518002E-4,5.709993E-4,6.011422E-4,4.1203459E-4,4.1497748999999996E-4,4.2956407999999996E-4,4.5020941E-4,4.0730119E-4,3.7277306E-4,3.4510639E-4,2.629503E-4,2.1119982999999999E-4,1.7441113000000002E-4,1.1019308999999999E-4,7.611865E-5,5.673387E-5,2.9827759999999996E-5,1.7782951E-5,1.1312794999999999E-5,6.0884299999999996E-6,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,building,4 biomass,0.1563437,0.22469619999999998,0.2820818,0.3229324,0.4105971,0.501924,0.609505,0.7142580000000001,0.77879,0.818138,0.8016559999999999,0.7489680000000001,0.6854669999999999,0.6140680000000001,0.48524,0.3478538,0.23258009999999998,0.1113574,0.0561924,0.030949829999999998,0.01476181,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,building,5 electricity,0.015242370000000002,0.03374171,0.05263095,0.08440288,0.12935824,0.19756437,0.2874604,0.4043192,0.5718553000000001,0.8087099,1.1309285,1.5417694000000002,2.0564085,2.6887086,3.479888,4.381247,5.404788,6.476475,7.545960000000001,8.562749,9.618181,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,building,7 trad biomass,1.377214,2.0188930000000003,2.5967089999999997,2.672556,2.7564490000000004,2.797873,2.818519,2.820951,2.801418,2.7508350000000004,2.677919,2.605683,2.42388,2.210109,2.02421,1.8443999999999998,1.6993070000000001,1.544981,1.407051,1.281878,1.2032539999999998,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,industry,1 liquids,0.054588197,0.08156386700000001,0.1206729,0.17663790000000001,0.25123690000000004,0.3744885,0.5453678,0.7776106,1.0969988,1.5053076,2.034198,2.638932,3.322299,4.056076,4.715195,5.344758,5.649312,6.085903,6.351604,6.644519,6.852383,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,industry,2 gas,0.0,0.00153791,0.00491755,0.008261283,0.012818865999999998,0.018589525,0.025689803,0.034057106000000004,0.04285669600000001,0.05342564199999999,0.06720024200000001,0.0774080633,0.08504219660000001,0.09101981540000002,0.09477911300000003,0.10196108299999998,0.11773509099999999,0.127521892,0.140101757,0.14840557,0.15212302400000002,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,industry,3 coal,0.0045074699999999995,0.00358983,0.00541175,0.00823908,0.00808024,0.0101206,0.012617,0.0155977,0.0176408,0.020315,0.0239752,0.0229992,0.0216953,0.0203956,0.0161257,0.0140657,0.0140925,0.0115155,0.0102691,0.00926198,0.00781466,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,industry,4 biomass,0.44015706,0.60519625,0.67671868,0.8104729,1.1261913,1.5413947,2.0864835,2.7453662,3.5058589999999996,4.32961,5.148841,5.955345,6.654332,7.191213,7.306176000000001,6.899679,6.139336,4.304139999999999,2.883844,1.955471,1.1718320000000002,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,industry,5 electricity,0.012891650000000001,0.02265804,0.0285127,0.05765379,0.09029906,0.1408997,0.20418563,0.28281029999999996,0.39903274,0.5617490999999999,0.7907603,1.0830384000000002,1.4331954999999998,1.8426635,2.427846,3.1601422,4.0572336,5.35043104,6.479061060000001,7.305411970000001,8.183017783,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.00432108,0.00986352,0.02017563,0.038528400000000004,0.0686904,0.1164915,0.19126700000000002,0.278495,0.403256,0.564619,0.767983,1.019953,1.3529309999999999,1.859097,2.48107,3.17443,3.6007800000000003,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,transportation,1 liquids,0.2055768013,0.29433523600000006,0.413631294,0.479821052,0.5846500890000002,0.7232648329999999,0.8927550869999997,1.0956336318000004,1.3404619880000004,1.6428958389999997,2.0028201820000007,2.4726499239999997,3.0400779499999997,3.7087407110000017,4.406614422999998,5.139465660000002,5.692093947000001,6.243426908999998,6.6675191840000005,7.035153880999999,7.136850485700001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,transportation,2 gas,0.0,0.0,0.0,0.0050890065,0.0164522012,0.037863748999999995,0.07193985531000001,0.1225901754,0.19384409375000003,0.2916330817999999,0.42645121723999996,0.5747165551999999,0.7495304471000002,0.951305569,1.1791400730000001,1.4431611310000005,1.7987674100000002,2.157846975,2.556587086,2.9623691819999993,3.317097342,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,transportation,3 coal,1.67599E-4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,transportation,5 electricity,0.0,1.7599920000000002E-5,1.779993E-5,1.3775991148199998E-4,3.16761211792E-4,5.39075474712E-4,7.887548491260001E-4,0.0010198758440000005,0.0012956194357999996,0.0015826344949999998,0.0018615737790000002,0.002153914969,0.0025223405199999997,0.003095593839999999,0.00422206123,0.00623932837,0.010261487480000001,0.018086574799999998,0.033867215099999994,0.0635822271,0.10602157120000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,transportation,6 hydrogen,0.0,0.0,0.0,0.0,1.3431401E-5,5.16668091E-5,1.2140217450000001E-4,2.428630123E-4,4.467872103000001E-4,8.098115609999999E-4,0.0014227907832,0.002538758348,0.004307548158999999,0.0070086653790000005,0.011216271283,0.01750631885,0.027340376120000003,0.04237964449000001,0.06604821502000001,0.10073757523999999,0.1504687552,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,building,1 liquids,0.31737679999999996,0.45582348,0.4418922,0.4551233,0.507348,0.6024347999999999,0.6693448,0.7228675,0.773537,0.8161139000000001,0.8529416,0.8675816,0.8848807999999999,0.8963437000000001,0.8475176999999999,0.7720425,0.632421,0.5556764999999999,0.45561670000000004,0.377729,0.2820095,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,building,2 gas,0.049185502,0.1752676,0.224411,0.2350235,0.2763091,0.3413486,0.3952786,0.44076439999999995,0.4692502,0.49019140000000005,0.5036061,0.49847929999999996,0.4939433,0.4866619,0.44386030000000004,0.3976825,0.3699713,0.2980275,0.2381844,0.19002980000000003,0.1259844,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,building,3 coal,1.700006E-6,7.56700006E-4,3.499998E-6,3.5837799999999998E-6,2.3838087E-6,2.4108818E-6,2.2915596E-6,2.1464343000000002E-6,1.7397756E-6,1.4325762E-6,1.1925164E-6,8.173854E-7,5.967085E-7,4.516039E-7,2.6473183E-7,1.6780804E-7,1.1929107E-7,6.2878801E-8,3.7518832999999996E-8,2.4300286E-8,1.3540495E-8,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,building,4 biomass,0.0033089001,0.0065225,0.0070573,0.0073336,0.00805821,0.00847064,0.00852692,0.00830226,0.00773778,0.00712261,0.00622785,0.005333879999999999,0.00456694,0.00390807,0.0030383520000000002,0.00212313,0.001416115,7.22668E-4,3.7779510000000003E-4,2.1549839999999998E-4,1.003467E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,building,5 electricity,0.11678708,0.3554645,0.4836962,0.5038952999999999,0.6470059,0.833443,1.0798835,1.3513903,1.6357240000000002,1.931698,2.226313,2.5194479999999997,2.792124,3.046787,3.311369,3.55572,3.773315,3.944973,4.098082000000001,4.202462,4.3542760000000005,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,building,7 trad biomass,0.062738,0.0925072,0.1004378,0.1019697,0.10502249999999999,0.109264,0.115282,0.1232519,0.1331046,0.1442909,0.15636656000000002,0.16894105,0.18204974000000002,0.19541640999999998,0.2082906,0.22036681,0.2316423,0.242448972,0.25257522,0.261975065,0.272337319,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,industry,1 liquids,0.5869305,0.8191328999999999,0.7419,0.800566,0.9250989999999999,1.100284,1.255377,1.402792,1.569701,1.729399,1.8859549999999998,2.030846,2.169168,2.2927020000000002,2.3610010000000003,2.368932,2.181464,2.205597,2.1325790000000002,2.074047,2.000007,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,industry,2 gas,0.5557745000000001,0.9602778999999999,1.1113282,1.1887494,1.38990359,1.66685444,1.93152898,2.176967409999999,2.36498788,2.5262537700000007,2.6571528399999997,2.7076951240000007,2.7396049689999997,2.75109468,2.62612753,2.497026199999999,2.4777482199999996,2.18141416,1.95561291,1.7628971370000002,1.472425235,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,industry,3 coal,0.07924339999999999,0.0726766,0.0501127,0.0614622,0.0464951,0.0441394,0.0419813,0.0400182,0.0345816,0.030258,0.0269477,0.0208408,0.0167512,0.0138169,0.00984028,0.00778775,0.00710743,0.00523328,0.00427261,0.00357734,0.002852,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,industry,4 biomass,0.02697865,0.0438617,0.0871743,0.1015421,0.1261671,0.1456524,0.1664633,0.1852731,0.2017348,0.2160883,0.2217239,0.228124,0.231503,0.232903,0.22785,0.2056643,0.1812322,0.1300093,0.0947311,0.0727208,0.0520277,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,industry,5 electricity,0.1247622,0.2386472,0.2951302,0.31881780000000004,0.40285356,0.49013789999999996,0.6220877,0.7689822,0.9268319,1.0910589999999998,1.2535001,1.4301641,1.5810804999999999,1.7117199,1.9067515000000002,2.12165462,2.34557778,2.58735582,2.84681273,3.062639878,3.412842085,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.002063765,0.004140537,0.0069574,0.010619980000000001,0.01522994,0.0209756,0.02777649,0.0326891,0.0392468,0.0479899,0.0592009,0.0706987,0.0852975,0.1097278,0.13633849999999997,0.16542590000000001,0.1745526,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,transportation,1 liquids,0.7373008900000001,1.138068019,1.5997735289999997,1.6409797309999996,1.8701681860000003,2.180978047,2.493785448999999,2.795859795,3.0721144189999996,3.3243943160000002,3.520194000999999,3.777816694999998,4.029767484,4.279119732000001,4.478329628,4.635151874999999,4.620933968000001,4.579229200999999,4.4588891340000005,4.292165487999998,4.001995799900001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,transportation,2 gas,0.0,0.0103799178,0.015653388,0.0315698257,0.0707526157,0.142951059,0.2456083643,0.3850619522,0.5557908078999999,0.7633370573,1.0383993507999996,1.2593959169999995,1.484758228,1.7084409350000003,1.9236275999999997,2.1398181019999996,2.416325485000001,2.657026680000001,2.9122293930000005,3.1588132450000006,3.3217502750000003,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,transportation,3 coal,6.99992E-7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,transportation,5 electricity,0.001799988,0.00316035,0.00363956,0.00459557621044,0.0057673403846900005,0.006786066485509001,0.007820397175884999,0.008701595092148998,0.009537864624000006,0.010307087273000004,0.01104619237,0.011964056079999999,0.01300692076,0.01433892485,0.01645281343,0.01962214251,0.024972074599999998,0.0338914289,0.050575377299999995,0.0799125973,0.12201459790000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,transportation,6 hydrogen,0.0,0.0,0.0,0.0,5.0692529E-5,1.9767165199999998E-4,4.2644559499999997E-4,7.74817517E-4,0.0012260577218,0.001897286017,0.0028503685559999998,0.004233877065999999,0.006041313011,0.008431247609,0.011890618320000003,0.01660718009,0.02333442542,0.032976680280000004,0.047435318469999994,0.0673964482,0.09401374030000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,building,1 liquids,0.03188183,0.0405157,0.08338994999999999,0.09544389,0.11651858,0.14918187,0.17928353,0.21156133,0.25586733,0.3133426,0.3866527,0.4609216,0.541941,0.6484101,0.7175751,0.762569,0.7044178,0.6403805,0.5383856,0.4451024,0.3421197,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,building,2 gas,0.0,0.0,0.0028465,0.00344206,0.00436895,0.00570346,0.00707431,0.00859548,0.010372,0.0127119,0.0157009,0.018751,0.0221177,0.0266658,0.0297497,0.0326928,0.0366706,0.0323799,0.0284214,0.0240197,0.0182954,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,building,3 coal,0.010053918,0.00376001,0.0034279030000000004,0.0037179636,0.0025993979999999997,0.0026141171,0.002559109,0.0025037986,0.0021711955,0.0019431251,0.0017782441,0.0013530177,0.0010778435000000002,9.147794E-4,6.120528499999999E-4,4.4209001E-4,3.4889779E-4,1.8736715E-4,1.115048E-4,6.8636226E-5,3.7010883E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,building,4 biomass,0.0797127,0.13983790000000001,0.15706189999999998,0.1792785,0.226357,0.2734809,0.3148466,0.3482672,0.368414,0.38111069999999997,0.3705911,0.3445284,0.3109337,0.2860934,0.2374948,0.1767107,0.12301619999999999,0.0594274,0.02956872,0.01562739,0.0074403,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,building,5 electricity,0.02358604,0.04908358,0.06535547,0.11287536999999997,0.14998976,0.20209570000000002,0.27554181,0.36770769999999997,0.48948079999999994,0.6589871,0.8889732,1.1793847,1.5488022,1.9561606,2.4273824,2.9702238999999997,3.582415,4.2614540000000005,4.955025,5.618649,6.2657869999999996,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,building,7 trad biomass,0.9525201,1.331009,1.516337,1.52976,1.579966,1.610638,1.621344,1.6234380000000002,1.620841,1.600171,1.564703,1.526496,1.4189889999999998,1.3148490000000002,1.234994,1.1389209999999999,1.057978,0.943785,0.824031,0.7055480000000001,0.6323840000000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,industry,1 liquids,0.04276275,0.06480983,0.07667958000000001,0.1129492,0.1565292,0.2215503,0.29905570000000004,0.3957563,0.5283413,0.7037909,0.9320371999999999,1.2017348,1.5085674999999998,1.853894,2.187484,2.508055,2.7264019999999998,2.986328,3.226107,3.506057,3.774655,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,industry,2 gas,0.01846021,0.02548748,0.03251982,0.05063589000000001,0.06741518900000001,0.089968347,0.11391882199999999,0.14004802299999997,0.170075127,0.20662434899999998,0.251807467,0.293579455,0.332217044,0.3719401960000001,0.39348412599999993,0.4141484010000001,0.447744678,0.413208909,0.376306314,0.33516849200000004,0.2835881377,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,industry,3 coal,0.07109597000000001,0.03916395,0.02958568,0.04348127,0.045893119999999996,0.056342699999999996,0.0664301,0.0772709,0.0857108,0.0963501,0.1099574,0.11136770000000001,0.11174500000000001,0.11289260000000001,0.0965106,0.08535100000000001,0.0796515,0.05605739999999999,0.04086057,0.029992309999999998,0.020031,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,industry,4 biomass,0.296921395,0.476782008,0.5514989969999999,0.63905988,0.8365612299999999,1.05785304,1.283733,1.51624216,1.77947779,2.0676761000000003,2.3321053,2.5839337999999996,2.7644556,2.9461564,2.9634361,2.7299759,2.3485488,1.5409071,0.9639456000000001,0.6096181,0.3472773,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,industry,5 electricity,0.0484582,0.08214114,0.08241878,0.16659579,0.21307715,0.27785361,0.37184665,0.48857787,0.63964889,0.8427166100000001,1.1165468,1.4520315000000001,1.8549625,2.2218264000000003,2.65265189,3.1652739,3.6930346099999998,4.50817513,5.19855421,5.7623804519999995,6.230585653,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.002964959,0.00625651,0.01097566,0.01774195,0.02794417,0.0433881,0.06642680000000001,0.09097530000000001,0.1222612,0.1692032,0.237153,0.318858,0.427715,0.556933,0.6878489999999999,0.790312,0.872614,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,transportation,1 liquids,0.15221095989999997,0.2130339799,0.316482939,0.38193708800000004,0.450151147,0.532996823,0.6202067450000002,0.7131856649999998,0.8238802729999999,0.963358175,1.1278550109999996,1.3533593540000004,1.6243632980000005,1.9401901449999996,2.2699149360000006,2.6112214829999996,2.860420803999999,3.0980282380000013,3.2683047160000007,3.3949997742000013,3.3923670410000013,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,transportation,2 gas,0.0,0.0,0.0,0.0053195174,0.015175470699999997,0.0328494539,0.05896749649,0.09595071850999999,0.14719049378,0.2177726974,0.3175644921999999,0.4245850317,0.549908416,0.6943044909999998,0.8579409180000002,1.047366791,1.3042738300000003,1.564339121,1.8547285179999995,2.1500650589999997,2.408352677,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,transportation,3 coal,0.00552251,2.09295E-4,2.09296E-4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,transportation,5 electricity,4.45992E-5,4.09995E-5,7.69992E-5,2.44317849924E-4,4.20258028784E-4,5.994807632349998E-4,8.136091913109999E-4,0.0010179717452879996,0.0012384039033999999,0.0014578938802999998,0.001674899941,0.001921010713,0.0022505634229999993,0.0027165513,0.0035748463800000002,0.00508062167,0.00796835892,0.013627637940000001,0.0252588651,0.0479353533,0.08033543549999998,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,transportation,6 hydrogen,0.0,0.0,0.0,0.0,1.18650328E-5,4.397923439999999E-5,9.635730300000001E-5,1.794194374E-4,3.1050501030000004E-4,5.396751637000002E-4,9.277254237000001E-4,0.00163108258,0.0027379306260000005,0.004431750771000001,0.0070958853370000005,0.011090232487,0.01731436566,0.026867472029999992,0.04192868326,0.06398242291,0.09544270249999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,building,1 liquids,0.12946160099999998,0.160705604,0.185731176,0.25048198499999996,0.31955044099999996,0.48687803,0.6977023,0.95969745,1.29584229,1.71686531,2.24195797,2.8029072200000003,3.47382774,4.18935466,4.64761914,5.009707479999999,4.79494897,4.4733427500000005,3.75133773,3.14715338,2.38727702,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,building,2 gas,0.0,0.005986,0.0077441,0.0103692,0.0129631,0.0187223,0.0261984,0.0357903,0.0471662,0.0618129,0.0804059,0.100514,0.125366,0.1534,0.172332,0.193277,0.2263,0.205825,0.182011,0.159129,0.122909,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,building,3 coal,0.002655,0.003553999909,0.003992399987,0.005630502828,0.004460098421,0.005494304672999999,0.0063908775390000006,0.007137083917,0.006771851329000001,0.006417680788000001,0.006067819179,0.004686920517800001,0.0037812166346,0.0030943467842,0.0019842284867,0.0013879468612,0.0010891308127,5.705922123E-4,3.2164087020000005E-4,1.9274170098999998E-4,9.954993055999999E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,building,4 biomass,0.1991744,0.2311539,0.2366298,0.3139771,0.41899400000000003,0.568382,0.7297359999999999,0.880871,0.9893449999999999,1.075587,1.092761,1.063576,1.016813,0.9511229999999999,0.804777,0.621661,0.46560399999999996,0.23864839999999998,0.12294070000000001,0.06896250000000001,0.03409373,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,building,5 electricity,0.048461569999999995,0.1113703,0.1300411,0.1779383,0.24540309999999999,0.3748546,0.5862842,0.8902128,1.3147503999999999,1.9045550000000002,2.7006690000000004,3.717116,4.948391000000001,6.453248,8.279905,10.321543,12.607904999999999,15.229191,18.12497,20.75916,23.4118,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,building,7 trad biomass,3.31438953,5.054457299999999,5.700202,6.0471768,6.3850095,6.633017799999999,6.7607914000000005,6.809882300000001,6.8141698,6.750570199999999,6.6332523000000005,6.5165475,6.3653115,6.1681021000000005,6.020464700000001,5.857721,5.7744645000000006,5.3443191,4.6120079,3.8818511,3.3231785,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,industry,1 liquids,0.0919113,0.12798400000000001,0.1194882,0.1846219,0.2652289,0.4276493,0.6589381000000001,0.9774069,1.41635,1.992476,2.7383020000000005,3.624325,4.650632,5.789187,6.921751,8.050866000000001,8.853464,9.813543,10.588358,11.417632999999999,12.157512,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,industry,2 gas,0.046632190000000004,0.17940138,0.14319431999999999,0.207184661,0.26456053200000007,0.391995605,0.5591408819999999,0.7704104710000002,1.0196618229999992,1.3202207041,1.695557131,2.0656708888000006,2.4565259890000006,2.8415579252,3.093624796299999,3.4086114317,3.8675225490000003,3.8458070220000007,3.600132727,3.2163960140000007,2.5795916008,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,industry,3 coal,0.00928509,0.0129947,0.0181149,0.027700919999999997,0.027597450000000003,0.036282980000000006,0.04731129,0.06072957,0.07140054,0.084435,0.0987517,0.0971225,0.0944526,0.0915284,0.0753786,0.06612660000000001,0.0651207,0.049937539999999996,0.04169373,0.03556785,0.02829354,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,industry,4 biomass,0.65619142,1.10237948,1.25090791,1.60216934,2.09433616,2.9088689999999997,3.9118672,5.0662265,6.3661234,7.7814425,9.188549400000001,10.6229768,11.9499725,13.0547145,13.612359,13.283208,12.246463,9.15993,6.3306528,4.3945488,2.6973933999999997,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,industry,5 electricity,0.04768488,0.050792989999999996,0.06320081999999999,0.0932568,0.12967492,0.19764895,0.31024986000000004,0.46951125,0.688969,0.9815856,1.3769777,1.8596485,2.3892269,2.991465,3.7808461,4.7347553,5.6937578,7.722683700000001,9.934710970000001,11.73161428,13.61533526,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.00665475,0.01565931,0.03110177,0.0563507,0.0962285,0.1579962,0.253586,0.36097799999999997,0.507989,0.706083,0.9900530000000001,1.382806,2.007884,3.04415,4.18776,5.364850000000001,6.41537,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,transportation,1 liquids,0.413407039,0.7722052100000001,0.7672579799999999,0.910416365,1.0667509020000003,1.3366661229999999,1.6630880430000003,2.0454213219999997,2.489932382,3.0189382900000004,3.6232735829999996,4.400697195999999,5.305017872999997,6.323910228,7.357462598000001,8.395391098,9.108927599,9.775386248999997,10.231208426000002,10.540696027,10.467942266099998,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,transportation,2 gas,0.0,0.0,0.0,0.0118284659,0.03410251999999999,0.08203413579999999,0.15859763219999998,0.27222178725999996,0.4305498951999999,0.6472048375999999,0.9472548983000001,1.2778762145000004,1.662376436,2.099395154999999,2.5844780810000003,3.1335622690000013,3.865433526000001,4.579405464,5.34993156,6.11376721,6.74398362,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,transportation,3 coal,2.52794E-4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,transportation,5 electricity,0.0,1.959982E-5,5.85995E-5,3.7405970735000007E-4,7.652980565330002E-4,0.0012035959081709998,0.0017433115656669998,0.0022532627593879998,0.0027880168592000006,0.0033011258140000005,0.0038253217340000006,0.00449282755,0.00546899801,0.007093328910000001,0.01008626967,0.015246904300000001,0.0246943872,0.04272950539999999,0.07963388630000001,0.1492301044,0.24743031999999998,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,transportation,6 hydrogen,0.0,0.0,0.0,0.0,2.7554097E-5,1.2091734299999999E-4,2.9539977900000004E-4,6.008077092999999E-4,0.0011102303019,0.001998428876,0.0034924604720000005,0.006097438082,0.010076333677999998,0.01597241408,0.02497761958,0.03816023936,0.05845310880000001,0.08934278155999999,0.13774404690000003,0.20751088760000005,0.30598737439999996,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,building,1 liquids,0.0809572,0.05584122,0.06752019000000001,0.0713897,0.06599985,0.07090547,0.07255709,0.07344745000000001,0.07479766,0.07516663,0.07503139,0.07334133999999999,0.07094618999999999,0.06770329,0.061035040000000006,0.05409484999999999,0.0448501,0.03849582,0.02961399,0.02282063,0.016075433,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,building,2 gas,0.21289954,0.30026179999999997,0.3653123099999999,0.39438512,0.36887759,0.41601995999999997,0.4441791,0.46316567000000003,0.46733145000000004,0.46340168,0.45430831000000005,0.42967049,0.40040447999999995,0.36810073,0.31139743999999997,0.26011852999999996,0.21955272199999998,0.16275075500000002,0.121780228,0.09221606600000001,0.06163731999999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,building,4 biomass,0.0036417999999999997,0.016199799999999997,0.0115951989,0.011029473299999999,0.0119948898,0.011742708000000001,0.011392852,0.010814352000000001,0.009971240000000001,0.0091283916,0.0079094013,0.006774865300000001,0.0057210674,0.004805750399999999,0.0037019654,0.0025419439999999995,0.0016069380999999998,7.851296000000001E-4,4.0115670000000003E-4,2.2549528E-4,1.1084825999999998E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,building,5 electricity,0.06391749,0.15595868,0.20692470000000002,0.2383114,0.23863499999999999,0.283983,0.3448963,0.40881200000000006,0.472144,0.5337061000000001,0.5940481,0.6571904,0.7190245,0.77848,0.8483388999999999,0.9090639,0.9568455,1.0083758,1.0483522,1.0747143,1.1055377,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,building,7 trad biomass,0.005148801,0.0028465,0.0020511,0.0018508230000000001,0.0020999869999999998,0.001847038,0.001613788,0.001418566,0.001301095,0.001196341,0.001094637,0.001045371,9.8486E-4,9.154170000000001E-4,8.96634E-4,8.52035E-4,8.058173999999999E-4,7.989097E-4,7.576891E-4,6.935717E-4,6.410524000000001E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,industry,1 liquids,0.19623962,0.48063700000000004,0.47314339999999994,0.5175773,0.5148255,0.5634423000000001,0.5959503,0.6242511000000001,0.6548926,0.6793805,0.7021625,0.7181519000000001,0.7298171,0.7382515000000001,0.7303458000000002,0.7186770000000001,0.6880391999999999,0.6805294000000001,0.6510069,0.6312869,0.6120971000000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,industry,2 gas,0.28787105,0.46724465,0.45276187,0.4888616,0.48099659699999997,0.5290690050000001,0.5632889699999999,0.5883714389999999,0.5944923409999998,0.5932091640000001,0.5876527570000001,0.564977058,0.538635709,0.511256379,0.458452936,0.4096295730000001,0.3765381639999999,0.308335094,0.26339095669999996,0.22927845300000002,0.18788731300999997,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,industry,3 coal,0.02473931,0.01063244,0.00766045,0.00957692,0.00689706,0.00697677,0.00700523,0.00697068,0.00624369,0.00562226,0.00513087,0.00409092,0.00338473,0.00287286,0.00210224,0.00167013,0.00146717,0.00103382,8.32664E-4,6.94669E-4,5.42384E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,industry,4 biomass,0.058771409999999996,0.05098543,0.038758230000000005,0.04210142,0.04575821,0.052179409999999996,0.057959899999999995,0.0626108,0.0661534,0.0686714,0.0686144,0.0686712,0.0675376,0.0658133,0.0613035,0.0520346,0.0416467,0.026893060000000003,0.01785108,0.012679220000000001,0.008243190000000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,industry,5 electricity,0.07634254,0.15035727000000002,0.16188983,0.17943211,0.189689639,0.20872653000000002,0.24391108,0.27987125,0.31523408999999997,0.3497248,0.38326543,0.42419184,0.46629914,0.50743595,0.572082642,0.637514874,0.69987513,0.7725765741999999,0.8418737177000001,0.8921102291999999,0.95339261688,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,industry,6 hydrogen,0.0,0.0,0.0,0.0,9.94074E-4,0.001764814,0.002666961,0.003721858,0.00494925,0.0063850600000000006,0.00803282,0.00914616,0.01051277,0.01216261,0.015096970000000001,0.018780909999999998,0.0220471,0.028253,0.0307406,0.0328609,0.033295,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,transportation,1 liquids,0.4180661688999999,0.4871503766,0.6195451659000001,0.6674447174000001,0.6464523257,0.6972394899999999,0.7410158166999998,0.7745809476,0.79818753677,0.8093723276600004,0.8011223560399997,0.8030161529900001,0.8063587454000001,0.8097386836299998,0.8053163797499998,0.7988351128100001,0.7796124527400002,0.75612197347,0.7217580926100003,0.682891846928,0.629947959533,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,transportation,2 gas,0.007575793,0.11095770000000002,0.09329499999999999,0.102479089,0.099871036,0.11576851499999999,0.14246366,0.17954810200000001,0.22567945,0.27584297830000004,0.34384922,0.3800034990000001,0.41222999600000004,0.4422545829999998,0.4647072360000002,0.48286899,0.5025061740000002,0.5056362099999999,0.5099346879999999,0.5146870619999998,0.5065312590000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,transportation,3 coal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,transportation,5 electricity,0.001099893,0.002065683,0.002219177,0.0037466032289999998,0.005437012533000001,0.007855049417,0.010643976487999997,0.013870841615999998,0.01718381482,0.020959829459999996,0.025606597210000005,0.030307582919999992,0.03500581955,0.03981394965,0.04545022035,0.05176586755,0.05887317184999999,0.06717559333,0.07735294979999999,0.08888119758000002,0.09986409042,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,transportation,6 hydrogen,0.0,0.0,0.0,0.0,2.3556616E-4,0.00109581827,0.00228967145,0.00381861419,0.005382781153,0.00711128845,0.00912796148,0.011338107770000001,0.013889186909999999,0.0168190042,0.020502796000000004,0.024867875799999994,0.0296682885,0.0352834643,0.0416758713,0.04849021199999999,0.0556248422,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,building,1 liquids,0.03407399,0.04177629,0.0457112,0.04677562,0.052117790000000004,0.05722792,0.059310459999999995,0.060827269999999996,0.06251603,0.0632355,0.06309475,0.06139274,0.05934402,0.05659644,0.05201714,0.04689042,0.03767752,0.031111839999999998,0.0229361,0.01702845,0.011752889999999998,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,building,2 gas,0.1194684,0.1701608,0.1861932,0.208209,0.22843339999999998,0.25268050000000003,0.26632290000000003,0.2759582,0.2791156,0.2798028,0.278552,0.269505,0.258039,0.24510959999999998,0.2269837,0.21121990000000002,0.1922686,0.1512331,0.115914,0.08914868000000001,0.0607255,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,building,3 coal,0.0108836,0.0056511,0.0031814,0.003494669,0.002474985,0.002355229,0.002138415,0.001931285,0.001541915,0.001246785,0.001016349,6.939753E-4,4.909887E-4,3.5547650000000003E-4,2.1005820000000001E-4,1.336519E-4,8.6429E-5,3.9921070000000004E-5,2.033142E-5,1.136571E-5,5.423274999999999E-6,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,building,4 biomass,0.080413,0.0667248,0.0635434,0.0656869459,0.0724119968,0.07578912919999999,0.0783680358,0.07926544609999998,0.07798836279999999,0.07598034020000001,0.07043828340000001,0.0645797223,0.0581402431,0.051690845699999995,0.0433533068,0.032537598,0.02164302927,0.010992179139999999,0.0056618617100000004,0.0032104050599999997,0.0015891237760000002,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,building,5 electricity,0.2963367,0.4695266,0.5169318,0.58024075,0.6373595000000001,0.7041572,0.7774876,0.8496384,0.9202895,0.9956289,1.070297,1.1381624,1.212261,1.2872340000000002,1.3428680000000002,1.3947729,1.4547653,1.5212478,1.5823254,1.6223534,1.6508607999999998,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,industry,1 liquids,0.36748899999999995,0.517473,0.5251750000000001,0.554153,0.617216,0.673761,0.7235670000000001,0.775002,0.83677,0.8960330000000001,0.95468,1.01251,1.069341,1.118415,1.153643,1.177343,1.157575,1.174671,1.153839,1.140428,1.130402,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,industry,2 gas,0.4086009,0.6497929,0.7403268,0.82393293,0.90164244,0.9790066000000001,1.0334148099999998,1.0722446799999996,1.09122813,1.10238433,1.1109435000000005,1.1004838750000006,1.0810995460000001,1.051841012,1.005807379,0.9694258699999999,0.935541696,0.8035597760000003,0.6905212439999999,0.5990643776,0.4948623706000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,industry,3 coal,0.2866992,0.2602018,0.2586948,0.2902016,0.2686361,0.2764025,0.2769226,0.276183,0.2617905,0.24845033,0.23648171,0.2057791,0.18114216,0.15973213,0.12443324,0.09977493899999999,0.08094997599999999,0.051961428999999996,0.034858815,0.0243989611,0.0153325743,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,industry,4 biomass,0.11540802,0.18016538,0.17053739999999998,0.18925842,0.23877022,0.27557444999999997,0.30525464,0.33039187999999997,0.35643683,0.37769999,0.38100917,0.39255341,0.39471582,0.38692447,0.3765536,0.32718345000000004,0.25249613,0.15374541,0.09347564,0.06100774,0.035681410000000004,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,industry,5 electricity,0.27971266,0.36347565000000004,0.36620450000000004,0.39282584,0.403067798,0.415832028,0.44952016,0.48576203,0.52809768,0.57767538,0.6338336899999999,0.6968151000000001,0.76531002,0.8425794,0.922394392,1.0084551910000001,1.1325854970000002,1.3234131123000001,1.5122006215000001,1.6474324829,1.78723285806,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.002015116,0.003494149,0.0052631100000000005,0.00738338,0.01003918,0.013330950000000001,0.01728118,0.02063982,0.0249015,0.02984854,0.040923,0.0576281,0.07152410000000001,0.0945741,0.0980955,0.10023560000000001,0.0990582,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,transportation,1 liquids,1.1114332369999997,1.481560313,1.5674822019999997,1.6618600890000002,1.7253976956999995,1.7647321398999998,1.8001597485,1.8263290610000003,1.87545567,1.9115145599999999,1.9348594000000001,1.9571259809999997,1.9893247750000005,2.02653083,2.0469720310000006,2.057724289,2.04312824,2.0199259380000005,1.9724414400000003,1.913730795,1.834226127,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,transportation,2 gas,0.00280456,0.00196737,0.00293014,0.012045993999999997,0.027426474000000003,0.052939855,0.08456815079999999,0.12357485129999998,0.16544066680000005,0.21224904999999997,0.2751766962,0.3125121129999999,0.347834941,0.38034498899999997,0.40848436600000004,0.4337412639999999,0.459790154,0.475582014,0.48662829799999996,0.494596733,0.495113276,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,transportation,3 coal,0.00313931,0.00556707,0.00519028,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,transportation,5 electricity,0.00688453,0.012806060000000001,0.01409089,0.01583710033,0.0198847775,0.02577049059999999,0.03268935154,0.04093635796999999,0.049633308,0.060109783800000004,0.0722463706,0.0836822108,0.09495016600000003,0.10599607899999998,0.117330817,0.12910455300000004,0.14226986699999994,0.15670234400000002,0.173049534,0.190576571,0.20604241899999998,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,transportation,6 hydrogen,0.0,0.0,0.0,0.0,0.001303388,0.0042748709,0.008215978500000002,0.013109983300000003,0.018134822389999992,0.0239566248,0.030295110899999998,0.0374705466,0.04575725110000001,0.05497787729999999,0.06565916239999998,0.07777698210000002,0.090950669,0.105228446,0.119795123,0.13426015900000002,0.14911815199999998,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,building,1 liquids,0.26170908,0.28452226999999997,0.29511307,0.33018379999999997,0.33071138,0.38035823,0.40972663000000004,0.43032759,0.45006842,0.46305035999999994,0.4689441200000001,0.45614826,0.43616254000000004,0.40757912999999996,0.34534981,0.28841313,0.22583751,0.17498987,0.12650788400000001,0.09363932600000001,0.063756141,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,building,2 gas,0.008330203,0.018753295,0.020511394000000002,0.019032411,0.019237564999999998,0.022183504,0.024220878,0.025677073,0.026321981,0.026550545000000002,0.026319919,0.02483056,0.023006969999999998,0.020900461000000002,0.01708779,0.013885324,0.011477790000000002,0.007992814,0.0057747200000000005,0.004272031000000001,0.0028203098000000003,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,building,4 biomass,0.03403213,0.02750209,0.028632170000000002,0.02581211,0.02770039,0.029425549999999998,0.03049615,0.030578100000000004,0.029275540000000003,0.027573689999999998,0.02448049,0.02094735,0.01752195,0.01443004,0.010495233,0.0068538720000000004,0.0041732209999999995,0.001865524,8.935369E-4,4.7609139999999997E-4,2.222581E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,building,5 electricity,0.28585505,0.54394357,0.71496184,0.77276765,0.84236283,1.0386437099999999,1.24102655,1.43893,1.6289963,1.8239116,2.0187197,2.2080563,2.4077553,2.6087548,2.8143252,3.0219939,3.2015327000000005,3.3576312999999995,3.4880768,3.5855784,3.6700943,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,building,7 trad biomass,0.33324729999999997,0.344634,0.3045312,0.281618,0.2919546,0.2792982,0.2647048,0.2501609,0.238932,0.2256966,0.2105207,0.1982176,0.1824407,0.1641882,0.1478414,0.1288163,0.1125288,0.0966898,0.082156,0.0686379,0.057785699999999995,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,industry,1 liquids,0.8698092199999999,1.19577257,1.4597838899999998,1.7380175700000002,1.8295067999999999,2.03289016,2.1822439799999995,2.31351484,2.45118873,2.56836372,2.67172359,2.7345512899999997,2.77464011,2.79083947,2.73385482,2.6744595099999997,2.57026158,2.51014516,2.42466026,2.3788466900000005,2.3389297,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,industry,2 gas,0.09288741,0.38515378,0.48677990000000004,0.5278107,0.55323675,0.61938533,0.66853256,0.7024530599999999,0.7181813299999998,0.72460499,0.72490893,0.7020834059999997,0.6719952029999998,0.6358799509999999,0.5744187710000003,0.5259757929999999,0.50040671,0.44106778999999996,0.40368459700000003,0.375313204,0.34335882400000006,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,industry,3 coal,0.34375381,0.42253438000000004,0.473102,0.49068682,0.42933046,0.44725386,0.45104702,0.44886857999999996,0.42088719999999996,0.391981441,0.365250936,0.305804244,0.256866795,0.21526219900000002,0.152279297,0.11088154800000001,0.084429654,0.049788053,0.031438443999999996,0.020741264,0.012019661000000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,industry,4 biomass,1.3566461,1.8667909999999999,2.2407679999999996,1.994034,2.18499,2.342312,2.459438,2.5274520000000003,2.559772,2.553305,2.4658510000000002,2.361468,2.215025,2.043548,1.785376,1.44574,1.113495,0.720339,0.486195,0.35602500000000004,0.25518450000000004,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,industry,5 electricity,0.3866913,0.634961,0.7953729,0.9558807,1.03074515,1.1684660199999999,1.31912692,1.46313347,1.5983744,1.7357167,1.8841451,2.0533777,2.2408807,2.4374318600000002,2.7369663200000005,3.0552164500000005,3.347585335,3.684323478,3.9090085083999995,4.0238088875,4.1300219318,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.00661132,0.011671750000000002,0.01763747,0.02459754,0.03295313,0.0428527,0.054217699999999994,0.061863100000000004,0.07079830000000001,0.0804614,0.09779660000000001,0.1200565,0.1377561,0.1692981,0.17296,0.17304429999999998,0.16622510000000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,transportation,1 liquids,1.4371470827,2.3649152317,3.1654882089000003,3.2726767488,3.315783501600001,3.494796881099999,3.6086331021,3.6528080813,3.6743551823000007,3.643166067200001,3.512963047720001,3.453171722280001,3.40844446482,3.3706641045599994,3.3025062702399994,3.2371023822100002,3.11726298232,2.9892111126400027,2.8264937192800015,2.6621488069799994,2.4512937850299994,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,transportation,2 gas,8.36891E-5,0.06780453,0.069981,0.105037731,0.15350140400000004,0.25686183,0.39764889899999994,0.5801862580000001,0.7928522600000002,1.0290383740000002,1.3567908,1.523124088,1.67874177,1.8209158700000003,1.9279879000000006,2.02371688,2.12916584,2.1585143099999993,2.19102647,2.22638385,2.1981216800000003,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,transportation,3 coal,2.09291E-4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,transportation,5 electricity,0.00377809,0.00380799,0.00552558,0.014799369849999999,0.028174420170000002,0.04519715427,0.06464558141999999,0.08840734829,0.11345194061999997,0.14362259588999998,0.18013082324000004,0.20544504062,0.22428436396999996,0.23792955447,0.25276164665,0.26797706618000006,0.28408982468,0.30212556125,0.32424824394,0.34648298215,0.36887299753,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,transportation,6 hydrogen,0.0,0.0,0.0,0.0,0.001276796,0.004987344,0.010125264000000002,0.0168725654,0.0236200362,0.0312539953,0.039729150000000005,0.048002538000000004,0.057208293,0.06746158400000002,0.08108764300000001,0.09764045200000002,0.11579820800000004,0.137426197,0.161948221,0.18738317500000004,0.21272861500000004,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,building,1 liquids,0.3656469,0.4587433,0.2171697,0.2107001,0.213951,0.2169828,0.2135898,0.21092,0.2090116,0.20484653,0.19937149999999998,0.18891032000000002,0.17845605,0.16695162,0.14601122,0.1261792,0.10102013,0.08090204000000001,0.059780639999999996,0.04453205,0.030091989000000003,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,building,2 gas,0.8236374099999999,1.0358261,0.9836261,1.04313376,1.0728204399999999,1.11943125,1.12758831,1.12340858,1.08836272,1.04655678,1.00072048,0.91885363,0.83755366,0.7590508199999999,0.63600453,0.5339624,0.450215914,0.325961177,0.240870964,0.180520252,0.11860107399999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,building,3 coal,0.0021766999999999997,0.0014651,1.256E-4,1.2761E-4,8.22844E-5,7.26082E-5,6.15867E-5,5.20732E-5,3.87316E-5,2.94339E-5,2.27922E-5,1.45646E-5,9.74537E-6,6.71489E-6,3.56107E-6,2.06372E-6,1.27517E-6,5.79264E-7,3.01125E-7,1.7101E-7,8.20622E-8,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,building,4 biomass,0.0624551,0.0790736,0.103143,0.1020669,0.1090209,0.1103692,0.1097668,0.1060636,0.09860821,0.09119811,0.08049297,0.06938536,0.058931880000000006,0.04947923,0.03718694,0.02512721,0.015425059999999999,0.007091214,0.0034610220000000002,0.0018837670000000002,8.824457000000001E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,building,5 electricity,0.8585177,1.0758274,1.100556,1.1809067999999998,1.2576271,1.3331538,1.4376233999999999,1.5474274000000001,1.6680985000000002,1.7867104,1.9012573000000001,2.0331123,2.1641903,2.2880171999999996,2.4404624999999998,2.5667565,2.6665026000000003,2.7759872000000003,2.8377903,2.8547088,2.8574615000000003,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,industry,1 liquids,0.8764222700000001,1.36547341,1.3019718200000001,1.34638793,1.4151008500000002,1.4832581,1.53386462,1.58362402,1.63318303,1.67739578,1.7202787899999998,1.7471797699999998,1.7719934800000001,1.79085052,1.7757842899999998,1.7604374999999999,1.7197116199999998,1.69420115,1.6527991199999998,1.6203238999999998,1.5826491,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,industry,2 gas,1.0861326900000001,1.2254316299999999,1.25087059,1.3226724200000002,1.3661911,1.4233175200000001,1.4457267699999998,1.4499564299999999,1.4233284299999998,1.39191467,1.3595058400000004,1.2910206739999996,1.21770767,1.1440038399999999,1.01951532,0.9176061,0.8394824499999999,0.7034846400000001,0.60843632,0.541234491,0.4695140076000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,industry,3 coal,0.18334609999999998,0.19644940000000002,0.1733004,0.18815033,0.16443573000000003,0.16324812,0.15881942999999998,0.15408826,0.14110287,0.12964491,0.12014808999999999,0.10007912999999999,0.08451635,0.07203674,0.05223345,0.03966414,0.0316317,0.02059953,0.014745739999999999,0.011163211999999999,0.007812639,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,industry,4 biomass,0.2419296,0.3328179,0.27276030000000007,0.29029891,0.33381036000000003,0.36193563,0.38430742000000007,0.40065338,0.41343213,0.42275479,0.4189716,0.41394180999999997,0.40238435,0.38725687999999997,0.35288485999999997,0.2967381,0.23235889799999998,0.149170974,0.097857771,0.069183282,0.045336653899999996,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,industry,5 electricity,0.67832704,0.9242125,0.75812417,0.80059182,0.838791867,0.8700221,0.93870261,1.0120434499999997,1.1047089300000001,1.20274944,1.30760597,1.44892371,1.59534633,1.73744478,1.9427156890000001,2.131996487,2.306098039,2.5270614945,2.6828288212999998,2.7745061742,2.86993457854,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.0030764169999999997,0.0051980099999999994,0.00756732,0.01024573,0.01326389,0.01676221,0.020916900000000002,0.023560400000000002,0.02695281,0.031017259999999998,0.0376612,0.0461024,0.0522176,0.06279080000000001,0.0648276,0.0648563,0.061815800000000004,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,transportation,1 liquids,1.735409367,2.198784054,2.4395011820000003,2.5435773699999995,2.589523582200001,2.5850001749,2.5621875007,2.519701030000001,2.5061060399999993,2.472712580000001,2.4005385700000006,2.3850946699999995,2.3942794099999998,2.4233598599999993,2.44412685,2.4628492399999993,2.4587958100000002,2.4412256799999996,2.3990654399999993,2.34843725,2.2692003599999997,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,transportation,2 gas,0.001507013,0.0016743020000000001,0.001716204,0.0185903152,0.0439075462,0.08320046020000002,0.1289782282,0.18301266750000003,0.2367021854,0.2939075467,0.37093636920000006,0.4165851679999999,0.4619557039999999,0.5062369360000001,0.547440892,0.5844121849999998,0.6205462549999999,0.6451912070000002,0.666305666,0.68529272,0.697735009,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,transportation,3 coal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,transportation,5 electricity,0.00310027,0.00367337,0.00264148,0.0044953154999999995,0.013730324200000001,0.029841650100000002,0.049700597299999996,0.0744877862,0.098677767,0.127335045,0.15986210899999997,0.18441011799999998,0.20340665700000005,0.217315835,0.22900548999999998,0.23941705500000002,0.25027698099999995,0.26186137,0.27447026900000004,0.286889067,0.30045974,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,transportation,6 hydrogen,0.0,0.0,0.0,0.0,0.001630757,0.005514385,0.010818945,0.017653153999999997,0.0241576929,0.031401429,0.038990045,0.047193708,0.05648515,0.06682491400000001,0.07882252199999998,0.09239534499999999,0.10711350400000001,0.123453377,0.14071102,0.15828639999999997,0.17640263,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,building,1 liquids,0.19962505000000003,0.18280682,0.1456348,0.14665396,0.15233249,0.17045576,0.1816016,0.19665677,0.20552515,0.21381048000000002,0.22166975,0.22033064999999996,0.21720696000000003,0.21159714000000002,0.18681325999999998,0.16269096,0.13282312999999998,0.10357854999999999,0.075748274,0.057167113000000006,0.038853712,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,building,2 gas,0.0026111998700000002,0.0067608996,0.006056400009999999,0.00677998375,0.00719085441,0.008329643700000002,0.0092302248,0.0103051291,0.010720739100000001,0.011057164899999998,0.01128771877,0.010960830900000001,0.010509085989999998,0.00994841974,0.008452493459999998,0.0071027580400000005,0.00609617639,0.00429352816,0.00318150964,0.0024194748900000004,0.001611137286,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,building,3 coal,2.4299997E-5,4.899999E-5,7.35E-5,7.436251E-5,4.5400539999999996E-5,4.1193307E-5,3.6376852E-5,3.3220426E-5,2.572539E-5,2.0432487000000002E-5,1.655181E-5,1.1078249E-5,7.7950772E-6,5.6689793E-6,3.1458817E-6,1.8931414E-6,1.23543826E-6,5.7247306E-7,3.0858463E-7,1.8224495E-7,9.036557E-8,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,building,4 biomass,0.027327984,0.04262768,0.046862999,0.046766562,0.04834642,0.049893398000000005,0.049969864,0.050125207000000005,0.046364217,0.042431972,0.036986236,0.031124204,0.025837541999999998,0.021307087000000002,0.01545637,0.010142723,0.0062415901,0.0027796862,0.0013435255,7.281692E-4,3.3940525E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,building,5 electricity,0.11347628800000001,0.19516467999999998,0.222235499,0.27567354,0.3327442,0.40626108000000005,0.49932117,0.5925260699999999,0.7081107600000001,0.83644103,0.9732820799999999,1.11367069,1.25872451,1.40746502,1.56376849,1.7165107,1.85424238,1.98672491,2.0927514,2.1714819,2.2447656,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,building,7 trad biomass,0.3272638,0.4026073,0.4420999,0.42237159999999996,0.40723180000000003,0.3821487,0.3495106,0.32312480000000005,0.2914329,0.2593416,0.2282083,0.2023233,0.1765005,0.15135969,0.12905735000000002,0.10705646,0.08939248999999999,0.07191492000000001,0.058214930000000005,0.04695317,0.03764411,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,industry,1 liquids,0.29809169999999996,0.28863489999999997,0.2886614,0.3085445,0.3372754,0.37570809999999993,0.40450539999999996,0.43633099999999997,0.4671967,0.4939352,0.5195752,0.5353467,0.5445257,0.5476637,0.5293351000000001,0.5079243999999999,0.4603748,0.434139,0.3841595,0.34787989999999996,0.31546539999999995,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,industry,2 gas,0.135274,0.5527302000000001,0.7142509000000001,0.81614742,0.9033129150000001,1.027770388,1.1441935149999998,1.2601503570000003,1.347951182,1.4232521070000002,1.484504451,1.5084859162000002,1.5142080380000003,1.5063942810000002,1.4481310939999998,1.3908578,1.350943044,1.236319274,1.1591368525000003,1.096469237,1.01148744416,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,industry,3 coal,0.00853943,0.0182511,0.0156137,0.02113477,0.01759832,0.01825046,0.0187267,0.01905194,0.01760086,0.01630607,0.015244780000000001,0.01250801,0.01056317,0.00909401,0.00671503,0.00532538,0.004640474,0.0032375190000000003,0.002561359,0.0021020179999999998,0.0016080250000000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,industry,4 biomass,0.28771163,0.14346239,0.12963233000000002,0.14425770000000002,0.17316530000000002,0.20270790000000002,0.2322407,0.2627698,0.2865392,0.306541,0.31485779999999997,0.3210587,0.3201638,0.3145625,0.2916328,0.2472336,0.1982928,0.12369820000000001,0.079967,0.055405499999999996,0.03442727,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,industry,5 electricity,0.04906937,0.11436448,0.11606292,0.155236,0.19532180000000002,0.23662186999999998,0.29353313000000003,0.34153619,0.41077957,0.48571373,0.56334395,0.65064248,0.73914543,0.82809614,0.95690319,1.09278434,1.2280743269999999,1.400567023,1.546810518,1.6538181245999999,1.7705548305,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.00300788,0.00559053,0.00882399,0.01335211,0.01838791,0.0247479,0.0325137,0.0386919,0.046900399999999995,0.057114899999999996,0.0732543,0.09513920000000001,0.1166174,0.1450177,0.1509738,0.1581222,0.1528717,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,transportation,1 liquids,0.45712311970999997,0.8199270492000001,0.929745754,0.9998817844800001,1.0637760802199998,1.14643467399,1.2271171269499999,1.3002022899119994,1.3732048280559996,1.4404453929930003,1.4877542104849995,1.5485911694060002,1.6126564008879998,1.6796716774299996,1.7266965870500013,1.76957063242,1.77885686401,1.7740609143600004,1.7323599282799997,1.6789526600810003,1.5861553585970005,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,transportation,2 gas,0.0,0.0,0.0,0.0091725184089,0.024950590753200004,0.05413077438809999,0.09659744339979999,0.15458935133620003,0.22507451873889997,0.3082338751317999,0.4187838667319,0.4946821209836,0.5696219887057998,0.6434732704839999,0.709714074038,0.774039429015,0.8476815718899999,0.8970870606110001,0.9526742851900001,1.0138935906310003,1.0522687781419997,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,transportation,5 electricity,3.75595E-4,3.75398E-4,9.163940000000001E-4,0.0021753034477000003,0.004509346040499999,0.007003589761500001,0.010044848162239994,0.013674120955240001,0.0179318452296,0.023304940459699997,0.029961340050000004,0.037545338799,0.045709705685,0.05457848763700001,0.065011110253,0.07687812102099997,0.09070850121999999,0.10727062489,0.12698903580999998,0.14959511735000003,0.17170518721,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,transportation,6 hydrogen,0.0,0.0,0.0,0.0,3.72655354E-4,0.0013136529300000002,0.0026939360352,0.004556627222400001,0.00671421659,0.009360370748200005,0.012444647711000005,0.016207326181,0.020790085311000003,0.026286020219999994,0.033225012639999996,0.041469811143999995,0.051027595595000017,0.062355881169999995,0.07495502403,0.08873122985000002,0.1035102138,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,building,1 liquids,0.6593595,0.1389404,0.4440808,0.5388075,0.6213303,0.7377363,0.8165744,0.8723833999999999,0.9171984000000001,0.9430343,0.9525172,0.9413804,0.9229908,0.8976038,0.8355916999999999,0.7677359,0.6672615999999999,0.5732889,0.4534281,0.3605825,0.26339799999999997,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,building,2 gas,1.6334394,1.1480700000000001,1.118997,1.3148469999999999,1.4954,1.749586,1.929215,2.054097,2.109009,2.119704,2.090177,2.008453,1.916556,1.821645,1.6561860000000002,1.4932500000000002,1.35063,1.119035,0.947101,0.810986,0.6571400000000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,building,3 coal,0.1318733,0.017269800000000002,0.1842459,0.18882524,0.12149653,0.108218838,0.094644044,0.082469869,0.063310816,0.049587427999999996,0.039420387,0.026519086,0.018680052,0.0135662323,0.0079379436,0.0050027465,0.0033845525,0.0017127117999999998,9.875867E-4,6.108375E-4,3.2727221E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,building,4 biomass,0.026371699999999998,0.0180835,0.0205952,0.01969091,0.020716750000000003,0.020319220000000002,0.019831480000000002,0.01894515,0.01764584,0.016346745,0.014403763,0.012602516999999999,0.010905769000000001,0.009415057000000001,0.007614086000000001,0.005552779000000001,0.003691415,0.0019843054,0.0011181325,6.961977999999999E-4,3.994267E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,building,5 electricity,0.118443223,0.191195505,0.18565219500000002,0.26123382700000003,0.32014922,0.38143267,0.45630055999999997,0.5286104300000001,0.6044290299999999,0.67451523,0.734792,0.80599387,0.8787048100000001,0.9553397,1.07728856,1.1887644199999998,1.2964339200000001,1.4431816800000001,1.5700467200000001,1.66037174,1.77861794,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,industry,1 liquids,0.6271662,0.3493981,0.34506349999999997,0.40576877100000003,0.46420208399999996,0.532944301,0.5862180180000001,0.636330346,0.6956808699999999,0.751593961,0.804496175,0.8556278230000001,0.9026965640000001,0.947650001,0.984785932,1.0188840409,1.0269643038,1.0715342637999998,1.0852873311,1.1111625529,1.1452441136,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,industry,2 gas,0.5559638,0.9350109000000001,1.3609149999999999,1.5008905599999998,1.6677808299999999,1.8461567699999997,1.9587872700000002,2.0333301200000005,2.0570638209999994,2.0514172670000006,2.018557426,1.9431128830000002,1.848634076,1.746473196,1.5624679819999996,1.3817846109999994,1.2372500050000006,0.9823429109999998,0.8122166110000001,0.6893602697000002,0.5483050546000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,industry,3 coal,0.8018986,0.46026922000000003,0.6165355499999999,0.67112667,0.63753037,0.66932826,0.67531245,0.67107545,0.6302055999999999,0.58697449,0.54341021,0.45915061,0.38999509,0.33261958999999997,0.24312878,0.18082946,0.13827631,0.083797926,0.054184593,0.036745968000000004,0.021660604,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,industry,4 biomass,0.001507,0.004227902,0.002888394,0.003351596,0.0041681999999999995,0.00479369,0.00532747,0.005743430000000001,0.006108290000000001,0.0063758999999999994,0.00635109,0.00640527,0.0063399300000000006,0.006211690000000001,0.0059011,0.00505297,0.00399516,0.00260059,0.001737545,0.001251373,8.45344E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,industry,5 electricity,0.6045806,0.40294248,0.41245642,0.5265386,0.59800832,0.64231871,0.71266525,0.7788153800000001,0.85808005,0.9311014400000001,0.9930723499999999,1.07843171,1.16278133,1.24766518,1.39746358,1.526012841,1.627299504,1.78770018,1.9035171939,1.9713650241,2.0587615127000003,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.003962829,0.00704685,0.0106404,0.014803090000000001,0.01977005,0.0255751,0.032057680000000005,0.03675143,0.042393,0.049157099999999995,0.061770099999999994,0.07757510000000001,0.0901206,0.1145786,0.1231946,0.131253,0.1345655,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,transportation,1 liquids,0.6540338849,0.4474789122,0.5737615010000001,0.6928042403999998,0.7900173433,0.9254945556999999,1.0405748390000005,1.1332680489900002,1.2040039876000004,1.2500103452999995,1.269502702699999,1.2847641105,1.3032155128599998,1.3262785461200002,1.3276227730100003,1.3206418306899996,1.29260190922,1.2545920575799996,1.19450202977,1.1318715181399992,1.0446231971999997,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,transportation,2 gas,0.007282598300000001,0.0054410685,0.0154861418,0.025591870269999997,0.03924532620000001,0.06156916580000001,0.08751809748000003,0.11677255076,0.14703137464,0.1779125648899999,0.21129797894000002,0.23594336377999997,0.25969386210000006,0.28238293509999984,0.29956601790000004,0.31236218770000007,0.3231338338000001,0.32482870350000015,0.323502262,0.32019419890000017,0.30905096369999996,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,transportation,3 coal,0.00209284,0.00146499,0.00117201,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,transportation,5 electricity,0.0413727874,0.019703302199999998,0.0193370096,0.0252424105272,0.0310277994839,0.038083208403599994,0.04537994137810001,0.052692641204929995,0.05990633455499998,0.067065945668,0.074034396188,0.081757854037,0.09010559998600004,0.09954073199,0.11054320641,0.12256788216,0.13656176902999995,0.15381325164,0.17586522166000002,0.20121761830000004,0.22876917400000002,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,transportation,6 hydrogen,0.0,0.0,0.0,0.0,2.44245566E-4,9.132417487999999E-4,0.0019027892605000003,0.0032153528241099997,0.004782608121610001,0.006649254868899998,0.0087974107131,0.0113855388043,0.014504160128999997,0.0182301554944,0.022686106519100004,0.027944238492999995,0.034008373099000004,0.04156465039300002,0.050442578803,0.060238460631999995,0.07090136759999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,trn_pass_road_bus,1 liquids,0.00430503,0.00337377,0.00423266,0.00413612,0.00385779,0.00310033,0.0025957000000000003,0.0022092500000000003,0.00193832,0.0017614279999999998,0.0016041200000000001,0.001429246,0.001278703,0.001122653,9.553020000000001E-4,8.18974E-4,6.99592E-4,6.007390000000001E-4,5.08111E-4,4.3013299999999997E-4,3.70306E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,trn_pass_road_bus,2 gas,0.0,0.0,0.0,2.319225E-4,4.42627E-4,5.37187E-4,6.04597E-4,6.48087E-4,6.851349999999999E-4,7.28877E-4,7.60291E-4,7.6515E-4,7.62984E-4,7.38874E-4,6.89711E-4,6.425949999999999E-4,6.0246E-4,5.49756E-4,5.060970000000001E-4,4.64068E-4,4.3109400000000003E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,building,1 liquids,0.3061648,1.555234,2.050779,2.916146,3.934319,5.132813,5.931487,6.416813,6.818898,6.990524,6.926764,6.573438,6.119874,5.617145000000001,4.892339,4.157519,3.3276860000000004,2.719709,2.098474,1.664404,1.246357,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,building,2 gas,0.0961327,0.6612279,1.3825318,2.0251561,2.751343,3.601343,4.215964,4.565829,4.705083,4.703812,4.61156,4.382810000000001,4.096026999999999,3.8069710000000003,3.464159,3.208888,3.1054809999999997,2.7818087,2.5030879,2.1938703,1.7716221999999997,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,building,3 coal,4.07266,2.942506,2.8680760000000003,3.3358380000000003,2.2131600000000002,2.078903,1.868101,1.639167,1.259062,0.9763040000000001,0.758557,0.48889970000000005,0.32943659999999997,0.2293705,0.12804020000000002,0.0767547,0.04939257,0.023794210000000003,0.01346336,0.008463979,0.0048379420000000005,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,building,4 biomass,4.707E-4,2.559E-4,1.905E-4,2.0335599999999997E-4,2.343211E-4,2.519847E-4,2.589405E-4,2.554375E-4,2.413279E-4,2.218191E-4,1.914895E-4,1.5894E-4,1.283945E-4,1.0301800000000001E-4,7.50918E-5,4.89971E-5,2.976157E-5,1.343111E-5,6.51022E-6,3.560984E-6,1.660101E-6,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,building,5 electricity,0.2950606,2.0792284,3.5675333,5.05657538,6.361909300000001,8.1465954,9.8194373,11.1176235,12.1001581,12.953127299999998,13.5785438,14.0067035,14.4086104,14.6971907,14.881950400000001,15.0432552,15.081702199999999,15.0715083,15.0029176,14.8073993,14.796990000000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,building,7 trad biomass,8.39255,8.28969,8.064680000000001,6.6995000000000005,6.16491,5.23708,4.5373,4.01448,3.69437,3.38298,3.08584,2.9379,2.755625,2.553622,2.4948550000000003,2.360979,2.202525,2.13898,2.094077,2.073103,2.23011,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,building,8 district heat,0.10248510000000001,0.6540795,0.7637184000000001,0.9908369,0.9606309,1.0778912999999999,1.1302168000000001,1.1305469,1.0324529,0.9299943000000002,0.8210909000000001,0.6360776,0.5013403,0.3994802,0.27349567,0.19270254,0.13930485999999997,0.08338271,0.056242730000000005,0.041010604,0.028490331,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,industry,1 liquids,2.6242009,5.240338,7.020378,8.2551772,10.003245349999998,11.32251177,12.228337170000003,12.895436400000001,13.640450029999998,14.152520719999998,14.442458105999998,14.651622665,14.624939079,14.447226489999998,14.156498,13.682654000000001,12.902958,12.525378000000002,11.935008,11.497079999999999,11.143825999999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,industry,2 gas,0.374396,0.799275,1.376136,1.9399706,2.29765293,2.57729417,2.7493682699999997,2.8309876299999996,2.8500091999999992,2.8186961999999998,2.7714171999999997,2.6994757900000006,2.5661369699999996,2.41666317,2.265462500000001,2.1321641800000006,2.0776868100000003,1.87874752,1.7103735600000003,1.552875505,1.3399580239999997,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,industry,3 coal,10.413069,21.075282,26.004498,30.333797,30.2079351,31.432875200000005,31.5600575,31.0181603,29.2452372,27.205962100000004,24.9559228,21.35631256,18.1051322,15.30822744,11.685677779999997,8.972484766,7.109089102,4.7674455702,3.499837716536,2.7047426995223,1.98446990057629,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,industry,4 biomass,2.31E-4,2.201E-4,1.918E-4,2.25638E-4,3.02746E-4,3.53508E-4,3.93031E-4,4.1878E-4,4.45874E-4,4.61243E-4,4.52067E-4,4.51502E-4,4.32141E-4,4.03408E-4,3.69293E-4,2.97025E-4,2.17132E-4,1.24949E-4,7.18773E-5,4.43461E-5,2.33736E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,industry,5 electricity,1.661754,5.534131,9.307801999999999,10.159986,10.812424499999999,11.189104799999999,11.759907,12.152156000000002,12.632390999999998,13.162008000000002,13.637896,14.713437,15.750289,16.551657100000003,17.7887914,18.6633045,19.095434140000002,19.897229560000003,20.04644844,19.78623516,19.780605089999998,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.025720800000000002,0.04662609,0.0710792,0.0985045,0.13275599999999999,0.17151519999999998,0.21279230000000002,0.2499417,0.2915652,0.338142,0.44784,0.566897,0.63603,0.757684,0.744847,0.732005,0.6488,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,industry,8 district heat,0.514364,1.86154,2.28925,2.724,2.98326,3.32156,3.50744,3.59361,3.54644,3.42689,3.24382,2.87226,2.4939,2.14201,1.67099,1.2768,0.975941,0.613218,0.403589,0.275883,0.161918,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,transportation,1 liquids,1.1440161839999998,5.172526404999999,7.483025389000001,9.119931664,10.832199215999996,13.02579837,14.710719783399995,15.889955115300001,16.6522495008,17.0996088349,17.18590980220001,17.057231894000008,16.867854238600003,16.6187208866,16.108999111799996,15.53379424709999,14.743330672599999,13.943731248200004,12.973575401900005,12.069533729700005,11.009841609399995,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,transportation,2 gas,0.0,0.01352912174,0.0740222478,0.14151813619,0.23995677094999998,0.42115208562,0.6505668815799998,0.92375711748,1.2285664332699997,1.5534439355799998,1.9552629067300002,2.1926034565299997,2.370069676100001,2.497163095799999,2.5852080819,2.6459227438000013,2.741083199,2.8066413591000003,2.878732887499999,2.9265342338999987,2.896544870500001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,transportation,3 coal,0.410488,0.167929,0.131807,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,transportation,5 electricity,0.0224580899891,0.072697999979,0.143434199946,0.20546092735661,0.2563187818949861,0.30659191867583596,0.35107614360068506,0.38753414735789393,0.41624452810190005,0.4426882836810001,0.4666880538460001,0.485183668923,0.5038349909740001,0.52399694981,0.550120507312,0.5817850258399998,0.6245902616700002,0.67861598404,0.75412904257,0.83677072252,0.9374118126100001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,transportation,6 hydrogen,0.0,0.0,0.0,0.0,8.505597800000001E-4,0.0030651835489999995,0.00594029901,0.009461029156,0.012846890919000003,0.016224892464000003,0.019643201199999995,0.02346176524,0.028055398570000004,0.03359911581999999,0.04101710945,0.05031556642,0.061064219149999995,0.07515340749999999,0.09118470290000003,0.1066800708,0.1206475008,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,trn_pass_road_bus,1 liquids,0.1879452,0.90457,1.29792,1.412441,1.447664,1.414003,1.3694410000000001,1.305946,1.242402,1.1841650000000001,1.115083,1.046786,0.985763,0.91936,0.837542,0.759463,0.678424,0.608336,0.538266,0.47895299999999996,0.428721,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,trn_pass_road_bus,2 gas,0.0,0.04125972,0.2257463,0.3115335,0.388242,0.44052199999999997,0.48850000000000005,0.5252319999999999,0.5540309999999999,0.5798300000000001,0.595521,0.606461,0.615545,0.6162799999999999,0.604055,0.592252,0.586085,0.568228,0.553991,0.536151,0.518489,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,building,1 liquids,0.050818050000000003,0.03436703,0.03302756,0.044528790000000006,0.04981709999999999,0.05716542,0.06284576,0.0685706,0.07542994,0.08217389,0.0889452,0.09304014999999999,0.09593997,0.09706674000000001,0.09042243,0.08280537999999998,0.07082634,0.05921646,0.04563549,0.03601419,0.025663609999999996,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,building,2 gas,0.004479009,0.03733911,0.045753039999999995,0.05730056,0.06532200999999999,0.07707226,0.08726073,0.09740263,0.10626852,0.11454624000000001,0.12206701,0.12480047,0.12541759,0.12372309000000001,0.11077144,0.09750194,0.086525035,0.064771076,0.049917551000000004,0.039441836,0.027268581999999996,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,building,3 coal,0.00514881,0.002679,0.0021767,0.00243422,0.0016269,0.00155084,0.00142242,0.00130357,0.00106116,8.7854E-4,7.35966E-4,5.12953E-4,3.72029E-4,2.75385E-4,1.56957E-4,9.5752E-5,6.23711E-5,2.95284E-5,1.59227E-5,9.41838E-6,4.68129E-6,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,building,4 biomass,0.0030139,0.015362797999999999,0.0146091051,0.0153936541,0.017181549,0.018568617699999998,0.0196651651,0.020217851300000002,0.0198554345,0.0192331927,0.0175755815,0.0156344314,0.013663259,0.0117971258,0.0091734097,0.006355189200000001,0.0040767145,0.0019242379,9.745062099999999E-4,5.5044775E-4,2.700381E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,building,5 electricity,0.0664531,0.09299786000000002,0.10953853,0.13815789,0.16350154,0.18794460000000002,0.22637733,0.27094799999999997,0.31823816,0.3705877,0.42739051,0.48550750000000004,0.5487271,0.6177855,0.6945222999999999,0.7739921999999999,0.8496747,0.9271336,0.9944594,1.04633,1.09866,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,building,7 trad biomass,0.14111,0.0457949,0.059566900000000006,0.0558368,0.0564223,0.0562075,0.0535123,0.0503941,0.0481187,0.0454934,0.042575,0.040687299999999996,0.0382433,0.0351734,0.0329126,0.029918,0.0271526,0.024560699999999998,0.0219277,0.01936053,0.017086959999999998,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,industry,1 liquids,0.0826317,0.1350403,0.1260403,0.1693698,0.20099469999999997,0.23412,0.2684818,0.3058008,0.34966139999999996,0.3952595,0.44340500000000005,0.49025,0.5353759,0.5775828999999999,0.6081864,0.6344943,0.6421003999999999,0.6542993,0.6455509,0.6410210000000001,0.6297292999999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,industry,2 gas,0.045250719999999994,0.11310564000000001,0.1281834,0.15654894,0.18261385400000002,0.210954362,0.23872555099999998,0.26767831,0.29431678399999994,0.31885920300000004,0.34186038799999996,0.35721139200000007,0.3671548429999999,0.37141256,0.3602936010000001,0.34672747399999987,0.338654605,0.29932167000000004,0.26713349699999994,0.23873170669999996,0.19974487874999997,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,industry,3 coal,0.09008286,0.08568747,0.06563637,0.08157070000000001,0.07975161,0.08734671,0.09426198999999999,0.10108779,0.10268869,0.10377089,0.10478361,0.09606624000000001,0.08844863,0.08130507000000001,0.06428270999999999,0.05197993,0.04362196,0.02891391,0.02033157,0.014775376,0.009288853000000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,industry,4 biomass,0.08388743,0.06932007999999999,0.05739002,0.06607986,0.08456377999999999,0.10028719999999999,0.1172431,0.1340536,0.1520136,0.1692994,0.1811178,0.19487110000000002,0.20465540000000002,0.210758,0.2084883,0.187064,0.156003,0.104591,0.07003572,0.049466380000000004,0.030997709999999998,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,industry,5 electricity,0.03144656,0.04919917,0.05774638,0.07056145,0.08291951,0.09099903000000001,0.10753048,0.12636035,0.14629415,0.16791163,0.19122208,0.21883451,0.24998489999999998,0.28500216999999994,0.34111252,0.40562135800000004,0.473997549,0.573322938,0.6624367861,0.7273692959,0.8059193161,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,industry,6 hydrogen,0.0,0.0,0.0,0.0,3.839325E-4,7.22154E-4,0.001178408,0.0017858770000000002,0.002618396,0.0037185409999999997,0.00513029,0.00645056,0.00819979,0.01041978,0.01431781,0.01973353,0.0252895,0.035405,0.0411793,0.0470704,0.0504367,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,transportation,1 liquids,0.25982116699999996,0.33449041860000006,0.3699519276,0.4307595594,0.4694932930000001,0.5036940308000001,0.5400737108800001,0.57284193306,0.6035047369300002,0.6293419582600001,0.6447986877099998,0.6660471641099998,0.6885402313600003,0.7115247865299998,0.7263043129300001,0.73856747722,0.7369320867499998,0.7277447024450002,0.7048145584589999,0.6755675645719998,0.6307308110249998,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,transportation,2 gas,5.441354E-4,0.00996141,0.02314587,0.030550669999999995,0.038490379,0.05142287200000001,0.072426477,0.1018910494,0.13897828059999995,0.1819726829,0.2380874341,0.2766329921,0.31375679500000003,0.34926463299999994,0.38054514399999995,0.40943271600000003,0.441131364,0.45849426899999995,0.477383512,0.49661851700000015,0.503904591,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,transportation,3 coal,4.18988E-5,4.18985E-5,4.18984E-5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,transportation,5 electricity,0.0,1.7009829999999998E-4,2.039978E-4,8.991964800000001E-4,0.0021949472839999993,0.0035074293849999996,0.005174920296,0.007257415672999999,0.009656490719999999,0.01260175058,0.01624297056,0.020201003520000003,0.0243591764,0.028785732370000004,0.03395804824999999,0.039844330023999994,0.046583753834,0.054447723132000005,0.063924324187,0.074522306905,0.08444068684099999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,transportation,6 hydrogen,0.0,0.0,0.0,0.0,2.3183905E-4,7.6411986E-4,0.00157451272,0.00267336896,0.003943216759,0.00543594303,0.0071681806899999995,0.00921868339,0.011696112659999999,0.014628489000000001,0.018282167000000002,0.0226498542,0.027549283,0.03323494070000001,0.03965138519999999,0.04649356930000001,0.053680907599999994,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,building,1 liquids,0.24714139999999998,0.1732166,0.1214777,0.14170080000000002,0.1672686,0.1842224,0.19249889999999997,0.19736589999999998,0.20396179999999997,0.205816,0.2052647,0.20088899999999998,0.1940487,0.1850014,0.1679915,0.1491786,0.1164957,0.0998271,0.0794019,0.06404019,0.048798789999999995,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,building,2 gas,0.5517149,0.871065,0.860852,0.937813,1.108358,1.2483899999999999,1.345605,1.4117939999999998,1.443537,1.438289,1.415969,1.365781,1.2968769999999998,1.218384,1.094599,0.9894809999999999,0.90354,0.7554263999999999,0.6306293,0.5237334,0.3996409000000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,building,3 coal,0.9297528,0.29515440000000004,0.3957863,0.39537870999999997,0.24449886,0.21063171,0.17960314,0.15327334,0.11685356,0.09084333000000001,0.07233888,0.048847760000000004,0.034626572,0.025231625,0.015001248,0.009739984,0.006742372,0.0036959087,0.0022281146,0.0014211886,7.962076899999999E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,building,4 biomass,0.1807936,0.40327890000000005,0.4865383,0.46944730999999995,0.53969448,0.5450557599999999,0.5436102899999999,0.52653562,0.5036104899999999,0.47429054000000004,0.42490054,0.38265740000000004,0.33641681,0.29062899000000003,0.23606558100000002,0.171945001,0.114038346,0.060515852,0.0330067963,0.0195942925,0.010367111100000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,building,5 electricity,0.4053529,0.6730069000000001,0.7623021,0.881744,1.01845212,1.15563404,1.3066012000000002,1.4479687,1.5685206999999999,1.6713586,1.7607941999999999,1.8491274,1.941086,2.0250127,2.1271596,2.1965218,2.2432492,2.3232964999999997,2.3736889999999997,2.3974854,2.4455419999999997,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,building,8 district heat,0.6968014,0.49317200000000005,0.48782450000000005,0.49865249999999994,0.4746747,0.4823751,0.47793660000000004,0.46587219999999996,0.4352677,0.40298087,0.37239706,0.32812926000000003,0.29025386,0.25642366,0.21363409000000003,0.17629618000000002,0.14328473,0.10107195899999999,0.07235106,0.052853412,0.034715343,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,industry,1 liquids,1.1898275,0.89237042,0.7025773399999999,0.78004545,0.859906849,0.910555574,0.9443870749999999,0.9706221667,1.0035872335,1.0290274304,1.0511117594000003,1.0665646486,1.07492061636,1.07690365859,1.061248,1.0387244,0.9864535999999999,0.9666728000000001,0.94007742,0.92486566,0.9112856300000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,industry,2 gas,1.5291414,0.89348242,0.73652373,0.74549677,0.81287362,0.8545847500000001,0.8718135700000001,0.8741730200000002,0.8632763200000001,0.8447618499999999,0.8256836299999998,0.7998092689999999,0.7648396399999999,0.7304568299999997,0.6787064200000001,0.6394249399999999,0.6148870599999999,0.5565541700000001,0.51190011,0.47683941300000005,0.43632125299999996,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,industry,3 coal,1.8672813000000001,0.9568871000000001,0.7632927000000002,0.7853039,0.7215309,0.7339220000000001,0.7071858,0.6746222000000001,0.608837,0.5472995,0.4944222,0.4042175,0.33425657999999997,0.27877181,0.19898643,0.14726709000000002,0.11373691999999999,0.069554543,0.045769620000000004,0.031722605,0.019530387,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,industry,4 biomass,0.0631665,0.1629606,0.19644910000000002,0.2047446,0.25749,0.287679,0.3118753,0.3289239,0.3468055,0.3570046,0.34922729999999996,0.34501819999999994,0.32888870000000003,0.30776709999999996,0.27232419999999996,0.21982890000000002,0.1670777,0.1017709,0.06361587,0.04285802,0.026208910000000002,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,industry,5 electricity,0.7759121,0.6411228,0.5702613000000001,0.6175112,0.64996545,0.6645620799999999,0.70298184,0.7381456200000001,0.7761109800000001,0.81585557,0.85722577,0.9202801700000001,0.9895044799999999,1.0549543899999998,1.162473,1.25475848,1.33451792,1.4563889780000001,1.532538269,1.573388781,1.6210486926,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,industry,6 hydrogen,0.0,0.0,0.0,0.0,6.61239E-4,0.001124176,0.001658488,0.002264805,0.002997846,0.0038454500000000003,0.00480837,0.00552681,0.0063711,0.00729678,0.0086049,0.00978762,0.01036492,0.01143043,0.01185014,0.012400769999999998,0.012476540000000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,industry,8 district heat,0.750089,0.318937,0.301512,0.312176,0.321821,0.337031,0.346216,0.350589,0.347274,0.340348,0.331177,0.312418,0.291585,0.270058,0.235281,0.200764,0.168695,0.120296,0.0865737,0.0638252,0.0417468,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,transportation,1 liquids,1.11276742,1.58671671,1.9527645100000002,2.028425462,2.099733022,2.13367322,2.146567973,2.1301336350000004,2.108516835,2.061650312999999,1.977711818,1.9389135390000005,1.910139828,1.88699924,1.8426215169999995,1.7886905769999997,1.701356357,1.6115212399999996,1.506731785,1.4030733914000004,1.2797807395999998,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,transportation,2 gas,2.9306526000000006E-4,0.001716241981,0.003683602396,0.023624667608999998,0.054357924549000014,0.10029214029379999,0.15652079701959995,0.22406982897000008,0.29217552221999993,0.36280097202,0.4577324143999999,0.5060032095,0.5504314333999999,0.5886998849999999,0.6143612220000001,0.63434974,0.657341498,0.671413259,0.6859184659999998,0.7012333370000001,0.7051795129999998,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,transportation,3 coal,0.00774369,2.09293E-4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,transportation,5 electricity,0.05481289988,0.03924419995,0.0329016,0.0354913524102,0.0401978551887,0.0451378766642,0.050582165834,0.056649149713070016,0.06264028821,0.06942661035000001,0.07725048482999998,0.08519002704,0.09337742803999996,0.10167058439999997,0.1110432941,0.12121314189999997,0.1337331257,0.1493841262,0.1683326496,0.19020292839999997,0.2119080066,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,transportation,6 hydrogen,0.0,0.0,0.0,0.0,4.026381E-4,0.0013438081499999998,0.0026110341,0.0042201807,0.005773193090000002,0.0075884289099999985,0.009609899219999999,0.012026612399999996,0.0147975918,0.0178268085,0.021212379299999997,0.0249707687,0.0292363191,0.03444256939999999,0.040427430499999986,0.04724307409999999,0.0544553386,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,building,1 liquids,3.514818,3.1240650000000003,2.567219,2.6602429999999995,2.689973,2.696389,2.6393060000000004,2.589994,2.58532,2.566187,2.5304249999999997,2.439227,2.343267,2.2292389999999997,2.007272,1.7538589999999998,1.330111,1.098083,0.8531520000000001,0.6737316999999999,0.48673060000000007,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,building,2 gas,4.076220500000001,6.4774638,6.419635799999999,6.413884744788,6.447870645267,6.588582576153001,6.601499493035999,6.564845418554,6.3691813444240015,6.150670282559,5.9348662314750005,5.557625182489,5.180631143062,4.8162851118639995,4.2790060824482,3.8978170630217996,3.6727520493561996,3.0863940347739005,2.5689130245484004,2.097883017319,1.5259510109219003,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,building,3 coal,1.091316,0.1341257,0.1666139,0.16695078000000002,0.10475801,0.09167222,0.07875983,0.06786855,0.051462021,0.039795971000000006,0.031129375,0.020109975999999998,0.013599855000000001,0.009479857000000001,0.005136509,0.0030453354000000003,0.0019327692999999999,9.071906999999999E-4,4.8241309E-4,2.789621E-4,1.3738828E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,building,4 biomass,0.8571020000000001,0.9811536999999999,1.261439,1.2246553000000002,1.2799005,1.272624,1.2651610999999998,1.2298613,1.1589121,1.0826864,0.956047,0.8337629,0.71571736,0.6091423,0.48138155000000005,0.34057049999999994,0.22236137,0.11204252999999999,0.059715353,0.035089289,0.018381142000000003,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,building,5 electricity,3.3000860000000003,4.7709209999999995,5.288907999999999,5.408651,5.771794999999999,6.0783,6.529533000000001,7.020871,7.584201999999999,8.160862000000002,8.725076999999999,9.346687,9.975106,10.579255999999999,11.299084,11.900142,12.453624000000001,13.072032,13.60981,14.002639,14.446611,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,industry,1 liquids,5.894795099999999,6.3460536,5.5634467,5.8794701599999994,6.062464779,6.2010487670000005,6.285048947000001,6.377662840999999,6.513523345000001,6.627465314999999,6.726538171300001,6.780919567000001,6.8226831803,6.8453660671,6.7550110000000005,6.6545131,6.3815906,6.310704299999999,6.207642699999999,6.154223,6.076965800000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,industry,2 gas,3.7821637900000002,5.29568818,4.82271882,4.9202626700000005,4.915796,5.028296999999999,4.899342859999999,4.7160732,4.388626759999999,4.07594629,3.8069217199999987,3.462827613,3.1481986799999992,2.8674238499999998,2.48086767,2.2405917699999995,2.11694276,1.7929650499999998,1.5285410400000004,1.3108763799999998,1.063245416,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,industry,3 coal,3.3663794,1.9464392,1.7209446000000002,1.8134632,1.5053379,1.4613043,1.3954483,1.3344898,1.2009625000000002,1.0858144,0.9847906,0.8061603,0.6685329400000001,0.55862694,0.39468448,0.29142797,0.227691048,0.13905598900000002,0.09251685,0.0651089851,0.041336090699999994,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,industry,4 biomass,0.682894,0.975345,1.2491425,1.304197,1.536399,1.6883480000000002,1.792073,1.863391,1.902844,1.9167210000000001,1.8324060000000002,1.750503,1.638488,1.5166570000000001,1.30954,1.0438079999999998,0.7939,0.4781034,0.3002471,0.2049658,0.1291545,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,industry,5 electricity,3.21347,3.8579847000000003,3.6044654,3.644838,3.7726453,3.8175393,4.035644400000001,4.2756533999999995,4.6019114,4.913843,5.2220654,5.673938,6.1117451,6.5096409,7.0760065999999995,7.556546,8.000468309999999,8.525703049999999,8.908833300000001,9.139062029999998,9.437427195000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.1557905,0.2562908,0.3694372,0.497243,0.640683,0.803961,0.9826440000000001,1.084881,1.199355,1.33964,1.5062129999999998,1.652911,1.7482950000000002,1.9047230000000002,2.024586,2.165649,2.205253,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,transportation,1 liquids,11.88477438499,15.5463074349,14.879495818099999,15.042394293810005,15.07978757207,14.843332751899997,14.581254539494001,14.270703525975994,14.15810463376,13.979273675910003,13.697076405904005,13.540185759010003,13.446037035476998,13.386301208703,13.206020364281006,12.975763515028996,12.506750355199998,12.028850813906994,11.444386541417,10.860884557288001,10.141101997830004,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,transportation,2 gas,0.008706588599999999,0.0221433445,0.058225655700000004,0.144805407246,0.28009917674999996,0.48506664401199995,0.7066848912360001,0.9520196676261004,1.161684791338,1.3800545749589996,1.6447679245367004,1.8154691449669995,1.9792144169930006,2.128501428521,2.260454221404999,2.3840296054840002,2.5325250693600005,2.6558006075780005,2.768807979657999,2.858278890755999,2.9232291630289997,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,transportation,3 coal,8.37166E-4,8.36967E-5,4.60482E-4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,transportation,5 electricity,0.16501863,0.20612039999999998,0.2055559,0.21538405804723998,0.24769075305992996,0.2920312568134989,0.34368205912375394,0.404931541294132,0.4642763615702499,0.5342734624221702,0.6135557941093001,0.6853142857398001,0.7538115981733001,0.8184048231550995,0.8872032711841998,0.9611092396740999,1.0492257349158998,1.1486097886034001,1.261879690052,1.383025623147,1.4987850629900004,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,transportation,6 hydrogen,0.0,0.0,0.0,0.0,0.0071436716181,0.023215114754310005,0.04389494255537999,0.06928318991001,0.09265844949379999,0.1192611475536,0.14759998287773,0.17857815123548998,0.21312296839439002,0.25064327143724,0.29281525218349996,0.33911430536190007,0.39083930151259993,0.44842993598350006,0.512138272269,0.5802701723986,0.6544634329611002,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,building,1 liquids,0.32767999999999997,0.0815851,0.1169568,0.1247872,0.1159177,0.1111761,0.1151603,0.1161018,0.1164905,0.1152387,0.112979,0.1071552,0.1011949,0.0945931,0.0810983,0.06824279999999999,0.0523237,0.0400938,0.0287001,0.021109469999999998,0.014122760000000002,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,building,2 gas,0.4727254,0.6914017,0.6817742,0.61959933,0.64441098,0.6911503100000002,0.7124787800000001,0.71976018,0.71338104,0.69801443,0.6770408800000001,0.6463984399999999,0.6144353100000001,0.5801377700000001,0.52563405,0.47350971000000003,0.42746022,0.35870739000000007,0.30246185,0.255093229,0.200164137,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,building,3 coal,0.370461,0.07015729999999999,0.0408972,0.03668497,0.02155026,0.01779165,0.01425808,0.01151141,0.00828596,0.00612945,0.0046349,0.0029367300000000002,0.001952166,0.001337825,7.15644E-4,4.15662E-4,2.59184E-4,1.199137E-4,6.31257E-5,3.62003E-5,1.771884E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,building,4 biomass,0.0228555,0.041148500000000005,0.07287830000000001,0.06674730999999999,0.06808041999999999,0.06434540999999999,0.06073674,0.05625545,0.051547739999999995,0.0470956,0.0410693,0.03602826,0.031274072,0.027009301,0.022135893,0.016295353000000002,0.010898573,0.005975311,0.0033780053000000004,0.0020840662,0.0011771200999999998,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,building,5 electricity,0.117210499,0.21450207,0.255932239,0.24730734899999995,0.268878475,0.29640677000000004,0.33248011499999996,0.371132806,0.413247415,0.453204741,0.49040994,0.53542917,0.58318235,0.63028915,0.69133864,0.7432120899999999,0.7856649099999999,0.83999694,0.8808375900000001,0.90862659,0.9476846299999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,building,8 district heat,0.7695724,0.4095268000000001,0.35609419999999997,0.32049574999999997,0.29417524,0.29153002,0.2819051,0.26888731,0.24878919000000002,0.22905387,0.21011056999999997,0.18648225,0.16592895,0.14757150000000002,0.12414801,0.10379153999999999,0.08619904,0.06420287000000001,0.048625101,0.037323617999999996,0.026195742,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,industry,1 liquids,1.0898259000000001,0.2304388,0.27313619999999994,0.30467001,0.30332267999999996,0.29450241000000005,0.30765195,0.31777510000000003,0.33543505000000007,0.351851662,0.367882992,0.38748574999999996,0.40605726999999997,0.422649276,0.43864858100000004,0.44945052300000005,0.438162003,0.457257632,0.45955310299999996,0.46559344399999997,0.4778887486,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,industry,2 gas,1.4035244000000002,0.9338967,0.7051748999999999,0.6712394,0.70677683,0.74971924,0.7616138199999999,0.7658526200000001,0.75880004,0.7491991700000001,0.7358344000000001,0.71464491,0.6917263180000001,0.6673565669999998,0.618280829,0.5739991039999999,0.54719576,0.47831036700000007,0.435653591,0.40339562300000004,0.36092567130000003,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,industry,3 coal,1.60298597,0.9294597,0.76335939,0.70852738,0.63738078,0.63928206,0.6201556300000001,0.59895551,0.55300839,0.5101488,0.47126381,0.40020029999999995,0.34266138999999995,0.29439990299999996,0.21731137,0.163842223,0.127679651,0.0796670951,0.0534584825,0.0378839512,0.024103755610000003,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,industry,4 biomass,0.0021767,0.009460300000000001,0.036962398,0.033991509,0.040839608,0.045576693,0.048508815,0.05036625499999999,0.05207704,0.05303884999999999,0.05172739,0.051181489999999996,0.04956624,0.04730984,0.04275693,0.034959199999999996,0.026447066999999998,0.016103785000000002,0.009864368,0.006468556,0.003752956,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,industry,5 electricity,0.9016712,0.36485223,0.35591256,0.3496168,0.36680475999999995,0.36902639,0.38881355,0.41227629,0.44806952,0.48349953,0.5174023999999999,0.5734041799999999,0.63123271,0.6869226900000001,0.781811768,0.863502815,0.929948202,1.0267270789999998,1.0872212076,1.1187863889999998,1.1526872392,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,industry,6 hydrogen,0.0,0.0,0.0,0.0,7.3523E-4,0.001246917,0.001813532,0.00244955,0.003207202,0.0040931200000000004,0.00510415,0.00586943,0.006834730000000001,0.00797461,0.00988735,0.012083960000000001,0.013302020000000001,0.01546844,0.0158446,0.01614358,0.01570767,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,industry,8 district heat,1.4268,0.611497,0.366962,0.338744,0.35374,0.372683,0.379834,0.382618,0.380718,0.374881,0.365961,0.351973,0.334295,0.313934,0.277759,0.239224,0.203975,0.149861,0.111136,0.083772,0.0559642,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,transportation,1 liquids,0.66139176,0.31830357000000004,0.44644282999999996,0.413894964,0.422313796,0.44223819400000003,0.466565187,0.4855834187,0.5041362079999999,0.5120867339999999,0.5112946789999998,0.517182307,0.5269816444999997,0.5375855130000001,0.5383233465000002,0.5329871357000002,0.5149093579,0.4912324315999999,0.45867654005000025,0.42324506702999987,0.37774504378999985,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,transportation,2 gas,0.0030971621,0.0053992359,0.0027623203,0.00629503666,0.01373879973,0.02643520814999999,0.04130786199999998,0.05830795879999999,0.0749953994,0.09265116239999997,0.11413770007,0.12826270480000002,0.14278307890000003,0.15629792099999995,0.166254334,0.17379333700000002,0.180617212,0.18264079499999997,0.18310344199999995,0.18227986399999999,0.176490995,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,transportation,3 coal,0.00339042,0.00251139,0.00150688,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,transportation,5 electricity,0.0615388,0.0356149,0.0317076,0.031387006304,0.034835433363999996,0.039667875519,0.04487505620580001,0.050302625616,0.05556706278000001,0.06096878687000001,0.06659432396000001,0.07277321069999995,0.07977390720000002,0.0874059211,0.09615163699999997,0.10546842139999997,0.11627981769999998,0.1292022363,0.14495715090000005,0.16251576650000002,0.18190405999999995,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,transportation,6 hydrogen,0.0,0.0,0.0,0.0,1.2888431999999998E-4,4.996970700000001E-4,0.0010264768700000001,0.00173246358,0.002478243333,0.0034372078899999998,0.004564157970000001,0.006026436519999999,0.007837288699999998,0.009982845099999998,0.012538396099999998,0.015539803299999998,0.0189957231,0.0232167789,0.028105084499999995,0.0334785935,0.039228961500000006,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,building,1 liquids,0.1745562,0.17007719999999998,0.1032687,0.11059025000000001,0.1250517,0.1413568,0.15275580000000002,0.16274419999999998,0.17544679999999999,0.1861571,0.19548369999999998,0.1990519,0.1995365,0.19655799999999998,0.18154779999999998,0.1644547,0.1317728,0.10967856000000001,0.08554666,0.06817842,0.04975745,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,building,2 gas,0.0816269,0.3223216,0.31453549999999997,0.38218399999999997,0.4342471,0.5066392,0.5684023,0.6229577000000001,0.6660545999999999,0.6987706,0.7227052,0.7188259,0.7019514,0.6747712,0.6037281,0.542188,0.4917863,0.38680559999999997,0.3109554,0.2529376,0.18368710000000002,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,building,3 coal,0.21783890000000003,0.1388074,0.3130289,0.34121999000000003,0.22487788,0.20566395,0.18522737,0.16684604999999997,0.13382024,0.10884145,0.08932864,0.061033330000000004,0.043252176999999996,0.031355271,0.017771904,0.010962357,0.0072059210000000005,0.003494306,0.0019321165000000002,0.0011639753,5.986858E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,building,4 biomass,0.3855308,0.2991734,0.27460130000000005,0.28672954999999994,0.31323723000000003,0.32641854,0.33708959000000005,0.33911796,0.33013129999999996,0.31664190999999997,0.2882522799999999,0.25685775,0.22501291,0.19521285000000002,0.15555731,0.11234112999999998,0.074861521,0.03817428900000001,0.020578991,0.0122802687,0.0064892110999999995,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,building,5 electricity,0.1666106,0.38871759999999994,0.49538309999999997,0.5668825000000001,0.6442694,0.7413403000000001,0.8443395999999999,0.9440530999999999,1.0353342,1.1256824,1.2173677999999999,1.3089537999999998,1.4081111000000002,1.5128029,1.6303451999999998,1.739776,1.8428065999999999,1.9617171,2.0590103,2.1333878,2.2150144,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,building,8 district heat,0.0219889,0.0230788,0.0252381,0.028472400000000005,0.026583155999999997,0.028138581,0.029014702000000003,0.02937753,0.028075576,0.026572825,0.025056787000000004,0.021983714,0.019293536000000003,0.016906242999999998,0.013493037999999999,0.01098473,0.009025543,0.006326668,0.004586884,0.0034099707,0.0022487333000000003,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,industry,1 liquids,0.61257837,0.5968394,0.6605515099999999,0.734956958,0.8322663057,0.9277244377000001,1.0107969635000003,1.0886408757000001,1.1734192188,1.2501102359,1.3200560673100001,1.3785647545799997,1.4236757408800003,1.45592051771,1.4593452999999998,1.4498666999999998,1.39133093,1.3622185399999998,1.31707326,1.28565967,1.24836127,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,industry,2 gas,0.14119378,0.27539649,0.41689839999999995,0.49547273000000003,0.5808047899999998,0.6663836599999999,0.7377849699999999,0.79605646,0.8499068099999999,0.8898001799999999,0.91356553,0.9206344370000002,0.9037347560000003,0.8692846520000002,0.7958018360000002,0.7283450810000001,0.6746512120000001,0.55748249,0.468330597,0.39996193799999996,0.31934838930000004,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,industry,3 coal,0.3951578,0.5029057,0.4900551,0.58688004,0.563461814,0.6045769899999999,0.6335330799999999,0.65620587,0.6467572100000001,0.6320142099999999,0.6130354100000001,0.542699938,0.479773094,0.4227176389999999,0.320695538,0.249509588,0.20107184400000003,0.12735429199999998,0.08590578600000001,0.060490414000000006,0.03706405200000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,industry,4 biomass,0.0198223,0.0301546,0.0367114,0.045430088,0.053988186,0.05880268,0.06425641,0.06861787000000001,0.07169271,0.07385095000000001,0.07290536,0.07290334999999999,0.07160464,0.06973041,0.06666685,0.05918427,0.05307433,0.037614097,0.028377975,0.022538786,0.0171120512,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,industry,5 electricity,0.2033621,0.29853250000000003,0.38256270000000003,0.4193123,0.47222573999999995,0.52060905,0.5766631600000001,0.62851184,0.6790498300000001,0.7303379000000001,0.7833129000000001,0.8602331,0.9456705,1.03609179,1.18172135,1.30735011,1.4219776200000003,1.591782213,1.719075391,1.804763071,1.9078108,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,industry,6 hydrogen,0.0,0.0,0.0,0.0,5.864609999999999E-4,0.001076709,0.00170623,0.002496764,0.003541842,0.00485503,0.00643776,0.00784945,0.00955428,0.01152906,0.01442451,0.01736331,0.01938796,0.022371870000000002,0.02415944,0.026379,0.027708299999999998,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,industry,8 district heat,0.0179455,0.0518088,0.0556186,0.065841,0.0733297,0.0835187,0.0923604,0.100013,0.105614,0.109635,0.112024,0.111115,0.108155,0.103635,0.0933175,0.0831278,0.0735173,0.0563601,0.0433778,0.0338351,0.0234355,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,transportation,1 liquids,0.57466775,0.8779712999999999,0.95386852,1.06198474,1.1437291400000007,1.22496772,1.2907654330000002,1.3386080139999998,1.382856699,1.4113445569999998,1.4194404109999998,1.438916854,1.4580576560000005,1.4753090169999998,1.4754845410000004,1.4651944220000002,1.4260058063000003,1.3775437339999996,1.3120243182000002,1.2411802097000002,1.1532797013,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,transportation,2 gas,0.0,1.2569668999999996E-4,0.0028882340400000006,0.013091668189999999,0.028622976279999997,0.05361529844500001,0.08341205190100001,0.1183145814,0.1541739055,0.19284201370000004,0.2391395828,0.2747484314,0.30883351529999986,0.3405552130000001,0.36819997899999996,0.39277860400000003,0.4188238280000001,0.43857436000000005,0.456908276,0.4732880320000001,0.486159989,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,transportation,3 coal,7.53474E-4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,transportation,5 electricity,0.0047498098,0.004089939,0.0037967297,0.004753017909000001,0.0072451500000000005,0.011050688529999998,0.01576173987,0.021624786450000006,0.02814712181,0.03602189460000001,0.04542659210000001,0.0545659601,0.0635808472,0.07255673719999998,0.08211037409999998,0.09243508590000002,0.1044635569,0.1186996224,0.13546372,0.15416519110000004,0.17159788689999997,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,transportation,6 hydrogen,0.0,0.0,0.0,0.0,5.606191000000001E-4,0.0019106042,0.0037987233000000005,0.006248272500000001,0.00893151288,0.01208249,0.015648524299999998,0.0197992584,0.024545013600000002,0.029842110700000004,0.035794485999999986,0.042396785000000006,0.049705949,0.05796873500000001,0.067216689,0.07729396399999999,0.08823754,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,building,1 liquids,0.2546002,0.2119486,0.19423590000000002,0.1822079,0.1822119,0.1794045,0.17258632999999998,0.16693653,0.16367108,0.1590993,0.15439406,0.14388645,0.13373459,0.12342167,0.10750556,0.09230119,0.07177013000000002,0.054600970000000006,0.038187297,0.027445221000000002,0.018128784000000002,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,building,2 gas,0.0405207,0.0704744,0.0787798,0.08275989,0.0825672,0.08352688999999999,0.08289664000000001,0.08186146,0.07863849,0.07493017,0.07137367,0.06464088999999999,0.05826436,0.0523913,0.04430313,0.038079089999999996,0.033505860000000005,0.024453901,0.017881926,0.013207209000000001,0.008651151999999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,building,3 coal,0.0018719,0.0017874000000000002,4.0679999999999997E-4,3.8734451E-4,2.3668025299999998E-4,1.9455142E-4,1.57490245E-4,1.29619937E-4,9.4858281E-5,7.0190498E-5,5.2586174000000004E-5,3.1890092E-5,2.0418632999999998E-5,1.35591749E-5,7.0582740999999995E-6,4.0241791999999995E-6,2.4443214E-6,1.06674125E-6,5.2817747E-7,2.9017306000000005E-7,1.37588874E-7,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,building,4 biomass,0.0523351,0.0550111,0.0696375,0.07014289,0.07369841,0.07365923,0.07344419,0.07174163,0.06705711,0.06177077,0.053703030000000006,0.044821228000000005,0.036946064,0.030273593,0.022470305,0.015045301000000002,0.009302556,0.0041341793,0.0019488762999999999,0.0010332395,4.8044226E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,building,5 electricity,0.31109322,0.34174506,0.36375479,0.3987085,0.42390020999999994,0.45633612999999995,0.49239064,0.52532419,0.55642781,0.5892416699999999,0.6226711,0.66055614,0.69475797,0.72413353,0.75320111,0.77667875,0.7988356000000001,0.81861429,0.8306312400000001,0.83048067,0.8256934399999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,industry,1 liquids,0.21590712999999997,0.22477619999999998,0.22737726,0.22871233200000002,0.23961385529999998,0.24941075299999999,0.2575900214900001,0.2671955810099999,0.27920560539,0.29097207623,0.30367996313,0.315187147946,0.327359183158,0.339731640377,0.34880680100000006,0.35855212799999997,0.3635636925,0.3748248305,0.3834101381,0.3927941265,0.40095159250000006,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,industry,2 gas,0.10917080100000001,0.230933504,0.232654903,0.23495143899999998,0.22822691399999998,0.223872007,0.215296815,0.20724691299999998,0.19540525499999997,0.182627072,0.17087410899999997,0.15425312369999994,0.1391305685,0.125875233,0.10762081000000001,0.09409850500000003,0.08504803399999998,0.06778604440000001,0.05610298610000001,0.04816765449999999,0.04005965884999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,industry,3 coal,0.050495029999999996,0.03998891,0.038732380000000004,0.04104038,0.033561679999999997,0.03190318,0.030071479999999998,0.0284904,0.02532373,0.022545719999999998,0.02023064,0.01618322,0.01321842,0.01097778,0.00778844,0.005845899999999999,0.00476872,0.003076423,0.002264532,0.00178584,0.001322403,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,industry,4 biomass,0.04076151,0.07529916,0.07674693999999999,0.07590421,0.08613903,0.08804049,0.08750082,0.08703972,0.08622303,0.08362187,0.07766485,0.07080669,0.06412299,0.0580641,0.049490679999999995,0.038965520000000003,0.029220060000000003,0.01717327,0.01070386,0.007356346,0.004730908,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,industry,5 electricity,0.27421286,0.31001748999999995,0.30193238,0.33074391000000003,0.33918088599999996,0.358615281,0.383811973,0.404989658,0.42510457,0.44671654000000005,0.46878155,0.50380902,0.5345492199999999,0.560195873,0.5851978499999999,0.604743445,0.625275146,0.6526155282,0.675695786,0.6863534387,0.6962723875,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.01585402,0.02516431,0.03478019,0.0452544,0.0566944,0.06902130000000001,0.0823782,0.0877322,0.0952749,0.10461530000000001,0.11999770000000001,0.1357245,0.1406481,0.1455377,0.1375994,0.1330874,0.1261385,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,transportation,1 liquids,0.43711524500000004,0.520658647,0.5471535110000001,0.559195717,0.5609778980000001,0.5551664529999998,0.5476482359999999,0.5369726579999999,0.5336268530000001,0.5283745839999998,0.5204141819999999,0.518879635,0.5191930249999999,0.520324263,0.5171197620000002,0.512327485,0.5007246759999999,0.4866743129999999,0.4668627859999999,0.44558726899999984,0.41945241500000013,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,transportation,2 gas,0.0,5.02284704E-4,0.00301380219,0.006522886699999999,0.011811476150000002,0.019969998170000003,0.028947407064999996,0.03890027938000001,0.04764485781,0.05687587329000001,0.06821638414,0.07627663902000002,0.0839921383,0.0910834396,0.0975982162,0.10346502330000001,0.10985408049999996,0.114543213,0.11867018230000001,0.1218213321,0.12410106020000002,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,transportation,5 electricity,0.012997019999999998,0.01329472,0.01327883,0.014198575004999998,0.01576933415,0.0178997436,0.02034439141,0.023127496065999998,0.02584099242000001,0.029000869700000004,0.0326250705,0.0361083639,0.039471497099999996,0.042666144200000006,0.04607544939999999,0.04964427089999999,0.053779251199999996,0.0584325827,0.0637579862,0.0693090236,0.07476030759999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,transportation,6 hydrogen,0.0,0.0,0.0,0.0,2.672783E-4,8.764172E-4,0.0016657573,0.0026297023000000004,0.0035265310800000004,0.004546867499999999,0.0056602161000000005,0.0069033112,0.0082987967,0.009819171100000001,0.0115615684,0.013501356200000002,0.015613287999999998,0.017925082600000003,0.0203746011,0.0228815376,0.025547502199999995,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,building,1 liquids,0.4600417,0.8832046,0.959934,1.36165,1.95321,2.56934,3.11749,3.63657,4.19072,4.68809,5.11484,5.39505,5.55888,5.68819,5.41192,4.88767,3.73911,2.91162,2.11646,1.57551,1.05097,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,building,2 gas,0.0017163,0.0025953,0.0010046,0.0014287,0.00208249,0.0028362,0.00358439,0.00431882,0.00496697,0.00552121,0.00594293,0.00614805,0.00619258,0.0062038,0.00578585,0.00525396,0.00479064,0.0035096,0.00259547,0.00195094,0.00129412,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,building,3 coal,0.446688,0.391768,0.576203,0.816185,0.760509,0.8660869999999999,0.8911958,0.8759585,0.7541035,0.6382186,0.532646,0.37015620000000005,0.2631313,0.1948364,0.11244180000000001,0.06817869,0.042920679999999996,0.01923068,0.00970378,0.005407047999999999,0.002565802,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,building,4 biomass,0.197244,0.251118,0.268741,0.373211,0.595594,0.770914,0.894695,0.965487,0.997402,0.981209,0.8921,0.790993,0.6744,0.577464,0.443935,0.299876,0.181245,0.0799299,0.0370156,0.0193932,0.00885115,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,building,5 electricity,0.184944475,0.57539058,0.85964419,1.37545279,2.25508135,3.3382395999999996,4.7382919,6.3541817,8.1092527,9.9969048,11.9461488,13.8864787,15.812503,17.5572696,19.3117117,21.018346,22.807959000000004,24.238785999999998,25.388657,26.110563,26.791578,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,building,7 trad biomass,4.4472504,5.21060866,5.57558156,5.03503208,4.60269644,4.15161377,3.70264716,3.30035527,2.99289758,2.69191798,2.39428347,2.1915096000000003,1.9672999,1.76030816,1.63203288,1.46697729,1.3161626100000001,1.1232827300000001,0.9310822200000001,0.7618994299999999,0.626146678,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,industry,1 liquids,0.7228806999999999,2.0383724,2.24164569,2.9177891,4.164797699999999,5.3676189,6.501683519999999,7.60953953,8.94939261,10.244272217999999,11.48841925,12.68805154,13.708488737999998,14.602705163999998,15.168704600000002,15.3680925,14.4410688,14.386241,14.041908,13.891105999999999,13.744174999999998,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,industry,2 gas,0.2956998,0.7698883999999999,1.01945869,1.5143094,2.1000750999999998,2.7260064,3.3795431,4.0468898,4.5893427,5.072822500000002,5.475623010000001,5.7033020699999994,5.8169644,5.87144544,5.62793108,5.374488579999999,5.34034945,4.5531323,4.01122573,3.59229571,3.068678936,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,industry,3 coal,1.515456,1.9327159999999999,2.890781,4.3124,5.31192,6.5079199999999995,7.51091,8.39292,8.838899999999999,9.08832,9.18847,8.49625,7.77725,7.126709999999999,5.71881,4.67436,3.93239,2.6968419999999997,1.968324,1.509638,1.0912389999999998,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,industry,4 biomass,0.94205929,1.1423207,1.2223073,1.4855040000000002,2.3437232,3.1114064,3.883486,4.6186212,5.3961566,6.079961,6.484528,6.95274,7.179868,7.307829000000001,7.166291,6.3350599999999995,5.126721000000001,3.250373,2.015746,1.333441,0.792966,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,industry,5 electricity,0.5576199,1.0825294,1.5689967,2.2510790000000003,3.0913523,3.9155778000000003,4.9666266,6.103898899999999,7.2686415,8.513508400000001,9.8211168,11.236436999999999,12.6661,13.796288000000002,15.4057856,17.2680738,19.5137566,22.3738488,24.510487110000003,25.74625265,26.913923869999998,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.00516564,0.011051499999999999,0.01947758,0.03092991,0.046741399999999995,0.0668985,0.0906498,0.1100313,0.1322399,0.163889,0.20328960000000001,0.24186000000000002,0.283729,0.333981,0.383883,0.43409400000000004,0.441381,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,transportation,1 liquids,1.1069142999999997,1.5296741999999999,2.4980453000000002,3.11629656,3.9005933900000014,4.63794344,5.32767061,5.975959116,6.570571401,7.1299267900000025,7.57953683,8.17836524,8.801644600000001,9.451945436999997,9.91670017400001,10.273955058999997,10.112807070000004,9.930415400000006,9.557044429999996,9.142947969999998,8.433381602999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,transportation,2 gas,0.0,0.02762464,0.09630910000000001,0.175768337,0.33298446900000006,0.568572245,0.905195048,1.3571757200000005,1.9130733969999998,2.5509375089999993,3.3427855789999996,3.945115131,4.520000024,5.055658292,5.481477754999999,5.890010207,6.4878465449999965,6.8188618660000015,7.1958126999999985,7.560702327999999,7.637729980000002,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,transportation,3 coal,0.101546,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,transportation,5 electricity,0.01472184,0.0357306,0.0466132,0.05574752779,0.0681898169421,0.08065129898196,0.09433569318526,0.10899540931360004,0.12465804069299997,0.14140459945000003,0.15911250323999995,0.17848108336,0.19912372278999996,0.2205118311,0.24656098939999996,0.2763925856,0.31582554049999995,0.36674632469999985,0.4309761989999999,0.5069118870999999,0.6006993140000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,transportation,6 hydrogen,0.0,0.0,0.0,0.0,4.762275299999999E-5,1.6310539500000003E-4,3.50817953E-4,6.41798499E-4,0.0010500382818999998,0.0016347773739999998,0.0024446678210000004,0.003735396317,0.005479449773,0.007860210741999999,0.01115067365,0.0155551526,0.02186196727,0.030997632839999997,0.044292566660000005,0.06209943659,0.08437189130000002,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,building,1 liquids,0.2814667,0.4546411,0.3158761,0.4096132,0.5645573,0.804497,1.030453,1.241462,1.451356,1.634951,1.787967,1.891487,1.9540609999999998,1.9697019999999998,1.866425,1.71146,1.436259,1.157536,0.8608779999999999,0.6461210000000001,0.4428676,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,building,2 gas,7.53498E-4,0.0018836999999999999,0.0063208,0.00867334,0.01161962,0.01673742,0.021816330000000002,0.02685845,0.03138481,0.03538937,0.03872424,0.04042398,0.04110352,0.040791669999999995,0.036922130000000004,0.03299992,0.02964873,0.02191224,0.016325179999999998,0.01242558,0.00848661,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,building,3 coal,0.0,4.19E-5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,building,4 biomass,0.042697189999999996,0.0251997,0.0225625,0.02616474,0.0312121,0.0359335,0.0392759,0.040907700000000005,0.0403755,0.0388495,0.0351615,0.0312183,0.027093779999999998,0.023177259999999998,0.01813662,0.01282494,0.008466129999999999,0.0040506,0.002005706,0.001095261,5.29677E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,building,5 electricity,0.04948782,0.2339792,0.3483085,0.4812185,0.6345917999999999,0.8730030000000001,1.161166,1.472925,1.7936199999999998,2.1129059999999997,2.4140680000000003,2.6776229999999996,2.9261350000000004,3.1565260000000004,3.384311,3.606806,3.849014,4.077195,4.289294,4.413563,4.5141729999999995,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,building,7 trad biomass,1.41181,1.78826,1.93778,1.93128,1.89945,1.77281,1.62732,1.48181,1.3549,1.22677,1.09984,1.01548,0.924416,0.829225,0.774583,0.709995,0.658843,0.592363,0.514541,0.436829,0.378356,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,industry,1 liquids,0.4106464799999999,0.7316704,0.7715635000000001,0.9269703999999999,1.2052992,1.5247481999999999,1.8062526999999997,2.0610129,2.3317649,2.5694717999999996,2.7792063999999996,2.9733555000000003,3.1351269999999998,3.2640763,3.3588286,3.3974764,3.2641761,3.2497949000000004,3.0946516,2.9538703,2.7867641,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,industry,2 gas,0.56046308,0.9859714100000001,1.0291714,1.3003878,1.59832758,1.97274033,2.3002704200000004,2.5747367200000006,2.7747588499999996,2.9099057100000008,2.9883857300000005,2.9927428609999995,2.950677521,2.8729929860000003,2.6978802060000007,2.5397528700000005,2.45668868,2.1284956700000004,1.8412736899999997,1.5821345400000002,1.267512199,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,industry,3 coal,0.0896639,0.349156,0.538446,0.730748,0.78971,0.933865,1.0424449999999998,1.122243,1.129154,1.112865,1.082852,0.961959,0.856499,0.762265,0.59927,0.48803359999999996,0.418412,0.2939792,0.2165089,0.1628733,0.1115665,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,industry,4 biomass,0.366359198,0.29419201,0.29268510000000003,0.37954864,0.52906111,0.6883622500000001,0.84461247,0.98332475,1.11568529,1.2240202599999999,1.27667384,1.3399851,1.3722674000000001,1.3802404,1.3606163,1.2342753,1.051087,0.73739989,0.50172196,0.35313273,0.22428855,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,industry,5 electricity,0.052332260000000005,0.1537673,0.1843889,0.2551143,0.31455321,0.38173235,0.46977904,0.5589795700000001,0.6442092500000001,0.7246066,0.7974458,0.8675023000000001,0.9414058000000001,1.0177498,1.1526148,1.31349413,1.5065500499999998,1.86779951,2.2521922500000002,2.554367964,2.913377318,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.003738739,0.00764389,0.01289467,0.019529440000000002,0.02790013,0.0378634,0.0488174,0.0568735,0.06696740000000001,0.08068510000000001,0.099581,0.12185850000000001,0.1516559,0.2014985,0.257697,0.313412,0.363284,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,transportation,1 liquids,0.4973025299999999,1.1106036400000001,1.56721066,1.7921104239999996,2.0487999599999993,2.3749596520000003,2.6671896499999996,2.9256338449999992,3.150237990000001,3.330711764999999,3.438914045,3.598215134999998,3.7430211539999982,3.8745006419999997,3.9528380860000003,4.0045626410000015,3.9568515479999986,3.888409154999999,3.7623256659999993,3.6040454499999997,3.3518423429999995,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,transportation,2 gas,0.0,2.0917818E-4,4.1865607E-4,0.027197545680000004,0.07406929177000002,0.15925382591999993,0.28008655368,0.44368830410000004,0.6467160093000002,0.8846838182,1.1837602477,1.4158994929999995,1.6334400279999994,1.830745165,1.9925861989999993,2.137207662,2.3199499170000006,2.4394116529999996,2.5719359489999993,2.7072164320000005,2.787151384000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,transportation,3 coal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,transportation,5 electricity,0.0,0.0,0.0,6.757013359700002E-5,4.4974841618E-4,9.13341281522E-4,0.0016158158914679995,0.002620797284109999,0.003927628970200001,0.005606274682800002,0.007690262049000001,0.009964655897999998,0.012700794205000004,0.016007748343999997,0.02046173357,0.02616707039,0.03456327558999999,0.04637474839,0.06349723209999998,0.08534443410000002,0.10880733610000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,transportation,6 hydrogen,0.0,0.0,0.0,0.0,3.9202628E-5,1.53062275E-4,3.3137716400000004E-4,6.0086244E-4,9.58234505E-4,0.0014503035790000003,0.002118803625,0.003083635992,0.004278052318,0.005764440129000001,0.007645217729999999,0.01000870701,0.01312540614,0.01758467743,0.02392463131,0.032152966039999994,0.042375934690000006,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,building,1 liquids,1.526862,1.7262730000000002,1.278542,1.11637,1.065071,1.065857,1.0315860000000001,0.9843489999999999,0.937483,0.8917889999999999,0.845776,0.7859579999999999,0.724653,0.658231,0.5637500000000001,0.4796,0.3834804,0.30779940000000006,0.2304838,0.1763928,0.1242886,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,building,2 gas,0.4780083,0.9357650000000001,1.120498,1.013722,1.022826,1.064303,1.073899,1.059708,1.007281,0.9513480000000001,0.88957,0.8079997999999999,0.7239359999999999,0.6379792,0.5220313,0.42585819999999996,0.35724580000000006,0.2594539,0.1953581,0.15011180000000002,0.10297030000000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,building,3 coal,0.0410149,0.023168299999999996,0.0213486,0.02080267,0.012235689999999999,0.01035909,0.00878229,0.007454973,0.005513849,0.0041854909999999995,0.003238393,0.0020984980000000003,0.0014389390000000002,0.0010210288,5.843984E-4,3.646818E-4,2.50702E-4,1.2963966000000002E-4,7.694606000000001E-5,4.8702959999999995E-5,2.6760318999999997E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,building,4 biomass,0.0041989,9.692E-4,7.974000000000001E-4,7.326733E-4,7.713231999999999E-4,7.707723E-4,7.658869E-4,7.410995E-4,6.808884000000001E-4,6.202197E-4,5.334279E-4,4.492427E-4,3.73505E-4,3.076447E-4,2.291934E-4,1.5355753000000002E-4,9.664097000000001E-5,4.497572E-5,2.266328E-5,1.2763569E-5,6.24621E-6,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,building,5 electricity,1.4177565,2.2208717,2.3330016,2.5846839,2.6136578000000004,2.6240902,2.6457979,2.6433352,2.6319596,2.6168773,2.5959677,2.5829177,2.5721969,2.5558404,2.560726,2.5448702,2.5168528000000006,2.4905751,2.4480224999999995,2.3819221,2.3191745,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,industry,1 liquids,3.4373119,3.3297011000000003,2.836253,2.7271363,2.7224742,2.7229024,2.685578,2.6342895,2.5938052,2.5478614,2.4994248,2.4455452,2.3785217000000003,2.296139,2.1734096,2.0477147,1.8869808000000001,1.7571188,1.6133949,1.5042384,1.3992938000000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,industry,2 gas,0.1692301,0.3262731,0.4310851,0.43015473000000004,0.44829579499999994,0.46223828299999997,0.46685704499999997,0.464013329,0.452486687,0.438174329,0.4206251380000001,0.401208206,0.3760595530000001,0.34660563899999997,0.30240608399999996,0.260648865,0.22912239900000006,0.17917368199999995,0.14373810930000006,0.11839743659999998,0.09154447543000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,industry,3 coal,2.1460001,2.0289324,1.9999818,1.9274277,1.7135738,1.6744501999999999,1.6130276900000002,1.5432953600000001,1.40094385,1.27120669,1.15237302,0.9630769499999999,0.80610649,0.6721833,0.48004821000000003,0.34910632999999996,0.26647614999999997,0.15913316,0.10347492999999999,0.07121046,0.043440679999999995,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,industry,4 biomass,0.107288,0.108003,0.114363,0.105528,0.121202,0.129035,0.135521,0.139264,0.141894,0.142899,0.138493,0.136567,0.131174,0.1232,0.109825,0.0884169,0.0664358,0.0394955,0.0236211,0.015182,0.00856005,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,industry,5 electricity,1.2285506,1.2428390999999999,1.2170935,1.4566971,1.4997286899999998,1.45926484,1.45462926,1.44979054,1.47027759,1.4898509,1.51041339,1.57140555,1.6381264,1.7070481400000002,1.84869812,1.96363705,2.057982018,2.1790610830000006,2.2523019360000003,2.2714085299,2.2999641347,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.001841859,0.003058807,0.004430426,0.00595411,0.00767635,0.00969034,0.01193899,0.01361728,0.01561309,0.01774957,0.02138118,0.0253945,0.0277542,0.031191700000000003,0.030909899999999997,0.0309336,0.029484299999999998,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,transportation,1 liquids,3.347624,4.0051274,3.5703535800000004,3.5153434299999997,3.376782419999999,3.2189830400000004,3.087056305,2.9458648499999986,2.8627649799999992,2.767805029999998,2.67024225,2.58002313,2.507098759999999,2.4457728299999992,2.383257950000001,2.322707219999999,2.25428147,2.1832602899999993,2.1013194100000003,2.0160873699999993,1.9213941000000003,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,transportation,2 gas,0.0,0.0,0.0,0.026690469999999997,0.061573849,0.11209276899999998,0.16831576599999998,0.23137994899999997,0.28853972799999994,0.3497223619999999,0.44004699,0.4788240189999999,0.51152959,0.5371089900000001,0.5581543399999996,0.5724809700000001,0.5885968600000001,0.5949756599999999,0.60215861,0.6072902999999997,0.6121526199999998,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,transportation,3 coal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,transportation,5 electricity,0.060527974,0.068607672,0.069446673,0.0700907918,0.07275189050000003,0.07650031700000001,0.08049862429999999,0.08496570388000002,0.08828166910000003,0.092452704,0.097382976,0.100958008,0.10380896100000002,0.10580498199999998,0.10787259400000003,0.11017974999999999,0.113249997,0.11712258100000003,0.12218839199999999,0.12802162699999997,0.132916032,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,transportation,6 hydrogen,0.0,0.0,0.0,0.0,9.871801E-4,0.0033058721,0.0061825976999999996,0.009537895400000001,0.012290982200000002,0.015380623300000004,0.0185945531,0.0219511965,0.02553314219999999,0.029176707000000003,0.03320145930000001,0.03753997300000001,0.042047940000000006,0.046862785000000004,0.051869345,0.056952719999999984,0.06238681100000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,building,1 liquids,0.29774939999999994,0.352377,0.3386892,0.3750128,0.42020179999999996,0.4679464,0.5091457,0.5474836,0.5852302,0.6203061999999999,0.6523319,0.6637469,0.6630910999999999,0.6504431,0.6022766,0.5481137,0.4704795,0.3925273,0.3056816,0.2419548,0.175854,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,building,2 gas,0.0339066,0.0380508,0.0404367,0.043295709999999994,0.04836949,0.05614558,0.06377721,0.07104015999999999,0.07618575,0.08073243,0.08445325,0.08448779000000001,0.082611727,0.079260692,0.07057696699999999,0.061749899999999996,0.054574383,0.040421823,0.031111631999999997,0.024480333,0.0171487043,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,building,5 electricity,0.13416608,0.264536,0.2992663,0.3688,0.4347702,0.5232262999999999,0.6283851,0.7431211,0.8553493000000001,0.9782773,1.1148186,1.2581930000000001,1.4148678000000001,1.5881624,1.7649214,1.9535761999999999,2.1465473,2.338594,2.5180018,2.6611811000000003,2.8029534,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,building,7 trad biomass,0.27636,0.266313,0.259741,0.24419000000000002,0.24407500000000001,0.237204,0.22836099999999998,0.218137,0.209977,0.199819,0.18711440000000001,0.1783133,0.1667795,0.15322940000000002,0.1463179,0.1359169,0.1273593,0.1182093,0.10999700000000001,0.1003744,0.0933012,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,industry,1 liquids,0.6548573,0.7202426,0.621747,0.7165642,0.8220606,0.9134234999999999,0.9968361,1.0790077,1.1736049999999998,1.2637421999999998,1.3518724,1.4299708999999998,1.4924861,1.5430571,1.5752055,1.6017837000000001,1.5840395,1.6129959,1.5960973,1.5985128,1.6049904000000002,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,industry,2 gas,0.7903174000000001,0.7277781,1.0076536999999999,1.08721853,1.1982953099999998,1.33864695,1.46729841,1.5771659200000003,1.64782175,1.69841402,1.730009708,1.7074033649999998,1.654157542,1.5819142659999996,1.4404369330000002,1.3009475380000002,1.1965620430000004,0.9620939479999999,0.808134558,0.6957978963000002,0.5617843108600001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,industry,3 coal,0.0712458,0.0655946,0.0827154,0.0950614,0.0836331,0.086617,0.08874749999999999,0.09024410000000001,0.08564490000000001,0.0811574,0.0769205,0.0653401,0.0558885,0.0479758,0.035439029999999996,0.02701181,0.02159808,0.013543630000000001,0.00933988,0.00681442,0.00449682,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,industry,4 biomass,0.08162710000000001,0.058059799999999995,0.0428646,0.0494489,0.060234499999999996,0.0689875,0.07831969999999999,0.08669099999999999,0.0942663,0.1007595,0.10309080000000001,0.10583129999999999,0.1060567,0.1047708,0.1005404,0.0877576,0.07214870000000001,0.0477615,0.0331085,0.0246957,0.01732825,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,industry,5 electricity,0.2051789,0.419459,0.4628484,0.5604897,0.63048885,0.70912496,0.80051048,0.89215749,0.97935937,1.0678813,1.1602828,1.2695485,1.38928157,1.52008539,1.6855828,1.8592160199999999,2.028926136,2.265772959,2.465024838,2.6072759398,2.7702268492,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.002510079,0.004493133,0.00702098,0.01015842,0.014083430000000001,0.01888229,0.02454672,0.029069650000000002,0.0345078,0.0407147,0.0522682,0.067054,0.0793768,0.0997401,0.1060074,0.1121377,0.1113768,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,transportation,1 liquids,1.2913929498999999,2.0116369730000003,2.311942941,2.4953252,2.6503296816000006,2.7844579986,2.905603726599999,2.9897628432000003,3.058757869000001,3.0921034011000006,3.057407739199999,3.0787090355,3.105544495200001,3.1436803691999997,3.1606497540000005,3.177833454210001,3.1433259431699985,3.0853343303299994,2.9745932407900004,2.83481390477,2.625548527840001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,transportation,2 gas,0.0,6.697205999999999E-4,5.022403E-4,0.0358973103,0.09546549399999997,0.19775265800000003,0.34527159064,0.54434275,0.776543111,1.041984379,1.4012069059999999,1.6213548279999999,1.8280597699999999,2.02372016,2.1895421400000004,2.3456833699999993,2.5192456900000013,2.6144108700000004,2.7245890699999995,2.8485113299999987,2.91062543,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,transportation,5 electricity,0.002738878,0.00393267,0.0042794700000000005,0.00967914315,0.019041511770000005,0.028112466630000003,0.03839413324000001,0.05035948264599999,0.06281433658999999,0.07756803965000003,0.09537154810000001,0.11387528168,0.13239656685,0.15176885721,0.17424759751,0.19967140651999998,0.22864986713000005,0.26277039431,0.3044585770300001,0.35179931019,0.39719177016000007,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,transportation,6 hydrogen,0.0,0.0,0.0,0.0,0.0014062598999999999,0.0047151592,0.0093768119,0.015433276170000001,0.02178960222,0.02905392559,0.0372689119,0.0465099185,0.05724632510000001,0.06973615979999999,0.0854785208,0.1042978688,0.12515899900000002,0.14930773699999997,0.176686723,0.20597001500000003,0.23681726900000005,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,building,1 liquids,0.8066001999999999,1.2065308,0.9912865,1.1267848,1.1773856999999999,1.3065358,1.3749169,1.4177856999999998,1.463207,1.4933139999999998,1.5123222,1.491978,1.4595984,1.4133667,1.2975916,1.1817025,1.0039892,0.8605322,0.6965646,0.5839643,0.47815870000000005,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,building,2 gas,0.14357989,1.2777344,1.6716382,1.7807394,1.8936161,2.0901671000000004,2.2177227,2.3085498,2.3398187000000004,2.3442711999999997,2.3208112,2.2321168000000005,2.1232143,2.0013623,1.7822261999999998,1.5790465,1.4353837600000001,1.1373798000000002,0.94728464,0.81326666,0.6647019399999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,building,3 coal,0.0,3.767E-4,3.767E-4,3.92537E-4,2.56178E-4,2.32657E-4,2.04132E-4,1.78463E-4,1.3826E-4,1.09186E-4,8.74223E-5,5.8722E-5,4.09632E-5,2.92211E-5,1.65455E-5,1.00532E-5,6.57264E-6,3.1083E-6,1.66755E-6,9.76665E-7,4.97739E-7,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,building,4 biomass,0.0152789,0.026622899999999998,0.0221021,0.0228645,0.0251331,0.02696094,0.02758151,0.02741969,0.026214420000000002,0.02484002,0.02242636,0.01967003,0.01692879,0.01440961,0.011068119999999999,0.0076919399999999995,0.004980574000000001,0.002366598,0.001197221,6.7852E-4,3.39661E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,building,5 electricity,0.51637,1.3263690000000001,1.9365,2.23605,2.604482,3.017138,3.545015,4.087667,4.631616,5.15263,5.638209,6.12739,6.628791,7.134649,7.654332,8.134238,8.556963,9.007072,9.367339000000001,9.618211,9.852796,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,industry,1 liquids,1.592816,2.8579470000000002,3.3534040000000003,3.89115,4.229336,4.622979,4.955009,5.266294,5.637811999999999,5.978455,6.296759000000001,6.588958,6.836027,7.0362,7.154516000000001,7.2028550000000005,6.958204,6.926032999999999,6.64294,6.428592,6.20971,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,industry,2 gas,1.2614097,3.0656559999999997,4.911979999999999,5.436952,5.965406920000001,6.5961932700000006,7.1538595,7.636600659999999,7.9339374099999995,8.148490159999996,8.276113950000003,8.196578457999996,8.03670261,7.81810354,7.260611240000001,6.6900683,6.32139762,5.21664618,4.451977399,3.846756202,3.0908555880999997,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,industry,3 coal,0.0249486,0.0627063,0.0788642,0.08727,0.0830694,0.0882895,0.0920553,0.0949958,0.0925641,0.0896809,0.0865791,0.0760429,0.0672508,0.0596839,0.0458701,0.0360841,0.0296301,0.0190788,0.0131496,0.00943747,0.00597304,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,industry,4 biomass,0.0045627,0.0030558,0.0032232,0.00354793,0.00434181,0.00500639,0.00567849,0.00628346,0.00686017,0.00736752,0.00759753,0.00787434,0.00800297,0.00802272,0.00775995,0.00682737,0.00561425,0.00368073,0.00242176,0.00169054,0.00105926,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,industry,5 electricity,0.1850514,0.450775,0.6261705999999999,0.7610756,0.9290539,1.0724683,1.3127898,1.5837261,1.8827733000000002,2.1920930999999997,2.5035069000000005,2.8744103,3.2865279,3.7313766,4.3368801,4.96177857,5.570024139999999,6.532158379999999,7.43120216,8.151726711,8.979272306,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.01198041,0.02162907,0.0332706,0.0473886,0.0647995,0.08640919999999999,0.1122978,0.1335266,0.160983,0.1946635,0.25532,0.334876,0.40274699999999997,0.502591,0.5501469999999999,0.600262,0.643112,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,transportation,1 liquids,3.1603038000000008,5.2676101,6.7368046,7.423377660000001,8.0475007,8.809323959999999,9.537762059999999,10.165728179999997,10.702490450000003,11.120838659999999,11.333895009999996,11.718815840000001,12.08351773,12.42864722,12.635895329999995,12.779010030000002,12.670702400000001,12.4387492,11.969380629999998,11.38113585,10.54420447,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,transportation,2 gas,0.0,0.010798614,0.19621490000000003,0.258503039,0.35088694600000003,0.523668378,0.7804155085999999,1.1269414545000003,1.5443046913000003,2.0222083449999997,2.6427947410000003,3.0899855819999997,3.5309911919999992,3.9571382330000007,4.33560431,4.683923763,5.054101651,5.307422863999999,5.564016369999999,5.820063900000001,5.969484950000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,transportation,5 electricity,0.0,3.774E-4,0.0011005,0.0050548247,0.012047563700000001,0.021480352999999997,0.033105890250000006,0.04763977855000001,0.06355074610000001,0.08322205170000001,0.10719970300000001,0.137010505,0.172312737,0.21526398400000002,0.273612397,0.348928772,0.447855868,0.581469584,0.7662321080000001,1.000023192,1.232412927,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,transportation,6 hydrogen,0.0,0.0,0.0,0.0,0.0035753340000000003,0.012258366,0.024201993399999996,0.039512695900000006,0.0548147658,0.072144208,0.090790246,0.117449306,0.150614678,0.19173319300000002,0.24768825299999997,0.318986889,0.40476091299999994,0.510954591,0.639042546,0.7824495499999999,0.9438879699999998,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,building,1 liquids,0.0619528,0.0394321,0.0559668,0.05846697,0.06461183,0.07476977,0.08545352,0.0993316,0.11709889999999999,0.1370655,0.1604328,0.18275560000000002,0.20798529999999998,0.23460630000000002,0.24933330000000004,0.2555925,0.2247399,0.21154490000000004,0.1897376,0.174023,0.15324306,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,building,2 gas,0.07363178,0.1864444,0.25002939,0.28183144,0.32526436999999997,0.38486974,0.45092040000000005,0.5308487,0.6133417,0.6988392999999999,0.7892813999999999,0.8615807,0.9350905,1.0042288,1.0172134,1.0133746000000001,1.0041639,0.8526075,0.7372737,0.6477654,0.5366154000000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,building,3 coal,1.256E-4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,building,4 biomass,0.004479,0.0073255,0.0079953,0.00835705,0.00953099,0.0105119,0.0112813,0.0118798,0.0119451,0.0117084,0.0108857,0.00984868,0.0088108,0.0077982,0.00631655,0.00458176,0.00301549,0.00145688,7.28771E-4,4.01652E-4,1.92384E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,building,5 electricity,0.04819869,0.1434035,0.16888090000000003,0.21314070000000002,0.26820370000000004,0.3313154,0.4191928,0.5217936,0.6495991,0.8077454,0.9884738,1.1905666,1.411498,1.65753,1.9415739999999997,2.258278,2.5974570000000003,3.0172160000000003,3.419656,3.7891500000000002,4.173576,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,building,7 trad biomass,0.6844110000000001,0.9536132,1.0434866,1.0159999,1.0104062999999999,0.9784512,0.9130938,0.8439159,0.7796411,0.7061153,0.6334372,0.5774204000000001,0.5210178,0.46247570000000005,0.42316122,0.37767851999999996,0.33225655000000004,0.2896376,0.2452319,0.20461200000000002,0.1738857,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,industry,1 liquids,0.07430152000000001,0.1009245,0.0730875,0.086199,0.1112474,0.1407106,0.17489929999999998,0.2176177,0.2765899,0.3437514,0.42261819999999994,0.5169459000000001,0.6190514,0.725056,0.8391696,0.9327026,0.9085624000000001,1.022609,1.0850629999999999,1.1590070000000001,1.258016,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,industry,2 gas,0.17790501,0.4387343,0.45493481,0.537751,0.66256013,0.8213326499999999,1.0126197000000001,1.2532521500000002,1.52213609,1.8090995899999998,2.1208103299999994,2.4013366050000005,2.6728773949999995,2.9232411980000004,3.043622230000001,3.1277139899999997,3.2391262899999997,2.98365103,2.7788907200000006,2.6218563100000005,2.376343759000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,industry,3 coal,0.08292469999999999,0.14734719999999998,0.1689471,0.2231565,0.2405538,0.279281,0.320947,0.36614199999999997,0.39463000000000004,0.419551,0.44280299999999995,0.42486199999999996,0.407528,0.38911300000000004,0.325102,0.278902,0.251782,0.1831066,0.1413925,0.11297090000000001,0.0840733,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,industry,4 biomass,0.096696602,0.1420315,0.15542609999999998,0.17117065,0.23499303,0.30412805,0.38915659,0.49279554999999997,0.6142146,0.73980727,0.8530425,0.9743809,1.0834015000000001,1.1750691999999998,1.2144605,1.1350934000000001,0.9689684000000001,0.6429076,0.413902,0.27991977,0.16631592,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,industry,5 electricity,0.05531751,0.09991363,0.1086529,0.1592344,0.21827016999999999,0.28288894000000003,0.37822391,0.48658649000000004,0.62170593,0.7918456,0.9886316,1.2191585,1.4594641000000002,1.7109448,2.0322109,2.4000736000000003,2.7977225000000003,3.40704125,3.9040000800000003,4.2759615339999995,4.655293512999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.0011295440000000001,0.002324799,0.00414767,0.00702353,0.01131443,0.017181179999999997,0.02493674,0.0319385,0.0415581,0.055465,0.0728883,0.0946011,0.1214286,0.1572701,0.19423079999999998,0.2328313,0.2513502,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,transportation,1 liquids,0.21350999699999998,0.38381247000000007,0.45341848999999995,0.510906096,0.586333904,0.6707866939999998,0.7639698634,0.8638256903999998,0.9706148082999998,1.083935674,1.1949973049999998,1.3442494699999994,1.511943192,1.703014105,1.8948145400000003,2.0856396050000003,2.1909378050000003,2.2949557050000005,2.350745730000001,2.3747494959999997,2.316174535,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,transportation,2 gas,0.0,0.03616307,0.10518189,0.12248763990000001,0.14719809139999998,0.18001875440000004,0.22600038502999997,0.28683517953000004,0.3644512277,0.4581003053,0.5748595714999999,0.6838787537,0.8003987658999999,0.9239029985999999,1.0493008791,1.1860151409999997,1.3734270159999995,1.541128438000001,1.7235865020000005,1.906269092,2.050096344,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,transportation,5 electricity,1.255997E-4,4.19E-5,0.0,1.214851303E-5,9.60773495E-5,1.9896761052000004E-4,3.7081788660999995E-4,6.32750258624E-4,0.00100983696704,0.0015703763235,0.0023622110817,0.0033297347145999994,0.004647583855,0.0064993965009999995,0.009442450099000002,0.013844668309000005,0.02167309092,0.03362911186,0.05258836592999999,0.08025556639999999,0.11386333180000002,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,transportation,6 hydrogen,0.0,0.0,0.0,0.0,1.01851915E-5,3.7252866400000004E-5,8.31173881E-5,1.59529322E-4,2.7214372429999994E-4,4.540644577E-4,7.372719094E-4,0.001236243961,0.0019921294750000003,0.0031622887020000003,0.004985814666000001,0.007720161061000001,0.01193398298,0.018473512500000004,0.028510758320000003,0.04289773543,0.06241904543,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,building,1 liquids,0.588301,0.3016854,0.26790369999999997,0.28212550000000003,0.2627802,0.28094220000000003,0.2821309,0.2764532,0.2685979,0.2564729,0.2428659,0.2239721,0.20642180000000002,0.1880791,0.1589334,0.1335901,0.1048566,0.0818904,0.0586784,0.0431635,0.02904891,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,building,2 gas,2.3815825999999998,1.762557,1.8189009,1.8105383,1.8236295,1.9679396000000002,2.0586956,2.1039794,2.1162031,2.0883901999999996,2.0354563999999997,1.9736468999999999,1.9114731,1.8363439,1.71644887,1.58976548,1.46675063,1.27431396,1.09953686,0.9405790399999999,0.74825011,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,building,3 coal,1.658079,0.232742,0.1683193,0.1611543,0.09484409999999999,0.0833434,0.0700965,0.0585479,0.0428676,0.0320652,0.024442949999999998,0.01554814,0.01037445,0.00712837,0.0037989499999999997,0.002205103,0.001369818,6.292170000000001E-4,3.30155E-4,1.896733E-4,9.312240000000001E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,building,4 biomass,0.3046985,0.0730037,0.0764363,0.07209578999999999,0.07894885,0.07797594,0.07684231,0.0742447,0.0717684,0.06894307,0.0630512,0.05864898,0.053505170000000005,0.04829369,0.041631055,0.031875982000000004,0.021986506,0.012340289,0.0070504314,0.0043669166,0.0024501679,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,building,5 electricity,0.63153697,0.80470873,1.09742372,1.16360756,1.2473668500000001,1.45144767,1.6888334999999999,1.9006281399999998,2.09426163,2.24163529,2.3531071800000003,2.48110374,2.62556194,2.7609681999999998,2.9373453400000002,3.0814931,3.1945242699999996,3.3731139900000002,3.51130679,3.6044804299999997,3.7580346600000003,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,building,8 district heat,3.990745,2.4137690999999997,2.3949975,2.2845612,2.0805039,2.0504905,1.9945766000000003,1.9172898,1.8019596999999998,1.6820557,1.5624025000000001,1.4148577,1.2839175,1.1624713,1.0070481999999998,0.8658873600000001,0.73666945,0.5718108599999999,0.44483264,0.34759561,0.24940085199999998,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,industry,1 liquids,2.8505017,1.9883918999999999,2.184765,2.2900802000000002,2.2928321,2.3237789,2.3199300000000003,2.3169829999999996,2.3630695,2.403387,2.4442794999999995,2.4979701999999997,2.5451829999999998,2.5796942,2.6076411,2.6251162,2.55676384,2.62416314,2.58491738,2.5657218,2.57299685,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,industry,2 gas,3.363707,3.3279929999999998,3.9936939999999996,3.9978888,3.97777486,4.06775946,4.04722254,3.9986220799999996,3.8755804400000002,3.7493144200000006,3.6171152400000004,3.42710109,3.2430788000000006,3.06213675,2.7612223599999997,2.4987725900000006,2.3197658700000003,1.9530727099999998,1.7386413500000002,1.5907271600000001,1.4137227580000002,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,industry,3 coal,2.1714852000000002,1.5131527,1.7338037000000002,1.7150281,1.4292643399999998,1.3820914800000001,1.30083593,1.22652028,1.1030992000000002,0.99652581,0.90481581,0.7526446200000001,0.6336930699999999,0.5364357599999999,0.38880106999999997,0.28828968,0.22018953000000002,0.133147229,0.08620306100000001,0.058521633,0.0346511053,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,industry,4 biomass,0.04345073,0.11909169,0.10820812,0.10667517,0.12255121,0.13299213000000001,0.13781563000000002,0.14023897000000002,0.14181314,0.14193976,0.13603438999999998,0.13233623000000003,0.12616031,0.11854643,0.10479957,0.08357281,0.06171005,0.03658096,0.022211150000000002,0.014558930000000001,0.008514008,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,industry,5 electricity,2.4058756000000003,1.7063656,1.7454181,1.7681547,1.88949266,1.89879426,2.01149266,2.12527091,2.29172855,2.4480017,2.5934535000000003,2.8158909,3.04441839,3.2660654800000004,3.64402555,3.97637213,4.260119735,4.667032721,4.95226733,5.1131154238,5.3022805145000005,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.015369810000000001,0.025097170000000002,0.03574596,0.04751229999999999,0.0610551,0.07651089999999999,0.09439209999999999,0.1075035,0.1244584,0.14466020000000002,0.1810715,0.2264194,0.2609121,0.326255,0.346296,0.36283,0.36187400000000003,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,industry,8 district heat,4.51044,2.70488,2.68588,2.6429,2.59093,2.628,2.62319,2.59678,2.52119,2.43084,2.33012,2.17994,2.02547,1.86754,1.61199,1.36547,1.14873,0.832811,0.614206,0.461999,0.310023,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,transportation,1 liquids,3.598682,3.2053257,3.60546048,3.6561149100000008,3.5697147399999998,3.7590866899999997,3.9248102699999996,4.036478667,4.10594494,4.10215924,4.040353630000001,3.998939865999998,4.0022553950000015,4.0125933840000005,3.954495484,3.8816343019999997,3.7481330459999995,3.5953143969999997,3.389186104,3.1897073884000005,2.9286108821999997,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,transportation,2 gas,0.046960201,0.00200891008,0.004729429299999999,0.0287821711,0.05924630557,0.11622327754,0.18117198068999998,0.25351591999999995,0.321108986,0.388514168,0.4731439350000002,0.520279265,0.5679958420000001,0.6103961880000002,0.637228496,0.6537669930000002,0.6642632599999999,0.65548534,0.64030933,0.6213957600000003,0.5869689299999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,transportation,3 coal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,transportation,5 electricity,0.2426047,0.2092506,0.2179506,0.22917118825,0.24019398144,0.26477940395999994,0.291945562786,0.3180831486779999,0.34176458487,0.3632182312999999,0.3838125594,0.40529241889999995,0.4315246378000001,0.459811144,0.4922299880000001,0.5259505019999999,0.563565884,0.6078297540000002,0.6630112450000001,0.7234479320000001,0.7903610260000002,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,transportation,6 hydrogen,0.0,0.0,0.0,0.0,5.422206E-4,0.0023280883,0.0047766964000000006,0.00788493953,0.01092684092,0.014449300300000002,0.018566140100000003,0.023587255599999996,0.029795010799999997,0.0368950751,0.045270556699999985,0.05511696850000001,0.06625291699999998,0.08013451199999999,0.096146613,0.11344439599999999,0.13152231499999997,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,building,1 liquids,0.0262462,0.05533895,0.0503995,0.0785453,0.0940533,0.1270486,0.15276,0.1741344,0.1952844,0.20976699999999998,0.22425009999999998,0.2343056,0.2342869,0.2308429,0.2255628,0.2139214,0.1785789,0.1529904,0.1283868,0.11031379999999999,0.09390140000000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,building,2 gas,7.116E-4,2.93E-4,9.209E-4,0.00519043,0.00692584,0.0102751,0.0130891,0.0154672,0.0173026,0.0183135,0.0193161,0.0197579,0.0189816,0.0179634,0.0169608,0.0157483,0.0140816,0.0101989,0.00746069,0.00544513,0.0034209,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,building,3 coal,0.09991965,0.19837479999999996,0.1378031,0.1386615,0.09955773,0.10478425000000001,0.10186492999999999,0.09592729,0.07839974999999999,0.0634667,0.05272807,0.036777729999999995,0.02583195,0.01868123,0.011393170000000001,0.007511377,0.005219889,0.002539062,0.001412638,8.47449E-4,4.5040400000000006E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,building,4 biomass,0.0310183,0.0378833,0.0401437,0.039704,0.0482011,0.0549485,0.0591391,0.0608379,0.059937,0.0569199,0.0521537,0.047054,0.0400814,0.0337954,0.0276684,0.0203861,0.0133483,0.00623252,0.00302976,0.00160169,7.14423E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,building,5 electricity,0.17634375000000002,0.2814237,0.3041112,0.3408818,0.3892838,0.5059457,0.6280501000000001,0.7471872,0.8600197,0.9670542,1.058135,1.1378184,1.2187746,1.2877491,1.335474,1.3738554,1.412447,1.4386132,1.45064,1.4471428,1.4495429,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,building,7 trad biomass,0.233914,0.305578,0.323662,0.325136,0.338574,0.351426,0.36252300000000004,0.373532,0.3859796,0.39734479999999994,0.4087008,0.42006010000000005,0.4294378,0.437199,0.4453363,0.450522,0.4521872,0.4510725,0.4469061,0.4392919,0.4347433,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,industry,1 liquids,0.19000296999999997,0.15944470000000002,0.1831791,0.22537107,0.26589794,0.30986849000000005,0.3512949000000001,0.3927241,0.4410461,0.4877998,0.5350568,0.5853415000000001,0.6312798000000001,0.6737455,0.7124278,0.7407256000000001,0.7386804,0.7539556,0.7600987,0.7707522000000001,0.7794314999999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,industry,2 gas,0.02257948,0.09150445,0.08841911,0.36666604,0.42179861100000005,0.478338012,0.5205974520000002,0.5533819320000001,0.580292021,0.5964491999999999,0.6124005880000002,0.6280351744,0.6266570548999999,0.617222178,0.6059236014999999,0.5909803023999999,0.5714557399999999,0.4970320769999999,0.4226184920000001,0.35325303699999994,0.2676151468,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,industry,3 coal,0.9110977800000001,0.9380253000000001,0.8812772,0.78935176,0.75419971,0.8008265099999999,0.82393833,0.83810618,0.8142138900000001,0.78235353,0.7581275199999999,0.68205102,0.60908054,0.54499337,0.44091097999999995,0.367655785,0.314921586,0.21605499800000003,0.154042683,0.11203315999999999,0.07195159500000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,industry,4 biomass,0.17091411,0.22009988,0.2330342,0.206147705,0.25401524600000003,0.29150088,0.32441143,0.35171042,0.38169767,0.40479506,0.41747528,0.44239539,0.45183323999999997,0.45378672,0.45940084000000003,0.42482241000000004,0.35578293,0.2426791,0.158279673,0.10571923300000001,0.060411369,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,industry,5 electricity,0.32037499,0.43187219000000004,0.44714826,0.40677077,0.40627946,0.41175521,0.43514204,0.46049939,0.49070539,0.5280970700000001,0.55246294,0.58106572,0.63135458,0.6802514500000001,0.72422503,0.7726183900000001,0.8390166800000001,0.99246903,1.114704778,1.204095578,1.3120329705,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,industry,6 hydrogen,0.0,0.0,0.0,0.0,8.45747E-4,0.001521178,0.002338019,0.003320994,0.00458172,0.00607449,0.007967390000000001,0.00979067,0.01158789,0.01373437,0.018044789999999998,0.0230799,0.0278063,0.0356966,0.0439439,0.051215300000000005,0.0507432,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,transportation,1 liquids,0.562205418,0.7680692379999998,0.725939218,0.800442336,0.8329285880000001,0.9231198399999998,1.001519496,1.0698908430000003,1.1250470260000005,1.1678820320000003,1.1886434800000003,1.2249635830000007,1.26018308,1.2931470449999996,1.31314413,1.3249045350000002,1.2898958379999996,1.2518619010000003,1.195980925,1.1336827929,1.0392852503999996,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,transportation,2 gas,0.0,0.0,0.0,0.0078503381,0.019181720699999998,0.0431574318,0.07576449237999999,0.11913103957,0.17010929815,0.22904414289999997,0.3093391846,0.3642492501999999,0.4169305365,0.4674013919999999,0.5143753579999999,0.560653645,0.6172631030000001,0.663105619,0.7099426130000001,0.7518588929999996,0.7680813340000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,transportation,3 coal,0.00196731,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,transportation,5 electricity,0.014360640000000001,0.01955692,0.01247515,0.013250611256800002,0.013934055168560002,0.014937361277059998,0.015933936839375006,0.016838255310864005,0.0176421052886,0.018410481015,0.019028604061000005,0.019703531529000007,0.020578377699999997,0.02152989763999999,0.022427499530000002,0.023548988429999997,0.025452517299999998,0.02832537688,0.03289383175,0.03998488475,0.050170155400000006,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,transportation,6 hydrogen,0.0,0.0,0.0,0.0,1.5815962E-5,6.7909775E-5,1.422333571E-4,2.480271564E-4,3.7137817129999996E-4,5.373807409999998E-4,7.70551436E-4,0.0010837165940000002,0.00147153578,0.001960857562,0.002681209804,0.003644000847,0.004978948889000001,0.00687143843,0.009720302089999999,0.013605081810000001,0.018577284560000004,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,building,1 liquids,0.0888535701,0.07287971951000001,0.051679080509999996,0.04984346242,0.03349673377,0.038453187400000005,0.04268806749,0.046626964980000005,0.04952051909,0.05203809651,0.05541683843,0.05601971854,0.0554817115,0.05366507543,0.04704136596,0.04071007685,0.03309740406,0.025900859779999997,0.018976952053000002,0.014258322161000002,0.009616994787999997,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,building,2 gas,0.02555590109,0.0665322059,0.06459767129999999,0.0486994978,0.0341673653,0.039834909,0.0452494549,0.0502724899,0.052695927700000006,0.0545637348,0.0570518027,0.0563469843,0.05442389610000001,0.05142388009999999,0.0436312725,0.0365654933,0.031061628700000003,0.02210026065,0.01640998447,0.01247736432,0.00828629921,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,building,3 coal,1.72E-5,3.34999E-5,5.0E-5,3.83605E-5,1.7828E-5,1.72719E-5,1.64918E-5,1.56211E-5,1.26555E-5,1.04348E-5,8.92487E-6,6.21206E-6,4.48605E-6,3.31044E-6,1.85304E-6,1.12285E-6,7.32212E-7,3.43923E-7,1.86834E-7,1.11157E-7,5.53749E-8,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,building,4 biomass,0.0053866009999999995,0.0071071050999999994,0.0074292477,0.0059493061,0.0052349556,0.0057848382,0.0062845882999999995,0.0065873977,0.0064441185,0.0062098994,0.0058072998,0.0051731281,0.0044966046,0.00384851879,0.0028852496600000003,0.00195632314,0.00123281332,5.713790600000001E-4,2.85058895E-4,1.590925E-4,7.599265900000001E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,building,5 electricity,0.10319879879999999,0.171635714,0.210287947,0.20619238840000004,0.1605742412,0.1964277234,0.2376763745,0.2849039301,0.3374280077,0.395256119,0.452785612,0.512972705,0.57578007,0.637245877,0.697416752,0.752882279,0.800642161,0.8458046610000001,0.879303863,0.9014181309999999,0.9221138360000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,building,7 trad biomass,0.017020091199999997,0.0220903096,0.0231320917,0.0220926234,0.0237500032,0.023711831,0.0235467798,0.0232500702,0.022497609300000002,0.0213021067,0.020226639,0.0192353214,0.0179198146,0.0163853068,0.0149378053,0.0132696155,0.0117468833,0.0101881221,0.0087990641,0.007531786699999999,0.006365063,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,industry,1 liquids,0.15314626,0.28261492,0.516244,0.5853713,0.5413910000000001,0.5913886,0.6341874,0.6735720000000001,0.7114108,0.7462166000000001,0.7857383,0.8137645,0.8350955,0.8492866,0.8358627000000001,0.8198257999999999,0.7873481,0.7604401000000001,0.7242329000000001,0.7035914,0.6807959000000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,industry,2 gas,0.55030897,0.72586358,0.4740083399999999,0.41267395,0.379763795,0.41035619200000006,0.436732685,0.455590197,0.457657636,0.4548779519999999,0.4520291669999999,0.4370095009999999,0.41671822000000003,0.39231497700000006,0.349040386,0.30862471799999985,0.28122062999999997,0.22967063799999995,0.1979218056,0.1739969831,0.1471725838,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,industry,3 coal,0.019381080000000002,0.00154882,0.00833015,0.008191956,0.005506125999999999,0.0056366160000000005,0.005740971,0.0058095510000000005,0.005300284,0.004862387,0.004497539,0.003639006,0.0030456899999999998,0.002603276,0.001904433,0.001495845,0.0012982857,8.937344E-4,7.073586E-4,5.809312E-4,4.4442879999999997E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,industry,4 biomass,0.01894989,0.02406889,0.02091007,0.01842856,0.01871275,0.02127655,0.02401957,0.026374500000000002,0.028131950000000003,0.02953774,0.029944639999999998,0.030427670000000004,0.0302932,0.029714,0.027908500000000003,0.02382708,0.01935326,0.01248268,0.00852844,0.00624567,0.00425839,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,industry,5 electricity,0.09501386,0.14124471,0.15445955,0.18292569,0.19553661800000002,0.21802701,0.24447949,0.27282854999999995,0.30810519000000003,0.34435433000000004,0.36975833999999996,0.40435707000000004,0.44219130000000006,0.48159773,0.541438086,0.5974872760000001,0.6504916099999999,0.7170794920000001,0.7753166786,0.8112480716000001,0.8599200788,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.00462355,0.00816035,0.0126208,0.017936999999999998,0.02381751,0.030786400000000002,0.039513099999999995,0.045809699999999995,0.05406,0.0637892,0.0803332,0.1025462,0.1230874,0.1571382,0.1698425,0.1824614,0.1807133,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,transportation,1 liquids,0.4714198560999999,0.6944513426000002,0.8181829919,0.8008321399999999,0.6935932297999997,0.7228820153,0.7519552415000004,0.7767871045,0.8043785659999997,0.8236793055000002,0.8175992762999997,0.8321759451000003,0.8487930401000002,0.8630127361,0.8675760349800001,0.8698593246900004,0.85797284418,0.83889076999,0.8052471849300001,0.7638142788500002,0.7049330478900002,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,transportation,2 gas,0.0,0.0055667320000000005,4.1855030000000006E-4,0.0086197417,0.0149338239,0.04303259259999999,0.08486535048999996,0.13984108160000008,0.2018528457000001,0.27177322689999994,0.37096982519999994,0.4253158250000001,0.47712277699999994,0.5274838289999998,0.5679875699999999,0.603913061,0.6422497709999999,0.66085371,0.6810892329999997,0.7021566900000001,0.706359196,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,transportation,5 electricity,0.001006994,9.483949999999999E-4,0.001105594,0.0022068906899999994,0.0031006630049999996,0.005130753778999999,0.007411219728,0.010103934019099996,0.01287454681,0.01630383713,0.020694827430000007,0.025370054859999998,0.030192811599999994,0.035224688649999995,0.04118460510999999,0.04792874210999999,0.05557741186000001,0.06460265666000001,0.07548800903000003,0.08767982027999999,0.09916841247,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,transportation,6 hydrogen,0.0,0.0,0.0,0.0,1.2205219999999999E-4,9.882355399999999E-4,0.00213616627,0.003599999978,0.005059157061,0.0068071571999999995,0.00898292216,0.0114570107,0.014374169669999999,0.017749838399999995,0.0220072576,0.027090627099999993,0.0327633022,0.0393953492,0.0469425477,0.05500079690000001,0.0634300804,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,building,1 liquids,0.1301009,0.153752,0.1743053,0.1984207,0.2111849,0.2435741,0.2613477,0.2740056,0.285087,0.2928357,0.2971784,0.2909495,0.2800499,0.2645736,0.2316926,0.19926480000000005,0.16190388,0.12890169,0.09432323,0.06977741,0.04775033,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,building,2 gas,0.0103813001,0.020929899000000002,0.028673999999999998,0.035591854,0.038841571,0.04606119400000001,0.051005842,0.054630908000000006,0.056078100000000006,0.056752781999999995,0.05657167,0.053792368,0.050131612,0.045902785,0.038285016100000006,0.031524497299999996,0.0264796709,0.018588554700000003,0.0134999428,0.009961883300000002,0.00658219696,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,building,3 coal,0.0010465,1.675E-4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,building,4 biomass,0.0254091,0.015069599999999999,0.0168277,0.017801965000000003,0.019207803,0.019920432999999998,0.020065898,0.019524233000000002,0.017980819999999998,0.016324472,0.013955307,0.011587996,0.009426948,0.0075850596,0.005456028700000001,0.003503489,0.0020981098,9.157544999999999E-4,4.3114898000000005E-4,2.2623329E-4,1.0477308E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,building,5 electricity,0.10551391,0.21653306,0.2750106,0.3483882,0.41358079999999997,0.5176151,0.6461825,0.7822416000000001,0.9218156,1.0695489,1.2200651,1.3651839000000001,1.5121783,1.6598926,1.8081413,1.9469473,2.0672290999999996,2.1720931,2.2564857,2.3125371,2.3610208999999998,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,building,7 trad biomass,0.2725087,0.2679878,0.3247083,0.3087841,0.3047936,0.2828474,0.2589216,0.2361927,0.2166169,0.1967645,0.176867,0.1622295,0.1462829,0.1295812,0.1172996,0.10322999999999999,0.0913624,0.07979800000000001,0.0688768,0.05815877,0.04990274,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,industry,1 liquids,0.1967838,0.290257,0.34224740000000003,0.4016035,0.44139249999999997,0.5104434,0.5593584,0.6047039,0.6565833,0.7051217999999999,0.7528315,0.79470792,0.8296362500000001,0.85972562,0.8728262699999999,0.8877389299999999,0.888336,0.9222295399999999,0.93756575,0.962368394,0.993861308,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,industry,2 gas,0.06932975,0.18659275,0.20529212,0.25789983,0.284588036,0.33111254999999995,0.36707577300000005,0.3963698769999999,0.413217972,0.424836643,0.432582577,0.4257180700000001,0.41326265899999987,0.3980286469999999,0.362158406,0.33264039500000003,0.31920088699999993,0.2746977775000001,0.25281644819999993,0.2365258702,0.21276590265999998,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,industry,3 coal,0.04035313,0.0701991,0.054418,0.0688549,0.0606191,0.064514,0.0658549,0.06592590000000001,0.0611747,0.05647,0.0521442,0.0430124,0.03568151,0.02969029,0.0206555,0.014931670000000001,0.01154038,0.006972539999999999,0.00475253,0.0034429400000000002,0.002298158,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,industry,4 biomass,0.12105912,0.1723377,0.21725330000000004,0.2491866,0.2996985,0.3533094,0.38265489999999996,0.4011566,0.4137492,0.4186747,0.4052017,0.3919777,0.3674052,0.33769699999999997,0.28706349999999997,0.2223837,0.1638478,0.09494795,0.057932,0.03841148,0.023499397,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,industry,5 electricity,0.13557943,0.26741949,0.30462776999999996,0.3742591,0.42592501,0.49567394,0.5923565,0.68771105,0.77833593,0.86460435,0.94546625,1.03205218,1.11475503,1.19255039,1.28482475,1.3640888070000001,1.432481182,1.493814791,1.5525570208,1.5847366743999998,1.621459952,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.02349474,0.0433524,0.0664321,0.09311,0.1241513,0.1600906,0.2002554,0.2258043,0.256338,0.2897316,0.340113,0.400357,0.44511100000000003,0.519876,0.52528,0.527278,0.513645,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,transportation,1 liquids,0.4360760169,0.8188218147,1.1318187618000002,1.2796359903,1.3727488048999998,1.5103845012,1.6279948619000002,1.7196977724999991,1.7985768931999992,1.8576882343999996,1.8794392652000003,1.9148457566700003,1.9509815095399998,1.9882242234500007,2.003781428190001,2.014908297810001,1.9913638675300005,1.9552430845499993,1.8862163854800007,1.8042566612199997,1.6835775065369993,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,transportation,2 gas,2.5107E-4,0.006278254999999999,0.0320192,0.050086776,0.073918211,0.12154086499999997,0.19046082299999995,0.282687918,0.39472133500000006,0.5239868830000001,0.6925093700000001,0.8034856579999998,0.9071888000000001,1.0049314020000002,1.0890017599999997,1.1659178300000002,1.2523538700000003,1.2949664399999996,1.3438920600000008,1.3959877200000002,1.4139122499999988,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,transportation,3 coal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,transportation,5 electricity,0.0012762799999999999,0.00129868,0.0020444729999999998,0.004609542118999999,0.00893801976,0.013731335582000001,0.019302626962000004,0.025750072317999997,0.032867892960000006,0.04130107409000001,0.05134354221999998,0.06180506967,0.07236844298,0.08329377044999998,0.09585116007,0.10984638177000002,0.12554512677999996,0.14360625386999998,0.16522172368000004,0.18939436389,0.21202019116,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,transportation,6 hydrogen,0.0,0.0,0.0,0.0,6.316896200000001E-4,0.00228757541,0.0046492761299999985,0.0077125797399999994,0.01111954982,0.015018766270000001,0.01940841255,0.024331706299999995,0.030067921100000002,0.036692799,0.044859985,0.054491833499999996,0.06508196459999999,0.0772254156,0.09076442500000001,0.10499936400000001,0.119876993,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,building,1 liquids,0.054633970000000004,0.0732849,0.06141538,0.07740810000000001,0.0985636,0.12789599999999998,0.15554579999999998,0.1835197,0.2160401,0.2515921,0.290924,0.32780699999999996,0.3681052,0.40753419999999996,0.4312973,0.45048839999999996,0.4187685,0.4206997,0.40451349999999997,0.39537920000000004,0.3819422,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,building,2 gas,0.018148578,0.061061769999999994,0.09557380000000001,0.13708400999999998,0.18410819999999997,0.2474906,0.3101174,0.37249209999999994,0.4298433,0.488309,0.5478021,0.5916218999999999,0.6354568,0.6717841999999999,0.6702977999999999,0.6808864000000001,0.7100986999999999,0.6200933000000001,0.5430729,0.4773174,0.39045820000000003,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,building,3 coal,6.02201E-4,4.19E-5,4.19E-5,5.047E-5,3.58951E-5,3.55792E-5,3.38352E-5,3.17706E-5,2.62356E-5,2.20317E-5,1.87261E-5,1.33071E-5,9.95354E-6,7.61299E-6,4.65163E-6,3.12681E-6,2.24096E-6,1.15479E-6,6.46351E-7,3.83247E-7,1.93038E-7,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,building,4 biomass,0.00328211,0.0104303,0.0122853,0.01273646,0.01402676,0.01506806,0.01556885,0.015674360000000002,0.01519058,0.0146115,0.013418719999999999,0.01203293,0.010749,0.0094944,0.00766573,0.00574751,0.00398471,0.00200858,0.0010368830000000002,5.859540000000001E-4,2.872023E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,building,5 electricity,0.02245927,0.0759209,0.11322211999999998,0.162852,0.2261237,0.3031757,0.4027746,0.5168756999999999,0.6506122,0.8046959,0.9797399,1.1743658,1.3890882,1.6350663,1.905936,2.1825885,2.479725,2.846104,3.239877,3.625491,4.028044,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,building,7 trad biomass,0.7144003,0.8983964,0.9657846,0.9093043,0.8663953,0.8018878,0.7308076,0.6658622,0.6125275,0.5590419,0.5056018,0.4667343,0.426852,0.38340060000000004,0.35851910000000003,0.3340472,0.3149119,0.2947905,0.2684896,0.24050670000000002,0.228576,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,industry,1 liquids,0.036071800999999994,0.09899977,0.10556119,0.14049822,0.19186372999999998,0.26172639,0.3287417,0.3982645,0.4841815,0.5780114,0.6812285,0.7991933999999999,0.9278944000000001,1.0554270000000001,1.1756376,1.2797444,1.2374007999999999,1.3541962,1.4167983,1.4983465,1.6064104,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,industry,2 gas,0.065176001,0.13604497999999998,0.12779869,0.18285706000000002,0.25544299,0.35312716000000005,0.46136435,0.57890434,0.7027824999999999,0.83603898,0.975300492,1.1063130060000002,1.239439571,1.3679247989999994,1.4476441660000001,1.5337152189999999,1.6744119090000005,1.641016426,1.6425165379999997,1.645672979,1.5898646751000003,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,industry,3 coal,0.01806101,0.0366185,0.0484522,0.075372,0.0911072,0.119305,0.1472781,0.1759106,0.19768950000000002,0.2199412,0.2398464,0.2353727,0.22857650000000002,0.2196437,0.18495889999999998,0.1612857,0.1501294,0.11382819999999999,0.0926472,0.07794670000000001,0.06218569,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,industry,4 biomass,0.0354933001,0.076563997,0.08441169899999999,0.109301305,0.16128853199999998,0.22375204999999998,0.28717528000000003,0.34957551,0.41292656,0.47445337,0.51970273,0.5687244,0.6125022999999999,0.6407219,0.6320905,0.5780826,0.4895991,0.311253,0.19282849999999999,0.12619725,0.07353433,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,industry,5 electricity,0.022735304,0.07382385,0.11970438,0.19898800000000003,0.301453069,0.42805276,0.5991681200000001,0.7964370399999999,1.02447346,1.2746184500000002,1.5411065800000001,1.8421245,2.1368272,2.4418183,2.7749635,3.0764724,3.38329404,3.72494286,4.02897052,4.256349116,4.484236412,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.0133428,0.02940681,0.052417700000000005,0.0838699,0.1257527,0.1794631,0.24469059999999998,0.2963524,0.3659507,0.456868,0.5597460000000001,0.700971,0.8834660000000001,1.089709,1.259929,1.398758,1.441489,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,transportation,1 liquids,0.107439487,0.249720797,0.33080692999999994,0.4055400809999999,0.49261469199999997,0.5890852679999998,0.6826026236000002,0.7706880894999996,0.8578521871000001,0.9445206700000003,1.0264305029999996,1.1341408469999996,1.2542065861000002,1.3878738671000002,1.5152527620999994,1.6420776697,1.7045510189999993,1.7694869510000006,1.801575994,1.815147887,1.7711621319999993,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,transportation,2 gas,0.0,0.0033485453,0.038590551,0.051881806899999994,0.070136212,0.09588118829999999,0.12975018102,0.17288851491999996,0.22707893319999997,0.292529614,0.3749774407,0.4515784112,0.5324053039,0.6165371665,0.7025943329,0.7989417433000002,0.9431784399000002,1.0724766877,1.2191565340000003,1.3695673769999999,1.4959080760000005,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,transportation,5 electricity,0.0,4.49986E-5,0.0,8.298642910000001E-6,8.780309722000001E-5,1.9007762768000002E-4,3.5992136473999995E-4,6.211167808829999E-4,9.931985224E-4,0.0015154731627000004,0.00223060756,0.0030715002497,0.0041768740180000005,0.005699667110000001,0.008107066575,0.011487065451000002,0.01740402465,0.025887213039999996,0.03918423248,0.05860625779999999,0.0822372134,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,transportation,6 hydrogen,0.0,0.0,0.0,0.0,9.257491200000001E-6,3.41430584E-5,7.517064950000001E-5,1.392146551E-4,2.3136510670000002E-4,3.7140164120000004E-4,5.794191163E-4,9.338278060999999E-4,0.001448993719,0.002212825848,0.003356860262,0.00505005288,0.007645460701000001,0.01163452969,0.01767416491,0.026195235589999998,0.03765757485000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,building,1 liquids,0.4201908,0.44006429999999996,0.3184006,0.3338822,0.35690489999999997,0.37259909999999996,0.3713894,0.3622326,0.3528734,0.3381086,0.32011,0.2981704,0.274233,0.24861750000000002,0.2142904,0.178432,0.1270296,0.10166810000000001,0.07614989,0.0579079,0.04041683,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,building,2 gas,0.025367096,0.48277591,0.5273668,0.58711459,0.6402090199999999,0.69404229,0.7218213400000001,0.7278115199999999,0.7069374099999999,0.67465582,0.63394273,0.5805456,0.52349326,0.46678942,0.396946173,0.33753792499999996,0.29386098600000005,0.224315823,0.172930015,0.133566979,0.09290090640000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,building,3 coal,0.3627172,0.039934399999999995,0.0357903,0.0372034,0.023409100000000002,0.02033695,0.01731316,0.01462396,0.010867310000000002,0.00818142,0.00620857,0.003952665,0.002629197,0.0017956040000000001,9.67909E-4,5.6328E-4,3.499662E-4,1.626552E-4,8.58276E-5,4.93677E-5,2.453285E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,building,4 biomass,0.0183765,0.015305199999999998,0.0284942,0.027064163999999998,0.027022815999999998,0.025487864000000002,0.024132533,0.022328070999999998,0.019904203000000002,0.017548804,0.014603532,0.012042402,0.009855238,0.008035943,0.006093323,0.004157234,0.0026592399,0.0012779682,6.501500000000001E-4,3.6583215E-4,1.8232253E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,building,5 electricity,0.12284753,0.589635,0.7525306,0.8462655000000001,0.9578087,1.0536075,1.1286802,1.1780237,1.2044745,1.2131337,1.2053098,1.1907535,1.1677399,1.1398894,1.1258907,1.1059787,1.0880432999999998,1.0762812,1.0557452,1.0255883000000001,1.0023001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,industry,1 liquids,0.8011166,1.7973961999999999,2.0111908,2.0376698,2.0772582999999996,2.0896067,2.0732143,2.0368211,1.9893819,1.9218981,1.8409156,1.7508154,1.6511253,1.5462221,1.4221823,1.2978985000000003,1.1464860000000001,1.04770202,0.95402677,0.87752417,0.80388308,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,industry,2 gas,0.004186,0.2131205,0.3077273,0.32047471,0.34003251170000004,0.3526276912,0.35710767930000004,0.35511371399999997,0.3454466536,0.3300672410999998,0.3108989830500001,0.28949991439999995,0.26313783475,0.23465687274999994,0.1965865605,0.16424914629999998,0.13912605199999994,0.10334393900000001,0.07894219830000002,0.06230054249999999,0.04637251059999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,industry,3 coal,0.5766204,0.819407,1.0418972999999998,1.128624,0.9567593,0.940727,0.8999659,0.8523282000000001,0.75381972,0.6627745599999999,0.58094903,0.46194633,0.37000283,0.29739666,0.20431704000000003,0.14606776,0.11111549,0.06640485,0.043682928999999995,0.030604384,0.019754516,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,industry,4 biomass,0.01142769,0.07017287,0.09122543000000001,0.09497453,0.11252753,0.12129759,0.12919461,0.13422847000000002,0.13834247,0.13950063000000001,0.13410977999999998,0.13136757999999998,0.12435070000000001,0.114758,0.10016174,0.07898925,0.05779115,0.033305358,0.019514,0.012394896,0.0071117049,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,industry,5 electricity,0.2133295,0.6863393999999999,0.8574934000000001,0.8876776000000001,0.9632383546,0.9888740842,1.0233865940000002,1.0490361810000002,1.0769998299999999,1.093597681,1.0997406829999998,1.12717301,1.14510216,1.1531825500000001,1.19702291,1.22563063,1.24710825,1.273332433,1.271258618,1.2491475029999999,1.2377817757,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.03229977,0.0539443,0.0786506,0.1059464,0.1355094,0.1657987,0.1952544,0.2038486,0.2152439,0.2361054,0.2497666,0.2664237,0.2836933,0.305176,0.322532,0.33945400000000003,0.337338,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,transportation,1 liquids,0.68469438,1.7182592399999999,1.7269824599999999,1.83994049,1.9546547399999996,2.0439760000000002,2.096457439999999,2.112075296999999,2.107513359999999,2.078148299999999,2.0187349399999994,1.97153311,1.9161033500000004,1.85810122,1.78906456,1.7157109499999998,1.61963485,1.5347931299999995,1.44486854,1.36128503,1.2719554999999998,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,transportation,2 gas,0.0,0.013561670500000001,0.04281960640000001,0.06127255639999998,0.08489093679999997,0.11550981489999998,0.14766404320999996,0.18118691000000003,0.21125899599999998,0.24075574100000002,0.27460811900000004,0.294309432,0.30924513700000006,0.3196521309999999,0.32700959400000007,0.330993329,0.336246727,0.335052425,0.33084371700000015,0.323241433,0.3133711520000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,transportation,3 coal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,transportation,5 electricity,0.0036425700000000004,0.00936098,0.00787093,0.010447555260000001,0.013559638650000002,0.017037138139999998,0.02051105148600001,0.024008988054999993,0.027217956499999998,0.030594288600000002,0.03411988069999999,0.0368628272,0.03927550199999999,0.041504286499999994,0.0441770228,0.04737217600000002,0.051964658000000004,0.057704080999999983,0.06492280499999999,0.07310824700000002,0.08097305499999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,transportation,6 hydrogen,0.0,0.0,0.0,0.0,4.086525E-4,0.0013530903999999999,0.0026010893,0.004128140000000001,0.00561337565,0.00725611915,0.008937589320000001,0.010630681800000001,0.012371989500000003,0.0142392109,0.0163197665,0.018680938899999992,0.0216222769,0.025123358899999997,0.029226216800000003,0.03370319809999999,0.0386111642,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,building,1 liquids,0.145745179,0.2975683,0.36778350000000004,0.44285325,0.54919791,0.6935720700000001,0.80902607,0.91479105,1.0291549500000001,1.14023769,1.2473987599999998,1.3190281000000001,1.3713633,1.3991544999999999,1.3142871,1.20896149,1.02664467,0.8427539500000001,0.6561485,0.52401745,0.37568948,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,building,2 gas,0.007363999996,0.0076224,0.010142699999,0.01343266219,0.01687841126,0.02196187144,0.026464559749999998,0.030700133080000004,0.03431918206,0.03763900667,0.04055351629,0.041857522529999996,0.04231749601,0.04196033021,0.03770869384,0.03368990131,0.03056567037,0.023491393489999998,0.01869237956,0.015207326799999999,0.01087529237,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,building,3 coal,0.183440898,0.206412499,0.1968259,0.21925011000000003,0.168264927,0.165675235,0.15618631100000002,0.14431373,0.119490916,0.098954412,0.081967531,0.056887824000000003,0.040532106,0.029454907000000002,0.016436719199999998,0.0099343143,0.006505254000000001,0.0031081759,0.0017123587,0.0010320427,5.298115000000001E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,building,4 biomass,0.272675769,0.2479129,0.28898999999999997,0.32523324600000003,0.37648605000000007,0.42371135,0.45562182,0.47236363,0.46878558000000004,0.45726412,0.4224621,0.38006587,0.3347991880000001,0.290766052,0.225441164,0.15857527200000002,0.10416734399999998,0.051059738,0.0267495788,0.0156188622,0.0079096036,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,building,5 electricity,0.23937819997999998,0.67570959999,0.928389,1.1690287114,1.4653516893,1.7911134357999998,2.2041846185,2.6445225966,3.1035076756,3.5884053088,4.0867796419,4.571394933900001,5.0745661296,5.592850586,6.142422158,6.675566486,7.1707951990000005,7.609065682999999,7.967927013000001,8.214319259,8.45666402,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,building,7 trad biomass,1.20571901,1.2835728,1.3275854,1.3035938999999999,1.2864323,1.24845289,1.18150544,1.11271154,1.05734982,0.99556445,0.9303442599999999,0.8849939800000001,0.82938355,0.76402548,0.71098492,0.65036153,0.59832264,0.5485669999999999,0.5005338,0.4533385,0.4112929,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,industry,1 liquids,0.677915883,1.8502666399999999,2.37940917,2.830972957,3.4163794805000003,4.008498028399999,4.5210528684,4.9770530236,5.433687651,5.83420219127,6.184509365559999,6.47442916635,6.700766358779999,6.872972418570001,6.932187,6.919263,6.6896249999999995,6.521466,6.209052,5.946390999999999,5.628546999999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,industry,2 gas,0.1642166,0.9714824,0.9065112,1.14480187,1.38326686,1.6481375800000002,1.8707912500000001,2.06348144,2.21279555,2.325625069999999,2.410509890000001,2.436718464,2.4212094589999995,2.373361464,2.2172625200000002,2.0706090049999997,1.97982799,1.6939661400000001,1.468439079,1.276669548,1.0190421384,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,industry,3 coal,1.0184368,1.0654502000000001,1.3361501,1.69802662,1.7330744999999999,1.9310387100000002,2.0736023699999997,2.1829749400000003,2.169652010000001,2.1327233880000005,2.0871234039999993,1.8663146110000004,1.674101624,1.5025951979999996,1.1761351332,0.9555113960000001,0.8175074185700001,0.579205530957,0.4389879776728001,0.3435623587013399,0.245184246503574,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,industry,4 biomass,0.692809,0.8231203,0.9243520999999999,1.0252759,1.3578385,1.6552575,1.9350509999999999,2.1811055,2.4241106,2.6306365,2.7347382999999996,2.866032,2.926848,2.9343500000000002,2.8338680000000003,2.508903,2.082009,1.412321,0.9551862,0.6811751,0.4337959,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,industry,5 electricity,0.22067319999999999,0.5629354,0.7494938,0.9317413999999999,1.12636034,1.2644361000000002,1.4870952999999998,1.7164599,1.9475142,2.1767557,2.4062999,2.6636744,2.9432524,3.2437736,3.74929347,4.3043551099999995,4.892123499999999,5.740534090000001,6.433408321,6.900392083999999,7.489152139,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.01113433,0.02164398,0.03536635,0.052720199999999995,0.0751359,0.10322010000000001,0.1377466,0.1681968,0.20675369999999998,0.2536039,0.33137300000000003,0.42008799999999996,0.498456,0.627849,0.716355,0.815315,0.885608,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,transportation,1 liquids,1.7296148199999997,3.7538321600000004,5.173132700000001,5.70984086,6.322562593999998,6.988455605,7.599214425,8.147433731000003,8.640357599,9.091735621999996,9.456631201000002,9.899476632999999,10.343318462000001,10.791150412999999,11.088702554000003,11.343673879000008,11.365102487000007,11.275428195999998,11.013533865000001,10.71307961199999,10.147961803000003,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,transportation,2 gas,4.179575E-5,0.008078178,0.07806096000000001,0.12081263899999997,0.187474954,0.2961250252000001,0.45015703469999996,0.6575862340999998,0.9141632458999998,1.2175213043999997,1.6149081294,1.9211585509999998,2.2185593949999998,2.503273163999999,2.7552941349999993,2.992139263999999,3.2697585399999993,3.481943695,3.7243785519999997,3.9789993040000016,4.156024411,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,transportation,3 coal,5.86271E-4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,transportation,5 electricity,6.70882E-4,0.001947758,0.00757753,0.008568758355780002,0.010229255165049998,0.011932980778258004,0.014026185436861998,0.016460252219361003,0.0193382302162,0.022663743487000003,0.026641001738999998,0.031052345698,0.036330642127999996,0.042642555029999994,0.05198459204999999,0.06392517479000003,0.08160874475999999,0.10648318390000001,0.1416321801,0.18673617589999997,0.23827603900000002,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,transportation,6 hydrogen,0.0,0.0,0.0,0.0,8.913961599999999E-5,3.1497155700000004E-4,6.4626743E-4,0.0011182314829999997,0.0016788626268000005,0.002422739193,0.003406334099,0.0049273907030000005,0.006902087263000001,0.009478655968000002,0.01301084826,0.01764116621,0.02363796483,0.03207990621,0.0436820562,0.0586076245,0.07702330149999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,trn_pass_road_bus,1 liquids,0.02612441,0.06574529999999999,0.09937679999999999,0.1168992,0.1332689,0.138895,0.1431962,0.14454119999999998,0.1446712,0.1443362,0.1417083,0.13677640000000002,0.1320823,0.1258898,0.1167214,0.1076729,0.09796679999999999,0.0894118,0.0804234,0.07228709999999999,0.064872,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,trn_pass_road_bus,2 gas,0.0,0.0,0.0,0.00663536,0.01542115,0.024276230000000003,0.0336431,0.0427679,0.0516013,0.0602913,0.0678404,0.0739927,0.0796606,0.0837441,0.0851538,0.0857155,0.0865963,0.08548,0.08473510000000001,0.08358209999999999,0.0828407,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,building,1 liquids,0.08824089,0.09703159,0.0897061,0.10451089999999999,0.1233325,0.1354786,0.13851829999999998,0.1386642,0.1396837,0.13795469999999999,0.1340674,0.1291459,0.1240318,0.1215521,0.11655852000000001,0.10887702000000002,0.09278255000000002,0.08660802999999999,0.07956643,0.07416789,0.07021795,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,building,2 gas,0.022311393,0.040813510000000004,0.04638091,0.05773691,0.07227644,0.08282948,0.08833201,0.09134081000000001,0.09176897,0.08988526000000001,0.08592961,0.08071488,0.07525802,0.07167836,0.06598594,0.060293030000000004,0.05867122999999999,0.048687600000000004,0.04352739,0.039617400000000004,0.03577722,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,building,3 coal,2.512E-4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,building,5 electricity,0.11036494,0.3137887,0.3250402,0.4371833,0.5334279,0.5989831,0.6385018,0.6659248,0.6834751,0.6886105,0.6828234,0.6698184999999999,0.6574411,0.6619455000000001,0.6679095,0.6720919000000001,0.6746272,0.6738419,0.6674191,0.6569208,0.6487805,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,industry,1 liquids,0.40834463,0.90940835,1.07257871,1.04583981,1.0514602499999999,1.04751899,1.03408743,1.01920239,1.01015152,0.99803421,0.9838206999999999,0.96863119,0.94988752,0.93109857,0.8975328899999999,0.8519409299999999,0.77432375,0.7283094999999999,0.68326691,0.6485223299999999,0.6134985000000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,industry,2 gas,0.0154882,0.0411484,0.047092499999999995,0.05680039,0.06380362,0.0683925,0.0716273,0.0741678,0.07694809999999999,0.07867299999999999,0.0791201,0.0801331,0.07906429999999999,0.0769093,0.0702806,0.06109492,0.05256733,0.0370424,0.02726877,0.02077048,0.013950386,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,industry,3 coal,0.2587376,0.6617664,0.7448994,0.6132567,0.5647997,0.5849626,0.5791829000000001,0.5696857000000001,0.5361584,0.4995148,0.4610012,0.3856255,0.3232136,0.27340646999999996,0.19335991,0.14148372,0.11024134999999999,0.06728972999999999,0.04675277,0.034992,0.024372918,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,industry,4 biomass,0.0,0.0012139,0.002093,0.0021246,0.00254971,0.0027526,0.00295486,0.00312375,0.0033364,0.00351774,0.00356389,0.00373518,0.00380762,0.00382565,0.00370331,0.00316177,0.00244967,0.00143848,8.60127E-4,5.57616E-4,3.15877E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,industry,5 electricity,0.16508645,0.40165094,0.45714601,0.5613745099999999,0.583909141,0.582862208,0.596898348,0.6122712029999999,0.6294051639999999,0.648230288,0.668507385,0.697915406,0.7267149599999999,0.75709594,0.81067316,0.86665238,0.92944022,1.0024567229999999,1.0522748739999999,1.0868648418,1.1268039977000002,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,industry,6 hydrogen,0.0,0.0,0.0,0.0,3.4713750000000003E-4,5.83705E-4,8.62123E-4,0.001188746,0.001594323,0.002066769,0.002595674,0.002958039,0.00342541,0.00416037,0.005001,0.00589125,0.0067805899999999995,0.00752622,0.008329739999999999,0.0092855,0.009463840000000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,transportation,1 liquids,0.3720112400000001,0.72623976,0.7443938299999998,0.7654389149999999,0.7844096440000002,0.7990318089999998,0.7988409328999999,0.7916952565000002,0.7776013797000004,0.7548078819999999,0.7150182861000002,0.6921976700999996,0.6710364089000004,0.6626011175999998,0.6476041112999998,0.6293247944999997,0.5895339889000001,0.5525295540999998,0.5093103812999998,0.46852797179999994,0.42050247529999996,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,transportation,2 gas,0.0,0.0,0.0,0.0073544215000000005,0.0181994222,0.03418958689999999,0.05507173528,0.08294542860999998,0.11448322860000001,0.147704563,0.19349600479999998,0.2122095751,0.22856574170000002,0.2476401662,0.26301596060000004,0.2770852611999999,0.29826252340000015,0.31068614879999984,0.324253775,0.33561297769999987,0.33816906100000005,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,transportation,3 coal,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,transportation,5 electricity,7.117860000000001E-4,0.001880965,0.00418053,0.004740012160628,0.00527671916471,0.005791602226740001,0.00635452145023,0.006970462371314998,0.007549210403969999,0.008128743810600003,0.008710666752900005,0.0092055993925,0.009779959108399997,0.010674688629999997,0.011975256880999999,0.013795267698000003,0.017145396397999998,0.021289043805999996,0.026271673280000005,0.03105238227000001,0.03596873651999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,transportation,6 hydrogen,0.0,0.0,0.0,0.0,6.906826E-6,2.3999432600000003E-5,4.6042463E-5,7.63162971E-5,1.050284499E-4,1.393749801E-4,1.8295157259999998E-4,2.3346589789999999E-4,2.916766932E-4,3.722400132E-4,4.761139000000001E-4,6.098215599999999E-4,7.978203240000001E-4,0.00107565583,0.001468935389,0.00196348659,0.0025429181200000003,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,building,1 liquids,1.995717,1.903792,1.538606,1.521788,1.577534,1.6124649999999998,1.607019,1.5995890000000001,1.617476,1.6207259999999999,1.612778,1.5865559999999999,1.5551000000000001,1.5098440000000002,1.40854,1.2967289999999998,1.110334,0.9938406,0.8136898,0.6744831,0.519997,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,building,2 gas,6.857001499999999,7.5971238,7.623211599999999,7.7693753,8.1488362,8.581263400000001,8.798715600000001,8.9031831,8.8221809,8.6578202,8.444657300000001,8.046844599999998,7.613313059999999,7.15543396,6.38502667,5.736144810000001,5.2331034,4.29873296,3.5621107,2.95981566,2.2034346449999997,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,building,3 coal,0.4034468,0.0880316,0.0631667,0.0606129,0.0405586,0.036516,0.0321869,0.0284548,0.0224388,0.0179485,0.0145001,0.00976551,0.0068295,0.00487747,0.0026784,0.00159557,0.00101569,4.76129E-4,2.55815E-4,1.5155E-4,7.60777E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,building,4 biomass,0.5666589000000001,0.5762032,0.5111528,0.48861922999999996,0.51497274,0.51265737,0.5157840600000001,0.51236998,0.4980625,0.48151208000000006,0.44310683,0.40667424999999996,0.36962293,0.33387798999999996,0.28092209,0.21074331999999998,0.14386488,0.0775751,0.04410134400000001,0.027751213,0.015514835999999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,building,5 electricity,6.341497,9.952225,10.400421,11.407238,12.095077999999999,12.770783999999999,13.422186,13.974681,14.448338,14.889036,15.302254,15.770131,16.295696,16.853718,17.563138000000002,18.173338,18.680453,19.354374999999997,19.889491,20.258513999999998,20.717371,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,industry,1 liquids,6.9232604,8.417748000000001,7.2263361,7.5052126,7.917267,8.295421,8.600684,8.881422,9.175754000000001,9.426136999999999,9.649623,9.827193999999999,9.985005,10.112156,10.080751,10.0038848,9.756692900000001,9.589211400000002,9.2982405,9.0921942,8.857884700000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,industry,2 gas,7.36497798,6.818757400000001,6.594192659999999,6.665949059999999,7.099882499999999,7.562394100000001,7.8471741,8.0439253,8.087299199999999,8.03911608,7.96067136,7.689453219999998,7.352103779999999,6.9766879,6.280854619999999,5.7053796499999985,5.28721597,4.3897756900000005,3.6893809699999993,3.140504782999999,2.4773801545999996,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,industry,3 coal,2.652244,1.6495320000000002,1.544009,1.5502250000000002,1.3956620000000002,1.431555,1.42832,1.418155,1.3242049999999999,1.233983,1.1533419999999999,0.9698455,0.8308595000000001,0.7202921,0.5347120999999999,0.41021260000000004,0.32931369,0.20862377,0.14436306,0.10531225,0.068439714,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,industry,4 biomass,1.6154229599999999,1.60173148,1.47476959,1.4864784199999999,1.82223718,2.06745847,2.2942566400000004,2.5006112,2.7244107499999997,2.9133796700000003,2.9545285999999997,3.009176,2.9704124,2.8699733,2.5842079,2.0883441,1.5691974,0.94349244,0.5831287299999999,0.39050691000000004,0.23065724,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,industry,5 electricity,3.2840121,3.4674655,3.2956417,3.758073,3.85392736,3.9360625199999997,4.1244551000000005,4.3135196,4.531277299999999,4.78297,5.0897471,5.550044799999999,6.109610900000001,6.739243399999999,7.74242647,8.78194023,9.778422680000002,11.178293960000001,12.323930877999999,13.156700903,14.1551194913,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,industry,6 hydrogen,0.0,0.0,0.0,0.0,0.01590686,0.02707781,0.04044747,0.056451,0.076421,0.1009862,0.1303913,0.1540139,0.1838804,0.2225321,0.290659,0.379267,0.45376099999999997,0.5914170000000001,0.64741,0.704888,0.7293810000000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,transportation,1 liquids,21.62850229,27.76724092,26.01438039,26.99355877,27.600165119999996,27.73217395,27.654741229999996,27.305241200000008,27.172995800000006,26.816829299999995,26.1221052,25.8163553,25.624132100000004,25.516257100000008,25.222184600000013,24.852612900000004,24.248713099999993,23.501069199999996,22.493567,21.431955699999996,20.16283440000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,transportation,2 gas,0.0,0.0223528,0.029762,0.19855756,0.48549617000000006,0.9602547000000001,1.5154893680000001,2.1656814539999996,2.7942988750000004,3.4648077049999992,4.3673564979999995,4.869662490000001,5.335734980000001,5.751424909999998,6.089071990000001,6.35788548,6.62479728,6.7504513699999995,6.8300089900000005,6.860261999999999,6.812008009999997,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,transportation,5 electricity,0.014848598900000001,0.026844098,0.027507697999999997,0.035395686,0.069534203,0.12471460899999998,0.1903618733,0.2688986741,0.34554853800000007,0.43778427899999994,0.54583238,0.6486053800000001,0.75354892,0.86085467,0.9845977800000002,1.12660703,1.2955117800000002,1.49870845,1.74546749,2.0229034599999998,2.29832091,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,transportation,6 hydrogen,0.0,0.0,0.0,0.0,0.01079857,0.03572895,0.06828076,0.108283953,0.146717866,0.191303281,0.24032594000000002,0.29654270000000005,0.36281562000000006,0.43950405,0.53502175,0.65021597,0.7825787400000002,0.94163157,1.1197824799999998,1.3099136800000002,1.52352897,EJ, Industry feedstocks (liquids only) scenario,region,input,1990,2005,2010,2015,2020,2025,2030,2035,2040,2045,2050,2055,2060,2065,2070,2075,2080,2085,2090,2095,2100,Units, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,All input,0.015989,0.0179424,0.0258461,0.0562923,0.0910542,0.136694,0.196382,0.273006,0.36756,0.489591,0.640552,0.824077,1.04082,1.29373,1.53306,1.77067,2.01335,2.20656,2.41928,2.63877,2.84427,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,All input,0.131474,0.186893,0.183878,0.237519,0.268843,0.306677,0.339253,0.372159,0.403939,0.438311,0.472411,0.516455,0.560757,0.60652,0.650883,0.688049,0.719154,0.753224,0.778372,0.788766,0.784817,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,All input,0.00748629,0.00995037,0.0115693,0.0245274,0.0439722,0.0672749,0.0944174,0.126434,0.165488,0.217638,0.285848,0.372064,0.475985,0.602297,0.732054,0.871656,1.02492,1.17034,1.33096,1.49811,1.64743,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,All input,0.0331267,0.0210763,0.0180579,0.050648,0.0970865,0.165747,0.259108,0.38162,0.534282,0.732735,0.983972,1.29526,1.66988,2.116,2.55332,2.99581,3.45964,3.82349,4.23097,4.6711,5.05419,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,All input,0.0679806,0.127506,0.131524,0.165685,0.185787,0.206894,0.228271,0.249756,0.273394,0.296853,0.322941,0.347535,0.375409,0.405168,0.438982,0.473243,0.51134,0.555693,0.592173,0.622032,0.647966,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,All input,0.160073,0.189458,0.191007,0.214244,0.240256,0.26893,0.297249,0.325811,0.352281,0.37851,0.403211,0.423611,0.4424,0.46025,0.472413,0.484418,0.498329,0.512887,0.523645,0.536322,0.541782,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,All input,0.360624,0.50232,0.644979,0.734979,0.853802,0.974356,1.09447,1.20545,1.31802,1.42665,1.54291,1.63402,1.73608,1.84296,1.94206,2.05119,2.18363,2.31783,2.44787,2.56243,2.66566,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,All input,0.473604,0.844149,0.808359,0.836122,0.856927,0.883726,0.901997,0.917368,0.919198,0.922383,0.922994,0.918989,0.916431,0.918585,0.914032,0.915662,0.923651,0.93417,0.942677,0.949827,0.949356,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,All input,0.0161748,0.0225847,0.0198291,0.0191522,0.0222197,0.0250049,0.0279302,0.0309377,0.0352483,0.0398895,0.0452287,0.0516137,0.0587074,0.0660902,0.0776963,0.0889312,0.10096,0.122618,0.136001,0.142305,0.144852,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,All input,0.215914,0.0594412,0.0590225,0.0958989,0.132509,0.176152,0.222449,0.271177,0.323869,0.378704,0.435885,0.488687,0.542324,0.59745,0.655561,0.714485,0.779271,0.856205,0.927509,1.00191,1.05711,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,All input,0.744726,2.14564,3.76751,4.7029,5.62882,6.51666,7.35024,8.12252,8.76054,9.33566,9.84584,10.1588,10.4674,10.8247,11.0479,11.4114,11.8702,12.3699,12.7802,12.9801,13.1424,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,All input,0.013144,0.0675202,0.0442042,0.0676921,0.0824554,0.0980041,0.117382,0.138672,0.163439,0.190247,0.222328,0.252151,0.287776,0.326971,0.366163,0.407125,0.45179,0.489852,0.525537,0.557659,0.587682,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,All input,0.359158,0.431686,0.394353,0.437224,0.475276,0.511137,0.542139,0.567309,0.593822,0.615638,0.640024,0.645468,0.653186,0.656571,0.656166,0.654811,0.659201,0.661084,0.676158,0.702494,0.711494,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,All input,2.99867,3.5997,3.41843,3.50032,3.52264,3.5953,3.6257,3.64528,3.6145,3.59227,3.56312,3.52578,3.49382,3.47377,3.41846,3.38328,3.36902,3.35425,3.37422,3.41421,3.36952,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,All input,0.581101,0.153835,0.104817,0.118511,0.132113,0.144528,0.157206,0.170603,0.186938,0.204095,0.222847,0.241696,0.261237,0.280478,0.303003,0.323341,0.344301,0.373586,0.399261,0.423062,0.436269,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,All input,0.160737,0.191716,0.337948,0.499697,0.542176,0.590777,0.629653,0.662749,0.682667,0.698952,0.711227,0.709772,0.706981,0.703554,0.68655,0.673049,0.663712,0.648546,0.64415,0.647881,0.637841,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,All input,0.101827,0.100394,0.111114,0.113148,0.12138,0.130668,0.139436,0.147892,0.154611,0.16197,0.169328,0.177556,0.185858,0.194562,0.202285,0.210236,0.218573,0.22798,0.237107,0.24675,0.250079,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,All input,0.182426,0.893048,0.883269,1.28011,1.7604,2.34918,3.00387,3.72866,4.46813,5.21852,5.94549,6.56155,7.0906,7.56763,7.88816,8.1609,8.44655,8.65892,8.99517,9.33495,9.53608,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,All input,0.137259,0.192723,0.209844,0.346919,0.486941,0.649758,0.815568,0.978108,1.13098,1.28365,1.43017,1.55953,1.67431,1.77716,1.83238,1.87387,1.91036,1.90569,1.91496,1.92298,1.90518,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,All input,1.41679,1.74619,1.64083,1.65184,1.60239,1.59497,1.58795,1.5783,1.55749,1.53678,1.51841,1.47509,1.43878,1.40826,1.36155,1.3226,1.29284,1.26224,1.24144,1.23148,1.20364,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,All input,0.273178,0.267778,0.226463,0.240313,0.269055,0.30751,0.353878,0.402343,0.458785,0.518425,0.58891,0.657725,0.736817,0.822857,0.922355,1.0251,1.13555,1.26045,1.36597,1.45043,1.52363,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,All input,0.572477,1.21013,1.48394,1.69828,1.85802,2.05072,2.23312,2.41316,2.60276,2.7877,2.96879,3.12986,3.28382,3.42199,3.55489,3.64746,3.73497,3.81987,3.84829,3.85092,3.79872,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,All input,0.0084139,0.0250323,0.0132696,0.0266009,0.0368115,0.0525051,0.0737848,0.101944,0.139922,0.187918,0.244688,0.313387,0.386449,0.461174,0.545127,0.630966,0.71781,0.826719,0.937401,1.02398,1.08556,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,All input,0.798186,0.927618,1.09569,1.15677,1.17398,1.2161,1.25439,1.29315,1.34481,1.39642,1.45148,1.50212,1.55557,1.60449,1.67486,1.73422,1.79741,1.90886,1.97599,2.02565,2.02615,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,All input,0.0581685,0.0752643,0.115617,0.127297,0.151998,0.174704,0.19462,0.214131,0.230382,0.246518,0.260625,0.276035,0.290076,0.304976,0.312348,0.319783,0.327152,0.331207,0.337947,0.344256,0.347982,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,All input,0.0365564,0.0641377,0.0391793,0.061751,0.0837351,0.110445,0.140229,0.172509,0.206878,0.243496,0.284295,0.323098,0.366583,0.413317,0.45994,0.509837,0.565775,0.619821,0.671525,0.719036,0.761958,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,All input,0.0273764,0.0451669,0.0587714,0.0863111,0.112993,0.143817,0.178059,0.214454,0.257458,0.304062,0.357525,0.412883,0.475633,0.544071,0.623993,0.70952,0.805382,0.921691,1.02532,1.11446,1.19231,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,All input,0.0079812,0.0230752,0.0165406,0.0361316,0.0567308,0.0853753,0.121924,0.166265,0.223195,0.293517,0.376033,0.478373,0.588972,0.703776,0.828523,0.952465,1.07805,1.24006,1.39882,1.51793,1.59838,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,All input,0.269028,1.27108,1.58867,1.57551,1.50572,1.46451,1.42021,1.37721,1.32088,1.27018,1.21806,1.16156,1.10743,1.0612,0.996094,0.944125,0.897128,0.850712,0.814068,0.782318,0.739292,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,All input,0.137017,0.889345,1.48275,1.89808,2.28756,2.71495,3.14019,3.53512,3.86501,4.15671,4.41458,4.60568,4.7674,4.90468,4.90987,4.90396,4.90139,4.81696,4.75918,4.69691,4.60812,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,All input,0.154296,0.600272,0.864283,0.828362,0.811723,0.810128,0.801996,0.791826,0.773245,0.753643,0.733146,0.699372,0.668968,0.642737,0.606227,0.579222,0.557109,0.533498,0.513488,0.492235,0.470077,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,All input,4.40191,6.09029,5.24012,5.48539,5.67907,5.96825,6.21472,6.45405,6.65345,6.85178,7.07404,7.17256,7.29798,7.41541,7.47969,7.55636,7.68559,7.76923,7.88578,8.02732,8.08154,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,All input,0.015989,0.0179424,0.0258461,0.0452801,0.0814113,0.139876,0.229058,0.356659,0.535161,0.771504,1.07482,1.44527,1.87942,2.36645,2.86389,3.35254,3.78656,4.1967,4.6407,5.14087,5.6383,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,All input,0.131474,0.186893,0.183878,0.197535,0.251253,0.31705,0.386682,0.458795,0.542934,0.629517,0.716805,0.814753,0.909984,0.999671,1.09763,1.17523,1.18273,1.28049,1.34116,1.39752,1.47639,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,All input,0.00748629,0.00995037,0.0115693,0.0284489,0.0543919,0.0930738,0.146077,0.215953,0.310443,0.43777,0.602884,0.806076,1.04698,1.3212,1.60709,1.89675,2.16856,2.44434,2.74897,3.09126,3.42774,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,All input,0.0331267,0.0210763,0.0180579,0.0506,0.102343,0.198102,0.348619,0.567753,0.87382,1.28595,1.82143,2.48432,3.27187,4.17051,5.11179,6.06331,6.94887,7.76678,8.65043,9.64092,10.6293,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,All input,0.0679806,0.127506,0.131524,0.148907,0.15796,0.180987,0.203323,0.22533,0.248426,0.270398,0.291878,0.314315,0.335822,0.356439,0.377744,0.397496,0.411006,0.434999,0.451954,0.468529,0.487918,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,All input,0.160073,0.189458,0.191007,0.221659,0.259084,0.29822,0.338524,0.380648,0.426464,0.474453,0.523702,0.574768,0.627298,0.679259,0.728179,0.773439,0.809724,0.860377,0.904174,0.945632,0.988842,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,All input,0.360624,0.50232,0.644979,0.720255,0.809455,0.94145,1.0664,1.18551,1.30141,1.41214,1.51337,1.60277,1.68609,1.76247,1.82361,1.8797,1.9204,1.97108,2.01783,2.0689,2.1197,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,All input,0.473604,0.844149,0.808359,0.859296,0.91395,0.969284,1.0216,1.07174,1.11982,1.16746,1.21457,1.25793,1.30119,1.34147,1.37329,1.40268,1.42261,1.44582,1.46074,1.47036,1.47458,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,All input,0.0161748,0.0225847,0.0198291,0.0211745,0.0251671,0.0287958,0.0322846,0.0357846,0.0406578,0.0455664,0.0503798,0.0567385,0.0628109,0.0684941,0.0776507,0.0863557,0.0893161,0.107616,0.117045,0.125534,0.141226,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,All input,0.215914,0.0594412,0.0590225,0.0930153,0.132383,0.178315,0.226062,0.275584,0.329263,0.383821,0.43782,0.493562,0.549367,0.606016,0.666507,0.7262,0.775238,0.848799,0.907057,0.966117,1.03337,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,All input,0.744726,2.14564,3.76751,4.74211,5.79915,6.77006,7.58413,8.25155,8.84649,9.32469,9.67853,9.9022,10.0395,10.1153,10.0897,10.0478,9.92666,9.92387,9.86339,9.82001,9.84391,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,All input,0.013144,0.0675202,0.0442042,0.0598865,0.0755281,0.0933266,0.114436,0.138403,0.164964,0.193902,0.22476,0.255965,0.288051,0.320631,0.35029,0.379061,0.40507,0.428643,0.450966,0.473196,0.494089,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,All input,0.359158,0.431686,0.394353,0.436724,0.488914,0.533551,0.572013,0.605535,0.637182,0.665202,0.69049,0.71229,0.732348,0.750035,0.762088,0.770112,0.767774,0.776483,0.783244,0.792864,0.804064,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,All input,2.99867,3.5997,3.41843,3.55562,3.71583,3.86855,4.01046,4.15359,4.29939,4.44188,4.57517,4.69578,4.81798,4.93608,5.0328,5.12155,5.15558,5.24522,5.31809,5.39349,5.45084,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,All input,0.581101,0.153835,0.104817,0.115401,0.126826,0.135171,0.148635,0.161536,0.178077,0.194598,0.211183,0.231644,0.252721,0.273532,0.299406,0.322855,0.333986,0.367803,0.389109,0.409105,0.435001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,All input,0.160737,0.191716,0.337948,0.39801,0.457467,0.527361,0.594423,0.65859,0.719247,0.776029,0.828376,0.871441,0.909958,0.944154,0.966391,0.986304,0.997416,1.00806,1.01805,1.02969,1.03894,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,All input,0.101827,0.100394,0.111114,0.121815,0.134054,0.146846,0.160136,0.173842,0.18817,0.203163,0.218876,0.235465,0.252599,0.26981,0.286555,0.303131,0.317395,0.33493,0.350235,0.364277,0.376798,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,All input,0.182426,0.893048,0.883269,1.29539,1.9276,2.59337,3.31205,4.07748,4.91918,5.78183,6.63798,7.49182,8.29738,9.03403,9.69874,10.2453,10.419,10.9799,11.4202,11.8452,12.2911,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,All input,0.137259,0.192723,0.209844,0.28636,0.395053,0.534754,0.680203,0.827523,0.981154,1.12906,1.2664,1.39759,1.51926,1.63081,1.73251,1.81416,1.8534,1.91589,1.95671,2.00027,2.04106,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,All input,1.41679,1.74619,1.64083,1.65535,1.6489,1.65161,1.6457,1.6308,1.60604,1.58052,1.5541,1.51982,1.48788,1.45523,1.41217,1.37399,1.3324,1.29538,1.25864,1.22499,1.19243,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,All input,0.273178,0.267778,0.226463,0.267433,0.321062,0.375799,0.433246,0.492853,0.557882,0.6242,0.691478,0.761562,0.828319,0.893218,0.961152,1.02855,1.08144,1.16485,1.22798,1.29022,1.35891,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,All input,0.572477,1.21013,1.48394,1.69312,1.91881,2.14741,2.36983,2.58666,2.82916,3.05947,3.27543,3.50321,3.7142,3.90772,4.11137,4.28476,4.35301,4.55539,4.65088,4.73716,4.83734,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,All input,0.0084139,0.0250323,0.0132696,0.0173202,0.0253712,0.0355334,0.0492379,0.0673892,0.0932948,0.125893,0.166073,0.219113,0.281125,0.351003,0.440319,0.527346,0.562663,0.687691,0.788967,0.895787,1.03351,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,All input,0.798186,0.927618,1.09569,1.14727,1.19226,1.24185,1.28207,1.32113,1.38314,1.44274,1.50114,1.57686,1.65262,1.72312,1.81833,1.90617,1.94619,2.09267,2.16593,2.2304,2.32109,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,All input,0.0581685,0.0752643,0.115617,0.147206,0.183239,0.221038,0.259867,0.299581,0.343609,0.387369,0.4308,0.476334,0.520012,0.561656,0.599481,0.630689,0.649002,0.670912,0.690853,0.713608,0.736281,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,All input,0.0365564,0.0641377,0.0391793,0.0565457,0.069088,0.0928576,0.119211,0.147807,0.177924,0.209853,0.243213,0.276266,0.309698,0.342962,0.372795,0.402453,0.430048,0.458056,0.484211,0.510745,0.536348,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,All input,0.0273764,0.0451669,0.0587714,0.079191,0.102912,0.134703,0.169203,0.206477,0.248999,0.294382,0.341452,0.391937,0.442845,0.494111,0.549209,0.603517,0.649423,0.716845,0.771232,0.824547,0.882382,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,All input,0.0079812,0.0230752,0.0165406,0.0244441,0.0387246,0.0575796,0.0808411,0.108677,0.146443,0.191943,0.245029,0.31428,0.394245,0.483805,0.59719,0.707837,0.758062,0.920266,1.05628,1.19434,1.36121,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,All input,0.269028,1.27108,1.58867,1.61626,1.62563,1.63261,1.62249,1.59608,1.5501,1.49202,1.42458,1.34645,1.26768,1.19078,1.11046,1.03591,0.959395,0.897308,0.839476,0.78729,0.736189,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,All input,0.137017,0.889345,1.48275,1.79873,2.17146,2.56125,2.9308,3.26832,3.57888,3.85519,4.08942,4.27391,4.42753,4.55768,4.63969,4.69188,4.68854,4.67705,4.64732,4.62364,4.59432,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,All input,0.154296,0.600272,0.864283,0.851986,0.848806,0.841865,0.829999,0.816538,0.800824,0.783104,0.763963,0.739696,0.71617,0.695955,0.671041,0.648759,0.622811,0.606188,0.589045,0.572861,0.55683,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,All input,4.40191,6.09029,5.24012,5.50464,5.79899,6.10283,6.37285,6.6143,6.82322,7.00763,7.16959,7.30388,7.44098,7.57519,7.65231,7.72206,7.75324,7.79626,7.81914,7.8497,7.87586,EJ, Refined liquid fuel production by technology scenario,region,sector,subsector,technology,1990,2005,2010,2015,2020,2025,2030,2035,2040,2045,2050,2055,2060,2065,2070,2075,2080,2085,2090,2095,2100,Units, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.00710802,0.016050790000000002,0.0274926,0.043234400000000006,0.06536481999999999,0.09554373,0.1269321,0.15750563,0.186223194,0.215878695,0.236472356,0.241028615,0.22744721599999998,0.0160990208,0.005779541526016,0.00326923,0.00160905,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,refining,biomass liquids,FT biofuels CCS level 1,0.0,0.0,0.0,0.0,0.00136461,0.00432979,0.00968487,0.01978008,0.03642981,0.06329248,0.09720772600000001,0.14589676000000001,0.2119553479,0.300038812,0.43113092100000006,0.562031458,0.687224439,0.8230681400000001,0.8609556800000001,0.85216879,0.7936885399999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,refining,biomass liquids,FT biofuels CCS level 2,0.0,0.0,0.0,0.0,8.16329E-4,0.002594657,0.00579587,0.011889460000000001,0.022210333000000002,0.039317419,0.061523904000000004,0.095492081,0.1447128611,0.2133462774,0.328693351,0.45690499900000003,0.59109741,0.7788251289999999,0.87598684,0.9363536499999998,0.9544141500000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.00861331,0.01958274,0.033792209999999996,0.05344387,0.08101781,0.11854012,0.15747434999999999,0.19502628,0.22967782300000003,0.264734379,0.287302889,0.288656486,0.1974775071,0.01625694191814,0.005868432772419,0.00325491,0.00156475,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,refining,biomass liquids,cellulosic ethanol CCS level 1,0.0,0.0,0.0,0.0,0.00164798,0.00516898,0.011533129999999999,0.023083410000000002,0.04021585,0.06508611,0.09326440899999999,0.124641533,0.1573073438,0.19270584,0.22368030800000002,0.239704281,0.24422183800000002,0.06914202367,0.008535909029799,0.005105486708332,0.00269545,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,refining,biomass liquids,cellulosic ethanol CCS level 2,0.0,0.0,0.0,0.0,4.0659E-4,0.0012862989999999999,0.0028603730000000003,0.005848522,0.010879093999999999,0.019173441,0.029898857,0.0459580294,0.0688489469,0.10053184470000001,0.152350185,0.21084587800000001,0.27366551899999997,0.363296291,0.413779382,0.450685984,0.47287371999999994,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,0.0053799,0.01492995,0.02369953,0.033221560000000004,0.042470879999999996,0.051220840000000004,0.05645881999999999,0.055563471,0.051035665,0.043810057000000006,0.0014294496152,7.951527566079999E-4,5.18692E-4,1.99997E-4,6.89281E-5,4.02671E-5,2.33925E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,refining,coal to liquids,coal to liquids CCS level 1,0.0,0.0,0.0,0.0,0.0010296,0.00438706,0.00886719,0.015999560000000003,0.025375436,0.037700551,0.050448627999999995,0.061597164999999995,0.07080507050000001,0.077278576,0.078187506,0.074518268,0.06751072,0.054462864,0.00333876313,0.001773894709,0.002084147,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,refining,coal to liquids,coal to liquids CCS level 2,0.0,0.0,0.0,0.0,5.93047E-4,0.002563289,0.005211691,0.009535690999999999,0.015561211000000002,0.02394648,0.033160284,0.042462982999999996,0.0515669588,0.05931150810000001,0.063645074,0.064490858,0.062242771,0.057425792,0.049886019,0.042457699,0.037685557,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,refining,gas to liquids,gas to liquids,0.0,0.00960074,0.0111242,0.0109241,0.026828900000000003,0.06539748000000001,0.11427775000000001,0.18442501,0.27405386,0.38625054000000003,0.49276830599999993,0.57583748,0.636421409,0.6857933900000001,0.7069901799999999,0.71186504,0.71834764,0.72912124,0.71641452,0.72150116,0.77361646,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,refining,oil refining,oil refining,0.327822,0.512014,0.698933,1.116892,1.234368,1.364009,1.485676,1.6038590000000004,1.7001650000000001,1.822895,2.0142416,2.3120808999999998,2.66088222,3.1197557899999997,3.5362573,3.9516061000000002,4.4388086,4.9879321,5.265896,5.3610095,5.0770710999999995,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.00877757,0.02413032,0.04029587,0.06549573,0.10340347999999999,0.14943462000000002,0.18338048,0.20471693,0.21808114400000006,0.22212218600000003,0.21777709699999998,0.1994794,0.16812141,0.008668904343000002,0.002222814032468,0.00101227,4.04702E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,refining,biomass liquids,FT biofuels CCS level 1,0.0,0.0,0.0,0.0,0.00163005,0.0063687100000000005,0.01378541,0.029584140000000002,0.05705003,0.09583857000000001,0.130948914,0.165742152,0.2022623544,0.236993548,0.29619045600000005,0.35510552500000003,0.41433553,0.48232919999999996,0.48431092,0.4611713800000001,0.4122482699999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,refining,biomass liquids,FT biofuels CCS level 2,0.0,0.0,0.0,0.0,9.6848E-4,0.003768925,0.008184386,0.01767676,0.034573678999999996,0.058998695000000004,0.08166151999999999,0.105351016,0.1316592,0.15846287399999998,0.21085554899999998,0.272010466,0.342174938,0.44948066000000003,0.48710665,0.497676,0.47942885999999996,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.0106364,0.0294684,0.0495443,0.08100260000000001,0.12823040000000002,0.18545476,0.22757760999999999,0.25377828,0.269649751,0.273573691,0.26613015,0.24026021,0.136246912,0.00878203255463,0.002256991216523,0.00100784,3.93562E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,refining,biomass liquids,cellulosic ethanol CCS level 1,0.0,0.0,0.0,0.0,0.00201116,0.00790426,0.01683262,0.03516993,0.0640981,0.10125445,0.13163474,0.155260607,0.17376847110000002,0.18449676799999998,0.190486562,0.184077844,0.17095749999999998,0.04116492704,0.003386130653034,0.0016258036499069998,6.92855E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,refining,biomass liquids,cellulosic ethanol CCS level 2,0.0,0.0,0.0,0.0,4.82903E-4,0.001871896,0.004044819,0.008704238,0.016954340999999998,0.028829069,0.039814472,0.0510885259,0.0634509991,0.0759081421,0.099555487,0.127472946,0.160190974,0.210795252,0.230117016,0.237836732,0.23311363000000002,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,0.00667842,0.02326023,0.0356792,0.05094414,0.06680188999999999,0.08012470000000001,0.08473260999999999,0.07950912999999998,0.069330034,0.055559136,9.6461653E-4,5.19554051642E-4,3.19419E-4,1.07284E-4,2.62487E-5,1.23914E-5,5.88459E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,refining,coal to liquids,coal to liquids CCS level 1,0.0,0.0,0.0,0.0,0.00119293,0.0062483899999999995,0.01235585,0.0233186,0.03832935,0.055345025,0.067536863,0.07337631,0.07465847049999999,0.071270331,0.063877143,0.053514102,0.042787158000000006,0.032465462,0.0045274346,9.232979999999999E-4,9.873958599999999E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,refining,coal to liquids,coal to liquids CCS level 2,0.0,0.0,0.0,0.0,6.78527E-4,0.003568002,0.00715258,0.013745582,0.023265507999999997,0.034618367,0.043251614,0.048233560999999994,0.050515392799999996,0.04978228,0.04682567900000001,0.04182865000000001,0.036263769999999994,0.031214679999999998,0.026038467,0.021808753999999996,0.018588096999999998,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,refining,gas to liquids,gas to liquids,0.0,5.66972E-5,6.83961E-5,6.71659E-5,0.0183557523,0.08519394300000001,0.15635520149999999,0.272266998,0.4291745945,0.60149155301,0.7166518237399999,0.7690635600000001,0.779808845,0.7506132699999999,0.69191297,0.6139681399999999,0.54462817,0.49220366,0.43405411,0.38900077999999993,0.3558156,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,refining,oil refining,oil refining,2.01049,2.83366,3.33534,4.052374,4.172480999999999,4.334403,4.340231,4.200266,3.874847,3.512811,3.2418305,3.1694934,3.14986161,3.2214546,3.2469867,3.2249072,3.2412447,3.2873069,3.1325061000000005,2.8995316,2.5278589,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.0041132,0.008343409999999999,0.01345375,0.02062443,0.03128659,0.045795419999999996,0.06088356,0.076293333,0.091065225,0.106397313,0.118549507,0.12193094300000001,0.112552069,0.007734256446499999,0.002711850187001,0.00146206,6.9579E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,refining,biomass liquids,FT biofuels CCS level 1,0.0,0.0,0.0,0.0,7.93899E-4,0.00222105,0.004704376,0.009323666000000001,0.017415447,0.030552601,0.047359019,0.072752862,0.1080306503,0.1600537487,0.248227944,0.33873853,0.42645996599999997,0.521029001,0.54548455,0.53432982,0.48828148,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,refining,biomass liquids,FT biofuels CCS level 2,0.0,0.0,0.0,0.0,4.75445E-4,0.001334443,0.0028305149999999996,0.005620967,0.010644637,0.019034561,0.030091601999999995,0.0479457033,0.0745577574,0.1166429152,0.1985588881,0.293217568,0.394531811,0.53676801,0.602325773,0.6296157950000001,0.61936471,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.00498426,0.010173149999999999,0.01651973,0.025471720000000003,0.038757309999999996,0.05679943,0.07552056,0.09445195699999999,0.11228942,0.130445918,0.143938722,0.145516144,0.0856566222,0.007988537827207,0.002753560811648,0.00145566,6.76638E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,refining,biomass liquids,cellulosic ethanol CCS level 1,0.0,0.0,0.0,0.0,9.55448E-4,0.00263125,0.0055118860000000006,0.010783951,0.019071045000000002,0.03112947,0.044892164,0.060912093,0.077843699,0.0968643874,0.115607197,0.12593885900000001,0.129667471,0.03529679825,0.0041981667510089995,0.002344733744134,0.00117963,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,refining,biomass liquids,cellulosic ethanol CCS level 2,0.0,0.0,0.0,0.0,2.36764E-4,6.6142E-4,0.0013959200000000001,0.002764053,0.005211787000000001,0.009276816,0.014610660000000001,0.0230336887,0.0353658357,0.054575697900000004,0.09074613000000001,0.1330113474,0.179217909,0.24511345299999998,0.27818631499999996,0.295514724,0.29777950300000006,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,0.00311067,0.00761783,0.01151994,0.01585536,0.02030607,0.024483610000000003,0.02692259,0.026543346,0.024551469000000003,0.021182834,7.540870979E-4,4.08845036412E-4,2.56423E-4,9.61388E-5,3.18661E-5,1.79027E-5,1.01151E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,refining,coal to liquids,coal to liquids CCS level 1,0.0,0.0,0.0,0.0,6.01988E-4,0.0022425049999999997,0.00438496,0.007658554000000001,0.012242708,0.018334760000000002,0.024767034,0.030812384,0.0361428528,0.0411340828,0.043514299,0.04307624,0.040469541,0.03580182700000001,0.0098943558,0.00122882865,0.0011797662599999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,refining,coal to liquids,coal to liquids CCS level 2,0.0,0.0,0.0,0.0,3.47457E-4,0.001316463,0.002600441,0.004587822,0.007541908999999999,0.011707675,0.016396711,0.0214924141,0.026787013499999998,0.032668699100000004,0.0373639486,0.0399191125,0.040407288,0.038900974000000005,0.034892327,0.030032266000000002,0.025690044,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,refining,gas to liquids,gas to liquids,0.0,0.00205735,0.00235503,0.00231267,0.01110698,0.029609339999999998,0.051978899999999995,0.08460198,0.128591545,0.183276516,0.23523740899999998,0.27786781,0.309867606,0.33603413,0.3502402,0.35396001,0.35561749000000004,0.35714898,0.34603987,0.34145577000000005,0.35596473999999995,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,refining,oil refining,oil refining,0.239498,0.340846,0.513987,0.645997,0.7138180000000001,0.770819,0.8123597,0.8399612000000001,0.855753,0.896263,0.9834602,1.13222768,1.30722053,1.53871831,1.7630560099999997,1.9721488900000002,2.1965051,2.4346037999999997,2.5317376,2.5340453,2.3610441,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.0101025,0.0256331,0.045738299999999996,0.07242758,0.10793456000000001,0.15340223,0.20165914000000001,0.25292707000000003,0.30678642899999997,0.360910129,0.40013388299999997,0.41144950999999996,0.39076861,0.026864767758,0.009570002488917,0.00528878,0.00247882,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,refining,biomass liquids,FT biofuels CCS level 1,0.0,0.0,0.0,0.0,0.00194553,0.0071214500000000005,0.01656304,0.03367162,0.0603659,0.10087147,0.153167346,0.23496261499999999,0.3579740746,0.522142963,0.7705855189999999,1.015819934,1.25114542,1.49996306,1.5613828900000002,1.5303037899999998,1.40274127,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,refining,biomass liquids,FT biofuels CCS level 2,0.0,0.0,0.0,0.0,0.00116459,0.00427211,0.00992028,0.02024718,0.03679473,0.062596428,0.09686471399999999,0.154021381,0.2459068296,0.374973137,0.596422617,0.840262052,1.096439155,1.44636668,1.61378839,1.69996795,1.69004109,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.0122419,0.0312921,0.0562607,0.0895783,0.13381759999999998,0.1903475,0.25020064999999997,0.31315954,0.37818607200000004,0.442258394,0.48567474000000005,0.49224577,0.333271427,0.02725125723589,0.009717184752384,0.00526561,0.00241059,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,refining,biomass liquids,cellulosic ethanol CCS level 1,0.0,0.0,0.0,0.0,0.00234482,0.00847055,0.01966576,0.039240540000000004,0.06670812000000001,0.10418000999999999,0.14751771000000002,0.199984575,0.260637205,0.3254286,0.383582049,0.4149124169999999,0.42647562,0.12221032206,0.014253088344992,0.008287202178678,0.0041379,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,refining,biomass liquids,cellulosic ethanol CCS level 2,0.0,0.0,0.0,0.0,5.79989E-4,0.0021169279999999997,0.004893814999999999,0.009957886999999999,0.018023392,0.030532594000000003,0.047080544,0.074091125,0.1167919825,0.1762081699,0.275264063,0.385876604,0.504955413,0.670847228,0.757631492,0.81243068,0.82923956,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,0.00764273,0.0242159,0.03961963,0.05576576,0.07061407,0.0837666,0.09170965999999998,0.09034738,0.083136079,0.071179823,0.002513320256,0.00135283685767,8.71165E-4,3.33398E-4,1.13819E-4,6.50897E-5,3.60402E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,refining,coal to liquids,coal to liquids CCS level 1,0.0,0.0,0.0,0.0,0.00147215,0.00735891,0.01528017,0.02736745,0.04239945,0.06098138,0.080622376,0.099427838,0.1172565381,0.130721613,0.13474657099999998,0.130885727,0.121189042,0.10309572800000001,0.0076101058,0.0030028794799999998,0.00313585548,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,refining,coal to liquids,coal to liquids CCS level 2,0.0,0.0,0.0,0.0,8.4897E-4,0.00431016,0.008998721000000001,0.016326532,0.025987127,0.038636446000000005,0.052860605,0.068601644,0.08610692710000001,0.10184300300000002,0.11197894800000001,0.11594707899999998,0.11439232699999999,0.107326088,0.09390594,0.079384726,0.06804296000000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,refining,gas to liquids,gas to liquids,0.0,0.0101239,0.0117228,0.011512,0.0335423,0.10111909999999999,0.18822659,0.30877292,0.45392745999999995,0.6236397,0.7873962660000001,0.92645914,1.04249547,1.1355699799999999,1.18272029,1.2017347399999998,1.22251281,1.2435003,1.2157350199999999,1.20865678,1.2672826899999998,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,refining,oil refining,oil refining,0.685554,1.15211,1.2014,1.517599,1.683867,1.912167,2.1337409999999997,2.34869,2.535479,2.788233,3.1689629999999998,3.7198312,4.402032950000001,5.231294700000001,5.9898462,6.722807499999998,7.5620162,8.467873,8.874982300000001,8.932905,8.3526165,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.00400433,0.00878811,0.01531679,0.024667929999999998,0.03953603,0.05662313000000001,0.07045387,0.077587152,0.082547405,0.08384488000000001,0.082714955,0.075418882,0.0270430495,0.0032620980167410002,7.97849E-4,4.42452E-4,2.40998E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,refining,biomass liquids,FT biofuels CCS level 1,0.0,0.0,0.0,0.0,7.77031E-4,0.0024319520000000002,0.0058113999999999996,0.012470274,0.0248133,0.041526071,0.058239096,0.073317637,0.09296643040000001,0.11590781260000001,0.169714257,0.235194196,0.32464430099999997,0.451670426,0.491499729,0.5074254690000001,0.49159461000000004,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,refining,biomass liquids,FT biofuels CCS level 2,0.0,0.0,0.0,0.0,4.65858E-4,0.00146718,0.003530396,0.007640023,0.015459661,0.026329953000000003,0.037506246,0.0483347343,0.06374733769999999,0.0837769768,0.1404158512,0.225102656,0.36376798899999996,0.6606291529999999,0.823627995,0.965394433,1.055739041,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,refining,biomass liquids,biodiesel,0.0,6.69766E-4,0.0195058,0.013438000239429,0.00752288,0.008320139,0.008899967,0.008655732,0.008079825,0.007488794,0.007141471,0.0063179977,0.0051053044999999995,0.00391663775,0.0030720605270000002,0.00242332209854,0.002087810804546,0.00139246,5.16372E-4,3.85732E-4,3.1365E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.00485234,0.01072023,0.0188282,0.030501920000000002,0.049025940000000004,0.07027062,0.08743441,0.09619601999999998,0.10208520599999998,0.10328867700000001,0.10106109,0.085270529,0.010257935954,0.003425952235305,8.10124E-4,4.40515E-4,2.34365E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,refining,biomass liquids,cellulosic ethanol CCS level 1,0.0,0.0,0.0,0.0,9.31924E-4,0.002843789,0.00660554,0.013719865000000001,0.025609657,0.040138528,0.053169322,0.061915698000000005,0.0697112443,0.0747261454,0.07946536,0.078494355,0.074945184,0.0061217240337,0.001579924058069,9.14569E-4,5.11995E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,refining,biomass liquids,cellulosic ethanol CCS level 2,0.0,0.0,0.0,0.0,2.31948E-4,7.26499E-4,0.001736761,0.0037425059999999996,0.007535142,0.012778985999999999,0.018148325,0.0232276342,0.0302956224,0.0392596696,0.0634085116,0.0991229795,0.157306575,0.278372045,0.34717882,0.411867276,0.46236522999999996,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,refining,biomass liquids,corn ethanol,0.0,0.0,0.00263706,0.01570093,0.01769277,0.02047091,0.02442503,0.03008989,0.039205005,0.048753805000000004,0.057498005,0.064837063,0.07382626869999999,0.082594187,0.095319615,0.106233437,0.11793546399999999,0.129142506,0.128142818,0.125922982,0.121139272,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,0.00374377,0.00976861,0.01550894,0.02195289,0.029170099999999997,0.03498963,0.03738403,0.035142759,0.030965126,0.024473081999999997,4.4889106527E-4,2.26222E-4,1.39986E-4,4.50752E-5,1.05349E-5,6.39307E-6,4.47623E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,refining,coal to liquids,coal to liquids CCS level 1,0.0,0.0,0.0,0.0,7.32632E-4,0.0030392270000000002,0.00660259,0.012490823,0.021258856,0.030985291,0.038910825999999996,0.042704881,0.0450631517,0.045254368999999996,0.043836402999999996,0.040425644000000004,0.03694992899999999,0.033165741000000006,0.028531381999999997,0.024419732000000003,0.020928988000000003,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,refining,coal to liquids,coal to liquids CCS level 2,0.0,0.0,0.0,0.0,4.23733E-4,0.001799319,0.0039865049999999996,0.007699816999999999,0.013555857000000001,0.020423372999999998,0.026378816,0.0298710797,0.032991560899999994,0.0351271744,0.037669787,0.03980141100000001,0.043361853,0.047907976000000005,0.048848172999999995,0.05181509799999999,0.063005236,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,0.0103765,0.0355044,0.0694115,0.1195677,0.19175188999999998,0.26740976,0.32338425,0.34404694,0.348678515,0.33436638,0.3066111799999999,0.26652499,0.22938862000000002,0.15002967300000003,0.095892512,0.11830502899999999,0.14362099,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,refining,oil refining,oil refining,0.766759,1.0842,1.2999,1.655329,1.7286442000000002,1.7866362,1.8089881,1.7676481999999998,1.6683968,1.5339681,1.4473956,1.408319,1.4046113500000001,1.42877422,1.4301319700000001,1.38243899,1.3430779,1.0494214499999999,0.8219231899999999,0.47138094,0.0872199515,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,7.19022E-4,0.001723545,0.0041490039999999995,0.009603432,0.0202699,0.032227654,0.041155307,0.046696848,0.0515384833,0.05426244919999999,0.055935598,0.052780384,0.0262111475,0.002384102610927,5.24334E-4,5.6355E-4,2.67252E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,refining,biomass liquids,FT biofuels CCS level 1,0.0,0.0,0.0,0.0,1.39565E-4,4.87728E-4,0.001749457,0.005665731,0.01461115,0.026328908999999998,0.036714104500000004,0.0465718402,0.0604846938,0.0783516726,0.1262676037,0.185698963,0.258385574,0.353934523,0.379904155,0.41783215299999993,0.415431564,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,refining,biomass liquids,FT biofuels CCS level 2,0.0,0.0,0.0,0.0,8.36792E-5,2.94421E-4,0.0010656073,0.0034879339,0.0091756177,0.016836342,0.0238245006,0.0309422472,0.04181767276,0.057192491820000003,0.1069092143,0.18226687400000002,0.293449597,0.5154770479999999,0.624457421,0.825432585,0.9447863590000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,refining,biomass liquids,biodiesel,0.0,0.0,0.00234401,0.011631309999999999,0.01435468,0.015772572,0.017488864,0.0196110902,0.023211460407,0.024132583415,0.02312838791,0.022864540599999997,0.022989825499999998,0.022839216699999998,0.022135636900000002,0.02042854324,0.0191032061,0.0171155324022,0.0143113505,0.013960187479,0.012653260999999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,refining,biomass liquids,cellulosic ethanol,0.0,4.60463E-4,0.00945963,0.009745539999999999,0.010341566,0.010893893000000002,0.012485638000000002,0.017091713,0.028130264000000002,0.041425135,0.0516606815,0.057949437,0.06374489870000001,0.0668228685,0.06820638700000001,0.06161417200000001,0.010139627484,0.002503832624116,5.32401E-4,5.61082E-4,2.59896E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,refining,biomass liquids,cellulosic ethanol CCS level 1,0.0,0.0,0.0,0.0,1.67355E-4,5.69076E-4,0.001968643,0.006124696000000001,0.014650426999999999,0.024693872999999998,0.0326807603,0.0384386168,0.04432274504,0.0490376034,0.05498687370000001,0.056529706,0.055694182,0.0045525525015,0.001041015442586,0.00116807,5.69224E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,refining,biomass liquids,cellulosic ethanol CCS level 2,0.0,0.0,0.0,0.0,4.1663E-5,1.4574E-4,5.23272E-4,0.0017049683,0.0044613891,0.008152585,0.011504818399999998,0.0148389226,0.01982928251,0.026731595459999997,0.0479888533,0.0798480704,0.12653609100000002,0.21700707600000002,0.26291328599999997,0.354270954,0.41881429600000003,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,0.00331503,0.00840745,0.01536077,0.025157739999999998,0.036403569999999996,0.04461164,0.04787033,0.045874336999999994,0.041123693,0.032992414,4.909193118E-4,2.33046E-4,1.23497E-4,3.50453E-5,7.6687E-6,8.20637E-6,4.70947E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,refining,coal to liquids,coal to liquids CCS level 1,0.0,0.0,0.0,0.0,6.49123E-4,0.002606274,0.0069669680000000005,0.016080471,0.030053718,0.043898587,0.053730812,0.058266029999999996,0.0604116042,0.0589482245,0.05464987,0.047710659999999995,0.040795051,0.034486215,0.028469365000000003,0.024203395,0.020409751,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,refining,coal to liquids,coal to liquids CCS level 2,0.0,0.0,0.0,0.0,3.75476E-4,0.001543518,0.004225637,0.009995891,0.019388949,0.029253779,0.036727718000000006,0.040957250400000006,0.0441604953,0.0453807512,0.046315197,0.046176788,0.046593529999999994,0.047614418000000006,0.046081512,0.051230898,0.063582299,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,refining,gas to liquids,gas to liquids,0.0268719,0.0,0.0,0.0,0.00918889,0.030438510000000002,0.07154516999999999,0.14777373,0.25940470000000004,0.36249889999999996,0.42788184,0.45019408999999994,0.45060859100000006,0.4222088,0.37139698000000004,0.30574312,0.24692587000000005,0.15963,0.10359905800000001,0.11237174300000001,0.13906501000000002,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,refining,oil refining,oil refining,1.52597,2.07254,2.16231,2.2107803,2.2666092,2.2867751,2.2774221000000003,2.2070456999999997,2.0891541,1.956974,1.8779043,1.8278092899999998,1.7871350899999998,1.76853691,1.69802466,1.5618422,1.428657,1.1204901,0.89907387,0.46007171,0.0806741191,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.00989073,0.020787760000000002,0.03624367,0.059696559999999996,0.09957415,0.14708481,0.18873157000000002,0.21378717000000003,0.234369396,0.24528246099999995,0.249869638,0.23558164,0.1125122685,0.010056607750366,0.00281374,0.00176714,0.001265,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,refining,biomass liquids,FT biofuels CCS level 1,0.0,0.0,0.0,0.0,0.00191874,0.00568681,0.01368912,0.030416819999999997,0.06361364,0.11015288000000001,0.159758902,0.20794418799999997,0.2730972231,0.352670684,0.53828286,0.772697714,1.08278901,1.47175856,1.61815006,1.70283361,1.7118455000000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,refining,biomass liquids,FT biofuels CCS level 2,0.0,0.0,0.0,0.0,0.00115029,0.00342996,0.00831574,0.01864325,0.039690840000000005,0.069995128,0.103197225,0.137737292,0.18844325950000002,0.25684305799999996,0.44947165600000005,0.746485251,1.21919394,2.12394263,2.69517761,3.26948246,3.8276042000000006,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,refining,biomass liquids,biodiesel,0.0,0.0,0.0850955,0.09038826999999999,0.1009023,0.11172179999999998,0.12297649999999999,0.1321172,0.1449088,0.15733631,0.16944945,0.17663470999999997,0.18177117799999998,0.18500842900000003,0.183660214,0.17795775000000003,0.17339315,0.160967461,0.15150844800000002,0.145401926,0.139978688,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.0119853,0.0253519,0.0445465,0.0738243,0.1235062,0.18257048,0.23423085000000002,0.26500513000000003,0.28967342300000004,0.301891765,0.30486708900000004,0.274052183,0.0428715056,0.010561617110670002,0.00285703,0.0017594,0.00123018,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,refining,biomass liquids,cellulosic ethanol CCS level 1,0.0,0.0,0.0,0.0,0.00230164,0.00665605,0.01556242,0.03341433,0.06531837,0.10564764000000001,0.14427919,0.172704727,0.20019583700000002,0.22110628300000001,0.243197466,0.248183072,0.24367956,0.019445616031,0.005562237803155999,0.00364571,0.0026822,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,refining,biomass liquids,cellulosic ethanol CCS level 2,0.0,0.0,0.0,0.0,5.72728E-4,0.001698672,0.004090992,0.009131046,0.019337596000000002,0.033952678,0.049900215,0.066110109,0.08940798009999999,0.12012584879999999,0.20250342100000002,0.328157016,0.526940321,0.896328867,1.138045144,1.40038857,1.7011731199999998,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,refining,biomass liquids,sugar cane ethanol,0.245075,0.291452,0.503624,0.0166976012199,0.00651972724751,0.00733015995482,0.0104146946516,0.015896590249000003,0.03097362447,0.04487109989,0.053599421300000005,0.0450980815,0.05039173512,0.05162654182,0.06420318581,0.062223354555,0.065282677002,0.054791303447898995,0.026506006502144,0.024064301310195,0.024732800108378,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,0.019393,0.0449266,0.06753050000000001,0.0919907,0.1198005,0.1413833,0.14899832,0.13825574,0.12078593100000001,0.09644699999999999,0.001749661342,8.95761618163E-4,5.38106E-4,1.55755E-4,4.09862E-5,2.74349E-5,2.45406E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,refining,coal to liquids,coal to liquids CCS level 1,0.0,0.0,0.0,0.0,0.00379292,0.01355946,0.02760088,0.05005912999999999,0.08427093999999999,0.12183944,0.15288805,0.167884045,0.177144702,0.17815361600000001,0.17258501,0.15951487,0.14536390999999999,0.12850241999999998,0.10988510000000001,0.09402069,0.08303099,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,refining,coal to liquids,coal to liquids CCS level 2,0.0,0.0,0.0,0.0,0.00219348,0.0080169,0.016636289999999998,0.03080906,0.053695080000000006,0.08030145999999999,0.10376279000000001,0.117726937,0.130071698,0.138682668,0.148453324,0.157037177,0.16983841,0.18215287000000002,0.18489679,0.198666601,0.267281443,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,0.0537472,0.1602295,0.2937823,0.4844507,0.7640042,1.0522093,1.2659862999999998,1.34294696,1.3594093099999998,1.30505223,1.19830572,1.04596107,0.9013572999999999,0.65802636,0.45239166,0.50189252,0.59474728,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,refining,oil refining,oil refining,2.37788,3.67436,4.48847,5.62481,6.0273650000000005,6.301579,6.434027,6.3471150000000005,6.110715,5.756438000000001,5.540835,5.4289114,5.4391593,5.537172600000001,5.545637299999999,5.3830161,5.2286394000000005,4.430320200000001,3.6607872,2.31213278,0.48062411899999996,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.00143632,0.00354852,0.00829075,0.01969414,0.04095070000000001,0.06424189999999999,0.079580861,0.08758105199999999,0.09339763179999999,0.094547171,0.0931145,0.08462589300000001,0.0458469388,0.0030777135875910003,6.86965E-4,4.48556E-4,7.15614E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,refining,biomass liquids,FT biofuels CCS level 1,0.0,0.0,0.0,0.0,2.78224E-4,0.001004628,0.003420602,0.011233118,0.027459434,0.048224009,0.064733437,0.0786556041,0.09738967800000001,0.12025447360000001,0.18469546400000003,0.26934036699999997,0.369658157,0.47568981099999996,0.5003080639999999,0.5071487579999999,0.53234342,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,refining,biomass liquids,FT biofuels CCS level 2,0.0,0.0,0.0,0.0,1.66744E-4,6.057219999999999E-4,0.002075899,0.006860097,0.016967212,0.030256693,0.0411558151,0.051060623400000005,0.06563269559,0.0855329143,0.15241229220000002,0.258796351,0.409183436,0.649038688,0.758146559,0.8582865,1.10455719,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,refining,biomass liquids,biodiesel,0.0,0.0,0.00728313,0.016427729999999998,0.01858571,0.019799129999999998,0.02050134,0.0211442955,0.023281770912,0.0210175072155,0.015458673176,0.010998414469999999,0.01061048643,0.010505166290000001,0.012067420759,0.010574678947699999,0.008484151497127999,0.00506192,0.0019214,0.00148714,0.00146548,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.0017405,0.004331359999999999,0.01022065,0.02445499,0.05093248,0.07987169,0.098877078,0.10868965100000001,0.1156259905,0.11660967,0.113794646,0.099048198,0.018969227310000003,0.003232164259087,6.97534E-4,4.46591E-4,6.95916E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,refining,biomass liquids,cellulosic ethanol CCS level 1,0.0,0.0,0.0,0.0,3.34065E-4,0.001176449,0.003893062,0.012442081,0.028898594,0.047857622,0.061276416,0.06968888699999999,0.0774026693,0.08214733160000001,0.08794116,0.08770076700000001,0.084218995,0.0062192066352,0.00132884647363,9.00169E-4,0.0014719,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,refining,biomass liquids,cellulosic ethanol CCS level 2,0.0,0.0,0.0,0.0,8.30259E-5,2.99884E-4,0.0010202366,0.0033591246999999996,0.0082802893,0.014716441799999999,0.0199699729,0.024628338,0.031327242379999995,0.0402471489,0.0688912576,0.11409396800000002,0.177781028,0.276805684,0.32363867900000004,0.370762973,0.505052237,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,refining,biomass liquids,corn ethanol,0.0,0.0071158,0.037839,0.04669953,0.052408039999999996,0.05763300999999999,0.06589165000000001,0.08194797000000001,0.10741852,0.13218612,0.1472398,0.15400453600000003,0.160293044,0.16208587000000002,0.17035444000000002,0.17957676,0.19117640000000002,0.20133781,0.19793933000000002,0.19752941400000001,0.219192416,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,0.00353344,0.00961918,0.01796173,0.03173553,0.04816902,0.06035285,0.06487311,0.06255000000000001,0.05655074799999999,0.045520572,6.833361045E-4,3.56745E-4,1.91497E-4,4.6979E-5,1.0036E-5,7.12057E-6,1.38051E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,refining,coal to liquids,coal to liquids CCS level 1,0.0,0.0,0.0,0.0,6.88933E-4,0.0029914520000000003,0.008014549,0.019725083,0.036843918999999996,0.05388380400000001,0.064840796,0.069558089,0.0716867912,0.06963975099999999,0.06477094800000001,0.057333842,0.050088971999999995,0.042979011,0.036110985,0.030184444,0.027393683,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,refining,coal to liquids,coal to liquids CCS level 2,0.0,0.0,0.0,0.0,3.98188E-4,0.001768248,0.0048331929999999995,0.012115493000000001,0.023208014,0.034893208,0.042933243999999995,0.0472337507,0.0505729684,0.0518375688,0.05356731,0.054976015,0.057136254000000004,0.058276029,0.056055246999999996,0.055577939,0.081117416,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,refining,gas to liquids,gas to liquids,0.0142735,0.0237333,0.033444,0.0328424,0.0420389,0.0649807,0.10907800000000001,0.2077281,0.36207627,0.50860809,0.59244404,0.61834518,0.617139176,0.5755521899999999,0.5036845999999999,0.41363416999999997,0.33614814,0.2556,0.19932291,0.19447638999999997,0.23369735000000003,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,refining,oil refining,oil refining,3.12207,4.12866,3.9566,4.0160814,4.0489504,4.0246195,3.9053405999999993,3.657072,3.2891815,2.9151616999999996,2.6475834,2.4966098000000003,2.38153348,2.3388341300000004,2.23183292,2.0550721000000003,1.8966149999999997,1.6062003000000002,1.4103934,1.17057199,0.50938943,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.00467229,0.010186069999999998,0.01888292,0.03174052,0.05129267999999999,0.07156586000000001,0.08764660999999999,0.097429565,0.104804647,0.10892413799999999,0.109329022,0.10241918399999998,0.0599114865,0.003763775653581,0.00103492,5.06823E-4,4.41163E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,refining,biomass liquids,FT biofuels CCS level 1,0.0,0.0,0.0,0.0,9.03601E-4,0.002782682,0.007112807,0.015585993000000001,0.030423047,0.048827391,0.067251641,0.086603972,0.1128632381,0.1482179129,0.223210312,0.316034657,0.434991348,0.544749046,0.573857437,0.5674782,0.5414236799999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,refining,biomass liquids,FT biofuels CCS level 2,0.0,0.0,0.0,0.0,5.41365E-4,0.001674766,0.004296916,0.009441426999999999,0.018660990000000002,0.030434935999999996,0.042604308,0.056388859799999996,0.0767521507,0.1068426358,0.18328095,0.297216784,0.469237363,0.704567545,0.8240406180000001,0.891489541,0.95921207,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,refining,biomass liquids,biodiesel,0.0,0.0,0.0,0.00197309,0.002746157,0.0034667450000000002,0.004208789,0.0048635580000000005,0.00567419,0.0064106300000000005,0.007164053,0.007820941000000001,0.008428753,0.0090049616,0.0094718734,0.009715588399999999,0.01007442098,0.009952141920000001,0.0096973956,0.0096998961,0.009816920469999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.00566175,0.01242509,0.02322568,0.03927638,0.06363536,0.08884086,0.10879656000000001,0.12080908,0.129588273,0.134070425,0.133369411,0.11983923,0.024575464970000002,0.00395214054769,0.00105084,5.04604E-4,4.2902E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,refining,biomass liquids,cellulosic ethanol CCS level 1,0.0,0.0,0.0,0.0,0.00108608,0.00327812,0.00822129,0.01774135,0.03289733,0.049706493000000004,0.064599021,0.076118329,0.0869653214,0.096111869,0.10458774,0.106302904,0.10478467300000001,0.008534839891,0.001933368259569,9.80229E-4,8.76795E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,refining,biomass liquids,cellulosic ethanol CCS level 2,0.0,0.0,0.0,0.0,2.69573E-4,8.29673E-4,0.002115705,0.004635324,0.009126641,0.014829004,0.020693711,0.027174311,0.0365434597,0.0501031173,0.0829949776,0.131681688,0.20516319,0.304065671,0.356767901,0.390015993,0.432746812,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,refining,biomass liquids,sugar cane ethanol,0.0580575,0.0297611,0.0097529,0.00486106,0.003079841528369,0.00370868497133,0.0058573044433,0.008705985845999999,0.015171698185,0.01922767386,0.02135784927,0.01912847614,0.02145802607,0.023948115279999998,0.02820675398,0.027330995366,0.028828951516,0.02050286520485,0.009749218301985,0.006901764843925,0.008625489659255999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,0.00476641,0.01241118,0.02077659,0.030340819999999998,0.04044863,0.047672040000000006,0.0504053,0.047551914,0.04188421199999999,0.033254531999999996,6.845653901E-4,3.57684E-4,2.20919E-4,5.54816E-5,1.46485E-5,7.78426E-6,8.48405E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,refining,coal to liquids,coal to liquids CCS level 1,0.0,0.0,0.0,0.0,9.26235E-4,0.0037659829999999997,0.008581575000000001,0.016127029,0.026538058,0.037137175999999994,0.045803228,0.050820809,0.054217433499999995,0.05569465999999999,0.054980733000000004,0.052219378,0.049149108,0.043748300999999996,0.037297228999999994,0.03069844,0.025203782,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,refining,coal to liquids,coal to liquids CCS level 2,0.0,0.0,0.0,0.0,5.35015E-4,0.002218849,0.005131482,0.009753067,0.016471701000000002,0.023741364,0.030123716999999998,0.0346656063,0.0389497325,0.0428382864,0.047029726,0.051057698,0.056136039,0.057785692,0.055829396999999996,0.053161799999999995,0.05769752,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,0.0131991,0.044956499999999996,0.0939499,0.1673934,0.267874,0.3623829,0.43016434000000003,0.45949264999999995,0.46769606799999996,0.45394193,0.42048272999999997,0.37483807,0.33624842999999993,0.29000921,0.25110033,0.22517568999999998,0.22777113,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,refining,oil refining,oil refining,1.17853,1.75,1.89676,1.9395950000000002,2.0290239,2.094252,2.1271117999999998,2.0817377,1.9800134999999999,1.8713275999999999,1.8370587999999999,1.8398580800000002,1.86204489,1.9365186999999997,1.97437804,1.9714094,1.9968613,1.9201985999999998,1.8015286000000001,1.6264231999999998,1.1817886299999998,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.00988927,0.0224215,0.03635582,0.05385352,0.07940086,0.10844411,0.13306293,0.14833322,0.15879820700000002,0.16353895200000002,0.161227924,0.147354369,0.039505109000000004,0.006718834160053,0.00146183,8.16476E-4,2.903E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,refining,biomass liquids,FT biofuels CCS level 1,0.0,0.0,0.0,0.0,0.00191841,0.00625103,0.01345817,0.025915429999999996,0.04716737,0.07588837,0.106672537,0.139999148,0.1824658654,0.234082658,0.330847043,0.442048125,0.60198007,0.8633836699999999,0.9301970099999999,0.9536333200000001,0.90076023,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,refining,biomass liquids,FT biofuels CCS level 2,0.0,0.0,0.0,0.0,0.00115009,0.0037712099999999997,0.00817043,0.01585662,0.02931529,0.047987211,0.068566703,0.09247987499999999,0.12575269979999998,0.170405357,0.272235311,0.41662221299999996,0.665219628,1.27333988,1.5649443299999999,1.8190517400000001,1.8917023899999998,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.0119835,0.027355900000000002,0.044661,0.0665055,0.09833919999999999,0.13446423999999998,0.16504486999999998,0.18381209,0.19624482999999998,0.20125889,0.196906114,0.162726917,0.015997091935,0.007056341902285,0.00148432,8.129E-4,2.82309E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,refining,biomass liquids,cellulosic ethanol CCS level 1,0.0,0.0,0.0,0.0,0.00230128,0.00730867,0.01533596,0.0286556,0.049147979999999994,0.07413368000000001,0.09810072,0.117439821,0.13440178,0.146951801,0.15541483099999998,0.152886025,0.145242584,0.0124231814092,0.002891843572802,0.00168572,6.1601E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,refining,biomass liquids,cellulosic ethanol CCS level 2,0.0,0.0,0.0,0.0,5.72627E-4,0.001867221,0.004021411,0.007772916,0.01430101,0.023308995,0.033196284,0.044415229,0.0596776223,0.0797026924,0.123124272,0.18398768399999998,0.288291157,0.536483221,0.6595023630000001,0.775555974,0.8205039,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,0.00747329,0.02078615,0.03138171,0.04194358,0.05268176,0.06093911,0.06375059,0.058906139999999996,0.05067707800000001,0.039459083000000006,6.709507240999999E-4,3.21662E-4,2.1102E-4,8.03705E-5,1.67007E-5,1.00781E-5,4.49925E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,refining,coal to liquids,coal to liquids CCS level 1,0.0,0.0,0.0,0.0,0.00146156,0.00655162,0.01311776,0.02275715,0.0358527,0.05015496,0.062381399,0.069340435,0.0735514607,0.07460710899999999,0.071922771,0.06610419299999999,0.06033134000000001,0.054448864,0.046079362,0.038581561,0.03154654,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,refining,coal to liquids,coal to liquids CCS level 2,0.0,0.0,0.0,0.0,8.45225E-4,0.003880028,0.007908885000000001,0.013985008,0.022726369,0.032823774,0.042038281999999996,0.048484211,0.054118055500000005,0.05847786900000001,0.061913909,0.064252439,0.06915447,0.077773,0.078281851,0.08192317800000001,0.08894039,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,0.0207118,0.07622580000000001,0.1388059,0.2210821,0.3291906,0.4406954,0.5266475,0.5639783700000001,0.570925877,0.55026894,0.5034334,0.4382053,0.37735875999999996,0.204473643,0.11548753600000002,0.157849399,0.21159279,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,refining,oil refining,oil refining,2.55016,1.09805,1.38878,1.7954890000000001,1.958712,2.134156,2.251689,2.301715,2.297434,2.253524,2.2481595,2.2760034,2.31684294,2.377464,2.3605317999999995,2.2614623,2.1774531,1.42489811,0.9809486000000001,0.47219578000000006,0.07690412529999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.0766521,0.1613211,0.27493920000000005,0.4335249,0.6527335000000001,0.9012357,1.1173939,1.2849196,1.4179726899999998,1.5003917100000002,1.51725578,1.43069517,0.690266964,0.054926650986013,0.014729,0.00777379,0.0105984,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,refining,biomass liquids,FT biofuels CCS level 1,0.0,0.0,0.0,0.0,0.014787,0.0436625,0.100971,0.20930300000000002,0.3802221,0.6094390999999999,0.86417292,1.1887916299999999,1.621144688,2.16737403,3.18626861,4.39573815,6.047721790000001,7.9825294,8.584334700000001,8.6890564,9.0246868,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,refining,biomass liquids,FT biofuels CCS level 2,0.0,0.0,0.0,0.0,0.00885461,0.02627381,0.061070820000000005,0.12733552,0.23409196999999998,0.3809677,0.5496681999999999,0.78126937,1.116620448,1.5814785740000001,2.6296477400000002,4.14266824,6.61171787,11.03312003,13.58440835,15.4914296,19.4622101,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,refining,biomass liquids,biodiesel,0.0,0.0,0.007367,0.181490162713,0.151263346153,0.125906550789,0.11736449890640001,0.1166791483647,0.12736087627367,0.13279988908376,0.13043453180554998,0.11434020370419999,0.1040457228207,0.09267013635410001,0.081270498382723,0.063395603483027,0.0532488,0.0312044,0.0109059,0.00633875,0.00701135,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.0928849,0.1967425,0.3378442,0.5358213,0.8089556999999999,1.1180039,1.3863873999999998,1.5921979000000002,1.75152364,1.84476695,1.85028781,1.6710844099999997,0.2514748422,0.057684518811748,0.0149556,0.00773975,0.0103067,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,refining,biomass liquids,cellulosic ethanol CCS level 1,0.0,0.0,0.0,0.0,0.0178021,0.0514714,0.1163509,0.23530679999999998,0.4071628,0.6154243,0.81956613,1.01310715,1.196301018,1.34735767,1.46743417,1.4886644800000002,1.46248974,0.105200165196,0.028708490428764,0.0157472,0.0219956,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,refining,biomass liquids,cellulosic ethanol CCS level 2,0.0,0.0,0.0,0.0,0.00440952,0.013017459999999998,0.03007453,0.062477359999999996,0.11442226999999999,0.18552772,0.26677207999999997,0.37560339,0.529845546,0.7391861239999999,1.188734556,1.8314989700000002,2.8761158399999998,4.69632137,5.78560798,6.67366239,8.82519689,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,refining,biomass liquids,corn ethanol,0.0,0.0,0.0433228,0.30160560000000003,0.5176031000000001,0.7024395999999999,0.8876605,1.0772704,1.2703973,1.4053072,1.46876612,1.5089142,1.5572930999999999,1.609273,1.68877242,1.7652787,1.8806334,1.9695183,1.9067723,1.8254833000000001,1.8682366,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,0.153794,0.357377,0.526131,0.6910550000000001,0.839218,0.940881,0.9554162,0.8641838000000001,0.72871733,0.5646505799999998,0.009283170736,0.004460354512182,0.00276886,7.70662E-4,1.95171E-4,1.11678E-4,1.89612E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,refining,coal to liquids,coal to liquids CCS level 1,0.0,0.0,0.0,0.0,0.0297302,0.1054616,0.2050951,0.34460840000000004,0.5071666,0.6751708000000001,0.8200371,0.91275415,0.9666904799999998,0.9793828099999999,0.9440919,0.8750449800000001,0.80085096,0.6987846500000001,0.57864875,0.46706974999999995,0.41246278,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,refining,coal to liquids,coal to liquids CCS level 2,0.0,0.0,0.0,0.0,0.0171563,0.0620733,0.12262690000000001,0.2092163,0.3151263,0.43098629999999993,0.53938876,0.62675945,0.7023706929999999,0.7618599800000001,0.8077367400000001,0.8431570899999999,0.8973884599999999,0.9283270100000001,0.90123749,0.8877959400000001,1.28079908,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,0.425599,1.271487,2.263105,3.541358,5.043129,6.509898,7.578752,8.039863,8.064283399999999,7.7045262,6.9953932000000005,6.092532200000001,5.2566904,3.8379228,2.662685,2.8165645,3.3876545,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,refining,oil refining,oil refining,4.92161,13.6324,18.1086,20.956970000000002,24.41583,27.16675,29.313679999999998,30.6973,31.20847,31.29026,31.500475,31.892165,32.290148,32.869714,32.420403,31.114655,29.98378,25.357921,21.258916,15.872755999999999,4.90799807,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.00244972,0.00475299,0.00850002,0.01376639,0.02204056,0.03188132,0.04099719,0.047307362,0.053152231,0.05734083399999999,0.059637233000000005,0.057333612,0.0263241344,0.0024861366584189998,6.87241E-4,4.29523E-4,3.76325E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,refining,biomass liquids,FT biofuels CCS level 1,0.0,0.0,0.0,0.0,4.74928E-4,0.001270604,0.003206052,0.00694344,0.013771308,0.023286519,0.033921393,0.0456618181,0.0628376819,0.0855445091,0.1328445113,0.190297074,0.267146424,0.361450916,0.395152975,0.412674849,0.42085965099999995,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,refining,biomass liquids,FT biofuels CCS level 2,0.0,0.0,0.0,0.0,2.84683E-4,7.659640000000001E-4,0.0019470520000000001,0.004251874,0.008571350000000002,0.014743525,0.021817352999999998,0.030197941399999997,0.0435100961,0.0628067907,0.1113895325,0.183212498,0.298552219,0.514555526,0.6465192860000001,0.7756676730000001,0.936305527,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,refining,biomass liquids,biodiesel,0.0,0.0,5.85954E-4,0.0090107459388,0.008603333000000001,0.009796465,0.011140719,0.012320356,0.013863062999999998,0.015297914700000002,0.0167075774,0.017802342,0.018928650499999998,0.0199377138,0.0204736032,0.0204710386,0.0205367115,0.0195235876,0.018756993,0.018314513,0.0179077843,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.0029685,0.00579375,0.01044718,0.01702161,0.02733057,0.039566040000000004,0.0508761,0.058627051,0.06565134,0.070486407,0.072656731,0.066242682,0.009848584607,0.0026109837154750003,6.97815E-4,4.27642E-4,3.65966E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,refining,biomass liquids,cellulosic ethanol CCS level 1,0.0,0.0,0.0,0.0,5.69937E-4,0.001490023,0.0036474510000000003,0.007649771999999999,0.014255237,0.022593746999999997,0.031026224999999998,0.038054262,0.0454918047,0.05210337389999999,0.05855719400000001,0.060747618,0.060661520000000003,0.0047479522457,0.001351147080911,8.80669E-4,7.92869E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,refining,biomass liquids,cellulosic ethanol CCS level 2,0.0,0.0,0.0,0.0,1.41746E-4,3.79463E-4,9.5784E-4,0.002082916,0.004178595,0.007157986,0.0105609991,0.0144985111,0.02062153034,0.0293108736,0.0501382942,0.080603436,0.12924797570000002,0.217749955,0.273819569,0.333162596,0.419611147,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,refining,biomass liquids,sugar cane ethanol,0.0,4.18968E-5,3.34874E-4,0.00100347,2.11619E-4,2.87199240492E-4,6.0496085789E-4,0.00104921577908,0.0022403914650000003,0.0037545456727,0.005348733395,0.00547831419,0.007061263038999999,0.00835005765,0.010716277950999999,0.0109982796932,0.01266963557102,0.011338315582521,0.005770781198747,0.00553142,0.00735777,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,0.0025265,0.00570817,0.009271129999999999,0.01313734,0.017375,0.020869020000000002,0.022612660000000003,0.021672548000000003,0.019561964,0.016053634,3.8397483076E-4,1.9445E-4,1.21854E-4,3.60636E-5,9.55868E-6,6.4964E-6,7.23976E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,refining,coal to liquids,coal to liquids CCS level 1,0.0,0.0,0.0,0.0,4.93478E-4,0.001708026,0.003910568,0.007420707,0.012516645,0.018263115,0.023450555999999997,0.026767714000000005,0.0296292076,0.031447550000000005,0.032004766999999996,0.031138720999999998,0.029984865,0.027613415,0.024118860000000002,0.020797004999999997,0.018965510999999997,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,refining,coal to liquids,coal to liquids CCS level 2,0.0,0.0,0.0,0.0,2.85313E-4,0.001009224,0.0023600260000000003,0.004570606,0.007965485,0.012003794000000002,0.015861287,0.0187955824,0.021983254200000003,0.024998912600000003,0.0282938268,0.031442565,0.035657352,0.039406011000000005,0.040468296,0.043598535,0.06324843499999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,0.00700092,0.02026605,0.04130341,0.0713902,0.1138369,0.15952338,0.19790036,0.21803076999999998,0.230164835,0.23143992600000002,0.22255531599999998,0.2046426,0.18699148000000002,0.14271400499999998,0.104462552,0.11811481700000001,0.14475929999999998,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,refining,oil refining,oil refining,0.397834,0.505195,0.534127,0.723264,0.776798,0.8116847,0.8451416,0.8578588,0.8556116,0.8408355999999999,0.8528758999999999,0.88570865,0.9458582800000002,1.01892853,1.07133741,1.09004421,1.11183647,0.9692248400000001,0.8430019900000001,0.59777924,0.155745038,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.0065627,0.012282290000000001,0.02235182,0.03875626,0.06773089,0.09705063,0.11850675,0.12831135,0.134405132,0.132800888,0.12763650099999999,0.11333304300000002,0.09101063399999999,0.0041277353439,0.001190205933335,7.06841E-4,3.50531E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,refining,biomass liquids,FT biofuels CCS level 1,0.0,0.0,0.0,0.0,0.0012361,0.00305147,0.00770871,0.01814282,0.03956668,0.06502543999999999,0.0879901,0.106606993,0.1280533581,0.146303194,0.18819051399999998,0.227110814,0.26359102,0.29875077,0.30029486,0.29032272400000003,0.26316422,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,refining,biomass liquids,FT biofuels CCS level 2,0.0,0.0,0.0,0.0,7.36553E-4,0.001815516,0.004592752,0.010880731000000001,0.024120970999999998,0.040256247,0.055201336000000004,0.068183763,0.08420862670000001,0.0992689243,0.138452058,0.181614271,0.227947678,0.289232223,0.31349001099999996,0.32742123700000003,0.323925549,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,refining,biomass liquids,biodiesel,0.0,0.00138131,0.0461682,0.0388289,0.04182566,0.043440620000000006,0.044529839999999994,0.04392895000000001,0.042194129999999996,0.039284980000000004,0.03738796,0.034680786,0.030926454,0.0273402733,0.020576293500000002,0.0120115096,0.0062061663,0.00352057924604,0.001540795463951,0.00116422,8.08479E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.0079525,0.014968289999999999,0.02747355,0.04795216,0.08404940999999999,0.12050011,0.14712707,0.15916903,0.166350834,0.16380951800000002,0.15615724799999997,0.13627767600000001,0.06839071320000001,0.00420444936395,0.0012085103643820001,7.03746E-4,3.40882E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,refining,biomass liquids,cellulosic ethanol CCS level 1,0.0,0.0,0.0,0.0,0.00151127,0.00372878,0.00930629,0.021304370000000003,0.043556,0.06747442000000001,0.08688001399999999,0.098593974,0.1081102172,0.111299187,0.11359845299999999,0.10738579300000001,0.09764718,0.02369002149,0.0018574508585029999,0.001153751964861,6.05628E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,refining,biomass liquids,cellulosic ethanol CCS level 2,0.0,0.0,0.0,0.0,3.67088E-4,9.017000000000001E-4,0.0022679700000000002,0.005352506999999999,0.011810547999999999,0.019642853000000002,0.026872195,0.0330110833,0.0404656274,0.0473431891,0.0647417989,0.08409994999999999,0.105339644,0.133774911,0.14605819999999997,0.154757524,0.156799147,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,refining,biomass liquids,corn ethanol,0.0,0.00184168,0.0259932,0.0374713,0.04050435,0.04249322999999999,0.04577311,0.051709540000000005,0.06735002,0.08468267,0.09971305,0.10957478,0.121545825,0.130276197,0.149276514,0.17013548,0.19218840999999998,0.21136348,0.21654803,0.221617545,0.218235257,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,refining,coal to liquids,coal to liquids,0.00422773,0.0144827,0.0207611,0.0203876,0.026172479999999998,0.032011649999999996,0.0379048,0.044525089999999996,0.05382599,0.06069242,0.062870581,0.058456619999999994,0.051966555000000005,0.04160409699999999,6.982805705E-4,3.6533234919E-4,2.1544E-4,6.56746E-5,1.84341E-5,1.15521E-5,6.96027E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,refining,coal to liquids,coal to liquids CCS level 1,0.0,0.0,0.0,0.0,0.00117646,0.0035379499999999998,0.00803371,0.01645984,0.030305359999999996,0.043757441,0.053613309000000005,0.057750186,0.059155759499999995,0.05631977,0.050610715,0.042129813999999995,0.033565862,0.026033082000000003,0.0084955818,0.00125569828,0.0012707303700000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,refining,coal to liquids,coal to liquids CCS level 2,0.0,0.0,0.0,0.0,6.72737E-4,0.002036185,0.004682443,0.009776395,0.018626582,0.027700721999999997,0.034763248000000004,0.038416184000000006,0.040610911099999994,0.04002840840000001,0.038187533999999995,0.034335630000000006,0.030010656,0.025953831000000004,0.022035159999999998,0.018983417000000002,0.016974589999999998,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,refining,gas to liquids,gas to liquids,0.0,0.00138131,0.00339045,0.00332947,0.02031655,0.0498896,0.10109731999999999,0.18734222,0.326154532,0.45503615100000006,0.542040125,0.57095228,0.574496669,0.54116362,0.48881456999999995,0.41975529,0.36106787,0.31797767,0.28231232,0.26420285,0.26375491,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,refining,oil refining,oil refining,3.22469,2.78458,2.81513,2.99922,3.11424,3.147522,3.125961,2.985758,2.7900329999999998,2.5530169999999996,2.4099837,2.32045086,2.27091023,2.25449174,2.23608567,2.1661115,2.1304521,2.1137224999999997,2.0333378,1.9526108,1.7660044000000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.00135734,0.01479928,0.05595628,0.15718812,0.33642126,0.52006862,0.6327337679999999,0.6778798529999999,0.6997659628,0.6786295609999999,0.6335023799999999,0.5464144000000001,0.43454300999999995,0.019373518393,0.0041530509139320005,0.00220306,0.0012521,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,refining,biomass liquids,FT biofuels CCS level 1,0.0,0.0,0.0,0.0,2.52835E-4,0.004427135,0.02339854,0.087181377,0.21665692400000003,0.367306672,0.472505238,0.5344114436,0.5979447349,0.644236066,0.7766477700000001,0.91483834,1.03518221,1.14963651,1.1352968799999998,1.08129189,0.97106237,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,refining,biomass liquids,FT biofuels CCS level 2,0.0,0.0,0.0,0.0,1.50314E-4,0.002620361,0.013927312,0.052309183,0.132033375,0.226809873,0.294353777,0.3360682511,0.38181126377,0.420135838,0.5411567829999999,0.6909435700000001,0.8420303900000001,1.03548824,1.08762202,1.1054688499999998,1.08287459,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,refining,biomass liquids,biodiesel,0.0,0.0563401,0.372027,0.0941681,0.10368838799999999,0.108138075,0.108216281,0.09708677499999999,0.07339919810000001,0.049868674099999996,0.0309070447,0.02117791108,0.016381295998,0.01462004744,0.016972582846,0.014622795249900001,0.010980229771091001,0.00626602,0.00219103,0.00166777,0.00148925,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.00164478,0.01813287,0.06924421,0.19560441,0.41884488,0.64698163,0.7864963899999999,0.84177116,0.8672485252,0.838440655,0.7761767399999999,0.65803294,0.35773493199999995,0.0191891118011,0.004216903641675,0.00219341,0.00121763,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,refining,biomass liquids,cellulosic ethanol CCS level 1,0.0,0.0,0.0,0.0,3.11337E-4,0.005481845000000001,0.028240998,0.10192031700000001,0.237944542,0.382812801,0.475735389,0.5192017359,0.5493326304,0.547943194,0.53854463,0.4940314699999999,0.43647283000000003,0.1066030144,0.00625342445171,0.0035179382935919996,0.00213991,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,refining,biomass liquids,cellulosic ethanol CCS level 2,0.0,0.0,0.0,0.0,7.4942E-5,0.0012997905,0.0068629467,0.0256970786,0.0646167378,0.1107076206,0.143495211,0.1634076853,0.18492799518999997,0.20254492140000002,0.257026117,0.325595204,0.39651634,0.48845773000000003,0.51589902,0.53003056,0.53075553,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,refining,biomass liquids,corn ethanol,2.51186E-4,0.070446,0.114563,0.1323966,0.12973663600000002,0.129954076,0.140371696,0.183805851,0.283484478,0.39171067299999995,0.463889318,0.499770075,0.534831228,0.550950406,0.59152856,0.63460468,0.67729638,0.71558853,0.70324341,0.6854418900000001,0.6514895199999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,refining,coal to liquids,coal to liquids,1.67391E-4,0.0,0.0,0.0,0.00128235,0.01858054,0.05538628,0.12595746,0.21376483,0.27976701,0.308193074,0.303880893,0.27975119600000004,0.22750184999999998,0.003400398645,0.001955818353674,0.00107173,2.95189E-4,6.32753E-5,3.54989E-5,2.45363E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,refining,coal to liquids,coal to liquids CCS level 1,0.0,0.0,0.0,0.0,2.30508E-4,0.005569201,0.023842508,0.075052296,0.157479746,0.235119888,0.279168544,0.2910993606,0.2887818201000001,0.264385238,0.222275139,0.16980603,0.12324398,0.0846434,0.0078116087,0.00230015377,0.00336926878,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,refining,coal to liquids,coal to liquids CCS level 2,0.0,0.0,0.0,0.0,1.31262E-4,0.0031894889999999998,0.013934937000000001,0.04481335,0.097153826,0.148786966,0.1794251108,0.1893045355,0.1908264562,0.17852345200000003,0.15684756699999997,0.12828859,0.10197959999999999,0.08337066000000001,0.0694911,0.059806683000000006,0.05390211,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,0.00351471,0.07338526000000001,0.28451181999999997,0.81976479,1.67618482,2.47059723,2.91140835,3.040453372,3.034290188,2.81523096,2.4674584999999998,2.0549505,1.7233461,1.5082937,1.3324294,1.2169806399999998,1.16232701,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,refining,oil refining,oil refining,22.912,25.917,23.1086,23.329246,23.0983361,22.690833,21.7751265,20.0869114,17.6860565,15.2422386,13.518806,12.51496595,11.75392299,11.4557818,11.0736043,10.605221599999998,10.349291000000001,10.246399,9.7307717,9.1319912,8.1012533,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.00201425,0.00422203,0.00782992,0.013873680000000001,0.02381489,0.03478547,0.043483110000000005,0.04864641,0.0521244745,0.053158669,0.051896518,0.047025154,0.034265828,0.00158294006476,4.69518E-4,2.83341E-4,1.57691E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,refining,biomass liquids,FT biofuels CCS level 1,0.0,0.0,0.0,0.0,3.85255E-4,0.0011176,0.002817275,0.006693189,0.014154023,0.02388385,0.033371028000000004,0.0426447393,0.05390976,0.0667273862,0.09117615510000002,0.117302015,0.147023275,0.17469421400000001,0.18004152699999998,0.177354772,0.164163398,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,refining,biomass liquids,FT biofuels CCS level 2,0.0,0.0,0.0,0.0,2.30287E-4,6.69539E-4,0.0016869839999999999,0.004026961,0.008653178000000001,0.014853789000000001,0.021078986,0.027609619199999998,0.0362164918,0.047015151000000005,0.07131575180000001,0.10218484,0.142530102,0.196709119,0.22303149,0.24110904900000002,0.24629889800000002,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,refining,biomass liquids,biodiesel,0.0,0.0,0.00142311,0.031577600000000004,0.03434496,0.03610678999999999,0.037420770000000006,0.037710372,0.037162916,0.03408567,0.0296754194,0.028073340000000002,0.027963101,0.027647301200000002,0.025161288,0.0207635214,0.015696896,0.0090380181,0.0048675401,0.00223897377,0.00132509664391,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.00244081,0.0051489199999999995,0.00962955,0.01717417,0.02955887,0.04319589,0.0539841,0.060323906000000004,0.064468942,0.065491647,0.063435919,0.05600189099999999,0.01871865918,0.00165750002272,4.76741E-4,2.821E-4,1.53351E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,refining,biomass liquids,cellulosic ethanol CCS level 1,0.0,0.0,0.0,0.0,4.66379E-4,0.0013357809999999999,0.003347066,0.007779075,0.015450196,0.024442496,0.032273522,0.038012489399999995,0.042880656399999995,0.046012435399999996,0.04804779430000001,0.046690548000000005,0.043819288000000005,0.006466867758999999,8.139634425469999E-4,5.09225E-4,2.93617E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,refining,biomass liquids,cellulosic ethanol CCS level 2,0.0,0.0,0.0,0.0,1.14714E-4,3.32001E-4,8.32158E-4,0.0019795869999999997,0.004234356,0.0072402879,0.0102453978,0.0133252557,0.01730220369,0.022187491599999998,0.0327481015,0.046187417,0.063951271,0.087712113,0.099964972,0.109569677,0.1147465,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,refining,biomass liquids,corn ethanol,0.0,0.0,0.0,0.00669129,0.00813004,0.0098348,0.012610030000000001,0.017133199999999998,0.024610520000000004,0.03301109,0.041480643000000005,0.048763719,0.0560793792,0.0626962016,0.072008397,0.082287092,0.09567202999999999,0.110413451,0.118822609,0.129511848,0.136538022,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,0.00185551,0.00465228,0.00787396,0.01208736,0.01694259,0.02074691,0.022463525,0.021607611999999998,0.0194473521,0.015689048,2.769997641E-4,1.46719E-4,9.25118E-5,2.61475E-5,7.54073E-6,4.86242E-6,3.3068E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,refining,coal to liquids,coal to liquids CCS level 1,0.0,0.0,0.0,0.0,3.5235E-4,0.001336399,0.0030032289999999996,0.0061610499999999995,0.0110561,0.016331829,0.020588638,0.022985149700000002,0.024436967499999997,0.024606153600000003,0.023403184900000002,0.020972254,0.018279656,0.015331161,0.012383004000000001,0.0086075782,0.005840123700000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,refining,coal to liquids,coal to liquids CCS level 2,0.0,0.0,0.0,0.0,2.02664E-4,7.802149999999999E-4,0.001767935,0.003682953,0.006829922,0.010421798,0.013509685,0.015590424999999998,0.0173119655,0.0183970392,0.018979422000000003,0.0188242637,0.018515271,0.017646694,0.016132156999999998,0.014835509000000002,0.014355174000000002,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,0.00512296,0.016653519999999998,0.035256789999999996,0.06741327,0.11547959,0.1640528,0.19940016,0.21555573800000002,0.22090150100000003,0.213597749,0.19585961100000002,0.17120183,0.14971137,0.13069598,0.1139834,0.10462270000000001,0.1053815,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,refining,oil refining,oil refining,3.48201,0.669215,0.865545,0.963452,0.997757,1.0169886,1.0193334,0.992405,0.944308,0.8914903000000001,0.8703124999999999,0.87322586,0.8842003300000001,0.9075988899999999,0.90875977,0.8874935700000001,0.88057472,0.86014158,0.8134370799999999,0.7676444699999999,0.6750168599999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.00904294,0.01767425,0.02722193,0.04070997,0.062074439999999995,0.08981357,0.11159785,0.12129394,0.125327949,0.122824635,0.116319855,0.10250695900000001,0.079103238,0.0035121261284000002,9.21057665694E-4,4.67813E-4,1.77491E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,refining,biomass liquids,FT biofuels CCS level 1,0.0,0.0,0.0,0.0,0.00168753,0.0043916400000000005,0.00880884,0.01741745,0.03340006,0.05806176,0.082630055,0.103333829,0.1239189316,0.14014697199999998,0.172294174,0.206284994,0.24348988900000001,0.27755081,0.27614506,0.26328714,0.23502133,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,refining,biomass liquids,FT biofuels CCS level 2,0.0,0.0,0.0,0.0,0.00100363,0.00260655,0.00524057,0.010430138,0.020319957,0.035990696,0.052054827,0.066598323,0.0823072613,0.0960645029,0.127577041,0.1672943,0.216912941,0.281358534,0.30278439900000004,0.30976100700000003,0.296059224,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,refining,biomass liquids,biodiesel,0.0,0.0,5.02271E-4,0.0320735,0.01580299,0.016116054999999997,0.015999272000000002,0.015010526399999998,0.013474623799999998,0.01195711821,0.01046102692,0.009042181,0.007259267999999999,0.0059085158999999995,0.00422794736,0.003398278388,0.00290013495682,0.0017919408019699999,7.32491E-4,5.08967E-4,3.08418E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.010958,0.0215453,0.0334028,0.0502421,0.0768642,0.11136347,0.13842221999999998,0.15034956,0.15504557200000002,0.15150589299999997,0.14254531,0.12344137100000001,0.053583810800000006,0.00361964686184,9.352242362900001E-4,4.65764E-4,1.72605E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,refining,biomass liquids,cellulosic ethanol CCS level 1,0.0,0.0,0.0,0.0,0.00207556,0.0054065,0.010696830000000001,0.020585360000000004,0.0371196,0.06009596,0.08053226000000001,0.093228655,0.1016309443,0.10394014,0.103876464,0.09721112099999998,0.087179894,0.019661010229999998,0.001477177656308,7.79747663039E-4,3.1072E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,refining,biomass liquids,cellulosic ethanol CCS level 2,0.0,0.0,0.0,0.0,5.00352E-4,0.001294951,0.002590771,0.005136284999999999,0.009958624999999999,0.017560463999999998,0.025321717,0.0321848049,0.0394493466,0.0456828837,0.059498445899999995,0.077069682,0.09948654400000001,0.128874544,0.13954402600000002,0.144415006,0.140237366,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,refining,biomass liquids,corn ethanol,0.0,0.0,1.25593E-4,0.036044334000000004,0.041244626,0.047071692000000005,0.0536925957,0.06245720640000001,0.0743512771,0.08562282099999999,0.09433099635,0.10199248,0.11001981699999999,0.115835376,0.125671192,0.135295832,0.145692649,0.15353545,0.15112236,0.14819195000000002,0.138969015,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,0.00844271,0.01940214,0.02784617,0.03713615,0.047345559999999995,0.056412090000000005,0.05935252,0.0545246,0.047028906,0.03727223,4.947849916E-4,2.83437661886E-4,1.86304E-4,5.46053E-5,1.38935E-5,7.55626E-6,3.51685E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,refining,coal to liquids,coal to liquids CCS level 1,0.0,0.0,0.0,0.0,0.00152336,0.00496441,0.0091827,0.01607785,0.02634659,0.03933739,0.049863677999999995,0.054472959,0.0559117865,0.053627166999999996,0.048681804,0.041166458,0.032911062,0.025130497000000005,0.014062228999999999,0.0023710433000000003,0.0015594786200000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,refining,coal to liquids,coal to liquids CCS level 2,0.0,0.0,0.0,0.0,8.68061E-4,0.002845412,0.005328265,0.009499233999999999,0.016078903000000002,0.024887565,0.032510221,0.03666471,0.0390288646,0.0388115001,0.037248457,0.033962188,0.029966871000000003,0.025693351999999996,0.021395703999999998,0.018030019,0.015365322999999998,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,0.0231519,0.067549,0.1160755,0.1870775,0.28948,0.4115166,0.5001829,0.5282960999999999,0.5252886,0.49284643,0.44215086000000003,0.37676633000000004,0.31657045,0.26702616,0.22658928999999997,0.20327900999999998,0.18946531,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,refining,oil refining,oil refining,1.45339,1.73556,1.75716,2.672836,2.854635,2.976501,3.0151109999999997,2.955512,2.778845,2.5276009999999998,2.312342,2.1910076,2.11642264,2.07799031,2.01099769,1.9050688000000002,1.8285343,1.7509350000000001,1.6254494999999998,1.5114491,1.3299552,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00417204,0.011778730000000001,0.019497590000000002,0.024356080000000002,0.026484309999999997,0.02768938,0.02713133,0.025309303000000002,0.021588491,0.012758146299999999,5.78070954382E-4,1.26299E-4,8.12068E-5,8.04879E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,refining,biomass liquids,FT biofuels CCS level 1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00267689,0.00837219,0.01509181,0.01999964,0.02313425,0.02657196,0.03021094,0.042681833,0.058684514,0.076123315,0.088777111,0.09013436500000001,0.088543883,0.083891763,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,refining,biomass liquids,FT biofuels CCS level 2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00161706,0.0051515,0.00943716,0.012656220000000001,0.014858740000000002,0.0175113,0.020779992,0.033859644,0.0539021147,0.079176952,0.106614511,0.11689583099999999,0.124875994,0.13479938600000002,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,refining,biomass liquids,biodiesel,0.0,2.09288E-4,0.004981,0.00397967,0.00420611,0.00406313,0.00361521,0.00397316,0.00281714,0.00176194158,9.839065390000001E-4,5.2846708E-4,4.3536053000000003E-4,4.4735183900000003E-4,6.212606763E-4,5.60405781909E-4,4.41111E-4,2.16686E-4,7.89807E-5,7.46809E-5,9.3614E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00520759,0.01468179,0.02427008,0.03028519,0.03289449,0.03432905,0.033540009999999995,0.031029493,0.025265727,0.00624143858,6.06666110438E-4,1.28242E-4,8.08511E-5,7.82724E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,refining,biomass liquids,cellulosic ethanol CCS level 1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00305538,0.00889733,0.015099640000000001,0.01917671,0.02116599,0.02258881,0.022840480000000003,0.022947329,0.021483874,0.019468634000000002,0.00174345634,2.29734781551E-4,1.53642E-4,1.57432E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,refining,biomass liquids,cellulosic ethanol CCS level 2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.92853E-4,0.002515224,0.004592572,0.006146782,0.007186261,0.008408915999999999,0.009866775999999999,0.015473074,0.0240643667,0.034980985,0.0466886715,0.05129766250000001,0.0553624748,0.061837843100000005,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,refining,biomass liquids,corn ethanol,0.0,4.18976E-5,2.92982E-4,2.53261E-4,2.50787E-4,2.39044E-4,2.12647E-4,0.003540781,0.0093007651,0.0148540044,0.0184942649,0.020420070000000002,0.021913179999999997,0.02251908,0.024044625,0.025724207,0.027709502000000004,0.028598953000000003,0.027911522,0.027510396,0.027914868000000002,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00288789,0.0066075100000000005,0.00941555,0.01078395,0.011041747000000001,0.010729413,0.009000905,1.3048089070000001E-4,7.46959E-5,4.13044E-5,8.36384E-6,1.75522E-6,1.2374E-6,1.53767E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,refining,coal to liquids,coal to liquids CCS level 1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00216844,0.00589278,0.00953853,0.011809239999999999,0.01273248,0.013200822000000001,0.012792795,0.011694554,0.00996924,0.008307557,0.0068193329999999995,0.005662848,0.0046859245,0.0038672428999999998,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,refining,coal to liquids,coal to liquids CCS level 2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00131633,0.0037135000000000002,0.006195010000000001,0.00782705,0.00858952,0.009132337999999999,0.009210352999999998,0.009281376999999999,0.0091263301,0.008986522,0.008550614,0.0079288662,0.0074866831,0.008145339599999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0219869,0.0583398,0.09178800000000001,0.1109824,0.11791905999999999,0.11997039000000001,0.11295406999999999,0.09812194,0.07911062999999999,0.06341376,0.05138146,0.043392496999999995,0.039033319999999996,0.040427707,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,refining,oil refining,oil refining,0.911975,0.957761,0.96387,0.842775,0.850552,0.850504,0.842864,0.7782875,0.6830392000000001,0.5880017,0.5248324999999999,0.4906521,0.4656905,0.4582216,0.4360747,0.40187756,0.37632639,0.34640099,0.31657305999999996,0.29082263999999997,0.23538448999999997,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.104046,0.22169699999999998,0.35788200000000003,0.52,0.7294559,0.9646097,1.1788254,1.3589358,1.48712729,1.56744412,1.57023934,1.47236485,1.2911634600000002,0.06523447782,0.016636966206156,0.00994362,0.0041525,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,refining,biomass liquids,FT biofuels CCS level 1,0.0,0.0,0.0,0.0,0.0193923,0.0556498,0.1177585,0.2180634,0.3664406,0.5575748,0.75425027,0.9768588599999999,1.185241338,1.36232755,1.54541168,1.6519298900000001,1.7455366100000003,1.92335449,1.9048455,1.866857,1.7419982999999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,refining,biomass liquids,FT biofuels CCS level 2,0.0,0.0,0.0,0.0,0.0115304,0.0329506,0.0698792,0.12995649999999997,0.2206569,0.33938385000000004,0.46166519,0.60389664,0.740415509,0.85903398,0.99553348,1.09298619,1.2006510799999999,1.46339937,1.60210376,1.7882946000000002,1.9102908400000003,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,refining,biomass liquids,cellulosic ethanol,0.0,0.0045625,0.00761808,0.21403233,0.33977677,0.48314698,0.64937726,0.84248504,1.07386782,1.2997280979999999,1.499841294,1.69297381,1.83628508,1.92659868,1.9155220900000003,1.77657321,1.16587333,0.063076788537,0.01689271496942,0.00990007,0.0040382,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,refining,biomass liquids,cellulosic ethanol CCS level 1,0.0,0.0,0.0,0.0,0.0238705,0.06900780000000001,0.1440763,0.26163970000000003,0.42098630000000004,0.6116338,0.8019138000000001,0.9855816799999999,1.1294418800000001,1.2261939,1.26237704,1.2127651400000001,1.10757959,0.1573565903,0.02330916128089,0.01532092022926,0.00699198,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,refining,biomass liquids,cellulosic ethanol CCS level 2,0.0,0.0,0.0,0.0,0.00574859,0.0163735,0.03455117,0.06406003,0.10840804999999999,0.1663123,0.22613753999999997,0.29497423,0.36085196199999997,0.418320206,0.48351405500000005,0.5316978299999999,0.5868794,0.72017605,0.7956428,0.90365705,0.9914372300000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,0.0791171,0.2062294,0.3109365,0.40916500000000006,0.4958174,0.5584993,0.5752353,0.5283242,0.44860919,0.35545220000000005,0.00678057456,0.0032629195553209997,0.00209423,8.10492E-4,2.02127E-4,1.22886E-4,6.03661E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,refining,coal to liquids,coal to liquids CCS level 1,0.0,0.0,0.0,0.0,0.0142388,0.0528717,0.1037694,0.172526,0.2514413,0.32988310000000004,0.38571701,0.40857691999999995,0.39924354900000003,0.36437729999999996,0.30935408999999997,0.2428803,0.10653801,0.009516027500000001,0.00435999052,0.004786809893,0.005582825479999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,refining,coal to liquids,coal to liquids CCS level 2,0.0,0.0,0.0,0.0,0.00810999,0.030178009999999998,0.05998424,0.10111229,0.15062967,0.20186422,0.2392889,0.25786367000000004,0.256488923,0.2383578,0.20695028000000001,0.16811154,0.12597367,0.08411786,0.07448987,0.06618964,0.06532926,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,0.216883,0.729032,1.3281020000000001,2.072948,2.9398549999999997,3.823542,4.547162,4.9896399,5.1390078,5.0730308,4.8187645,4.4543244,4.120282700000001,3.8416577999999997,3.4018383000000005,3.1028640000000003,2.9323922000000002,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,refining,oil refining,oil refining,2.4402,4.78257,6.16306,7.710769999999999,9.50127,11.303930000000001,12.94416,14.415230000000001,15.72927,16.975858,18.279178,19.7231241,20.943383299999997,22.1779677,23.013791700000002,23.528624,24.290146,25.260499,24.135953000000004,22.71001,20.080917,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.0397066,0.08436099999999999,0.13549450000000002,0.1947953,0.2701891,0.35865329999999995,0.4395339,0.5091940899999999,0.5600083299999999,0.59116308,0.59043253,0.55337996,0.4793940400000001,0.019258951401,0.004534754823798,0.00232258,9.38888E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,refining,biomass liquids,FT biofuels CCS level 1,0.0,0.0,0.0,0.0,0.00720202,0.02084084,0.04361411,0.07867579,0.12643596,0.18353999,0.23795591,0.29443415,0.34147726200000006,0.375605743,0.41029097000000003,0.43338983,0.46045200999999997,0.51949977,0.51775426,0.5039663799999999,0.46850998999999993,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,refining,biomass liquids,FT biofuels CCS level 2,0.0,0.0,0.0,0.0,0.00425848,0.01230138,0.02577595,0.04657894,0.07509096999999999,0.10887611,0.14057123,0.173641275,0.201175342,0.22112397299999997,0.24457703400000003,0.264856645,0.29605037,0.38209006,0.42585651999999996,0.47005392999999995,0.49652938,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,refining,biomass liquids,biodiesel,0.0,0.0,0.0014231,0.15036897999999999,0.18897239000000002,0.23046237,0.27240508,0.317299817,0.37005103,0.423252238,0.491430192,0.5892002199999999,0.69249573,0.7914443600000001,0.88302967,0.9501503099999999,0.98892928,1.02375511,0.9667769299999999,0.90480049,0.82925502,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.0481153,0.1028895,0.1663926,0.2404271,0.334387,0.4444644,0.5449976,0.6306225599999999,0.6913763700000001,0.7265249699999999,0.7203957999999999,0.66792765,0.428668108,0.018423145111600002,0.004604474787031,0.00231241,9.13044E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,refining,biomass liquids,cellulosic ethanol CCS level 1,0.0,0.0,0.0,0.0,0.00902166,0.026099070000000002,0.054049849999999997,0.09637754,0.1515835,0.21784747999999998,0.28239233,0.34355596,0.38969422,0.41777417499999997,0.42463717,0.40571761000000006,0.36430457,0.04913039822,0.006364387975982999,0.003580935966738,0.00158138,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,refining,biomass liquids,cellulosic ethanol CCS level 2,0.0,0.0,0.0,0.0,0.00212501,0.0061157600000000005,0.012754930000000001,0.0229935,0.03700912,0.0536781,0.06943779,0.085816085,0.099534979,0.109638711,0.121293437,0.131719228,0.14770525,0.19075503,0.213791656,0.238881058,0.257665412,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,refining,biomass liquids,sugar cane ethanol,0.0,0.0,0.0,0.00472899,0.0029081604534959998,0.00500601650737,0.00765738042,0.0111903714796,0.019762802557,0.03382852315,0.051172534139999996,0.06618249033000001,0.07633569332000001,0.08741326349999999,0.0986007171,0.0888822611,0.08166485105,0.07968954818,0.038037177187999996,0.029888439273,0.0183626388674,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,0.0414445,0.1048266,0.1549983,0.19978010000000002,0.2385716,0.2673187,0.2733393,0.24859414,0.20913816,0.16445038,0.00280917862,0.001361329740303,8.06753E-4,3.15229E-4,7.89062E-5,4.23648E-5,2.03478E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,refining,coal to liquids,coal to liquids CCS level 1,0.0,0.0,0.0,0.0,0.00705144,0.025977140000000003,0.049287700000000004,0.07810546000000002,0.10709782000000001,0.13145577,0.14538992,0.14607215,0.13508229,0.11624876499999999,0.09213386,0.035489161000000005,0.012966730999999999,0.00376376776,0.0017086588460000001,0.001655735241,0.00186461857,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,refining,coal to liquids,coal to liquids CCS level 2,0.0,0.0,0.0,0.0,0.00397575,0.014751750000000001,0.02828792,0.04524966,0.06273269,0.07742497,0.08583177,0.08673567700000001,0.08074135299999999,0.06994157200000001,0.055638015,0.027251222000000002,0.024111622,0.023498332,0.020937163,0.020048588,0.021423916,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,0.112733,0.36734199999999995,0.65231,0.98797,1.3698519999999998,1.7688907,2.0863674999999997,2.2750204,2.33144186,2.2897866999999996,2.1619998,1.9899649000000001,1.8070458999999999,1.645769,1.428328,1.2582687000000001,1.1416655,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,refining,oil refining,oil refining,1.35552,2.68801,3.00853,4.23096,5.162605999999999,6.0591360000000005,6.830344,7.440884,7.878692,8.217724,8.55219,9.0578975,9.5264894,10.0225014,10.3056756,10.466098,10.5423773,10.665006,9.9888328,9.1182598,7.855643,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.0,0.0,9.53003E-4,0.043283777,0.11973614700000001,0.196782733,0.245558106,0.263270351,0.271441902,0.2614305519999999,0.2413641766,0.20249419999999999,0.117737174,0.00519232808964,7.389771023810001E-4,4.50657E-4,5.62247E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,refining,biomass liquids,FT biofuels CCS level 1,0.0,0.0,0.0,0.0,0.0,0.0,4.76084E-4,0.028103821,0.085470607,0.152668653,0.202013005,0.22851353400000002,0.255853942,0.2813373499,0.3947770387,0.53155398,0.67649294,0.77249827,0.76146693,0.7266825,0.6658907700000002,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,refining,biomass liquids,FT biofuels CCS level 2,0.0,0.0,0.0,0.0,0.0,0.0,2.88541E-4,0.017037882,0.052655728,0.09553097099999999,0.127905557,0.146557504,0.167845371,0.19181078729999998,0.3110405243,0.48227496000000003,0.6903871100000001,0.89652331,0.93140963,0.941411392,0.96067386,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.0,0.0,0.00118349,0.054021339999999994,0.14924347,0.24494979,0.30533667,0.32704289400000003,0.336664647,0.3234239989999999,0.2961288016,0.23639518,0.058950673,0.005447848332006,7.50346E-4,4.48683E-4,5.4677E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,refining,biomass liquids,cellulosic ethanol CCS level 1,0.0,0.0,0.0,0.0,0.0,0.0,5.4206E-4,0.031727861,0.09048742,0.152436005,0.193390752,0.210059175,0.22054523000000004,0.21844548560000002,0.21714424770000001,0.19987419,0.17799809,0.01551120836,0.001312369102659,8.31192296989E-4,0.00107312,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,refining,biomass liquids,cellulosic ethanol CCS level 2,0.0,0.0,0.0,0.0,0.0,0.0,1.41493E-4,0.008347495,0.025702683,0.046483228,0.062113002,0.07091202099999999,0.0807037164,0.09129466189999999,0.14241663042000002,0.21604723,0.30655172399999997,0.395521883,0.41139137400000003,0.418473253,0.43942503200000005,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,0.0,0.0,7.26172E-4,0.026356371,0.058818477,0.083015294,0.09479083299999999,0.09636273,0.09296288,0.07717727700000002,0.00104637848032,5.85880347342E-4,3.23155E-4,6.32157E-5,8.44358E-6,5.45657E-6,8.32699E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,refining,coal to liquids,coal to liquids CCS level 1,0.0,0.0,0.0,0.0,0.0,0.0,4.20962E-4,0.020294029,0.052926921,0.084448737,0.104058597,0.110563278,0.11286090099999999,0.1070853542,0.09589440450000002,0.07909385899999999,0.06332355999999999,0.05033887000000001,0.04074738000000001,0.031530809,0.023573570000000002,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,refining,coal to liquids,coal to liquids CCS level 2,0.0,0.0,0.0,0.0,0.0,0.0,2.54996E-4,0.012394655,0.033416166000000004,0.054887295,0.068990303,0.074415369,0.077614508,0.07623478780000001,0.0749533534,0.070755942,0.066619395,0.061211549999999997,0.054742452999999996,0.049131190000000005,0.04753501,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,0.0,0.0,0.00425389,0.20009854,0.51742537,0.80568215,0.97109215,1.01946087,1.02476005,0.949586718,0.8129110389999998,0.6406425600000001,0.5003042,0.3981294,0.32971860000000003,0.28747281999999996,0.2796649,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,refining,oil refining,oil refining,10.4289,10.201,8.43984,8.17919,7.77761,7.6164,7.4489936000000005,6.8460239,6.0147666,5.1690869,4.6065157,4.2485172,3.9627644699999993,3.8156298099999995,3.5714842320000004,3.2151623000000003,2.9470194999999997,2.6764049,2.3913024000000003,2.1437172000000007,1.74074461,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,2.66538E-4,0.010014301,0.028160999,0.05550781,0.098877408,0.142163115,0.175835309,0.19701057340000003,0.2158739308,0.22637930300000003,0.22901276499999998,0.21418509000000002,0.09329170519999999,0.008555315648565999,0.00188387,9.23719E-4,0.00146574,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,refining,biomass liquids,FT biofuels CCS level 1,0.0,0.0,0.0,0.0,5.16499E-5,0.0034059713,0.0126837822,0.0316607724,0.0658447103,0.1044855076,0.1407774249,0.17850009226000002,0.23838674854,0.318732263,0.495072081,0.7003779109999999,0.9634198300000001,1.26621755,1.33246613,1.31793281,1.3305294300000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,refining,biomass liquids,FT biofuels CCS level 2,0.0,0.0,0.0,0.0,3.09571E-5,0.00205834,0.0077086906,0.019362717,0.0408083789,0.0655585997,0.0895571286,0.11648599737000001,0.16306536817,0.23189888120000002,0.413529949,0.6700618970000001,1.0607197,1.73993131,2.04111913,2.22096545,2.67764936,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,refining,biomass liquids,biodiesel,0.0,0.0,0.0,0.0188277,0.019609270999999998,0.026482893,0.033091813,0.039505265,0.046553306,0.050822730999999996,0.054014726000000006,0.05742293600000001,0.06267155070000001,0.06831791499999999,0.07429891799999999,0.07678928,0.078901544,0.077114688,0.078562907,0.080237095,0.081905113,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,3.22984E-4,0.012279805000000001,0.034815485,0.068950635,0.12296986600000001,0.176745563,0.218449092,0.24439930049999997,0.2669383678,0.27857857799999997,0.27915834,0.24467378299999998,0.034584682889999996,0.008984915138165,0.00191286,9.19673E-4,0.00142539,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,refining,biomass liquids,cellulosic ethanol CCS level 1,0.0,0.0,0.0,0.0,6.20009E-5,0.0039500266,0.014356257599999998,0.0349424697,0.0688658105,0.10405886040000001,0.13339134049999998,0.1558569606,0.18080706244999997,0.201646565,0.222047292,0.225717775,0.22253046,0.0161597592713,0.0036488432234800003,0.00185247,0.00300943,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,refining,biomass liquids,cellulosic ethanol CCS level 2,0.0,0.0,0.0,0.0,1.54141E-5,0.0010169256,0.003785026,0.009478989699999999,0.0199039411,0.0318883462,0.04345175604,0.05610551292,0.077515594027,0.108466766,0.186344547,0.295352371,0.460809774,0.74113886,0.8702681,0.9555342849999999,1.20912799,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,9.29763E-5,0.009865495,0.0241467165,0.041522964800000006,0.0610507669,0.07528861510000001,0.08278546819999999,0.0813656713,0.07403311848000001,0.059474664999999996,0.0013180017321,6.43027E-4,3.88816E-4,1.12369E-4,2.39404E-5,1.28422E-5,2.58757E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,refining,coal to liquids,coal to liquids CCS level 1,0.0,0.0,0.0,0.0,1.81426E-5,0.0037205325999999997,0.0123795178,0.0275093633,0.049004552199999996,0.068533943,0.08398916131,0.09330836968,0.10131800343,0.10496803999999998,0.104273828,0.099162078,0.09428991,0.086550515,0.07481372900000001,0.062198764999999996,0.05534634399999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,refining,coal to liquids,coal to liquids CCS level 2,0.0,0.0,0.0,0.0,1.04876E-5,0.0022141318,0.0075053017,0.0169614724,0.031065440219999997,0.04446949439,0.055803143799999996,0.06405559321000001,0.07343374938399999,0.08173769,0.09102550699999999,0.099373581,0.11085844999999998,0.12053301400000001,0.11896548,0.11599194,0.160619123,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,2.57605E-4,0.040956663,0.125051868,0.259378075,0.451492688,0.624644612,0.746825303,0.8055248938,0.8357801972000001,0.8187769900000001,0.76204903,0.67756922,0.6076210500000001,0.46808637,0.36642422,0.38926332,0.46380277000000003,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,refining,oil refining,oil refining,2.87684,3.75661,3.69399,3.5736250999999997,3.6365602999999997,3.68744286,3.71590052,3.60809305,3.42374544,3.22584446,3.18690251,3.234499756,3.348132716,3.5237520699999996,3.6166497,3.5946618000000004,3.6218626,3.1878051000000003,2.8907185,2.405176,0.92855651,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.0541911,0.1248226,0.2149056,0.34334380000000003,0.5365862,0.7456114,0.9043588,0.99746024,1.0491375600000001,1.05384748,1.02519342,0.9233072900000001,0.56909926,0.02859035955621,0.00656686080359,0.00317032,0.00262697,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,refining,biomass liquids,FT biofuels CCS level 1,0.0,0.0,0.0,0.0,0.0104258,0.0339006,0.0760728,0.1584395,0.30379695,0.49135807,0.6727646999999999,0.8620921300000001,1.082381813,1.32887879,1.86028502,2.40119186,3.08041521,3.6784896499999995,3.7222884100000004,3.5710645899999998,3.2906377999999994,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,refining,biomass liquids,FT biofuels CCS level 2,0.0,0.0,0.0,0.0,0.00623958,0.02032533,0.045536850000000004,0.09525583,0.18538066,0.30495642,0.42421739,0.55823124,0.7281834380000001,0.938660321,1.47702971,2.1372325400000003,3.09148042,4.33905516,4.79771308,4.99037342,5.13185284,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.0656673,0.15230549999999998,0.2641795,0.42451799999999995,0.6652811000000001,0.9251938,1.1222855,1.2366442999999998,1.29753893,1.2983980099999999,1.25304675,1.08619921,0.245998404,0.030011016229564,0.00666789,0.00315643,0.00255466,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,refining,biomass liquids,cellulosic ethanol CCS level 1,0.0,0.0,0.0,0.0,0.0125735,0.0404061,0.0905159,0.1847432,0.3342184,0.5072734,0.6557637700000001,0.76984613,0.859181251,0.91201354,0.9541456800000001,0.9233640299999999,0.8686202599999999,0.07075045303,0.011780870035056,0.005908111726098,0.0050609,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,refining,biomass liquids,cellulosic ethanol CCS level 2,0.0,0.0,0.0,0.0,0.00310754,0.01007487,0.02247156,0.04685252,0.09077853999999999,0.14873888999999998,0.20628069,0.269392825,0.347726568,0.442626283,0.6751614,0.95970763,1.37448989,1.91124195,2.1188629600000004,2.2230565099999997,2.34648808,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,0.0410028,0.1164057,0.185448,0.26314540000000003,0.34405969999999997,0.4041169,0.42412269999999996,0.39610175999999997,0.34354966,0.26833959000000007,0.004444686566,0.0021272829149190002,0.00136856,3.47386E-4,7.4964E-5,3.84123E-5,3.90222E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,refining,coal to liquids,coal to liquids CCS level 1,0.0,0.0,0.0,0.0,0.00788178,0.03451672,0.06980629,0.12800868,0.20996798,0.29625204,0.36379049,0.40165764000000004,0.41972549,0.41606905,0.39515015,0.35304792999999995,0.30905162,0.2584373,0.20710187000000002,0.15592039,0.11530602999999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,refining,coal to liquids,coal to liquids CCS level 2,0.0,0.0,0.0,0.0,0.00454359,0.02018758,0.04105076,0.07633817,0.12902811,0.18785702999999998,0.2372478,0.271475407,0.29695820399999995,0.31128710800000003,0.323515832,0.32169883,0.32110877000000004,0.30707486,0.27676117000000006,0.24629829999999997,0.23872223999999997,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,refining,gas to liquids,gas to liquids,0.0,0.0,0.0475507,0.0466954,0.1601946,0.4678215,0.8586893,1.4410253,2.2350653,3.01888358,3.56292453,3.7874605000000003,3.79484958,3.592881,3.246289,2.7817586999999997,2.3829377000000003,1.9963518000000002,1.6512951,1.4046922999999998,1.3275126000000002,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,refining,oil refining,oil refining,6.81066,11.6328,14.6389,16.44028,17.244114,18.013187,18.339803,18.040144,17.176472,16.11044,15.47561,15.311508799999999,15.158471500000001,15.223057800000003,15.021125399999999,14.309778100000003,13.872202999999999,13.016487,11.687835,10.254089500000001,7.8303122,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.0097063,0.02269523,0.0402138,0.06321325,0.09546897,0.13830322,0.18150275,0.22163585,0.25068018999999997,0.281878198,0.299722754,0.29568901000000003,0.27077063,0.017285481343,0.004889085193561,0.00263435,0.00126409,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,refining,biomass liquids,FT biofuels CCS level 1,0.0,0.0,0.0,0.0,0.00175575,0.00572786,0.01354822,0.02715312,0.0474108,0.07396456,0.100060553,0.126841213,0.1473360307,0.169452897,0.198290442,0.227664172,0.267168774,0.35070784,0.39003484,0.41745997,0.42446976000000003,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,refining,biomass liquids,FT biofuels CCS level 2,0.0,0.0,0.0,0.0,0.00103758,0.0033805499999999995,0.00801022,0.01608585,0.028173910000000003,0.043831567,0.05891956899999999,0.074360311,0.086022032,0.098501244,0.116692032,0.138597517,0.173989682,0.270680398,0.342822442,0.419381664,0.48981969300000006,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.0117618,0.0276944,0.0494505,0.0781625,0.1183514,0.17160686,0.22519151,0.27448039999999996,0.30941441399999997,0.346044625,0.36472492,0.35546629,0.253339141,0.0167591503578,0.00496425407095,0.00262281,0.00122929,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,refining,biomass liquids,cellulosic ethanol CCS level 1,0.0,0.0,0.0,0.0,0.00220321,0.00717271,0.01675499,0.03315739,0.05660978,0.08777968,0.11958521,0.150385721,0.172855805,0.19546817,0.21133499099999997,0.213657481,0.20443554199999997,0.0409214822,0.006867953510657,0.004064305730613,0.00213005,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,refining,biomass liquids,cellulosic ethanol CCS level 2,0.0,0.0,0.0,0.0,5.17803E-4,0.0016802969999999999,0.003961183,0.007935404,0.013878346,0.021610593,0.029127392000000002,0.0368078006,0.0426626083,0.0490205549,0.058136883,0.06925114600000001,0.087142775,0.135381724,0.17256153800000001,0.214114616,0.256683837,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,0.00741746,0.02147006,0.034978419999999996,0.04897907,0.062458780000000005,0.07466753,0.08133423000000001,0.07870611,0.070121646,0.058783862,0.001532340568,8.233302139849999E-4,5.09516E-4,2.14809E-4,5.93408E-5,3.2545E-5,1.83764E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,refining,coal to liquids,coal to liquids CCS level 1,0.0,0.0,0.0,0.0,0.00125495,0.00546134,0.01176636,0.02078514,0.03065441,0.03979306,0.045710144999999994,0.047342035,0.0448688339,0.039928504,0.031521984999999995,0.012726619799999998,0.0071173257,0.0025358623399999998,0.001286406004,0.001274857284,0.0016766531859999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,refining,coal to liquids,coal to liquids CCS level 2,0.0,0.0,0.0,0.0,7.06854E-4,0.003103004,0.006767557,0.012079548,0.018024591,0.023496456000000002,0.026987827,0.028039608,0.02666616,0.023732363,0.017508133000000002,0.009495522200000002,0.010872538000000001,0.011305025,0.011350974,0.012401759,0.015405286,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,0.0201603,0.0766328,0.15339819999999998,0.25813969999999997,0.3886546,0.5415786,0.6767730999999999,0.7732342499999999,0.817790518,0.8516823900000001,0.8617703800000001,0.85607618,0.8435655200000001,0.84640936,0.80407669,0.77346916,0.77350161,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,refining,oil refining,oil refining,0.4406,0.696632,0.915302,1.541476,1.701556,1.8900139999999999,2.084936,2.2673029999999996,2.414596,2.560557,2.7572943,3.0700275,3.3401131200000003,3.7683443999999997,4.2105168,4.673085299999999,5.1330847,5.715492,5.804366699999999,5.681968400000001,5.196304700000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.00547961,0.02089798,0.04807346,0.0944072,0.17079723,0.25143479,0.3112762,0.3442139,0.36753692499999996,0.372087262,0.36067014999999997,0.32186298999999996,0.1086828563,0.011738633307064001,0.0026684,0.00162683,0.00157428,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,refining,biomass liquids,FT biofuels CCS level 1,0.0,0.0,0.0,0.0,0.00106151,0.00635673,0.02013557,0.05166376,0.10971949,0.18186021400000002,0.24710837599999996,0.30757064700000003,0.3900507341,0.487375178,0.702535949,0.9507751199999999,1.2776032000000002,1.6853714499999999,1.78280161,1.8061079800000002,1.79562673,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,refining,biomass liquids,FT biofuels CCS level 2,0.0,0.0,0.0,0.0,6.36192E-4,0.0038353099999999998,0.012211789,0.031490602,0.06761339,0.113790874,0.156897276,0.200015438,0.2643205769,0.348911358,0.574337704,0.8935351920000001,1.3928529200000002,2.3279575,2.77797359,3.17096859,3.6916696300000003,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.00664004,0.025552460000000003,0.05930112,0.11713768,0.21229173,0.31249022,0.38664442,0.42703347,0.45475878899999994,0.45856784100000003,0.44085938999999996,0.36046736999999995,0.040424521340000005,0.012328210830365999,0.00270946,0.00161971,0.00153095,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,refining,biomass liquids,cellulosic ethanol CCS level 1,0.0,0.0,0.0,0.0,0.0012745,0.00742037,0.02296112,0.057617669999999996,0.11668980000000001,0.18251376,0.23537033100000002,0.271402492,0.3047570443,0.325353806,0.34048665100000003,0.33018796,0.31030684999999997,0.0217197057741,0.005196488015882,0.00328984,0.0032633,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,refining,biomass liquids,cellulosic ethanol CCS level 2,0.0,0.0,0.0,0.0,3.16774E-4,0.0018972389999999998,0.0060023310000000005,0.015430254000000001,0.033022651,0.055385617,0.076159747,0.09642595770000001,0.1259700323,0.1638956662,0.260241178,0.395365267,0.606214374,0.9912903499999999,1.18327281,1.36661548,1.6556050399999998,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,0.00414177,0.02053158,0.04121753,0.06922207,0.10151055,0.12603451000000002,0.13749069,0.13350816499999998,0.12054625899999998,0.09580899699999998,0.001583198503,7.68356E-4,4.66503E-4,1.40675E-4,3.04457E-5,1.99717E-5,2.41094E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,refining,coal to liquids,coal to liquids CCS level 1,0.0,0.0,0.0,0.0,8.0767E-4,0.006991993,0.019330922,0.042817176,0.07608358500000001,0.11010188000000001,0.13568724499999998,0.14899432,0.1575694044,0.157553858,0.15031218000000002,0.13619009,0.12268568,0.10837031,0.09159652,0.07630673899999998,0.066165362,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,refining,coal to liquids,coal to liquids CCS level 2,0.0,0.0,0.0,0.0,4.66829E-4,0.004144831,0.011660255,0.02622706,0.047740609,0.071068138,0.08982296499999999,0.1017169115,0.1126995278,0.119754285,0.12661409499999998,0.131108314,0.1395638,0.14865133,0.14612192899999998,0.147905244,0.193050328,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,0.0114745,0.0796986,0.20130989999999999,0.41725120000000004,0.7351301,1.03796984,1.24056774,1.32225084,1.343254887,1.27940679,1.1467321199999998,0.9680076999999999,0.8138173,0.5339489199999999,0.35557524,0.43984948,0.5309773600000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,refining,oil refining,oil refining,9.63678,6.10564,6.46258,6.885025,6.9128025,6.9882856,6.9495796,6.6838414,6.2339775,5.733866000000001,5.4576123999999995,5.360528899999999,5.33657146,5.3950919,5.2821156,4.9715092,4.7297942,3.6691546,2.948946,2.0625962600000003,0.5244348409999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.0,0.00153686,0.00888215,0.01713948,0.02570742,0.03422608,0.04010439,0.043699079,0.045329682,0.0458900568,0.044465446000000006,0.040639509,0.035086756,0.0018042962597,5.095587822389999E-4,3.13926E-4,1.87066E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,refining,biomass liquids,FT biofuels CCS level 1,0.0,0.0,0.0,0.0,0.0,5.02649E-4,0.0039042210000000003,0.009151556,0.015459305999999999,0.022708449999999998,0.028651573,0.034877844000000005,0.042399146,0.0527038426,0.067825094,0.08011749500000001,0.08982195100000001,0.101025733,0.100479042,0.09569664099999999,0.08646691100000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,refining,biomass liquids,FT biofuels CCS level 2,0.0,0.0,0.0,0.0,0.0,3.00617E-4,0.0023299209999999996,0.005493174,0.009392495,0.01398692,0.017854967,0.022204909000000002,0.0278617003,0.036065464,0.0496892374,0.062401363,0.07373825,0.090669571,0.096301565,0.099380496,0.099825122,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.0,0.00188514,0.01100694,0.021313980000000003,0.03198571,0.04256834,0.04984715,0.054241328000000005,0.05610413699999999,0.05649495410000001,0.054231218000000005,0.048825206999999995,0.0302932096,0.00179744917873,5.17395132318E-4,3.12551E-4,1.81917E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,refining,biomass liquids,cellulosic ethanol CCS level 1,0.0,0.0,0.0,0.0,0.0,6.02112E-4,0.00467042,0.010698434,0.017245297,0.024059267,0.029082712,0.032949926000000004,0.035997191,0.0386863407,0.039996518999999994,0.038682517,0.036220234,0.00825444574,7.49083118556E-4,4.90868557014E-4,3.12842E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,refining,biomass liquids,cellulosic ethanol CCS level 2,0.0,0.0,0.0,0.0,0.0,1.48785E-4,0.001147032,0.002698675,0.004600531000000001,0.006830899999999999,0.008702306,0.010758921500000001,0.0133877172,0.017167275260000003,0.023283166600000002,0.029092982500000003,0.0344331399,0.042576959000000004,0.0456321679,0.047888104,0.04963984799999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,refining,coal to liquids,coal to liquids,0.16056,0.0857208,0.0960599,0.0943321,0.0793053,0.08625348,0.07750642999999999,0.060314780000000005,0.04173969,0.02994749,0.02414034,0.018864099,0.016275928000000002,0.0121996285,2.285277701E-4,1.09542971018E-4,6.09643E-5,2.22273E-5,6.08697E-6,3.86546E-6,2.71968E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,refining,coal to liquids,coal to liquids CCS level 1,0.0,0.0,0.0,0.0,0.0,5.62553E-4,0.003386192,0.007075912,0.010595822,0.013875833,0.016029359,0.017111875999999998,0.017084684,0.0160617996,0.0140683,0.011684419,0.009456816,0.006487931,2.8907109E-4,1.736899796E-4,2.3413231899999999E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,refining,coal to liquids,coal to liquids CCS level 2,0.0,0.0,0.0,0.0,0.0,3.28454E-4,0.001991692,0.004223421999999999,0.0064740349999999995,0.008684887,0.010227265999999999,0.011208207,0.011598886400000001,0.011446327199999998,0.010662846,0.009471002999999999,0.008211205999999999,0.007080496000000001,0.0058578111,0.004774867899999999,0.0040942214,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,refining,gas to liquids,gas to liquids,0.0365822,0.06157,0.0658398,0.0646556,0.0543561,0.06474167,0.08725944,0.11007548,0.13030820999999998,0.15210813,0.16671528,0.17135878999999998,0.1682223,0.15732512299999998,0.14076908,0.12369671000000002,0.11111734,0.103983,0.09475132,0.088575768,0.090422255,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,refining,oil refining,oil refining,0.581312,0.835562,0.799628,0.73891,0.808735,0.8373594000000001,0.8187833,0.7943381,0.7587517,0.7119732000000001,0.6673105,0.6597900499999999,0.66086029,0.67115508,0.66914769,0.66406103,0.67191428,0.6989438400000001,0.6833589200000001,0.6541637,0.59410067,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.0065573,0.01786217,0.03149359,0.04726775,0.06543181,0.08283728000000001,0.09624561000000002,0.10314638000000001,0.10587853600000001,0.10732609700000001,0.105124525,0.096617485,0.041730078100000005,0.003661110322068,9.64075E-4,6.19167E-4,5.36787E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,refining,biomass liquids,FT biofuels CCS level 1,0.0,0.0,0.0,0.0,0.00127126,0.00516316,0.01213088,0.02309404,0.037616880000000005,0.05395885,0.070987071,0.089999401,0.1139137707,0.1503367,0.22081168799999998,0.300425878,0.40754769399999996,0.541825828,0.583873139,0.60371646,0.60896148,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,refining,biomass liquids,FT biofuels CCS level 2,0.0,0.0,0.0,0.0,7.62023E-4,0.003114482,0.007357239,0.01408814,0.023206063,0.033689170000000004,0.044999591000000005,0.058725442,0.0777283946,0.109395777,0.18312467699999999,0.284656942,0.447583685,0.758411454,0.9369748440000001,1.11620656,1.33658871,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,refining,biomass liquids,biodiesel,0.0,0.0,0.0,0.00679005,0.0049259939999999995,0.005625839,0.006405862,0.007084259,0.007964677,0.00869,0.009457401,0.0101969783,0.0108670878,0.011508563,0.011797669,0.0117884352,0.011910849099999999,0.011532588390000001,0.011026299199999999,0.01092631751,0.011086522052599999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.00794595,0.02181276,0.0387415,0.05843355,0.08106701000000001,0.10272110999999999,0.11939208,0.12786635999999998,0.130930594,0.132086135,0.128255906,0.11132262999999999,0.01482094652,0.003844965690187,9.78907E-4,6.16455E-4,5.22012E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,refining,biomass liquids,cellulosic ethanol CCS level 1,0.0,0.0,0.0,0.0,0.00152558,0.00603577,0.01385493,0.02575656,0.04013134,0.05491758,0.068376389,0.078926504,0.0872498699,0.09522924,0.10134726799999999,0.10071582899999999,0.09755540499999998,0.006971970229799999,0.001892080570794,0.00126768,0.00112955,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,refining,biomass liquids,cellulosic ethanol CCS level 2,0.0,0.0,0.0,0.0,3.79419E-4,0.001541499,0.0036200800000000003,0.0069088199999999995,0.011340144,0.016413643,0.02185646,0.028285661599999998,0.0369739763,0.0511647187,0.0826624093,0.125628399,0.194296771,0.32170069999999995,0.397544944,0.48003333000000004,0.599292583,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,refining,biomass liquids,sugar cane ethanol,0.0,0.0,0.0,0.0203335,4.8026654608E-4,0.00126715089515,0.0020402920013,0.0029706965044,0.0047389515279999996,0.006659480378,0.00893577277,0.009574996669999999,0.01112771215,0.01453189333,0.01682234546,0.01599506458,0.0182827100315,0.016622323960417,0.008072721991275001,0.007963150332546,0.0104951,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,0.00530578,0.01833114,0.029643960000000004,0.04006988,0.04850843,0.05388574,0.0548801,0.049612249000000004,0.04100133800000001,0.030653881999999997,5.881615926E-4,2.76861E-4,1.72549E-4,5.1797E-5,1.31677E-5,9.20621E-6,9.99047E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,refining,coal to liquids,coal to liquids CCS level 1,0.0,0.0,0.0,0.0,0.00103632,0.00597475,0.01282769,0.02191998,0.031484335,0.040073311,0.047284352,0.051163222,0.052621567499999994,0.053088446000000004,0.051481661000000005,0.048389388000000005,0.045612756000000004,0.041472032,0.035753111,0.030328254,0.026985351000000005,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,refining,coal to liquids,coal to liquids CCS level 2,0.0,0.0,0.0,0.0,5.99168E-4,0.003538856,0.007725186,0.013405575,0.019692142,0.025619964000000002,0.031029204,0.034897542999999996,0.037920941,0.041368904,0.044824512000000004,0.048049307000000006,0.053132909000000006,0.05781926600000001,0.05840270300000001,0.06199418999999999,0.087683652,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,0.0147023,0.0689569,0.1355973,0.21644999999999998,0.3012948,0.3761477,0.42953614000000007,0.44614017,0.43594916899999997,0.4123742499999999,0.37394694,0.32860201000000006,0.29099934,0.21621720999999997,0.15543323200000003,0.17326507,0.20694275,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,refining,oil refining,oil refining,0.820451,1.25366,1.65668,1.9681499999999998,2.027467,2.032108,2.0051330000000003,1.9297239999999998,1.837896,1.7509206,1.7095247,1.7045926699999998,1.7126869500000002,1.74719379,1.7439210000000003,1.7023065000000002,1.6864056,1.4176383899999998,1.21115366,0.83540763,0.209136639,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.0097232,0.02029713,0.033555360000000006,0.05001678,0.07498616999999999,0.10367794,0.12830995,0.1428567,0.15362594100000002,0.159414321,0.160904059,0.150438911,0.0572055503,0.006837912854212,0.00179342,0.00102419,6.44275E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,refining,biomass liquids,FT biofuels CCS level 1,0.0,0.0,0.0,0.0,0.00188593,0.00553711,0.01237028,0.02401053,0.044545180000000004,0.07240427,0.102211796,0.133544092,0.1748906,0.22726021999999999,0.34160250600000003,0.478371161,0.666729661,0.93056721,1.02164778,1.06305976,1.04784197,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,refining,biomass liquids,FT biofuels CCS level 2,0.0,0.0,0.0,0.0,0.00113058,0.00333888,0.00750669,0.014678219999999999,0.02765074,0.045693792999999996,0.06550496,0.08796839699999999,0.1202980627,0.165405445,0.284146793,0.457815173,0.744535497,1.351726803,1.70816547,2.0278579,2.28562531,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,refining,biomass liquids,biodiesel,0.0,0.0,0.00322299,0.0173774,0.006722722,0.006533048999999999,0.006080391,0.005212272400000001,0.00528047339,0.005377371111000001,0.005001000887000001,0.003822772333,0.0034131380410000003,0.00304605177075,0.002945946809187,0.00231603,0.00207807,0.00141845,5.5726E-4,4.42876E-4,4.39258E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.0117823,0.0247525,0.0412181,0.061769000000000004,0.09288239999999999,0.12856880999999998,0.15916144999999998,0.17704064999999997,0.189861526,0.196169691,0.196321513,0.171322298,0.021614228960000002,0.0071813651260100005,0.00182101,0.0010197,6.26541E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,refining,biomass liquids,cellulosic ethanol CCS level 1,0.0,0.0,0.0,0.0,0.00226252,0.00648573,0.01411416,0.02661637,0.0465648,0.07107831,0.09470268,0.112953641,0.129681612,0.142940299,0.15586179199999997,0.157502104,0.15379564299999998,0.0127940622844,0.0035378092889899997,0.00210842,0.00136338,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,refining,biomass liquids,cellulosic ethanol CCS level 2,0.0,0.0,0.0,0.0,5.62918E-4,0.0016536670000000002,0.003694846,0.007196243,0.013492051,0.022204626999999998,0.031736673,0.042277921999999996,0.0571157239,0.07736625450000001,0.1281501135,0.201627198,0.32229139500000004,0.5706389299999999,0.721685796,0.8680453490000001,1.009330646,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,refining,biomass liquids,corn ethanol,6.27862E-4,5.85962E-4,0.00280441,0.02574397,0.031041049999999997,0.037590979999999996,0.04594559,0.05571308,0.06874826299999999,0.080626554,0.09169470199999999,0.102459131,0.114921136,0.127713165,0.14499151500000002,0.15940364399999998,0.175464173,0.190059661,0.18683219999999998,0.181981153,0.17279051499999998,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,0.00905423,0.02235153,0.03400125,0.045324659999999996,0.05731803,0.06666471,0.06999209,0.06480704000000001,0.056173560000000004,0.044291451999999995,9.054184497E-4,4.47872E-4,2.82423E-4,9.17302E-5,2.29509E-5,1.43164E-5,1.15525E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,refining,coal to liquids,coal to liquids CCS level 1,0.0,0.0,0.0,0.0,0.00177022,0.00684186,0.01401183,0.02421664,0.038558270000000006,0.05429425,0.067724882,0.07540776399999999,0.0805319384,0.082591393,0.081805196,0.077444688,0.07276566500000001,0.06641169000000001,0.05756419599999999,0.049376002999999995,0.043079604,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,refining,coal to liquids,coal to liquids CCS level 2,0.0,0.0,0.0,0.0,0.00102367,0.00404605,0.00843941,0.014854989999999998,0.024386282999999998,0.035421838,0.045437915999999995,0.052517994,0.059095630499999996,0.064726291,0.071177792,0.076925658,0.08549785900000001,0.095242664,0.09787062,0.10473701099999999,0.134588337,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,0.0250924,0.080525,0.1492849,0.23744500000000002,0.3582646,0.48481959999999996,0.5840855,0.6257423,0.63713073,0.61966919,0.5792368099999999,0.51655588,0.45719778000000005,0.30962952,0.20426580400000002,0.251709588,0.30978106,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,refining,oil refining,oil refining,0.836427,1.39582,1.82989,2.345285,2.53796,2.697318,2.802495,2.801676,2.724817,2.600122,2.5464973000000004,2.5476786,2.5937713,2.6911967,2.74989,2.7177685,2.6991119,2.1751256,1.7622733899999998,1.07777046,0.22550394299999998,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.0140233,0.0304283,0.0487175,0.0695287,0.0977676,0.1350899,0.17393646,0.21238557,0.245560398,0.273926487,0.287860871,0.28210119499999997,0.2568115,0.016079162025,0.004799085916969,0.00259552,0.00129181,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,refining,biomass liquids,FT biofuels CCS level 1,0.0,0.0,0.0,0.0,0.00261474,0.00762874,0.01575178,0.027953480000000003,0.0452263,0.06785852,0.09113239000000001,0.116581976,0.13916066100000002,0.15915898199999998,0.182976442,0.207610363,0.24318710400000002,0.32196927,0.36072373,0.3888821,0.40103325,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,refining,biomass liquids,FT biofuels CCS level 2,0.0,0.0,0.0,0.0,0.00155481,0.0045119999999999995,0.00931559,0.01654257,0.02678139,0.04002214,0.053355717,0.067879618,0.0806180824,0.09183202599999998,0.10682639299999999,0.125417729,0.157435344,0.248782483,0.319789479,0.396006265,0.47120227400000003,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.0169931,0.037115800000000004,0.059829400000000005,0.0858114,0.1210029,0.1674314,0.21566793,0.26291387,0.302862921,0.336126503,0.35041858,0.33954812,0.23284733400000002,0.015801134271,0.004872883235967999,0.00258416,0.00125625,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,refining,biomass liquids,cellulosic ethanol CCS level 1,0.0,0.0,0.0,0.0,0.00321771,0.00949302,0.0194806,0.03429182,0.054707030000000004,0.08192639,0.11107274,0.14119800300000002,0.166740313,0.18750984599999998,0.200288137,0.200984627,0.19140427200000001,0.03548871016,0.0067402567569950006,0.0040040347844959995,0.0021766,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,refining,biomass liquids,cellulosic ethanol CCS level 2,0.0,0.0,0.0,0.0,7.75158E-4,0.002242428,0.004609501,0.008167691,0.013208815,0.019759099,0.026416218999999998,0.03365884,0.04006799850000001,0.045793099999999996,0.053320281,0.062738749,0.07890823100000001,0.124465288,0.161041846,0.202361525,0.247459288,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,0.0106627,0.028413099999999997,0.0425264,0.055198399999999995,0.0669268,0.07710352,0.08167223,0.07692708000000001,0.067245305,0.055486451000000006,0.0013231396450000001,7.01310053961E-4,4.59399E-4,2.02791E-4,5.82505E-5,3.20661E-5,1.87794E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,refining,coal to liquids,coal to liquids CCS level 1,0.0,0.0,0.0,0.0,0.00192058,0.00722797,0.013750410000000001,0.02177345,0.02997787,0.03747108,0.042267209,0.043159752999999995,0.04057051539999999,0.035752293,0.027459206000000003,0.0113747582,0.0060700793000000005,0.0023364154099999998,0.001256353227,0.0012513302795,0.0016879905220000002,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,refining,coal to liquids,coal to liquids CCS level 2,0.0,0.0,0.0,0.0,0.00109407,0.0041167700000000005,0.007900560000000001,0.012608830000000001,0.01749821,0.021933002,0.024726954,0.025321525999999997,0.0238811988,0.020965486,0.014310124,0.0085298493,0.009661019,0.010282762,0.010471363000000001,0.01159524,0.0148321449,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,0.0292327,0.1005529,0.1806383,0.2753428,0.38932370000000005,0.5225425,0.6439049,0.7338678000000001,0.78640919,0.8145276800000001,0.81729554,0.80512287,0.79018287,0.78946103,0.74511172,0.7151318,0.7274122300000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,refining,oil refining,oil refining,0.222211,0.551145,0.631771,1.159058,1.404067,1.663576,1.8969219999999998,2.0984119999999997,2.274136,2.44778,2.6592712,2.9767302000000004,3.3161507000000006,3.7072381,4.0746045,4.4463773,4.8502409,5.3901525999999995,5.4630405,5.3452739000000005,4.925702000000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.0,0.00283453,0.01331566,0.03979262,0.08611889,0.1345586,0.16432235,0.17762541999999998,0.184599321,0.17984193,0.166533279,0.14060709000000002,0.10966609000000001,0.00457340111,8.242663272609999E-4,5.12236E-4,3.56948E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,refining,biomass liquids,FT biofuels CCS level 1,0.0,0.0,0.0,0.0,0.0,1.89202E-4,0.0010672797999999998,0.004480177,0.011733988,0.020370448,0.026593273,0.030844461400000002,0.03585075619999999,0.04079949907,0.0534208712,0.068434671,0.085644887,0.10897601400000001,0.114158852,0.11732224699999999,0.117724539,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,refining,biomass liquids,FT biofuels CCS level 2,0.0,0.0,0.0,0.0,0.0,8.53757E-5,4.602344964E-4,0.001604235246,0.00346322737,0.0069166036,0.0115130279,0.0145746713,0.0172739925,0.0202196261,0.028601980399999997,0.040333166899999995,0.055724183,0.082691598,0.09450356,0.10842489,0.127532958,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,refining,biomass liquids,biodiesel,0.0,4.60479E-4,0.0125574,0.012297,0.0119472,0.012859599999999999,0.013208039999999999,0.01342977,0.013988058000000001,0.013677179999999999,0.0127853233,0.012871354,0.012902429699999999,0.012905900599999999,0.012819125599999998,0.0123209125,0.011921333400000001,0.0115473965,0.0108946847,0.0108294754,0.0105755744,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.0,0.00347689,0.01649296,0.049541989999999994,0.10724238999999999,0.16741519,0.20426761000000002,0.22055944,0.228746353,0.22214740400000002,0.20411658500000002,0.1698697,0.092455702,0.0043789502098,8.36936050533E-4,5.09992E-4,3.47123E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,refining,biomass liquids,cellulosic ethanol CCS level 1,0.0,0.0,0.0,0.0,0.0,6.02823E-4,0.003794886,0.014466072,0.034166461999999995,0.055934529,0.070210419,0.07788803100000001,0.08403263999999999,0.08583996719999999,0.08660302199999999,0.081003628,0.072052256,0.01210992777,0.001160605864679,7.9135429654E-4,6.02005E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,refining,biomass liquids,cellulosic ethanol CCS level 2,0.0,0.0,0.0,0.0,0.0,4.44072E-5,2.38983705197E-4,8.332782361500001E-4,0.0017127469400000002,0.002273574854,0.0033591133,0.0074557697999999995,0.00895791158,0.01045287338,0.014601022000000002,0.0204139751,0.0280782256,0.041451092999999994,0.0474923025,0.0550543446,0.06667278709999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,0.0,0.00530352,0.01949739,0.04778871,0.08003435,0.1029062,0.11200611999999999,0.10999088000000001,0.10028447699999998,0.080220969,7.437237830000001E-4,3.79233765283E-4,2.11533E-4,6.57944E-5,1.20436E-5,7.69232E-6,6.33489E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,refining,coal to liquids,coal to liquids CCS level 1,0.0,0.0,0.0,0.0,0.0,1.05861E-4,5.783089999999999E-4,0.002024632,0.004326153,0.0065679593,0.0078891219,0.008323141400000001,0.008364792,0.00777732097,0.006218417800000001,0.0040770211,0.0024484618999999997,8.06549633E-4,2.678854141E-4,3.056441423E-4,5.803256670000001E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,refining,coal to liquids,coal to liquids CCS level 2,0.0,0.0,0.0,0.0,0.0,4.10862E-5,1.8855692399999998E-4,5.899481410000001E-4,0.00101013695,0.0011551031,0.00106271909,0.00116006203,0.00151249324,0.0018381526260000001,0.00233622806,0.0027229922999999997,0.0030790785,0.003517582,0.0036153796000000004,0.0039199785,0.0050179542,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,0.0,0.0128815,0.0563028,0.1625501,0.327227,0.48254790000000003,0.5696899,0.59970227,0.6038181199999999,0.5669097679999999,0.50868692,0.43583317,0.37653828000000006,0.33972925,0.3008169,0.27456145000000004,0.26723288,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,refining,oil refining,oil refining,2.09484,4.16594,4.18048,4.14162,4.10035,4.0331475,3.8880985,3.6197131999999996,3.2330837999999997,2.8610158,2.6051085999999994,2.4674761,2.3684084199999997,2.34686027,2.33691591,2.2999972,2.2937632,2.325751,2.199124,2.0596550000000002,1.8371844,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.0395698,0.08662790000000001,0.1497163,0.234333,0.3471289,0.47527820000000004,0.588457,0.68186835,0.7576868000000001,0.8087044099999999,0.8179649499999999,0.77587401,0.66537263,0.03090465202,0.010482638915547,0.0058465,0.00281265,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,refining,biomass liquids,FT biofuels CCS level 1,0.0,0.0,0.0,0.0,0.00758505,0.02303985,0.05230209,0.10639161,0.19082732,0.30501654,0.43145212,0.59650022,0.8098179470000001,1.052524938,1.40500685,1.75296058,2.10002707,2.43974911,2.4914482,2.40621201,2.1824168,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,refining,biomass liquids,FT biofuels CCS level 2,0.0,0.0,0.0,0.0,0.00453604,0.013786610000000001,0.03124658,0.0638729,0.11614703000000001,0.18874869,0.27145600000000003,0.38686862899999996,0.547175136,0.7413665049999999,1.0681994209999999,1.44204985,1.86742557,2.4496885400000004,2.7295437500000004,2.8650141099999997,2.83853578,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,refining,biomass liquids,biodiesel,0.0,0.0,0.0227284,0.0917957,0.1335486,0.1760901,0.22619279999999997,0.291527,0.38761679000000004,0.50904599,0.6464281199999999,0.7928854000000001,0.9491997400000001,1.1011892,1.25934632,1.39519599,1.5290210700000002,1.6539278,1.67156793,1.69181037,1.7062979,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.0479496,0.1056721,0.1840216,0.2896561,0.4302015,0.5895759,0.7300967,0.84484364,0.9356932499999999,0.9939095900000001,0.99728917,0.93169393,0.49355229500000003,0.03172741631462,0.010643903447683999,0.0058209,0.00273523,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,refining,biomass liquids,cellulosic ethanol CCS level 1,0.0,0.0,0.0,0.0,0.00916918,0.02763491,0.06261471,0.12463394,0.21185072,0.31804779,0.42311109,0.52740769,0.626455306,0.707318274,0.75937727,0.7615781399999999,0.7320892299999999,0.18470823950000004,0.0167240081045,0.009687137150815001,0.00489769,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,refining,biomass liquids,cellulosic ethanol CCS level 2,0.0,0.0,0.0,0.0,0.00225939,0.00683711,0.01542562,0.03142713,0.056913509999999994,0.09212717000000001,0.13208227,0.18661241,0.261014464,0.350087922,0.494973403,0.662042569,0.8554236799999999,1.12223453,1.26110575,1.34393488,1.36336203,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,refining,biomass liquids,sugar cane ethanol,0.0,0.001465,0.0136036,0.067252,0.04175000650281,0.04947539041148,0.06483580153120001,0.08535448400699999,0.12765143127300002,0.17412053499,0.21101347232,0.22473557970000002,0.2402413381,0.2520045562,0.2517656355,0.2229464447,0.2154031102,0.18327501369,0.10623932763999999,0.08263045157700001,0.055001773946,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,0.05506,0.1391699,0.2144614,0.28930449999999996,0.3568556,0.40641169999999993,0.42042350000000006,0.38943839999999996,0.33568237,0.26518986,0.005398644419000001,0.002803306381066,0.00173086,5.65293E-4,1.85645E-4,1.08811E-4,6.17587E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,refining,coal to liquids,coal to liquids CCS level 1,0.0,0.0,0.0,0.0,0.0105037,0.0395144,0.0773248,0.1331044,0.2013885,0.27488975000000004,0.33825504999999995,0.38326834,0.412237597,0.41815104000000003,0.39752911,0.35937177,0.31289110000000003,0.25919156,0.14605124,0.0219049203,0.014981106999999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,refining,coal to liquids,coal to liquids CCS level 2,0.0,0.0,0.0,0.0,0.00604658,0.02300994,0.04528853,0.07906455,0.12286042,0.17280542999999998,0.21895928999999997,0.25860328,0.292912314,0.313202569,0.31763778,0.30920981,0.29248185,0.26641898999999997,0.23042051,0.19611471,0.17172872,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,refining,gas to liquids,gas to liquids,0.0,0.0402773,0.0363013,0.0356484,0.1905537,0.5337041,0.9611854,1.5245836000000001,2.19421892,2.87465422,3.3996207199999997,3.7004147,3.8204267099999996,3.7737425,3.5573564999999996,3.261393,2.989525,2.7276583999999997,2.4475696,2.2690943,2.2529497,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,refining,oil refining,oil refining,3.13926,6.26521,8.23937,9.66144,10.89269,12.00921,12.94389,13.57007,13.819429999999999,13.967379000000001,14.303867,14.984373600000001,15.7646789,16.7217871,17.2143039,17.4767554,17.871892,18.068608,17.551264,16.7241,15.025824,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.00113525,0.00577036,0.013212680000000001,0.027559800000000002,0.051989469999999996,0.078867383,0.09711107599999999,0.106163599,0.1122398483,0.11272850400000001,0.107835603,0.094483332,0.076509986,0.003201373009,5.247326489449999E-4,3.00438E-4,1.92863E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,refining,biomass liquids,FT biofuels CCS level 1,0.0,0.0,0.0,0.0,1.95271E-4,0.001536003,0.004287008,0.009642524999999999,0.016671849,0.022703766,0.026339279,0.028560726699999997,0.03094066286,0.0331064693,0.039688714,0.047900973,0.057779023,0.07392558199999999,0.076603476,0.077199403,0.07534220999999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,refining,biomass liquids,FT biofuels CCS level 2,0.0,0.0,0.0,0.0,1.14226E-4,8.962120000000001E-4,0.002464281,0.005368844,0.008981471,0.011759279899999999,0.0121921228,0.0146270731,0.015813503559999997,0.0170138731,0.0214567051,0.028108227,0.037195522,0.055885602000000006,0.06305713710000001,0.0705091599,0.079563796,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.00137567,0.00706119,0.016303579999999998,0.03421244,0.06464194000000001,0.09803679,0.120639373,0.13173647700000002,0.1389374521,0.13901647700000003,0.13192642799999998,0.114080006,0.066571911,0.0030620747636900003,5.32797636673E-4,2.99122E-4,1.87555E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,refining,biomass liquids,cellulosic ethanol CCS level 1,0.0,0.0,0.0,0.0,2.53085E-4,0.001991435,0.005795529000000001,0.014449004,0.027762782,0.041077235,0.049854540999999995,0.0547790809,0.058709215700000005,0.0600245336,0.060104936,0.056188799,0.050178823,0.00835526647,7.3851233002E-4,4.6397184182699996E-4,3.25186E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,refining,biomass liquids,cellulosic ethanol CCS level 2,0.0,0.0,0.0,0.0,5.70982E-5,4.4587340000000003E-4,0.0012242299000000002,0.0026811213,0.004507369000000001,0.0048790414,0.00288666162,0.007121583569999999,0.00808182838,0.0087186007,0.0109260127,0.014228308500000002,0.0187566664,0.0280291098,0.0316972159,0.0357684421,0.041402665,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,8.75267E-4,0.005943492999999999,0.011892792999999999,0.02156369,0.033730766999999995,0.043745705999999995,0.048171822999999996,0.046870001,0.042536071499999994,0.03485433600000001,4.39943089E-4,2.13815541984E-4,1.14433E-4,3.91695E-5,6.36535E-6,3.71071E-6,2.8037E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,refining,coal to liquids,coal to liquids CCS level 1,0.0,0.0,0.0,0.0,1.33564E-4,0.00149357,0.003442403,0.006162926000000001,0.008514349,0.009887497,0.0102294503,0.0095643993,0.00839130161,0.0066614013,0.0044207767,0.0025513214,0.0014405788,4.77460692E-4,1.418210959E-4,1.4768023685999998E-4,2.5790750449999997E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,refining,coal to liquids,coal to liquids CCS level 2,0.0,0.0,0.0,0.0,7.38636E-5,8.335128000000001E-4,0.0018964710000000003,0.0032839731,0.004414752500000001,0.0048967997,0.00100743067,7.11460656E-4,0.001132327225,0.00137267725,0.0016053385999999998,0.0017124175999999997,0.0018204971,0.0020599149000000002,0.0020818509,0.0021818938,0.0025899184000000002,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,0.00234363,0.022316540000000003,0.05381664,0.11321898,0.19689358,0.27351429,0.31759502000000006,0.331752958,0.33234125900000006,0.314405545,0.28643055,0.25133095000000005,0.22126218,0.2027405,0.17790810999999998,0.15773791,0.14538907,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,refining,oil refining,oil refining,1.07078,1.83458,1.98546,1.90193,1.9702472000000002,1.9908564,1.9608081000000002,1.8635612000000004,1.6988658,1.5315024999999998,1.4186099,1.3554975,1.3153608649999997,1.3242093600000002,1.34006666,1.33863835,1.3395945,1.3688774000000001,1.27843817,1.16796871,1.01136612,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.0344312,0.0819338,0.17258430000000002,0.3452518,0.6339553,0.9343858999999999,1.1497834,1.26404802,1.3447915000000001,1.3546047600000002,1.31350661,1.17352163,0.486776661,0.038096054864059994,0.00981767,0.00725836,0.00710342,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,refining,biomass liquids,FT biofuels CCS level 1,0.0,0.0,0.0,0.0,0.00668059,0.0231168,0.07004817,0.19256869,0.42854216,0.71024848,0.9500496,1.16607544,1.4576864829999998,1.796158754,2.6178306,3.60072538,4.8151057999999995,6.1660974,6.558639899999999,6.8167042,6.9896065,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,refining,biomass liquids,FT biofuels CCS level 2,0.0,0.0,0.0,0.0,0.00400517,0.01395039,0.0426056,0.1181893,0.26732487,0.44939239,0.6081336500000001,0.762633765,0.991028519,1.2883300260000001,2.15699333,3.4313909999999996,5.31473664,8.51073501,10.29494887,12.40415548,15.3725105,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,refining,biomass liquids,biodiesel,0.0,0.0123896,0.0312251,0.05031511097,0.026162375,0.03642889,0.05509939,0.07300414,0.09075221230000001,0.0924755323,0.0923974655,0.10686163800000001,0.1226875,0.146146469,0.135254987,0.107966661,0.090972739,0.0666126834179,0.0367649434084,0.0363393510142,0.0358368,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.0417227,0.0999907,0.2125684,0.4281071,0.7877395,1.1611019,1.4281295999999999,1.56831199,1.66426534,1.6700028900000001,1.6057422300000002,1.33918061,0.1766134707,0.040008786400825,0.00996871,0.00722657,0.00690789,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,refining,biomass liquids,cellulosic ethanol CCS level 1,0.0,0.0,0.0,0.0,0.00801284,0.02699841,0.07922323,0.21029579999999998,0.43929572,0.68901919,0.8820779200000001,1.00976966,1.126090686,1.192446489,1.24844534,1.21281099,1.1387026,0.073987844006,0.019259749225948003,0.0148527,0.0149258,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,refining,biomass liquids,cellulosic ethanol CCS level 2,0.0,0.0,0.0,0.0,0.00199416,0.00690605,0.020937,0.05782999,0.13020419,0.21817104999999998,0.294632709,0.36718997499999995,0.47198187869999997,0.6048934029999999,0.9751350109999999,1.51310851,2.3052450799999997,3.613565,4.370735549999999,5.342026349999999,6.94078982,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,refining,biomass liquids,corn ethanol,0.0,0.325437,1.03105,1.3888,1.50615,1.603014,1.711926,1.868571,2.146672,2.398813,2.5560284,2.6145275999999997,2.71031345,2.7409321700000002,2.8863635000000003,3.0518812,3.2827458999999997,3.5147087999999997,3.5473690999999996,3.7019871,4.0447443000000005,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,0.0351631,0.1001958,0.1870401,0.3170767,0.4723347,0.5888779000000001,0.6395335,0.62000235,0.5632075299999999,0.45060818999999996,0.007779615871,0.003920922228929999,0.0022347,5.89349E-4,1.47694E-4,1.18868E-4,1.44748E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,refining,coal to liquids,coal to liquids CCS level 1,0.0,0.0,0.0,0.0,0.0068797,0.0317868,0.08572658999999999,0.20381931,0.38671492,0.56329697,0.6846417499999999,0.7462200300000001,0.7848993559999999,0.7787519400000001,0.7390564199999999,0.66704801,0.5981990199999999,0.52420825,0.44665424000000004,0.38220226,0.34896213,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,refining,coal to liquids,coal to liquids CCS level 2,0.0,0.0,0.0,0.0,0.00397886,0.01883386,0.05194782,0.12636194,0.24796466,0.37113511,0.46041703,0.515667625,0.5658676309999999,0.594407234,0.62674551,0.65229689,0.6947645499999999,0.72815131,0.7235874299999999,0.7745551900000001,1.15340178,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,0.0974578,0.36869999999999997,0.8815709,1.8913171,3.4287398,4.8803279999999996,5.8237429,6.1947448,6.29460432,5.9897826,5.3806085,4.5568215,3.8306171000000004,2.7984463,2.0290425,2.2061037,2.71304,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,refining,oil refining,oil refining,31.688,38.9652,34.1005,34.926570000000005,35.361001,35.393547000000005,34.724646,32.933485999999995,30.255886,27.495373,25.907429,25.1999605,24.881658200000004,25.0504902,24.588447600000002,23.273914000000005,22.130451,18.483635,15.763390999999999,11.1626685,3.12265249,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,6.9907E-4,0.001875554,0.003794862,0.00692917,0.011615606,0.017991812,0.025595402000000003,0.034953952,0.046188033,0.059456758,0.0734648302,0.08745929599999999,0.100418899,0.10781359600000001,0.07006574460000001,0.010346964139,0.005056817700335,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,refining,biomass liquids,FT biofuels CCS level 1,0.0,0.0,0.0,0.0,1.76472E-4,5.88668E-4,0.0014465419999999999,0.003206263,0.006621373999999999,0.012556178000000001,0.021514843999999998,0.035416519,0.055652822139999995,0.08312447939999999,0.1257213753,0.1825523226,0.24580347,0.33267067300000003,0.427553674,0.558689889,0.6811216800000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,refining,biomass liquids,FT biofuels CCS level 2,0.0,0.0,0.0,0.0,1.31622E-4,4.4143000000000003E-4,0.001088555,0.002424461,0.0050493840000000005,0.009663709,0.0166973302,0.0278640313,0.044399717209999995,0.0670336473,0.10331828259999999,0.152496815,0.20711623,0.286923609,0.380038513,0.5223703630000001,0.681026831,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.00365269,0.009747559999999999,0.019675480000000002,0.035808080000000006,0.05970209,0.0919548,0.12939657,0.17474478400000001,0.22823370199999998,0.29053462100000005,0.35525745200000003,0.413786215,0.45667784999999994,0.46346687999999997,0.08998441439999999,0.02412004808946,0.010330502213284,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,refining,biomass liquids,cellulosic ethanol CCS level 1,0.0,0.0,0.0,0.0,9.8709E-4,0.003220054,0.007801128,0.016905265000000003,0.033365036,0.060061049,0.097083675,0.14674452,0.2101097246,0.287747482,0.38068943,0.47395154399999995,0.548098945,0.58466028,0.5738275899999999,0.1755806727,0.02228086850716,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,refining,biomass liquids,cellulosic ethanol CCS level 2,0.0,0.0,0.0,0.0,3.58311E-4,0.001220052,0.003048709,0.006894274000000001,0.014689709,0.028809028,0.050627587,0.0872712151,0.1439489832,0.2237186643,0.3653661918,0.56003608,0.757368,1.032345369,1.3247816500000003,1.76713774,2.2541033400000003,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,1.21194E-4,4.6524E-4,0.001166493,0.0024640820000000003,0.004297719,0.0066134643,0.0092935721,0.011604277900000001,0.013415644610000001,0.014560677,0.001515586288,8.62617317031E-4,7.69935952496E-4,4.3072E-4,2.75658E-4,1.87871E-4,6.92316E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,refining,coal to liquids,coal to liquids CCS level 1,0.0,0.0,0.0,0.0,3.10065E-5,1.5937740000000002E-4,5.005859E-4,0.0013371839,0.003063303,0.0061359441,0.0110252983,0.01740349758,0.02469742281,0.03173297583,0.0362420113,0.038520286499999994,0.039201264,0.03813707,0.034991880999999996,0.032876760000000005,0.0181069048,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,refining,coal to liquids,coal to liquids CCS level 2,0.0,0.0,0.0,0.0,2.11075E-5,1.098997E-4,3.477571E-4,9.387228E-4,0.0021891536000000003,0.0044664171999999995,0.0081634795,0.013187549449999999,0.01910212714,0.0248944232,0.028855539800000003,0.0310795719,0.0320373453,0.031850032,0.031075535,0.031947007,0.03221272,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,refining,gas to liquids,gas to liquids,0.0,0.00960073,0.0111242,0.0109241,0.011119007,0.012151389,0.015009225999999999,0.022396178000000003,0.038129412,0.065850767,0.10787484,0.16202728449999998,0.2278779926,0.30373661,0.374003799,0.45006407099999995,0.5581876379999999,0.70224739,0.9016821800000001,1.16789794,1.38404095,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,refining,oil refining,oil refining,0.327822,0.512014,0.698933,0.905488,1.170337,1.531412,1.9784260000000002,2.539542,3.250503,4.1227730000000005,5.1946709,6.411048000000001,7.720364099999999,9.1092026,10.2290206,11.1489032,11.0012528,11.2231624,11.3255098,11.304121100000001,10.5968975,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.00136673,0.0036535300000000003,0.00665153,0.01098343,0.01702992,0.02357289,0.028904707,0.034049837,0.0394800366,0.044425468999999995,0.049198194,0.052671472999999996,0.054105613000000004,0.054718957,0.0292468153,0.00378836509401,0.001633373169905,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,refining,biomass liquids,FT biofuels CCS level 1,0.0,0.0,0.0,0.0,3.37593E-4,0.001101559,0.002417179,0.004804758,0.009089719999999999,0.015004940000000001,0.021295438,0.029160732599999996,0.039467367600000004,0.0513674886,0.07049830330000001,0.09509993500000001,0.11910751300000001,0.162080599,0.205588621,0.24707473500000002,0.279281507,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,refining,biomass liquids,FT biofuels CCS level 2,0.0,0.0,0.0,0.0,2.50981E-4,8.21083E-4,0.001810725,0.003617986,0.006896032999999999,0.011464868999999999,0.016355651,0.0225693124,0.030823679,0.0404699662,0.0566327024,0.0781217243,0.099570346,0.140640769,0.18537271500000002,0.231233134,0.275997247,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.00714128,0.0189882,0.034495819999999996,0.05679222,0.08761769999999999,0.12069393,0.14680356,0.17135882000000002,0.19654620100000003,0.21872171099999999,0.23937937,0.25098823,0.24960636,0.23900940999999998,0.03389426821,0.00881073200051,0.003336790824441,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,refining,biomass liquids,cellulosic ethanol CCS level 1,0.0,0.0,0.0,0.0,0.00191068,0.00615792,0.01325473,0.02573678,0.04673625,0.07395683,0.100757202,0.130151878,0.1638576189,0.19757861,0.23688146599999998,0.26971449599999997,0.28530538,0.29207298000000004,0.27643212,0.07150902621,0.00717497435188,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,refining,biomass liquids,cellulosic ethanol CCS level 2,0.0,0.0,0.0,0.0,6.78527E-4,0.002240339,0.005020369,0.010191032,0.019831077000000003,0.033622466000000004,0.048498894,0.068223438,0.09541537770000001,0.12838507729999998,0.19054642900000002,0.277125862,0.35908502999999997,0.5095622399999999,0.6592050220000001,0.79933492,0.9337876900000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,2.37332E-4,9.075600000000001E-4,0.002003084,0.003795576,0.00615434,0.008525663000000001,0.010424225,0.0115916244,0.012116940299999998,0.011819345200000001,8.23578933E-4,4.16138063055E-4,2.98391969247E-4,1.87345E-4,1.09539E-4,6.9264E-5,2.24307E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,refining,coal to liquids,coal to liquids CCS level 1,0.0,0.0,0.0,0.0,5.7622E-5,2.810672E-4,7.917495E-4,0.0018983779,0.0039762643,0.0068692423,0.010033946000000002,0.0131617027,0.01622522067,0.0185686168,0.019735296700000002,0.0197093307,0.01887977,0.017999207,0.016834401,0.013948795,0.006835896899999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,refining,coal to liquids,coal to liquids CCS level 2,0.0,0.0,0.0,0.0,3.89857E-5,1.914682E-4,5.456043E-4,0.0013230704000000001,0.0028152218,0.0049331607,0.007282424899999999,0.009675012089999999,0.012086204630000002,0.013999539039999998,0.0151268697,0.015388514899999999,0.015046492899999998,0.014841287,0.014572552,0.014216098000000002,0.013621303999999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,refining,gas to liquids,gas to liquids,0.0,5.66972E-5,6.83961E-5,6.71659E-5,0.0010835923,0.004612023,0.0116476215,0.025360358,0.0489142245,0.07933270401,0.11133380374,0.14557674,0.1829582534,0.217523198,0.245939411,0.269237027,0.2934034,0.34045129,0.4028858,0.48537551,0.53690608,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,refining,oil refining,oil refining,2.01049,2.83366,3.33534,3.4270650000000002,3.932119,4.5832120000000005,5.133805,5.576253,5.9676457,6.2817854,6.530789199999999,6.794089550000001,7.0341623,7.2529563,7.2856277,7.1090564999999994,6.3961388999999995,6.0127226,5.6028995,5.1757538,4.502585600000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,5.42129E-4,0.001425827,0.002702228,0.004546725,0.0073253929999999995,0.011277014,0.015906959,0.021446907200000004,0.0276576,0.035138970299999996,0.0439328909,0.0525726929,0.059165639000000006,0.062998867,0.0395515925,0.00528411107372,0.002829733993377,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,refining,biomass liquids,FT biofuels CCS level 1,0.0,0.0,0.0,0.0,1.37056E-4,4.4525399999999996E-4,0.001010604,0.002044242,0.004064597,0.007737493999999999,0.0132127149,0.0215174025,0.032803470089999995,0.0483974192,0.0751043927,0.11065854559999999,0.14536414879999998,0.19459199700000002,0.24148910300000004,0.30624679099999996,0.373112085,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,refining,biomass liquids,FT biofuels CCS level 2,0.0,0.0,0.0,0.0,1.02246E-4,3.33729E-4,7.595989999999999E-4,0.001544026,0.0030960570999999997,0.0059496489,0.010244908099999998,0.0169110193,0.026119310609999998,0.0389568987,0.0617179627,0.0925663927,0.1226792768,0.168049487,0.214297121,0.285113537,0.372464002,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.00283266,0.007410730000000001,0.01401312,0.02350685,0.03767328,0.05765870000000001,0.08044076,0.10724754,0.136750278,0.171816524,0.212478181,0.24863832200000002,0.269659842,0.271769866,0.04891507901,0.01231296696493,0.005780811140547,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,refining,biomass liquids,cellulosic ethanol CCS level 1,0.0,0.0,0.0,0.0,7.66005E-4,0.002439773,0.00547391,0.010828148999999999,0.020584207,0.037146216,0.059824672999999995,0.089527579,0.1249617455,0.1690514414,0.227316652,0.285210411,0.323942916,0.343187266,0.332441474,0.09428335407,0.01246473925723,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,refining,biomass liquids,cellulosic ethanol CCS level 2,0.0,0.0,0.0,0.0,2.78472E-4,9.214000000000001E-4,0.002121291,0.004377737,0.008981683,0.017700277,0.031003185000000003,0.0528471824,0.0843139638,0.1294864928,0.21842780920000002,0.341183963,0.45088825600000004,0.607896753,0.7527595729999998,0.9719007600000001,1.23878058,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,9.39771E-5,3.5243419999999995E-4,8.188087999999999E-4,0.0015826256,0.0026703212,0.0041068833,0.0057437066000000005,0.007107512799999999,0.00807932353,0.0086864957,9.253126626E-4,5.30657628387E-4,4.19925787709E-4,2.42785E-4,1.40705E-4,9.59183E-5,3.87444E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,refining,coal to liquids,coal to liquids CCS level 1,0.0,0.0,0.0,0.0,2.41289E-5,1.195188E-4,3.4167080000000003E-4,8.316642E-4,0.0018480746,0.0037379169,0.0067067197000000005,0.01049308342,0.01450429033,0.01845866579,0.021326931099999998,0.022822572599999997,0.0230292504,0.0223108005,0.02012507,0.018507734,0.0098989682,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,refining,coal to liquids,coal to liquids CCS level 2,0.0,0.0,0.0,0.0,1.64325E-5,8.23251E-5,2.3678420000000002E-4,5.826878E-4,0.0013182239000000002,0.0027168881,0.0049581478500000005,0.00793637561,0.011181008225,0.01443391615,0.016951387300000002,0.0184072464,0.018823231699999998,0.018641354000000002,0.017874729000000002,0.017955528000000002,0.017937009,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,refining,gas to liquids,gas to liquids,0.0,0.00205735,0.00235503,0.00231267,0.002648545,0.003853751,0.006505283,0.011822003,0.022142763,0.040062781000000006,0.066217312,0.09894093679999999,0.1359748362,0.1791638707,0.22320461699999997,0.269964834,0.326317509,0.405550483,0.50247479,0.63275503,0.7507895099999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,refining,oil refining,oil refining,0.239498,0.340846,0.513987,0.775823,0.9837450000000001,1.256937,1.552005,1.865781,2.250466,2.733619,3.3267592,4.0082579,4.699628,5.4704657,6.183215799999999,6.751195900000001,6.578884200000001,6.6374866,6.5476464000000005,6.3912230999999995,5.920856,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.00100148,0.0033174499999999996,0.007088204,0.012905257,0.021245984000000002,0.032465795,0.04571602,0.06231621600000001,0.0833347581,0.108278079,0.13497883300000002,0.160948624,0.184631219,0.19769912099999998,0.12492775110000001,0.0168901137583,0.008484363174628,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,refining,biomass liquids,FT biofuels CCS level 1,0.0,0.0,0.0,0.0,2.52983E-4,0.0010598040000000001,0.0027292410000000003,0.005983478,0.01201959,0.022340712,0.037695082000000005,0.06176985060000001,0.097393793,0.1450339988,0.21769343880000003,0.310294894,0.41338946800000004,0.555965732,0.723283189,0.9364376,1.14170819,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,refining,biomass liquids,FT biofuels CCS level 2,0.0,0.0,0.0,0.0,1.88708E-4,7.945949999999999E-4,0.002052108,0.004521298,0.009156092000000001,0.017167324999999997,0.029192597,0.0484503511,0.07726232064,0.1159931887,0.1767891485,0.255249368,0.342657039,0.47176358,0.63763251,0.870556771,1.1380275899999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.0052328,0.01723089,0.036735760000000006,0.06667701000000001,0.10920333,0.16596031,0.2312133,0.31163958699999994,0.41170783,0.528845087,0.652354366,0.761242,0.8400904,0.85180977,0.15624008566,0.03934560647466,0.017332603867659,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,refining,biomass liquids,cellulosic ethanol CCS level 1,0.0,0.0,0.0,0.0,0.00141453,0.0057988200000000005,0.014759930000000001,0.03162762,0.06082482,0.10752903999999999,0.171537007,0.25877245699999996,0.3743688565,0.515467186,0.684455062,0.84831185,0.9774340100000001,1.03956038,1.0165205099999999,0.3029181123,0.037408554859340006,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,refining,biomass liquids,cellulosic ethanol CCS level 2,0.0,0.0,0.0,0.0,5.13824E-4,0.002196056,0.0057387440000000005,0.012838789,0.026574005999999997,0.05100171,0.088116402,0.15077481469999998,0.24748984359999998,0.380371231,0.609190676,0.9069727200000001,1.21206664,1.6455577399999999,2.1758396099999997,2.90501488,3.7338676,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,1.73614E-4,8.50961E-4,0.002228502,0.0046356539999999995,0.00789387,0.011953336999999998,0.0165931869,0.020641472599999995,0.02395014858,0.0260475944,0.0027753635490000003,0.0015759408093070002,0.001392156740951,7.76139E-4,4.63573E-4,3.0591E-4,1.16091E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,refining,coal to liquids,coal to liquids CCS level 1,0.0,0.0,0.0,0.0,4.44904E-5,2.938358E-4,9.495134E-4,0.0024893935999999997,0.0055123494,0.010775622200000001,0.018974378200000003,0.029650449190000004,0.0415726815,0.0527475876,0.0597364617,0.06287220169999999,0.06353184299999999,0.061472333000000004,0.057832418000000003,0.053972638,0.0304584343,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,refining,coal to liquids,coal to liquids CCS level 2,0.0,0.0,0.0,0.0,3.02925E-5,2.024797E-4,6.583256E-4,0.0017450246999999998,0.0039308398000000005,0.0078197324,0.0139915292,0.02233972102,0.03184414705,0.04085596382,0.046843951200000004,0.0498503636,0.050947239,0.05040549,0.049987233,0.051594464,0.052639475,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,refining,gas to liquids,gas to liquids,0.0,0.0101239,0.0117228,0.011512,0.011915361000000001,0.014674678,0.021791871,0.037547317999999996,0.06735928499999999,0.117153373,0.190657857,0.286983698,0.40992872340000003,0.5523474420000001,0.687506489,0.83180947,1.03331581,1.29733611,1.62149418,2.03696498,2.38221464,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,refining,oil refining,oil refining,0.685554,1.15211,1.2014,1.542573,1.9217700000000002,2.639736,3.535509,4.604546000000001,5.901443,7.475618000000001,9.3829527,11.5701988,14.0460909,16.680062,18.8873708,20.6893851,20.4871217,20.912777200000004,20.794593,20.296955999999998,18.696951,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.0,4.02282E-4,0.001019484,0.001996033,0.0034508620000000003,0.004987709,0.006015059,0.0066692769999999995,0.007235202499999999,0.007565135599999999,0.0079933189,0.008309463500000001,0.0087100659,0.0081887143,0.001086725547606,4.1903337096700004E-4,6.92023E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,refining,biomass liquids,FT biofuels CCS level 1,0.0,0.0,0.0,0.0,0.0,1.44277E-4,4.36979E-4,0.001023207,0.002155633,0.0036813849999999997,0.005005755,0.0062766535,0.0080572348,0.01026063636,0.015694357399999997,0.0253181502,0.0401520764,0.07486655179999999,0.1101649097,0.1293406043,0.1308781224,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,refining,biomass liquids,FT biofuels CCS level 2,0.0,0.0,0.0,0.0,0.0,1.08824E-4,3.31641E-4,7.81389E-4,0.001661332,0.002861438,0.003915321100000001,0.0049573772,0.006465213399999999,0.008403999589999999,0.0135511873,0.023361335400000002,0.0393092971,0.0812651264,0.1283843843,0.1574656766,0.1639799353,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,refining,biomass liquids,biodiesel,0.0,6.69766E-4,0.0195058,0.0076960227,0.00780929,0.008155450000000002,0.008125282000000001,0.007560496,0.0067377317,0.00595694,0.0055771545,0.0054637926,0.0054535777,0.0055996376,0.0053096563999999995,0.00415834818,0.0031949936619999997,0.002783700101539,0.00200384,0.00133609,6.12976E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.0,0.00208407,0.00527667,0.01030321,0.01772168,0.0254985,0.03055378,0.03366943,0.036214667,0.0374870908,0.039081597,0.039646331,0.039829307,0.01840440148,0.0028982200862840003,9.86794E-4,1.41372E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,refining,biomass liquids,cellulosic ethanol CCS level 1,0.0,0.0,0.0,0.0,0.0,7.71646E-4,0.00228448,0.005205828,0.010457808,0.0170486,0.022261707999999998,0.026409613000000002,0.031079786,0.035430473000000004,0.0425151805,0.049854406999999996,0.056659446,0.06366682,0.0478293443,0.0025938185219199997,3.93540607355E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,refining,biomass liquids,cellulosic ethanol CCS level 2,0.0,0.0,0.0,0.0,0.0,3.04998E-4,9.469210000000001E-4,0.002270571,0.0049441910000000006,0.00870619,0.012067068,0.015634687,0.021192355399999998,0.0289865148,0.0539700818,0.108204229,0.196655787,0.439263089,0.6939127300000001,0.8442036180000001,0.8776417119999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,refining,biomass liquids,corn ethanol,0.0,0.0,0.00263706,0.00441274,0.00425639,0.006694800000000001,0.010337780000000001,0.01555741,0.022624395,0.029345418,0.033834776,0.03691077239999999,0.039999120000000006,0.042535028999999995,0.047808872,0.055412821999999994,0.06515544300000001,0.07983681599999999,0.089546769,0.08949643900000001,0.08352305700000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,0.0,1.20876E-4,3.6023E-4,8.11905E-4,0.001476764,0.0021473300000000002,0.0025869299,0.0027800799000000003,0.0028337805000000003,0.00268296291,1.651767608E-4,8.3820313566E-5,6.65268E-5,3.91304E-5,2.01024E-5,6.93764E-6,9.38116E-7,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,refining,coal to liquids,coal to liquids CCS level 1,0.0,0.0,0.0,0.0,0.0,4.7694E-5,1.815736E-4,5.22235E-4,0.001252946,0.002292849,0.0032600434,0.004077653,0.0050323825,0.005921873729999999,0.0068035661,0.007452478,0.008295221,0.0095141389,0.0104894116,0.010441244499999999,0.0094057934,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,refining,coal to liquids,coal to liquids CCS level 2,0.0,0.0,0.0,0.0,0.0,3.32144E-5,1.281748E-4,3.736796E-4,9.140814E-4,0.0017018305,0.0024515805,0.0031183404,0.00394056455,0.00476559682,0.00572876305,0.0066312116,0.007909923499999999,0.0100029609,0.0121515055,0.0130061329,0.0123167189,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,0.0,6.45594E-4,0.002200277,0.0056793780000000006,0.012284361,0.020685696,0.027689441,0.033145366999999995,0.038911454,0.0434882969,0.047286669200000006,0.049417529,0.053050230000000004,0.061470283,0.07150491099999999,0.075571956,0.071199476,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,refining,oil refining,oil refining,0.766759,1.0842,1.2999,1.4175170000000001,1.377612,1.498875,1.5770770000000003,1.617114,1.633698,1.6228346999999999,1.5978275,1.5842459500000001,1.5608403000000002,1.5331436999999999,1.4633621800000003,1.3400926999999998,1.1152364000000001,0.76599339,0.3616518,0.125166896,0.017240005739999998,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,2.87588E-5,7.27586E-5,1.657591E-4,3.813433E-4,8.246699E-4,0.0014123851,0.0019390162,0.0024088480399999997,0.00298692449,0.0036443616799999995,0.0049632509,0.006981765399999999,0.0096000908,0.0110896924,0.002819191269319,0.001318731604619,3.11671E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,refining,biomass liquids,FT biofuels CCS level 1,0.0,0.0,0.0,0.0,7.29277E-6,2.308654E-5,6.730324E-5,1.9737744999999998E-4,5.452342099999999E-4,0.0011344733800000002,0.00180442559,0.00258128831,0.003823316496,0.005716330326,0.012082732289999999,0.02808753294,0.0580779198,0.105315419,0.20017180229999998,0.2669779558,0.29203124220000004,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,refining,biomass liquids,FT biofuels CCS level 2,0.0,0.0,0.0,0.0,5.44302E-6,1.735731E-5,5.102896E-5,1.5089332E-4,4.2151358E-4,8.8575678E-4,0.00141968475,0.002055694476,0.00310109085,0.004742085966,0.01066406752,0.02665586992,0.058325984100000006,0.1148861342,0.2394017127,0.3360389173,0.3820965252,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,refining,biomass liquids,biodiesel,0.0,0.0,0.00234401,0.010262798,0.0118819061,0.013134813799999999,0.01493588355,0.0172527145066,0.019985453001588,0.021793233287151,0.02254090572513,0.023281316163,0.0251950187,0.027109215149999998,0.030853747781,0.034072136392,0.036447557944,0.03660196168869,0.038852605325491,0.0346647766404,0.0301929721,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,refining,biomass liquids,cellulosic ethanol,0.0,4.60463E-4,0.00945963,0.009359200600000001,0.009235125500000002,0.0087840683,0.007848049000000001,0.006769268699999999,0.0068341089,0.0083681183,0.0102621341,0.01208136042,0.01482812373,0.017896533699999998,0.0240110244,0.0326663061,0.042345258,0.0360810386,0.007516829644319,0.003105510395655,6.36709E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,refining,biomass liquids,cellulosic ethanol CCS level 1,0.0,0.0,0.0,0.0,4.06918E-5,1.251274E-4,3.533687E-4,9.998972E-4,0.0026064783000000003,0.0051375113,0.0077672958,0.01036552933,0.01387012415,0.01831696731,0.0287586985,0.0459374503,0.0669351576,0.080684689,0.0832259857,0.008171270726670002,0.00176785118192,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,refining,biomass liquids,cellulosic ethanol CCS level 2,0.0,0.0,0.0,0.0,1.48388E-5,4.82387E-5,1.453187E-4,4.396816E-4,0.0012639878,0.0027242684000000003,0.00443223369,0.0066027455700000005,0.010411026722,0.01682848881,0.04467439023,0.130473178,0.3022699821,0.6263870645999999,1.2918586895000002,1.7830283320000002,2.011470073,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,6.72081E-5,2.125919E-4,5.420109E-4,0.0012880997,0.0025033057,0.0037597936,0.004690867,0.0051673471,0.0053977702,0.00525574873,3.8353530500000003E-4,2.06332975404E-4,1.69435E-4,6.38426E-5,5.58957E-5,2.31292E-5,3.98722E-6,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,refining,coal to liquids,coal to liquids CCS level 1,0.0,0.0,0.0,0.0,1.73836E-5,7.48553E-5,2.601452E-4,8.291738E-4,0.002189001,0.0041909975999999995,0.0063021660200000005,0.008188339920000001,0.010352636934,0.0124786645,0.01475688361,0.0167608688,0.0193525272,0.020811420599999998,0.02407167,0.025131542099999998,0.023268002,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,refining,coal to liquids,coal to liquids CCS level 2,0.0,0.0,0.0,0.0,1.18491E-5,5.18817E-5,1.8339780000000002E-4,5.94055E-4,0.0016020323,0.00312362472,0.00476679345,0.00630926708,0.008172324504,0.01012139689,0.01252040648,0.0150426037,0.018628022799999998,0.0215946996,0.0279660136,0.0318190445,0.0312414846,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,refining,gas to liquids,gas to liquids,0.0268719,0.0,0.0,0.0,2.89956E-4,0.001066569,0.003206914,0.008955884,0.021030204,0.036791475000000004,0.051598019,0.0638544023,0.0767503244,0.0881321222,0.099342974,0.10837709400000001,0.12167045800000001,0.132252653,0.164733123,0.186936564,0.184645146,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,refining,oil refining,oil refining,1.52597,2.07254,2.16231,2.263792,2.3952869999999997,2.497462,2.582934,2.6532400000000003,2.7478643,2.8156111999999998,2.8701678000000004,2.92587685,2.98372797,3.0338029099999995,3.0200952,2.8927047,2.5552968000000003,2.1016398,1.12734935,0.44596095,0.06979305359999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,1.09226E-4,5.42875E-4,0.001148946,0.002231658,0.00416833,0.006755337600000001,0.0089601981,0.0107402657,0.01255366065,0.014132287000000002,0.0163787738,0.0190811969,0.0217963747,0.0227250816,0.0032898944176599997,0.002367874251959,7.19824E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,refining,biomass liquids,FT biofuels CCS level 1,0.0,0.0,0.0,0.0,2.76916E-5,1.831633E-4,4.705951E-4,0.0011212443,0.0026327793,0.0052111049,0.0080207258,0.01107210725,0.015295633099999999,0.02068536541,0.0346341713,0.0641105854,0.1099946249,0.19089715499999999,0.29823147099999997,0.416476521,0.47628643299999995,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,refining,biomass liquids,FT biofuels CCS level 2,0.0,0.0,0.0,0.0,2.06671E-5,1.379287E-4,3.5673E-4,8.55951E-4,0.002030813,0.0040597359,0.006295799099999999,0.00879141071,0.012345243756,0.017031313779999998,0.0300946117,0.0597719917,0.1086389039,0.2061979731,0.34854743,0.521096885,0.6302035699999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,refining,biomass liquids,biodiesel,0.0,0.0,0.0850955,0.075522251,0.0790005,0.08719373,0.09464964,0.10191842,0.11070474999999999,0.119614792,0.126090879,0.130879988,0.136337146,0.140343163,0.147252859,0.151932572,0.15849957,0.15459699,0.153952035,0.15300844600000002,0.148222651,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,5.70715E-4,0.0028172780000000003,0.005952294,0.011525174,0.021400247999999997,0.034490422,0.045352127000000006,0.053943332999999996,0.0624739446,0.069652483,0.079710872,0.09041163699999999,0.09858239299999999,0.06974623569999999,0.008729917851423,0.005576171149492,0.00147052,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,refining,biomass liquids,cellulosic ethanol CCS level 1,0.0,0.0,0.0,0.0,1.54532E-4,9.86227E-4,0.00247191,0.005713108,0.012716295,0.023837063999999998,0.0349089188,0.0450990105,0.05687145579,0.0690039019,0.0901363336,0.118272664,0.145078326,0.162767814,0.15310753489999998,0.014874347873500001,0.004087875654313,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,refining,biomass liquids,cellulosic ethanol CCS level 2,0.0,0.0,0.0,0.0,5.63386E-5,3.8494239999999996E-4,0.0010152722999999999,0.0024848436,0.0060566616999999994,0.012422572,0.0195552843,0.0280544436,0.040990593310000004,0.05941489380000001,0.1215822717,0.28264323010000003,0.550484603,1.11297929,1.8784558859999998,2.7594206449999996,3.3040227599999996,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,refining,biomass liquids,sugar cane ethanol,0.245075,0.291452,0.503624,0.00152947,4.72415E-4,0.0017825,0.00236194,0.003943240177665,0.007308290769635,0.010554303916649,0.010880826189529999,0.010850667532019001,0.014224945528025999,0.0179574733929,0.03892621329,0.0891529866,0.170495081,0.20649147499999998,0.252172983,0.2565879964,0.1381892002,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,1.11318E-4,7.60808E-4,0.001763995,0.00358493,0.006349394,0.0094062637,0.011606267,0.0125979982,0.012849693229999999,0.0121885219,6.99826862E-4,3.63110085797E-4,2.7599E-4,1.32333E-4,8.66819E-5,5.28423E-5,1.19771E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,refining,coal to liquids,coal to liquids CCS level 1,0.0,0.0,0.0,0.0,2.87766E-5,2.848147E-4,8.458205000000001E-4,0.0022216745,0.0052756378999999996,0.010067584000000001,0.015003538299999999,0.019227221590000003,0.02356520656,0.0271935196,0.030448686500000002,0.0330743665,0.035961095,0.038612964,0.042398898,0.045739508,0.043738668,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,refining,coal to liquids,coal to liquids CCS level 2,0.0,0.0,0.0,0.0,1.96135E-5,1.978997E-4,5.958059999999999E-4,0.001587527,0.0038473324,0.0074807725,0.01131165977,0.01475803961,0.018493210189,0.0218649149,0.025493295500000002,0.0292497499,0.034062045,0.039938322,0.048811428000000004,0.058529716,0.060273432,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,4.80237E-4,0.003949012,0.010465490000000001,0.024495741,0.051983591999999995,0.09040654000000001,0.125784059,0.1537541575,0.17987087670000002,0.19842080199999998,0.211664975,0.219846146,0.23081428,0.24918370999999997,0.29002152,0.34538374,0.36005548000000004,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,refining,oil refining,oil refining,2.37788,3.67436,4.48847,5.5640600000000004,5.761736999999999,6.346337999999999,6.732564,6.975185,7.156785999999999,7.227357000000001,7.178575,7.1358116,7.0296239,6.874065199999999,6.5164767,5.9624649000000005,5.0066808,4.0118288,2.5838061999999997,1.1262614,0.2145144729,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,8.16936E-5,2.093425E-4,5.091936E-4,0.0012748701,0.0028218462000000003,0.0046702376,0.0060121728,0.007016955,0.00812171099,0.0091887301,0.011001440500000001,0.0132984564,0.0157823526,0.0164389089,0.00187753874257,0.001487824856457,0.00112197,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,refining,biomass liquids,FT biofuels CCS level 1,0.0,0.0,0.0,0.0,2.06942E-5,6.62988E-5,2.070909E-4,6.575421E-4,0.0018166585999999998,0.0035535787,0.0051687176,0.00678912716,0.009233828263,0.012787432179999999,0.02336139835,0.0460052862,0.0812910602,0.12527220349999998,0.17971459080000002,0.24291363059999999,0.326595604,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,refining,biomass liquids,FT biofuels CCS level 2,0.0,0.0,0.0,0.0,1.54429E-5,4.9820599999999995E-5,1.5683E-4,5.013115E-4,0.001396545,0.0027509082,0.00402569484,0.0053412521800000005,0.007387892332,0.0104691339,0.02031380932,0.0428994455,0.07996845359999999,0.13217307820000002,0.2027871371,0.2916167898,0.42764392,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,refining,biomass liquids,biodiesel,0.0,0.0,0.00728313,0.014761959,0.017084330000000002,0.019381284,0.0224966231,0.026988905417,0.030778904819000003,0.031368352239999994,0.029650732855,0.0301999432,0.0327326555,0.035634905099999996,0.0381871662,0.037164212599999996,0.0339350337,0.02809249027,0.024069571443,0.019354618155700002,0.01263683431068,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,4.26855E-4,0.001088152,0.002639187,0.006580273,0.014468477,0.023822074999999998,0.03043604,0.035293746200000004,0.040504524,0.0453645778,0.0535294313,0.062794413,0.07087903000000001,0.05679942810000001,0.0049075994182690005,0.0035037042919649998,0.00229205,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,refining,biomass liquids,cellulosic ethanol CCS level 1,0.0,0.0,0.0,0.0,1.15535E-4,3.59971E-4,0.001091721,0.003362024,0.008854467000000001,0.016591656500000003,0.0231477515,0.028706569499999997,0.03564765635,0.043711920599999995,0.06017111189999999,0.082881179,0.105490458,0.115258681,0.11138492879999999,0.0100234442828,0.006106021941395001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,refining,biomass liquids,cellulosic ethanol CCS level 2,0.0,0.0,0.0,0.0,4.20862E-5,1.383127E-4,4.455787E-4,0.0014526266,0.0041382025,0.008307026700000001,0.012304350499999998,0.016717127499999998,0.024089100380000002,0.03613280043,0.0823967287,0.20259513969999998,0.40048000100000003,0.6920162569999999,1.055966966,1.480045786,2.0945197689999997,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,refining,biomass liquids,corn ethanol,0.0,0.0071158,0.037839,0.04052811,0.043203019999999995,0.045030179999999996,0.04716281,0.05101558,0.0595214,0.06980621000000001,0.07753207,0.082720585,0.089602572,0.095867314,0.111297383,0.13736252,0.171731358,0.204899565,0.238262969,0.27147645,0.313740088,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,7.8102E-5,2.541608E-4,7.014458E-4,0.0018357159000000002,0.0037229319,0.0056125902,0.006833285000000001,0.0073731827,0.0075696339900000005,0.00723646253,5.24338069E-4,2.7297190119900003E-4,2.11317E-4,7.0965E-5,4.34984E-5,2.97551E-5,1.67343E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,refining,coal to liquids,coal to liquids CCS level 1,0.0,0.0,0.0,0.0,2.01498E-5,8.89685E-5,3.3325980000000003E-4,0.0011491051000000001,0.0030516848,0.0056584194,0.0080821234,0.01005352073,0.012332148921,0.01461870542,0.017234912400000003,0.019674630999999998,0.022571753899999998,0.023784879000000002,0.02505848,0.0260064414,0.026161502,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,refining,coal to liquids,coal to liquids CCS level 2,0.0,0.0,0.0,0.0,1.37304E-5,6.16009E-5,2.3435619999999998E-4,8.187204E-4,0.0022096163,0.0041524051,0.0060042961100000005,0.007590996880000001,0.009533259266999999,0.011636039159999998,0.014420155560000002,0.0174992634,0.021513152799999997,0.024234492500000003,0.0276391435,0.0312322141,0.034639365000000005,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,refining,gas to liquids,gas to liquids,0.0142735,0.0237333,0.033444,0.0328424,0.032194686,0.030734005999999998,0.02862917,0.029634457,0.04070992699999999,0.059578556000000005,0.076774418,0.08969020959999999,0.1044706581,0.1167009986,0.12880941099999998,0.138980908,0.15359660399999997,0.16276311999999998,0.18142204,0.21154741000000002,0.257673327,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,refining,oil refining,oil refining,3.12207,4.12866,3.9566,4.078245,4.195582,4.261699,4.282641,4.266877999999999,4.257028,4.200082,4.1139377999999995,4.071854139999999,4.036174,4.00981515,3.8751668000000006,3.6151274000000004,3.1753704999999997,2.6935465,2.1095964,1.4657529,0.418447213,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,3.83239E-4,9.60617E-4,0.001793742,0.003227039,0.005382705,0.007851618999999999,0.009789531,0.0112456725,0.012330933399999999,0.013205522700000003,0.0140334128,0.0148233965,0.015502172,0.0148658918,0.00113371955107,7.55581734754E-4,5.97727E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,refining,biomass liquids,FT biofuels CCS level 1,0.0,0.0,0.0,0.0,9.69945E-5,3.020929E-4,6.879007E-4,0.0015108708,0.0030959115,0.0054447722,0.0078991053,0.0105364163,0.013578318950000001,0.01765909651,0.0262960735,0.042707152,0.0665685423,0.105926174,0.134834929,0.162316988,0.200983418,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,refining,biomass liquids,FT biofuels CCS level 2,0.0,0.0,0.0,0.0,7.23717E-5,2.2684559999999997E-4,5.194497E-4,0.0011463645000000001,0.0023662503999999996,0.0041974021999999995,0.0061350218,0.0082789842,0.01083480149,0.014390161539999998,0.0224949527,0.0389912409,0.06425523080000001,0.1110232598,0.1488605966,0.18837100399999998,0.25284392099999997,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,refining,biomass liquids,biodiesel,0.0,0.0,0.0,0.00137684,0.001624225,0.0019305869999999999,0.0022599969999999997,0.002618007,0.0030503552,0.0034621097200000003,0.0037959141700000002,0.00402707101,0.00426768005,0.00453196752,0.0048945195,0.00523251748,0.00566010681,0.006066344623800001,0.006038076609,0.006253289575300001,0.006689569420494,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.00200245,0.00499361,0.00930308,0.01668035,0.027670840000000002,0.04015622,0.04966697,0.056620968,0.06157003490000001,0.065295721,0.06856169100000001,0.070728048,0.070981308,0.042966075099999994,0.002948351785283,0.001779323676585,0.00122109,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,refining,biomass liquids,cellulosic ethanol CCS level 1,0.0,0.0,0.0,0.0,5.41776E-4,0.0016445219999999998,0.0036652160000000002,0.007871033,0.015474971,0.025938612,0.035860507,0.0447776107,0.053071609199999994,0.0617553993,0.0735988502,0.087251936,0.09858904,0.103996802,0.08973939439999999,0.0053322923121,0.003220798051426,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,refining,biomass liquids,cellulosic ethanol CCS level 2,0.0,0.0,0.0,0.0,1.97178E-4,6.287619999999999E-4,0.0014651249999999998,0.003282844,0.006915576,0.012550341,0.018630334800000002,0.025842140200000002,0.035113082420000004,0.0491284425,0.0876947945,0.1762957096,0.311933805,0.571353702,0.7638142760000001,0.9494404669999998,1.234046267,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,refining,biomass liquids,sugar cane ethanol,0.0580575,0.0297611,0.0097529,0.00461119,0.00165755,0.00237384,0.0032485,0.00522756,0.00817521,0.010260401036344999,0.010187315440754999,0.01009588157498,0.011160081080079999,0.0147361590833,0.0266038282,0.054020823999999995,0.098836233,0.117862519,0.138143543,0.17263070400000002,0.211580017,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,8.69147E-5,3.089017E-4,7.128398000000001E-4,0.0015047398,0.0026219187,0.0037984691999999997,0.004693287399999999,0.0051399575,0.00523510112,0.0049979099,2.865299092E-4,1.55569237188E-4,1.23649E-4,5.87289E-5,2.53925E-5,1.58167E-5,9.9782E-6,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,refining,coal to liquids,coal to liquids CCS level 1,0.0,0.0,0.0,0.0,2.23756E-5,1.07966E-4,3.214377E-4,8.588488E-4,0.0019305067,0.0035538257,0.005352271400000001,0.00703394028,0.00864544828,0.010290743890000002,0.011676857999999998,0.012863939599999999,0.0142243492,0.0153222828,0.015517849599999998,0.0154259958,0.0152862607,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,refining,coal to liquids,coal to liquids CCS level 2,0.0,0.0,0.0,0.0,1.52433E-5,7.46809E-5,2.2501980000000002E-4,6.070989E-4,0.0013853123,0.0025942933,0.00396730324,0.00531893676,0.006691487926,0.00819443428,0.0096909374,0.0112630029,0.0133027196,0.015538096400000001,0.0169216587,0.0181611019,0.019812349700000002,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,3.74835E-4,0.0015587779999999998,0.004176748,0.010265857,0.021419118,0.036369456,0.050995412,0.0634658765,0.0739365169,0.0829320846,0.088955085,0.093315969,0.099748126,0.108953932,0.11686492,0.12955591,0.15613665200000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,refining,oil refining,oil refining,1.17853,1.75,1.89676,2.096383,2.2686360000000003,2.4570299999999996,2.6065970000000003,2.726805,2.8102609999999997,2.859674,2.8894897,2.9155658,2.8772790699999993,2.8474215,2.7167158999999996,2.5143546,2.1184855,1.7161992000000001,1.3200482,0.9348368,0.290488134,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,6.22564E-4,0.0016795290000000001,0.002926074,0.004683024,0.007166028,0.009939442,0.01213838,0.013838936,0.0154245596,0.0166753958,0.017789638,0.0185991652,0.020706213,0.0178048227,0.0019063968458340002,5.339762762190001E-4,4.58598E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,refining,biomass liquids,FT biofuels CCS level 1,0.0,0.0,0.0,0.0,1.57837E-4,5.36868E-4,0.001128259,0.002185202,0.004132086,0.006956073,0.0100004693,0.013468779399999999,0.01808546854,0.0238240881,0.0351198116,0.05467122220000001,0.0977356429,0.192237646,0.252413212,0.273179052,0.265179957,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,refining,biomass liquids,FT biofuels CCS level 2,0.0,0.0,0.0,0.0,1.17799E-4,4.03685E-4,8.53875E-4,0.00166481,0.0031779269999999997,0.0054003183,0.0078253964,0.0106689135,0.014567360409999999,0.019584114899999998,0.030252921900000004,0.0501519726,0.09615631220000001,0.21006014299999998,0.29097880099999995,0.324561566,0.32015502800000006,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.00325294,0.00872863,0.01517659,0.02421962,0.03687781,0.05089677,0.06165590000000001,0.06970947899999999,0.076932321,0.082309336,0.086789649,0.088810544,0.09421130999999999,0.0337132259,0.005088687786624,0.00125748,9.36865E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,refining,biomass liquids,cellulosic ethanol CCS level 1,0.0,0.0,0.0,0.0,8.80796E-4,0.002908201,0.005964828,0.011230369,0.020251214000000003,0.032416207,0.044317568,0.05563967,0.06803511450000001,0.0802193731,0.09555146,0.11093320300000001,0.13433341000000001,0.155300379,0.09142654314,0.0032614384170799996,2.60346224649E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,refining,biomass liquids,cellulosic ethanol CCS level 2,0.0,0.0,0.0,0.0,3.2112E-4,0.001122309,0.0024192799999999998,0.004806358,0.009406013000000001,0.016380971,0.024132216999999997,0.0338657946,0.048154876400000005,0.0680817705,0.1196069344,0.229360187,0.482466882,1.138904637,1.5771270720000001,1.7529653139999999,1.732914273,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,1.07901E-4,4.16917E-4,8.73532E-4,0.0016065419999999999,0.0025943620000000002,0.0036313598999999997,0.0044549114,0.0048712319,0.005003185459999999,0.0048009246,2.7149429199999997E-4,1.3043224662699998E-4,1.46736E-4,8.66844E-5,2.93843E-5,7.31179E-6,5.00731E-7,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,refining,coal to liquids,coal to liquids CCS level 1,0.0,0.0,0.0,0.0,2.78939E-5,1.497684E-4,4.051879E-4,9.588624E-4,0.002049741,0.0036837232999999995,0.005576019099999999,0.00742176655,0.009411520789999999,0.01126868064,0.0126724922,0.0135978956,0.0158129013,0.0187149182,0.0195280493,0.0184323582,0.016201789,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,refining,coal to liquids,coal to liquids CCS level 2,0.0,0.0,0.0,0.0,1.90119E-5,1.0388110000000001E-4,2.850457E-4,6.841019E-4,0.0014910554,0.0027293788,0.00419726445,0.00570186716,0.007409749056,0.0091132868,0.01064719036,0.0119829747,0.015066624600000002,0.019839960599999998,0.022448665200000002,0.0224248554,0.020489289600000002,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,4.65496E-4,0.0021159489999999998,0.0050822950000000006,0.010732122,0.02057302,0.033719438000000004,0.047320658,0.0596203854,0.0718059586,0.0817686936,0.087824007,0.09057068400000001,0.101580703,0.12196061899999999,0.13258502,0.130091194,0.117157135,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,refining,oil refining,oil refining,2.55016,1.09805,1.38878,1.661658,1.893984,2.202496,2.432785,2.602501,2.7323920000000004,2.801681,2.8269055,2.8291647,2.8143812,2.7927232,2.6729817,2.4616759,1.9494814999999999,1.01799211,0.36654308999999996,0.10236751599999999,0.00890727369,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.0025756,0.006467240000000001,0.01126558,0.01820251,0.029315139999999996,0.04329928,0.05600123,0.06702686499999999,0.077381535,0.08535949599999999,0.09490238200000001,0.105058181,0.11869871000000001,0.12178425,0.02075404919135,0.010001717075633,0.0018766,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,refining,biomass liquids,FT biofuels CCS level 1,0.0,0.0,0.0,0.0,6.51E-4,0.00203692,0.004286771,0.008386988000000001,0.016870196,0.030501630999999998,0.04669402,0.06619459,0.09161276730000001,0.12163406260000001,0.18936076699999999,0.322651335,0.566783421,1.035375932,1.6968946960000002,2.168814668,2.28098482,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,refining,biomass liquids,FT biofuels CCS level 2,0.0,0.0,0.0,0.0,4.85643E-4,0.001529874,0.0032394520000000003,0.006376687,0.012942721,0.023605345,0.03640232,0.0522684346,0.073604175,0.0997247005,0.16320723539999998,0.29746826299999996,0.5567001089999999,1.1185528900000001,1.988230556,2.675616926,2.9088472000000003,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,refining,biomass liquids,biodiesel,0.0,0.0,0.007367,0.17341427674200002,0.186507013989,0.19728950372200002,0.20005071103,0.205234246919,0.2184553051606,0.2266748639503,0.228159473369,0.2172175564,0.2112361238,0.206043488,0.205351633,0.188633694,0.1623146644,0.12499444732010999,0.084349500495547,0.0444942,0.0126961,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.0134577,0.0336187,0.0584388,0.0941431,0.1507964,0.221503,0.28384233000000003,0.33668912,0.384939292,0.420599169,0.46228553,0.49985082999999997,0.5386757999999999,0.34311487939999996,0.05526329795966,0.023553404853997997,0.00383368,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,refining,biomass liquids,cellulosic ethanol CCS level 1,0.0,0.0,0.0,0.0,0.00363885,0.01108021,0.022784119999999998,0.04341154999999999,0.08329587999999999,0.1432982,0.20852395,0.27449969,0.345411726,0.41192081900000005,0.511571404,0.632660498,0.77297585,0.8751589900000001,0.780858713,0.0619201153297,0.010571422847222,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,refining,biomass liquids,cellulosic ethanol CCS level 2,0.0,0.0,0.0,0.0,0.00132258,0.00424247,0.009148710000000001,0.018330069999999997,0.03811759,0.07115964999999999,0.111401591,0.16486506299999998,0.2421275706,0.344922664,0.647175,1.3746624820000002,2.785046352,5.987112980000001,10.59743832,14.058550050000001,15.203302630000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,refining,biomass liquids,corn ethanol,0.0,0.0,0.0433228,0.1057416,0.1777145,0.2572326,0.33283189999999996,0.407064,0.48657880000000003,0.54923565,0.5814884,0.59593025,0.60619461,0.6093276,0.6371908300000001,0.70438638,0.83975468,1.04608504,1.2664235,1.33454617,1.2668453,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,0.00206785,0.00666664,0.01300253,0.02242609,0.03526427,0.048826150000000006,0.05950907,0.064477879,0.0651695006,0.06132003799999999,0.00339250096,0.001499289516485,0.001309922007585,6.12466E-4,4.09999E-4,1.71062E-4,2.53113E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,refining,coal to liquids,coal to liquids CCS level 1,0.0,0.0,0.0,0.0,5.30656E-4,0.0023145929999999998,0.005762023999999999,0.012596616,0.025988979,0.045819311,0.068608458,0.0908598202,0.1132036158,0.1314318046,0.14536873300000003,0.154522003,0.16798377500000003,0.177977,0.1927841,0.19374846999999998,0.17532875999999997,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,refining,coal to liquids,coal to liquids CCS level 2,0.0,0.0,0.0,0.0,3.61371E-4,0.001601132,0.004037838,0.008937891,0.018767743,0.033631648,0.051079226000000005,0.0690534824,0.0881968084,0.105110777,0.12078574400000001,0.134862332,0.157097855,0.18169021800000001,0.21952060499999998,0.24090935900000002,0.23087222,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,0.00891567,0.03345264,0.07457253,0.14719101,0.27549004,0.44920802000000004,0.63039754,0.78955945,0.9289305029999999,1.02058003,1.0710557,1.08477471,1.12892347,1.1924331600000002,1.36541824,1.48247384,1.42244285,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,refining,oil refining,oil refining,4.92161,13.6324,18.1086,21.72043,26.19587,30.768710000000006,33.953,35.972820000000006,37.44583,38.03609,37.802437999999995,37.045119,35.85167,34.438324,32.201755999999996,29.062103000000004,24.19713,17.910415,9.5318301,3.621394,0.478458976,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,1.94457E-4,4.32159E-4,7.88123E-4,0.001337315,0.002151123,0.003118496,0.0039434184999999995,0.0046515958999999996,0.00535670779,0.0059949334,0.0066760929,0.0072922064,0.0079816265,0.0076830065,9.440012473870001E-4,5.27479993137E-4,1.6157E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,refining,biomass liquids,FT biofuels CCS level 1,0.0,0.0,0.0,0.0,4.92819E-5,1.344603E-4,3.030956E-4,6.325103999999999E-4,0.0012668771,0.0022382223000000003,0.0033313299,0.00461633307,0.00637075934,0.00871075415,0.013622543590000001,0.0224431399,0.036950923,0.0644175895,0.0942332421,0.1187549046,0.1299458731,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,refining,biomass liquids,FT biofuels CCS level 2,0.0,0.0,0.0,0.0,3.67787E-5,1.010172E-4,2.293601E-4,4.819916E-4,9.746272999999999E-4,0.0017379356000000001,0.0026062967,0.00365419277,0.00512814126,0.00716422393,0.011774386809999999,0.0206862495,0.0361647535,0.069273529,0.1089229426,0.1452143677,0.1670942196,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,refining,biomass liquids,biodiesel,0.0,0.0,5.85954E-4,0.0063986918289999995,0.00681296,0.00778048,0.008805207,0.009784194,0.01089237,0.012084415000000001,0.0132044843,0.014046853000000002,0.014845907299999999,0.0156309532,0.016680592299999998,0.017261961,0.018106181,0.017893049100000002,0.018009992699999998,0.0180246838,0.017542843,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.00101605,0.00224749,0.00408877,0.00691546,0.011064334,0.015955327,0.020001405,0.023390605000000002,0.0266708991,0.0295376547,0.0325057249,0.034708278999999995,0.036409244,0.01891569592,0.0025118508741460003,0.0012421801396650001,3.30069E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,refining,biomass liquids,cellulosic ethanol CCS level 1,0.0,0.0,0.0,0.0,2.75069E-4,7.30872E-4,0.001603163,0.003246824,0.006194592,0.010401399,0.014723767,0.0190313676,0.0239013685,0.029106354100000002,0.0362897471,0.044087514499999994,0.051894649999999994,0.057213715000000005,0.0471387025,0.00330718985663,9.129000044209999E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,refining,biomass liquids,cellulosic ethanol CCS level 2,0.0,0.0,0.0,0.0,1.00247E-4,2.8023E-4,6.498023E-4,0.0013927617,0.0028877738,0.0052760524999999996,0.0080358866,0.011583579799999999,0.01693103191,0.02494707218,0.046962610099999996,0.0955377901,0.1804171462,0.370609295,0.583005878,0.767545239,0.8758418139999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,refining,biomass liquids,sugar cane ethanol,0.0,4.18968E-5,3.34874E-4,1.37771E-4,9.84742E-5,1.6837E-4,3.15741E-4,5.66588E-4,0.00104522,0.00159038,0.0019605616419270003,0.002404594664705,0.0034222378233209998,0.00484023239518,0.009264716414999999,0.01821664748,0.032399921799999995,0.0472801159,0.0570360446,0.0541470621,0.03308304295,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,3.68231E-5,1.172135E-4,2.771414E-4,5.683585E-4,9.850381000000002E-4,0.0014506509000000002,0.0018423952999999998,0.00207499287,0.00219310673,0.00216728647,1.488693143E-4,7.6790933523E-5,6.73739E-5,3.63543E-5,2.11352E-5,1.07947E-5,2.70261E-6,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,refining,coal to liquids,coal to liquids CCS level 1,0.0,0.0,0.0,0.0,9.51078E-6,4.115863E-5,1.3030827E-4,3.4879629E-4,8.0325703E-4,0.00151888928,0.0023665728900000003,0.0032174493100000003,0.004181013097000001,0.00518306488,0.00606944729,0.006808125900000001,0.0078291013,0.0089457649,0.0100109458,0.0105622144,0.0100831257,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,refining,coal to liquids,coal to liquids CCS level 2,0.0,0.0,0.0,0.0,6.48168E-6,2.85152E-5,9.172035000000001E-5,2.4905996E-4,5.8472178E-4,0.00112561536,0.00178007694,0.00246754512,0.0032870254290000003,0.00419464773,0.00512134363,0.00604924294,0.0074557701,0.0093516326,0.011583562799999999,0.013392255,0.013719324400000002,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,1.58848E-4,5.881700000000001E-4,0.001626978,0.003871081,0.008019867,0.013899454999999998,0.020222446800000002,0.0262773488,0.03253085388,0.0382073192,0.042606185100000006,0.045860687,0.050996291,0.058882572,0.069925551,0.08055863699999999,0.08376624799999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,refining,oil refining,oil refining,0.397834,0.505195,0.534127,0.6488700000000001,0.7257098,0.7991422,0.8748364,0.9443121,1.0119779999999998,1.0714531999999999,1.1233247,1.17783485,1.22840404,1.26962613,1.2660736799999999,1.2157732500000002,1.06037673,0.8068942900000001,0.48948662000000004,0.232881536,0.0505379376,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,5.6012E-4,0.001132721,0.00206186,0.003810627,0.0067146820000000005,0.009778147,0.011772857,0.013035264000000001,0.0139418632,0.014293869800000001,0.0147932862,0.0151582587,0.01552973,0.014934472,0.004510350457,6.55113722404E-4,3.41279110037E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,refining,biomass liquids,FT biofuels CCS level 1,0.0,0.0,0.0,0.0,1.39825E-4,3.35907E-4,7.47167E-4,0.001726984,0.0038396460000000004,0.006710103,0.0092232077,0.0115851791,0.014311914739999999,0.017307242,0.0244749932,0.0363693148,0.051540327000000004,0.066780302,0.078783451,0.08867992899999999,0.09482491600000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,refining,biomass liquids,FT biofuels CCS level 2,0.0,0.0,0.0,0.0,1.04116E-4,2.5098199999999996E-4,5.607419999999999E-4,0.001304302,0.0029275292,0.0051593706,0.007136009999999999,0.009046718499999998,0.01132238149,0.0139151972,0.0204631239,0.0318283405,0.04667755209999999,0.062982861,0.0768151362,0.0892657821,0.099551647,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,refining,biomass liquids,biodiesel,0.0,0.00138131,0.0461682,0.029506150000000002,0.031422069999999996,0.03303573,0.034549590000000005,0.03551926,0.03521721,0.034881850000000006,0.035651419,0.036102882,0.036592535,0.037523252,0.03815169399999999,0.036633987,0.036680884,0.032021138000000005,0.029240274000000004,0.027041379,0.024771019999999998,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.00292666,0.00589308,0.010699170000000001,0.01970017,0.03450612,0.049997150000000004,0.05977101,0.06575249799999999,0.06979739500000001,0.07093613,0.072483437,0.07244154800000001,0.07110477700000001,0.064282678,0.00423807007,0.001534764173753,6.97194E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,refining,biomass liquids,cellulosic ethanol CCS level 1,0.0,0.0,0.0,0.0,7.86854E-4,0.0018624240000000001,0.004070568,0.009146509,0.019342217000000002,0.032249401999999996,0.042533019000000005,0.050611198999999996,0.0581058802,0.0641266149,0.07414024599999999,0.084441745,0.09216231899999999,0.091398301,0.08538656499999998,0.0205575539,0.0015785842354070002,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,refining,biomass liquids,cellulosic ethanol CCS level 2,0.0,0.0,0.0,0.0,2.82425E-4,6.87949E-4,0.001560475,0.003699219,0.008516127,0.015345941000000002,0.021501431,0.027864452499999998,0.036005275999999996,0.04608261079999999,0.0755024376,0.130162421,0.197855253,0.270504113,0.325096666,0.368348966,0.3980810699999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,refining,biomass liquids,corn ethanol,0.0,0.00184168,0.0259932,0.02923433,0.03167337,0.03350117,0.035707069999999994,0.04017264,0.04991077000000001,0.06046409,0.067301959,0.071847842,0.076325397,0.07881294900000001,0.085741664,0.09809265,0.11400714799999999,0.13102733700000002,0.144336349,0.15578951300000002,0.16471786900000002,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,refining,coal to liquids,coal to liquids,0.00422773,0.0144827,0.0207611,0.0203876,0.019873569599999998,0.0185541169,0.0158036816,0.0118084641,0.008317179000000001,0.0065348166,0.0059210128,0.0053276705,0.0054084155099999994,0.00509655904,2.976307587E-4,1.66333966759E-4,1.3611091117200002E-4,5.03593E-5,2.60831E-5,1.64037E-5,6.95042E-6,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,refining,coal to liquids,coal to liquids CCS level 1,0.0,0.0,0.0,0.0,2.41749E-5,8.45132E-5,2.548514E-4,7.689697E-4,0.001991174,0.0037517022,0.0054181864,0.00679941792,0.00813050532,0.00918592783,0.01005021143,0.010445314199999998,0.010704983199999999,0.0103160646,0.0096985767,0.008941517699999998,0.007214590199999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,refining,coal to liquids,coal to liquids CCS level 2,0.0,0.0,0.0,0.0,1.64049E-5,5.7867399999999994E-5,1.76274E-4,5.391857E-4,0.0014239308,0.00272853,0.0039912804700000006,0.00508950038,0.006206533078000001,0.007163798119999999,0.008098326429999999,0.0087437659,0.009348455200000001,0.0094043614,0.0092380574,0.0089255359,0.0082939137,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,refining,gas to liquids,gas to liquids,0.0,0.00138131,0.00339045,0.00332947,0.003647127,0.004308589,0.006108438,0.011477285,0.023726239,0.04007424,0.054184554,0.0651450395,0.07489320220000001,0.08171691240000001,0.08799855799999999,0.09317517700000001,0.10231969800000001,0.109577537,0.120026478,0.135883082,0.151339892,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,refining,oil refining,oil refining,3.22469,2.78458,2.81513,3.007781,3.1979,3.305954,3.3597520000000003,3.351851,3.322178,3.236102,3.1192465,3.0498396999999997,2.9649085000000004,2.88507167,2.7413086,2.5233968,2.1669722,1.9117823999999999,1.707986,1.536396,1.3282441999999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.00128415,0.00297328,0.00778326,0.01981871,0.04146089,0.06450407,0.079676436,0.087935764,0.094642913,0.09767588330000002,0.102415428,0.107452222,0.11518165,0.11324743000000001,0.05808576370000001,0.00545544968578,0.002972847755695,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,refining,biomass liquids,FT biofuels CCS level 1,0.0,0.0,0.0,0.0,3.17162E-4,8.82563E-4,0.003005082,0.009704066,0.025217113,0.046072037,0.063463512,0.0764207165,0.0917461077,0.108270063,0.149716786,0.22029903,0.317712726,0.40198850599999997,0.470642445,0.535805131,0.5829653490000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,refining,biomass liquids,FT biofuels CCS level 2,0.0,0.0,0.0,0.0,2.35789E-4,6.57835E-4,0.002255839,0.0073351810000000005,0.019233014,0.03539383,0.048992525,0.05935532190000001,0.0718598113,0.0856886431,0.12192666699999999,0.18571665799999998,0.274849604,0.35836150299999997,0.43133170099999996,0.506902843,0.575953201,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,refining,biomass liquids,biodiesel,0.0,0.0563401,0.372027,0.06680057,0.06958408999999999,0.07455227,0.07729991,0.07471556600000001,0.0700272736,0.06020930488,0.0486014199,0.044451742,0.0450613616,0.0489278136,0.0506034569,0.044807335700000006,0.0384894747,0.02662085046,0.021238843395000002,0.0198769751726,0.017714646226199997,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.00670978,0.01546049,0.04034089,0.10228986000000001,0.21264472,0.3292448,0.40396499999999996,0.44359695,0.474256047,0.48530642700000004,0.50201021,0.51235474,0.5228442099999999,0.48872101,0.05800484981,0.01268778889524,0.0060731822584060005,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,refining,biomass liquids,cellulosic ethanol CCS level 1,0.0,0.0,0.0,0.0,0.00179515,0.00493519,0.01634872,0.05116001,0.12651355,0.22146635,0.294379616,0.340842751,0.3868723036,0.42434523700000004,0.49201104300000004,0.56810256,0.64018593,0.64141324,0.6087189000000001,0.1576028163,0.01297569882704,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,refining,biomass liquids,cellulosic ethanol CCS level 2,0.0,0.0,0.0,0.0,6.37434E-4,0.001794362,0.006291558,0.02087513,0.056048302999999994,0.10515327,0.14698256599999998,0.180696738,0.2234614799,0.2738636774,0.423163242,0.697741799,1.05543363,1.3799626200000001,1.63382014,1.8731703800000001,2.06293637,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,refining,biomass liquids,corn ethanol,2.51187E-4,0.070446,0.114563,0.12602180000000002,0.12938974,0.13123131,0.14298606000000003,0.17982770000000003,0.24503967999999998,0.31244681,0.36177933,0.39061826200000005,0.420033506,0.438802311,0.48762539,0.5716085200000001,0.69193245,0.78886731,0.86188137,0.92259881,0.9648399,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,refining,coal to liquids,coal to liquids,1.67391E-4,0.0,0.0,0.0,2.29029E-4,7.46332E-4,0.002650946,0.008356863,0.018484602,0.028630839,0.035117362,0.0375347458,0.0381507814,0.035944531499999995,0.00216045699,0.0013292636107360002,0.001214885739469,4.11716E-4,2.1069E-4,1.3471E-4,5.91086E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,refining,coal to liquids,coal to liquids CCS level 1,0.0,0.0,0.0,0.0,5.55928E-5,2.288391E-4,0.0011284994,0.004739396999999999,0.013970837299999999,0.0267761163,0.0379375894,0.0449188651,0.05121701874,0.05531777581999999,0.0578900548,0.05771276200000001,0.057754942000000004,0.054475634,0.05110732200000001,0.047246210999999996,0.0186725716,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,refining,coal to liquids,coal to liquids CCS level 2,0.0,0.0,0.0,0.0,3.76118E-5,1.55901E-4,7.807908E-4,0.0033256775,0.009986549,0.0194199894,0.0277961974,0.033249422550000005,0.038362629569999994,0.041976871969999996,0.044962216400000005,0.046187806,0.047884524,0.046779373,0.045550686,0.044596184,0.041962801999999993,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,9.82792E-4,0.0037111089999999998,0.015971512,0.059706304,0.160648562,0.288971946,0.392629036,0.4573655160000001,0.5194088128,0.565342848,0.61579238,0.67135773,0.7881878200000001,0.8740015699999999,0.98447374,1.1379618,1.2890297199999998,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,refining,oil refining,oil refining,22.912,25.917,23.1086,23.862347,24.122726999999998,24.017153999999998,23.720264999999998,23.231758000000003,22.849496000000002,22.210232,21.577918999999998,21.112901800000003,20.663126799999997,20.2581655,19.3595497,18.068841000000003,15.887824,14.45555,13.424597,12.5354354,11.2313215,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,3.46852E-6,9.349871E-5,4.4838325E-4,0.00106444081,0.00203253493,0.0029889129800000002,0.0036038641600000003,0.004007055747,0.004391758598,0.004653356149999999,0.0049463224000000005,0.005165809,0.0053359754999999995,0.0051567926,3.962476044E-4,2.39821284563E-4,2.08871E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,refining,biomass liquids,FT biofuels CCS level 1,0.0,0.0,0.0,0.0,8.73375E-7,3.2471792E-5,1.92963715E-4,5.39076579E-4,0.0012448967540000001,0.002133862349,0.002865835187,0.0035506498260000005,0.0045815843706,0.00597504791,0.00923660497,0.014793674199999999,0.0217501641,0.0294826501,0.0359606958,0.0427642513,0.0531955982,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,refining,biomass liquids,FT biofuels CCS level 2,0.0,0.0,0.0,0.0,6.51164E-7,2.4407104000000003E-5,1.4569375399999998E-4,4.0852061E-4,9.51386582E-4,0.001643594075,0.002220261182,0.002775745789,0.003639778242,0.00485242907,0.00789643762,0.0134351764,0.0206588966,0.029609294800000005,0.0378317074,0.0472839571,0.06387926390000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,refining,biomass liquids,biodiesel,0.0,0.0,0.00142311,0.01503641,0.015826588,0.01855709,0.019981873,0.019809137,0.019233182,0.0188942505,0.0190671428,0.019309345,0.019584734700000002,0.019882578,0.020002637000000004,0.019300043000000003,0.0189951,0.017197724,0.016412908,0.0157516719,0.0132442408,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,1.81233E-5,4.845352E-4,0.0023202425,0.0054912531,0.010427870799999999,0.0152680481,0.01829862663,0.020234297149999997,0.021995587812,0.0230648745,0.024180003999999998,0.024624688999999998,0.024443169,0.0197586546,8.436758285999999E-4,5.64668224119E-4,4.26701E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,refining,biomass liquids,cellulosic ethanol CCS level 1,0.0,0.0,0.0,0.0,4.89189E-6,1.7589917E-4,0.00102730779,0.00281626714,0.006210557889999999,0.01019011649,0.01317840795,0.015512852406,0.018340404602,0.021244600290000002,0.0257367397,0.030332124,0.033666192,0.034013299,0.0314267055,0.0030053135949999997,0.0010772297290239999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,refining,biomass liquids,cellulosic ethanol CCS level 2,0.0,0.0,0.0,0.0,1.77121E-6,6.788833E-5,4.1195233E-4,0.00116894435,0.0027833068100000004,0.0049077545,0.0067091791060000005,0.008569039114000001,0.011686636601300003,0.01645287101,0.030765139400000002,0.0599390387,0.0971432555,0.143829421,0.18279256789999998,0.22363031870000002,0.290038603,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,refining,biomass liquids,corn ethanol,0.0,0.0,0.0,2.79179E-4,3.252457E-4,0.0011191031999999998,0.0036057883999999997,0.007488726899999999,0.013101019700000001,0.0181507319,0.0213030468,0.02339118114,0.025529944059999997,0.02744853,0.031137955000000002,0.036683390999999996,0.043189097,0.049847166,0.054537852000000005,0.05914380600000001,0.068892009,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,3.23419E-7,2.1972341E-5,1.5399971999999998E-4,4.30714466E-4,8.58516381E-4,0.001262824819,0.00151810751,0.0016367466000000001,0.0016854149281,0.0016108589400000003,1.079034364E-4,5.6826606646E-5,4.15696E-5,1.47923E-5,7.44419E-6,5.29845E-6,3.7368E-6,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,refining,coal to liquids,coal to liquids CCS level 1,0.0,0.0,0.0,0.0,8.22404E-8,8.194795E-6,7.42529571E-5,2.533141769E-4,6.592542101000001E-4,0.0012039270977,0.0016889014802,0.0020939986028,0.00261567325032,0.0031661943469999997,0.00370862709,0.00412482184,0.0045073806,0.0045958317,0.004527122600000001,0.0043817176,0.0042276760000000005,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,refining,coal to liquids,coal to liquids CCS level 2,0.0,0.0,0.0,0.0,5.59445E-8,5.6702136E-6,5.1878706199999995E-5,1.784329499E-4,4.728874113E-4,8.777527788000001E-4,0.0012468341823,0.0015710848557,0.00201223174322,0.002511069763,0.00308069293,0.0036128177700000003,0.0041700750000000005,0.0044863932,0.0046756875,0.0048424607,0.0051371592,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,1.3934E-6,1.1662763000000001E-4,9.6967396E-4,0.00309252009,0.00735428032,0.012447459210000001,0.016492433799999998,0.019598365591999997,0.023164584883299998,0.02636971511,0.029149709600000004,0.031123816,0.033744814000000005,0.035591581,0.037851503,0.042219688,0.052611988,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,refining,oil refining,oil refining,3.48201,0.669215,0.865545,0.86090901,0.857079544,0.85622411,0.8893289050000002,0.9054425100000001,0.919737667,0.9180598449999999,0.912587211,0.918287225,0.9230066315,0.92449409,0.89449618,0.83194266,0.71714858,0.63331959,0.55419818,0.4776338300000001,0.32603765,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,5.42698E-4,0.001264401,0.002257166,0.0038239289999999998,0.0061671980000000005,0.00869236,0.010597365000000001,0.012008000000000001,0.0132231329,0.0140286206,0.014818255099999999,0.0154569041,0.016191966000000002,0.015742465,0.004728028017,8.22784646694E-4,4.07497155315E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,refining,biomass liquids,FT biofuels CCS level 1,0.0,0.0,0.0,0.0,1.34627E-4,3.8037300000000004E-4,8.19866E-4,0.001698927,0.0034108079999999995,0.005801969000000001,0.0082432393,0.0108847453,0.01422839278,0.018154806,0.025862931,0.0381685985,0.0549976165,0.07228077599999999,0.08767492999999998,0.10069621299999999,0.10865823499999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,refining,biomass liquids,FT biofuels CCS level 2,0.0,0.0,0.0,0.0,1.00151E-4,2.84062E-4,6.150954999999999E-4,0.0012823148,0.0025982034,0.004459015,0.0063817985999999995,0.008521858100000002,0.01131234185,0.014701901350000001,0.0217605105,0.0335714914,0.050109403299999994,0.0686683711,0.08632907740000001,0.10244817099999999,0.11510126400000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,refining,biomass liquids,biodiesel,0.0,0.0,5.02271E-4,0.019383605,0.020585943,0.021119791,0.021068336,0.020222562399999998,0.0185116586,0.01727938668,0.01693985869,0.017014377,0.0172431614,0.0177834293,0.018081912999999998,0.016638781,0.015963777999999998,0.0115484292,0.008821631,0.0071249381,0.00561617388,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.00283564,0.00657448,0.01170969,0.01977386,0.03172014,0.04448589,0.05381347,0.060506002,0.066027981,0.069366507,0.07239348799999999,0.07380690000000001,0.07417637299999999,0.06764098,0.004790373074,0.001928438629775,8.3247E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,refining,biomass liquids,cellulosic ethanol CCS level 1,0.0,0.0,0.0,0.0,7.60183E-4,0.002112318,0.004471803,0.009022801,0.017270621,0.027986566,0.037921842,0.046918929000000005,0.056238734400000004,0.0647521076,0.07604201599999999,0.087346487,0.096989125,0.09701499899999999,0.091080289,0.023256376399999997,0.001879052360844,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,refining,biomass liquids,cellulosic ethanol CCS level 2,0.0,0.0,0.0,0.0,2.71127E-4,7.78026E-4,0.001710534,0.0036304370000000002,0.007539069,0.013244123,0.01924883,0.026397274499999998,0.0363800814,0.0494930683,0.0814013159,0.1388405774,0.215044729,0.29855664400000004,0.368491797,0.424561675,0.46132056899999996,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,refining,biomass liquids,corn ethanol,0.0,0.0,1.25593E-4,0.003412154,0.006796086,0.011835722,0.018835505699999998,0.0287799764,0.0420447471,0.054357491,0.06301074135,0.069725917,0.076004643,0.081242985,0.089942092,0.103496358,0.121415643,0.139553688,0.15509952300000002,0.167907771,0.17648775699999997,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,9.106E-5,3.009307E-4,6.754209E-4,0.0013826576,0.0024261704,0.0035155373999999997,0.004352913999999999,0.0047916717,0.0049535887,0.00476617359,2.931719938E-4,1.58776865898E-4,1.3962761441100002E-4,5.34978E-5,3.12959E-5,2.01012E-5,8.05638E-6,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,refining,coal to liquids,coal to liquids CCS level 1,0.0,0.0,0.0,0.0,2.23376E-5,9.55206E-5,2.736503E-4,7.283416E-4,0.0017118054,0.0031777267000000003,0.0048043905,0.006358147640000001,0.008009190480000001,0.009491116959999999,0.0105816045,0.011176344500000001,0.0116941279,0.011385924399999999,0.010792396000000001,0.009965610900000001,0.007966963,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,refining,coal to liquids,coal to liquids CCS level 2,0.0,0.0,0.0,0.0,1.51313E-5,6.53403E-5,1.891695E-4,5.102393E-4,0.0012227363,0.0023106368,0.00354602205,0.00478450503,0.006168933545,0.007493632599999999,0.0086262003,0.009440661900000001,0.0102891109,0.0104485242,0.0103716413,0.0100628647,0.009347106200000002,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,3.91116E-4,0.00150199,0.003914079,0.009341289,0.019762746999999997,0.033635976,0.047398766,0.05963647350000001,0.07156114,0.08113142029999999,0.088607963,0.09472224300000001,0.105613343,0.11411147099999999,0.128153004,0.149168365,0.168613218,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,refining,oil refining,oil refining,1.45339,1.73556,1.75716,1.921325,2.111839,2.297549,2.442452,2.548631,2.6420200000000005,2.6991911,2.7349292,2.77179829,2.7886806799999997,2.7870715,2.7056175999999996,2.5524445,2.2523931000000004,2.0142067999999997,1.8144973,1.6410689,1.4306955,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,5.75158E-5,1.417816E-4,3.5346360000000003E-4,8.71131E-4,0.0017675945,0.0027118122,0.0033409255,0.0036994420999999994,0.00401201773,0.004180901690000001,0.0044169385,0.0046855783,0.0050833588999999995,0.0049617657,4.922305388E-4,2.4766614147499997E-4,1.81409E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,refining,biomass liquids,FT biofuels CCS level 1,0.0,0.0,0.0,0.0,1.44636E-5,4.39995E-5,1.398627E-4,4.3092490000000005E-4,0.0010857501,0.0019680415,0.00272697789,0.00334286293,0.004170675208,0.00520517905,0.00799315019,0.0134131359,0.021651025,0.0289302735,0.0356386446,0.0422723471,0.0501932825,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,refining,biomass liquids,FT biofuels CCS level 2,0.0,0.0,0.0,0.0,1.07816E-5,3.2982100000000004E-5,1.054409E-4,3.264744E-4,8.301732999999999E-4,0.00151727943,0.00211525798,0.00261467853,0.003308013265,0.00420997946,0.00681117608,0.0121721003,0.020596874299999998,0.0288838206,0.0371495439,0.0460365163,0.0584555309,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,refining,biomass liquids,biodiesel,0.0,2.09288E-4,0.004981,0.00335069,0.003643701,0.0038547840000000004,0.003848576,0.0034447056,0.002943587688,0.002401273149,0.001906044046,0.00173666523,0.00184074257,0.00205344744,0.0021141951099999997,0.001854897447,0.0015508128431,0.0010850477989199998,9.219216140910001E-4,8.939081465180001E-4,8.83696E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,3.00524E-4,7.37071E-4,0.001832034,0.0044965560000000005,0.009067687000000001,0.013845294000000001,0.016942538,0.018661650199999998,0.0200947494,0.020754089500000003,0.021630417199999998,0.022323286,0.023057184,0.019660530500000002,9.3660863638E-4,5.83055431207E-4,3.70598E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,refining,biomass liquids,cellulosic ethanol CCS level 1,0.0,0.0,0.0,0.0,8.10699E-5,2.410376E-4,7.492644000000001E-4,0.0022533961,0.005401173,0.0093482886,0.0124445129,0.0145479279,0.01682669031,0.01892282068,0.022714599600000003,0.0274030973,0.032154304999999994,0.032644295,0.030936268500000003,0.003654532574,9.17315775E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,refining,biomass liquids,cellulosic ethanol CCS level 2,0.0,0.0,0.0,0.0,2.93144E-5,9.10743E-5,2.96703E-4,9.333968E-4,0.0024316256,0.0045411120999999995,0.0064096419,0.008080803800000001,0.01057922786,0.01413629609,0.02635360038,0.054155631600000004,0.09639139199999999,0.13833968800000002,0.17605272439999997,0.212917904,0.26023817000000005,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,refining,biomass liquids,corn ethanol,0.0,4.18976E-5,2.92982E-4,4.49135E-4,7.652630000000001E-4,0.001294833,0.002657679,0.005589697,0.009686230100000002,0.013491640999999999,0.0161619993,0.01783828946,0.019404410000000004,0.0205943078,0.0232947011,0.027713831,0.033757457,0.037906037000000004,0.041150899,0.043882613,0.047151741000000004,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,9.85475E-6,3.46821E-5,1.1586737999999999E-4,3.5564188E-4,7.6997148E-4,0.00118401859,0.00145442318,0.00156240586,0.001600372819,0.0015215367999999998,9.2556516E-5,5.5154652945E-5,4.83903E-5,1.39124E-5,7.4918E-6,5.00273E-6,2.89509E-6,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,refining,coal to liquids,coal to liquids CCS level 1,0.0,0.0,0.0,0.0,2.49803E-6,1.1770590000000001E-5,5.2504870000000004E-5,2.077982E-4,6.0164301E-4,0.00116107394,0.00167650496,0.0020437580750000003,0.002459783371,0.002853438905,0.0032768480299999996,0.0036330400299999996,0.0040903853,0.0041229462,0.0040841872000000005,0.0039760941,0.00375498,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,refining,coal to liquids,coal to liquids CCS level 2,0.0,0.0,0.0,0.0,1.69867E-6,8.11308E-6,3.661677E-5,1.463812E-4,4.3211097E-4,8.480170800000001E-4,0.001240262656,0.001534040951,0.001885796881,0.002245795993,0.00269924983,0.00316283522,0.0037865428,0.004014614,0.0041935199000000005,0.004329171299999999,0.004408606099999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,4.24466E-5,1.745721E-4,6.992506E-4,0.0025390352000000003,0.0066683265,0.0118919722,0.0161896583,0.01901412784,0.021872527370000002,0.024103417279999997,0.0261992407,0.0280644605,0.031858814,0.033555031,0.0364094,0.041101748,0.048776845,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,refining,oil refining,oil refining,0.911975,0.957761,0.96387,0.967146,0.97882035,0.9784419499999999,0.9681002999999999,0.9506341799999999,0.93584018,0.9144846599999998,0.8967338800000001,0.884026273,0.8727945699999999,0.86313824,0.8261873299999999,0.7648275,0.6622139,0.58214915,0.5206071499999999,0.46600611000000003,0.36325912,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.00839795,0.01837583,0.03089149,0.04737012,0.07030111,0.09700544,0.12229473,0.14795676,0.170937,0.19223575,0.211903212,0.223862051,0.2150037,0.21060564999999998,0.1107668024,0.0149997731561,0.0069079710314400005,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,refining,biomass liquids,FT biofuels CCS level 1,0.0,0.0,0.0,0.0,0.00209059,0.00542669,0.01092775,0.02003541,0.0363616,0.06070554,0.09033506000000001,0.127541598,0.1677282773,0.210993632,0.270926701,0.33359727100000003,0.359829034,0.46328351,0.60257329,0.7830460899999999,0.9419248800000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,refining,biomass liquids,FT biofuels CCS level 2,0.0,0.0,0.0,0.0,0.00155604,0.00404586,0.00818478,0.01508083,0.027573340000000002,0.04637296,0.069344591,0.09852409200000001,0.1302708497,0.164517344,0.213129699,0.264656214,0.28732286,0.38173611900000004,0.52337426,0.7245228499999999,0.9372655700000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,refining,biomass liquids,cellulosic ethanol,0.0,0.0045625,0.00761808,0.051566719999999996,0.09520443,0.14626565,0.20948856,0.29093554,0.40011172,0.519898798,0.6290674439999999,0.7453497,0.8497984900000001,0.9456924600000001,1.03115154,1.06867189,1.0033320099999998,0.9328829900000001,0.13090567396,0.03496945859313,0.014112203226541,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,refining,biomass liquids,cellulosic ethanol CCS level 1,0.0,0.0,0.0,0.0,0.0117824,0.0303213,0.0599723,0.10753589999999999,0.18747350000000002,0.29952816000000004,0.42699797999999994,0.56994732,0.707972489,0.8417707130000001,0.98327207,1.07959777,1.05332221,1.03717635,0.9510849600000001,0.249859799,0.0304604423039,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,refining,biomass liquids,cellulosic ethanol CCS level 2,0.0,0.0,0.0,0.0,0.00421718,0.011039779999999999,0.02267194,0.042414240000000006,0.07917046,0.13590323999999998,0.20538418999999997,0.296659302,0.39845632400000003,0.510237995,0.683134732,0.8685721150000001,0.9482101199999999,1.26136977,1.72036971,2.3575009700000003,3.0265460099999997,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,0.00145737,0.00438176,0.008956160000000001,0.01578222,0.024755430000000002,0.03450095,0.043564677,0.049435021999999995,0.0516100644,0.050508176,0.003327205384,0.001580843215165,7.45607889295E-4,7.11168E-4,4.18817E-4,2.71848E-4,9.45198E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,refining,coal to liquids,coal to liquids CCS level 1,0.0,0.0,0.0,0.0,3.60532E-4,0.001337292,0.00347687,0.007710654000000001,0.015649369000000003,0.027553427999999998,0.042138642999999996,0.056170059300000005,0.0669508706,0.0738798321,0.075222538,0.071128614,0.061950517,0.053665013000000004,0.047700755000000004,0.043127070999999996,0.0242109049,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,refining,coal to liquids,coal to liquids CCS level 2,0.0,0.0,0.0,0.0,2.44463E-4,9.111639999999999E-4,0.002395467,0.005371514,0.011074399,0.019785348,0.03055766,0.0411606643,0.049467071900000006,0.05493488230000001,0.056392533,0.053762719,0.047239698999999996,0.042207216,0.039950517,0.040782886000000004,0.041496221,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,0.00626425,0.02168399,0.05111336,0.10342313,0.19322077,0.31887069,0.47233663000000004,0.6413384700000001,0.799443778,0.944997379,1.06226673,1.15215884,1.1599695300000001,1.3235813699999999,1.54147193,1.84895936,2.0721548,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,refining,oil refining,oil refining,2.4402,4.78257,6.16306,8.03044,11.273190000000001,14.33118,17.14248,19.70598,22.409930000000003,24.804136,26.814601,28.6261336,29.804447000000003,30.758153999999998,30.988473000000003,30.194446,26.379168999999997,24.229309999999998,22.023130000000002,20.001785,17.309091000000002,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.0018357,0.0046591900000000006,0.008020629999999999,0.01250109,0.0187393,0.02571512,0.031911641,0.037844239,0.04319096979999999,0.047499206,0.051189051,0.053413866000000004,0.05330997,0.050514432,0.004508242785,0.00184291507858,0.00107982,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,refining,biomass liquids,FT biofuels CCS level 1,0.0,0.0,0.0,0.0,4.55492E-4,0.001398009,0.002868884,0.005323395,0.009697091,0.015868626,0.02274417,0.0310005974,0.0401023701,0.0491970906,0.0620488075,0.077164135,0.090944452,0.10918325999999999,0.129245728,0.146266027,0.166371539,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,refining,biomass liquids,FT biofuels CCS level 2,0.0,0.0,0.0,0.0,3.38861E-4,0.00104212,0.002148041,0.004004126,0.007343558,0.012089879,0.017376501,0.0237920669,0.0309147698,0.038058746600000005,0.0484690708,0.061009043299999996,0.072757526,0.089673578,0.110734627,0.131466229,0.16092420000000002,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,refining,biomass liquids,biodiesel,0.0,0.0,0.0014231,0.03571979383,0.030292765,0.060940786,0.11534710099999998,0.176327491,0.23912162299999998,0.302334612,0.36445779119999994,0.4360757,0.51533685,0.59901161,0.7269249700000001,0.8994973399999999,1.07522533,1.34959731,1.59573612,1.7586011900000003,1.88446631,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.00959167,0.02421894,0.041606649999999995,0.06466738,0.09646797,0.13172219999999998,0.16204083,0.19031798,0.21496300299999999,0.23397703599999997,0.249403028,0.25520811,0.2470543,0.204538643,0.0089070263021,0.004338666637528001,0.00220595,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,refining,biomass liquids,cellulosic ethanol CCS level 1,0.0,0.0,0.0,0.0,0.00257164,0.007813810000000001,0.0157609,0.02863905,0.05022103,0.07905264,0.10951731,0.14222997299999998,0.17438829,0.20275822300000002,0.232164009,0.253581302,0.25853096,0.24837099000000004,0.1559277141,0.009515302409999999,0.0047483862993939994,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,refining,biomass liquids,cellulosic ethanol CCS level 2,0.0,0.0,0.0,0.0,9.17429E-4,0.002843555,0.00594729,0.011246529,0.021027629,0.035228576,0.050953304000000005,0.070657949,0.0930858509,0.1160931052,0.153092871,0.198984929,0.23993762200000002,0.296755502,0.36535141299999996,0.43098170999999996,0.5230239,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,refining,biomass liquids,sugar cane ethanol,0.0,0.0,0.0,5.54333E-4,8.82177E-4,0.00193474,0.00291336,0.00454712,0.00793392,0.011515701105788,0.015200018828697,0.020966649069840998,0.02788047715589,0.0363080796326,0.061862501429999994,0.1257994975,0.279408479,0.40587501699999995,0.5347250450000001,0.649276153,0.79705233,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,3.67084E-4,0.001328039,0.002782643,0.0049824019999999995,0.007815552,0.010698623,0.013077471,0.014463974400000001,0.014820880900000001,0.0141374572,7.671180850000001E-4,3.66870097607E-4,2.47495324388E-4,1.18659E-4,7.00202E-5,3.9307E-5,2.04653E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,refining,coal to liquids,coal to liquids CCS level 1,0.0,0.0,0.0,0.0,9.01008E-5,4.0987200000000004E-4,0.0010833190000000001,0.0024214359,0.0048506257,0.0081773511,0.0116406794,0.0147923867,0.01719031471,0.0184403618,0.0183098424,0.016977987700000002,0.014941561999999999,0.0080216741,0.0051800366,0.00305845671,0.0014860921689999998,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,refining,coal to liquids,coal to liquids CCS level 2,0.0,0.0,0.0,0.0,6.10378E-5,2.792061E-4,7.458219E-4,0.0016841771999999999,0.0034223590000000003,0.005838979899999999,0.0083610669,0.0107087459,0.01253493047,0.013527940300000003,0.013548470899999998,0.012688233600000001,0.0113100539,0.0076255874,0.007701945600000001,0.0074411167,0.0069595588,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,0.00157676,0.00664189,0.01599255,0.03282901,0.06115297,0.09832685,0.139079059,0.182115061,0.2226197861,0.255407039,0.277783419,0.29170857,0.30130623,0.31213349999999995,0.33190719,0.35604911000000006,0.39894661,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,refining,oil refining,oil refining,1.35552,2.68801,3.00853,3.522564,4.321124,5.296016000000001,6.115004,6.792815999999999,7.418254999999999,7.880097,8.1870835,8.4493904,8.5419967,8.5279406,8.268908600000001,7.765406199999999,6.6965286,5.806197499999999,4.9153549,4.036566,2.9029763,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.0,0.0,4.34867E-5,0.0041106627,0.0120937892,0.020542208899999997,0.0255960243,0.027617813600000003,0.0288909834,0.028391013090000004,0.029155144399999996,0.030122061,0.031609307,0.029517971,0.001518062461,0.001146924511558,0.00136169,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,refining,biomass liquids,FT biofuels CCS level 1,0.0,0.0,0.0,0.0,0.0,0.0,2.01564E-5,0.0023637452,0.0082014865,0.0160635849,0.021954590500000003,0.0250788993,0.0284719882,0.03168656704,0.050419857934,0.090837027,0.148722894,0.196032552,0.22700901500000004,0.26123282999999997,0.33510266,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,refining,biomass liquids,FT biofuels CCS level 2,0.0,0.0,0.0,0.0,0.0,0.0,1.52902E-5,0.0018019417,0.006294502299999999,0.0124210822,0.017064714999999998,0.0195978308,0.02245413508,0.025357950310000002,0.043037338148999994,0.08362799700000001,0.144144952,0.19942152000000002,0.239088374,0.286913705,0.40388924600000004,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.0,0.0,2.24944E-4,0.021159919000000003,0.061869387,0.10463367200000001,0.129591975,0.13939590799999999,0.14523647199999998,0.1419064354,0.14360295809999998,0.143698903,0.14288028,0.0981526912,0.00377974787299,0.002700832800956,0.00278178,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,refining,biomass liquids,cellulosic ethanol CCS level 1,0.0,0.0,0.0,0.0,0.0,0.0,1.05493E-4,0.012049835,0.040067632,0.075178234,0.09923779,0.1100068485,0.11905946660000001,0.1230700346,0.14583046309999997,0.176702772,0.20470242,0.20585762,0.182688664,0.0084852025268,0.007087557883285,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,refining,biomass liquids,cellulosic ethanol CCS level 2,0.0,0.0,0.0,0.0,0.0,0.0,4.37229E-5,0.0052323888,0.0186081448,0.0374402025,0.0519610393,0.0604334567,0.0708304215,0.08302779618,0.16786720360000001,0.384731718,0.7011548160000001,0.9946655169999999,1.185603477,1.394559781,1.8704579470000002,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,0.0,0.0,1.58979E-5,0.0017010891,0.0048179886,0.0078711332,0.0096345939,0.0101177227,0.01016715484,0.00937946279,4.8304358605E-4,3.0390298536100003E-4,2.40807E-4,6.09441E-5,2.3355E-5,1.70235E-5,1.60697E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,refining,coal to liquids,coal to liquids CCS level 1,0.0,0.0,0.0,0.0,0.0,0.0,8.4268E-6,0.00116479214,0.00414580597,0.00829374422,0.01161820715,0.01314141954,0.0144926394,0.015263050260000001,0.017133130648,0.018797864700000003,0.020946338,0.020894821,0.020377746000000002,0.0198815707,0.0195750047,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,refining,coal to liquids,coal to liquids CCS level 2,0.0,0.0,0.0,0.0,0.0,0.0,5.93701E-6,8.292927299999999E-4,0.00299396633,0.00608181478,0.00861576844,0.00983708495,0.010997215509999998,0.01180249306,0.013990273567999999,0.0164923545,0.019840393,0.020936955999999996,0.021366581,0.0219410145,0.0236868421,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,0.0,0.0,1.03032E-4,0.013057675,0.044092677000000004,0.082431,0.10982144569999999,0.1213697364,0.1300615161,0.1318085357,0.13772964639,0.141645006,0.15341174000000002,0.1561778,0.16023410999999999,0.173651187,0.220665873,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,refining,oil refining,oil refining,10.4289,10.201,8.43984,8.13779,7.8639,7.68126,7.4454606000000005,7.0875139,6.7303514,6.320431500000001,5.9601924,5.662866190000001,5.37935512,5.09327306,4.656716828,4.0317884,3.1636566999999998,2.5333382,2.0691562,1.6519569299999999,0.6655167399999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.00111902,0.0024968300000000002,0.004481280000000001,0.007715969999999999,0.01268035,0.018071709999999998,0.021930109000000003,0.024754,0.027263694400000003,0.028858250000000002,0.0310515037,0.03308729,0.035442957000000004,0.0335299844,0.0038132989267799997,0.001858454711839,4.95659E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,refining,biomass liquids,FT biofuels CCS level 1,0.0,0.0,0.0,0.0,2.8342E-4,7.75629E-4,0.001709644,0.003628308,0.007426723999999999,0.012694212,0.017751121,0.023216530100000004,0.0304110165,0.0389932169,0.0602910452,0.099801158,0.161944705,0.283247661,0.397965048,0.476841319,0.50019379,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,refining,biomass liquids,FT biofuels CCS level 2,0.0,0.0,0.0,0.0,2.11495E-4,5.82528E-4,0.001292664,0.002761558,0.005702815,0.009823479,0.013821558999999999,0.0182755451,0.0243339306,0.0318492681,0.051900750800000006,0.0918323322,0.157973989,0.30307487200000005,0.454256327,0.570505155,0.6219068320000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,refining,biomass liquids,biodiesel,0.0,0.0,0.0,0.0284996,0.031268859999999996,0.03583508,0.04105789,0.046219010000000005,0.05189178,0.05736163,0.06213134000000001,0.065890754,0.069904139,0.07367401600000001,0.078834739,0.08314851000000001,0.08839104699999999,0.08917388100000001,0.09138088999999999,0.093400599,0.093699406,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.00584694,0.01298479,0.02324974,0.03989874,0.06520788999999999,0.09246534,0.11135815999999998,0.12475719,0.136181646,0.14275460299999998,0.151650361,0.15769527400000002,0.16170576,0.0800214087,0.010148154872278,0.004376521236172,0.00101258,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,refining,biomass liquids,cellulosic ethanol CCS level 1,0.0,0.0,0.0,0.0,0.00158246,0.00422077,0.00906949,0.01870211,0.03653382,0.05971097,0.080019878,0.09826164,0.1177208364,0.135389535,0.16469093799999998,0.197594802,0.22914933099999998,0.25269942,0.1989318172,0.011523067489500001,0.002747570441886,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,refining,biomass liquids,cellulosic ethanol CCS level 2,0.0,0.0,0.0,0.0,5.76354E-4,0.001614874,0.003655399,0.007959432,0.016831239999999997,0.029603197999999997,0.042187189,0.057246964,0.0793260761,0.10925726810000001,0.2054225643,0.42262295299999997,0.7826467880000001,1.603435068,2.3983089479999995,2.975182232,3.2163585699999997,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,1.64582E-4,5.21862E-4,0.001216998,0.002583746,0.004639829999999999,0.0067662059999999994,0.0083083959,0.0091117649,0.00941571476,0.009031359800000001,5.76440724E-4,3.00222837954E-4,2.49341E-4,1.3472E-4,6.83185E-5,3.0215E-5,6.58169E-6,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,refining,coal to liquids,coal to liquids CCS level 1,0.0,0.0,0.0,0.0,4.24451E-5,1.820686E-4,5.636441E-4,0.0015627966999999998,0.0037140461,0.006784628,0.0099294025,0.01296877146,0.016364315089999998,0.019489857870000002,0.0226374991,0.0252112806,0.028580333,0.03236937,0.035062706,0.035409266,0.032573495,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,refining,coal to liquids,coal to liquids CCS level 2,0.0,0.0,0.0,0.0,2.89215E-5,1.2604130000000002E-4,3.9604700000000007E-4,0.0011131733,0.0026933464000000002,0.0049944845,0.0074000045,0.00984925293,0.01274391963,0.01561103665,0.0189666154,0.0223139029,0.0270990889,0.033603267,0.039817531,0.043396304999999996,0.042293093,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,7.09889E-4,0.002617066,0.007129734,0.017658039,0.038150861999999994,0.065098367,0.09029638400000001,0.112415006,0.1342756461,0.15108438610000002,0.165587392,0.17548902200000002,0.191543953,0.21947315999999997,0.25193388,0.27575159,0.27398031,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,refining,oil refining,oil refining,2.87684,3.75661,3.69399,3.987252,4.315411999999999,4.605308,4.838614,4.995547,5.122582,5.1784229999999996,5.17918,5.2149375000000004,5.229587,5.199521300000001,5.0460446999999995,4.7143464999999996,3.9715141000000003,2.8705838,1.6466476700000001,0.7597612300000001,0.139369526,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.00410272,0.01040949,0.019381509999999998,0.0337278,0.05551064,0.07981988000000001,0.0980521,0.11226964199999998,0.123603895,0.131625781,0.14211096499999998,0.15101755299999997,0.15886394,0.153241597,0.0111281237516,0.007216686508157,0.00712053,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,refining,biomass liquids,FT biofuels CCS level 1,0.0,0.0,0.0,0.0,0.00103573,0.0032481999999999997,0.00727225,0.01533619,0.031275414,0.05426855,0.077382827,0.10325632400000001,0.1345398446,0.17323265100000002,0.265216047,0.427493225,0.6514998620000001,0.9426473099999999,1.16992468,1.3802102699999999,1.75673524,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,refining,biomass liquids,FT biofuels CCS level 2,0.0,0.0,0.0,0.0,7.72512E-4,0.0024357149999999998,0.005472762,0.011595395,0.023852645,0.041756186,0.059975676000000006,0.080964283,0.1071593061,0.1407460123,0.22633293799999998,0.387900894,0.620640444,0.9572849200000001,1.245239089,1.5372755100000002,2.1260473600000003,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.021437,0.0541098,0.1005189,0.17436030000000002,0.2854156,0.4083387,0.4977322,0.5654885599999999,0.6171458000000001,0.650823,0.6938544,0.72002824,0.72706754,0.5013545389999999,0.027930330559799998,0.016994099706011997,0.0145464,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,refining,biomass liquids,cellulosic ethanol CCS level 1,0.0,0.0,0.0,0.0,0.00579319,0.01777043,0.03921946,0.08091934,0.15760444,0.26046526000000003,0.35435531,0.44234315999999996,0.528658887,0.611462774,0.74384107,0.88482375,0.99962486,1.02877007,0.8999445500000001,0.05488306723,0.036792158272488995,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,refining,biomass liquids,cellulosic ethanol CCS level 2,0.0,0.0,0.0,0.0,0.00210302,0.00673117,0.015322619999999999,0.03295217,0.06939152,0.12434500999999999,0.18133409,0.251628344,0.34597846540000005,0.47735801999999994,0.8776854089999999,1.728206205,2.9305434100000003,4.69212452,6.06316895,7.3329225000000005,9.706265029999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,7.11266E-4,0.002555563,0.005834097,0.011775780999999999,0.020310524,0.029198003,0.035813703,0.03923012,0.0400851146,0.0382007532,0.002343563338,0.0012147434086840002,9.63667919303E-4,3.81151E-4,1.73887E-4,1.07827E-4,8.45826E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,refining,coal to liquids,coal to liquids CCS level 1,0.0,0.0,0.0,0.0,1.81993E-4,8.72212E-4,0.0024800309999999997,0.006318726,0.014412586,0.026481903,0.0395641143,0.0522457501,0.06494081715,0.076807829,0.0882638608,0.096821302,0.105322789,0.10757285899999999,0.104926503,0.10012174800000001,0.09682503199999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,refining,coal to liquids,coal to liquids CCS level 2,0.0,0.0,0.0,0.0,1.23892E-4,6.01478E-4,0.001723366,0.004435654,0.010304273,0.019272372000000003,0.0292286541,0.0393774771,0.050114717999999996,0.060877946200000005,0.07294003339999999,0.084139135,0.096964485,0.105327924,0.10915471699999998,0.11120733700000002,0.11852410599999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,refining,gas to liquids,gas to liquids,0.0,0.0,0.0475507,0.0466954,0.04836154,0.0547648,0.06880479,0.10342203,0.17766612,0.28369113999999995,0.38924148999999997,0.484064936,0.5704671649999999,0.6390255499999999,0.6970238900000001,0.7344528100000001,0.78891114,0.8332971299999999,0.87515369,0.94819739,1.18530282,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,refining,oil refining,oil refining,6.81066,11.6328,14.6389,16.25856,17.70778,19.33377,20.62262,21.4887,22.11996,22.409803,22.460433000000002,22.6063652,22.3840815,22.104649200000004,21.366302,19.894861,16.905915,14.291858000000003,11.675778999999999,9.2143839,4.1570162,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,4.84601E-4,0.0010905659999999998,0.001988814,0.003468497,0.00576608,0.0085462,0.011193314000000001,0.014004478599999998,0.0167232916,0.0196882611,0.0231325082,0.0262421958,0.027762767,0.029315505999999998,0.01815762742,0.00240280318649,0.001242961821872,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,refining,biomass liquids,FT biofuels CCS level 1,0.0,0.0,0.0,0.0,1.18868E-4,3.21024E-4,7.13919E-4,0.001524014,0.003128967,0.0055381144,0.008287436,0.011693380500000001,0.01543605082,0.01985290275,0.026843020500000002,0.0358644542,0.0438672093,0.06555052,0.091728721,0.123714507,0.156521998,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,refining,biomass liquids,FT biofuels CCS level 2,0.0,0.0,0.0,0.0,8.82803E-5,2.391052E-4,5.345009999999999E-4,0.0011470733,0.0023722845,0.0042224727,0.0063290501,0.0089556944,0.01184546197,0.01523816721,0.0207062194,0.0278930629,0.0343963091,0.053947593099999996,0.07995296,0.114732108,0.15655447,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.00253207,0.0056713200000000005,0.01031765,0.01793363,0.02964727,0.043705499999999994,0.05670934,0.070256665,0.083049963,0.096718168,0.112301028,0.12455897500000002,0.127462228,0.126766038,0.022797225215,0.005594795364757,0.002539230400796,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,refining,biomass liquids,cellulosic ethanol CCS level 1,0.0,0.0,0.0,0.0,6.75303E-4,0.00180005,0.003923283,0.008173974,0.016099245999999998,0.027417101,0.03978706,0.053772038,0.0678903389,0.08344284030000002,0.103164958,0.12135405299999999,0.12972525999999998,0.13818551199999998,0.135246133,0.042783342579999994,0.005482651901014,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,refining,biomass liquids,cellulosic ethanol CCS level 2,0.0,0.0,0.0,0.0,2.38138E-4,6.5114E-4,0.00148006,0.003228902,0.006816074,0.012334898,0.018554708,0.0264948125,0.035344991400000005,0.0457780136,0.0638530055,0.0881158408,0.10901838500000001,0.174307072,0.258931167,0.369932076,0.503040867,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,8.42014E-5,2.6182690000000003E-4,5.901032E-4,0.0012022003000000002,0.0020963621,0.0030936879,0.0040050387,0.0046383807,0.0049523356200000005,0.00498325407,4.11812882E-4,2.34263666536E-4,1.63064603857E-4,1.23059E-4,6.89126E-5,4.3456E-5,1.70009E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,refining,coal to liquids,coal to liquids CCS level 1,0.0,0.0,0.0,0.0,2.01041E-5,7.91246E-5,2.3097839999999998E-4,6.031369E-4,0.0013670507,0.0024883236,0.0037127118,0.0048450373000000005,0.005706729055,0.00629687973,0.00647994257,0.0062817040999999995,0.0058095668,0.0057382358,0.0058512011999999995,0.0060713155000000005,0.004050752520000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,refining,coal to liquids,coal to liquids CCS level 2,0.0,0.0,0.0,0.0,1.35755E-5,5.3836000000000004E-5,1.590416E-4,4.200087E-4,9.664662999999999E-4,0.0017790483,0.00266548284,0.0034981333199999996,0.004138047638999999,0.004579285749999999,0.0047391718,0.0046200223,0.004326669,0.0044726692,0.0049286759,0.0057479972,0.0065302793000000005,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,3.60776E-4,0.001296906,0.0034070059999999997,0.008090877,0.017017327999999998,0.029779084999999997,0.044832847,0.0616724597,0.07839059009999999,0.0962717533,0.11474869900000001,0.134108363,0.153183532,0.19327162000000003,0.240021142,0.29801787,0.348222598,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,refining,oil refining,oil refining,0.4406,0.696632,0.915302,1.078604,1.25682,1.424686,1.590475,1.7645159999999998,1.9689809999999999,2.1734057,2.3842181,2.6311068499999997,2.8371286,3.0628221499999997,3.2597165,3.3868773,3.1546991,3.1515448,3.0923366,2.9979459,2.7581773999999997,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.0,0.00114385,0.00339379,0.00795032,0.01560289,0.02364824,0.028893392000000004,0.032187625,0.035453267000000004,0.0375448991,0.040291262,0.042446641,0.046422174999999996,0.0425920471,0.004797406834399,0.001757171920361,2.77667E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,refining,biomass liquids,FT biofuels CCS level 1,0.0,0.0,0.0,0.0,0.0,4.08465E-4,0.001463289,0.004136845,0.009857056999999999,0.017402233,0.0237327,0.02945728,0.038141217399999996,0.049284388799999995,0.07807221140000001,0.129549781,0.22079769700000001,0.40023564300000003,0.5469390359999999,0.6189389750000001,0.61597827,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,refining,biomass liquids,FT biofuels CCS level 2,0.0,0.0,0.0,0.0,0.0,3.07892E-4,0.001109448,0.003153334,0.0075701629999999995,0.013453488,0.018451109,0.023108827000000002,0.030414430399999998,0.0401754071,0.0672986676,0.11940551900000002,0.216367403,0.430736236,0.6243961690000001,0.733543347,0.748334713,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.0,0.00592585,0.01756407,0.0410178,0.08004055,0.12075741,0.14660483000000002,0.16241483,0.17744638000000001,0.18609144899999996,0.196981308,0.20227866,0.21082775,0.08887199411999999,0.012795839219219,0.004138030518747,5.67242E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,refining,biomass liquids,cellulosic ethanol CCS level 1,0.0,0.0,0.0,0.0,0.0,0.0021898,0.00767612,0.02116789,0.04829752,0.08190918999999999,0.10756751,0.12688288,0.150524045,0.173320943,0.212342022,0.253783204,0.30256985999999997,0.34236671,0.233598808,0.010664915047749999,0.001553752276781,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,refining,biomass liquids,cellulosic ethanol CCS level 2,0.0,0.0,0.0,0.0,0.0,8.61709E-4,0.003162293,0.009132879,0.022375622,0.040484762,0.056163422000000005,0.071858455,0.098429918,0.13731738929999998,0.26751457,0.551519019,1.078512635,2.2919305999999997,3.3145095,3.8638051009999996,3.9355148,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,0.0,3.34375E-4,0.00115746,0.003049253,0.006050045,0.008962722,0.010803462,0.011567382,0.0118333364,0.0112120067,6.832833140000001E-4,3.51565745356E-4,3.24E-4,1.73258E-4,7.48238E-5,2.43692E-5,3.07113E-6,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,refining,coal to liquids,coal to liquids CCS level 1,0.0,0.0,0.0,0.0,0.0,1.30576E-4,5.78668E-4,0.00193197,0.004943928,0.008948034,0.012568875,0.015427835800000001,0.019044593300000003,0.02254457836,0.0261544116,0.028897690000000004,0.033618456,0.039166991,0.042265599,0.041376981,0.036940838999999996,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,refining,coal to liquids,coal to liquids CCS level 2,0.0,0.0,0.0,0.0,0.0,9.08187E-5,4.075725E-4,0.0013762542,0.0035771379,0.0065612706,0.0093279861,0.011631794400000001,0.014720985700000001,0.01795690616,0.0218740407,0.0256041052,0.032120278,0.041097295,0.048128985,0.050101265000000006,0.046745543,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,0.0,0.00178475,0.00712547,0.02168539,0.05156294,0.08825622,0.11754392999999999,0.138450814,0.16161353400000003,0.1796951772,0.194794505,0.202915661,0.22539002000000002,0.26534804,0.3010075,0.31157586000000004,0.29029018,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,refining,oil refining,oil refining,9.63678,6.10564,6.46258,6.658665,6.542301,6.7743329999999995,6.907711,6.937004999999999,6.926242,6.802715,6.6581763,6.572913,6.492970499999999,6.3937387999999995,6.0809555,5.5222832,4.4186929,2.7173220999999996,1.20007911,0.40658985799999997,0.05559024579999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,1.66911E-4,9.25703E-4,0.0017822559999999999,0.0029098839999999997,0.004482274,0.006353889,0.0079892744,0.0094038218,0.01063778289,0.0117947827,0.0130764819,0.014219448699999998,0.015583593699999999,0.015684302,0.009380202269999999,0.00109616722491,4.918777358650001E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,refining,biomass liquids,FT biofuels CCS level 1,0.0,0.0,0.0,0.0,4.16644E-5,3.0093130000000004E-4,6.797204E-4,0.0013099755999999999,0.0024474934,0.0041761307,0.0061442982,0.00849981265,0.011230141170000001,0.0144036406,0.019667424000000003,0.026436089700000002,0.0350085277,0.0440128964,0.0548758333,0.067858269,0.07828571499999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,refining,biomass liquids,FT biofuels CCS level 2,0.0,0.0,0.0,0.0,3.10236E-5,2.251554E-4,5.104309E-4,9.885718E-4,0.0018618852999999999,0.0032035761,0.0047460828,0.006636471,0.00885940802,0.01146647648,0.0159329524,0.0217677599,0.0291277722,0.037452914,0.048318657099999995,0.0627041039,0.07695061,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,8.72121E-4,0.004803124000000001,0.009233804,0.015037838999999997,0.023054769,0.032520724,0.04055107,0.047312007,0.0529865551,0.058121143,0.063668761,0.067702368,0.071095911,0.068024683,0.011316358329,0.002551437472989,0.00100485011273,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,refining,biomass liquids,cellulosic ethanol CCS level 1,0.0,0.0,0.0,0.0,2.3447E-4,0.001658276,0.003692769,0.006961353,0.01246625,0.020287786000000002,0.028450785,0.0367802742,0.0451474229,0.053659300699999996,0.06430902720000001,0.073937873,0.08244354500000001,0.08316198000000001,0.07896256800000001,0.02134609045,0.002168467254416,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,refining,biomass liquids,cellulosic ethanol CCS level 2,0.0,0.0,0.0,0.0,8.41531E-5,6.198241000000001E-4,0.001423218,0.0027976485000000004,0.0053849671000000005,0.0094757715,0.0142440536,0.020438168700000002,0.02800685494,0.03715627,0.054490084300000005,0.0774230614,0.103645151,0.132161127,0.166681098,0.211389306,0.254757897,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,refining,coal to liquids,coal to liquids,0.16056,0.0857208,0.0960599,0.0943321,0.09153315949999999,0.08486033750000001,0.0707893429,0.0490604553,0.0274792841,0.0137732446,0.007456156799999999,0.00322699096,0.0033292231899999998,0.0032286398,2.242872033E-4,1.22082313463E-4,1.1989363655500001E-4,5.11964E-5,3.24445E-5,1.98503E-5,6.7329E-6,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,refining,coal to liquids,coal to liquids CCS level 1,0.0,0.0,0.0,0.0,7.21129E-6,8.529520999999999E-5,2.3384126E-4,5.316769600000001E-4,0.00110066229,0.00198188437,0.00303962335,0.0040989795200000005,0.005007360902,0.00568590349,0.00600180495,0.005922648,0.005683525900000001,0.0051527648,0.0045742907,0.0040684335,0.00205749031,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,refining,coal to liquids,coal to liquids CCS level 2,0.0,0.0,0.0,0.0,4.89346E-6,5.851816E-5,1.6175916E-4,3.718835E-4,7.8318259E-4,0.0014341798699999998,0.0022310407300000002,0.003063393292,0.0037975469869999997,0.00436343523,0.00467222483,0.00467664977,0.0045576933,0.0042275114,0.0039697004,0.0038912727999999997,0.0037475964,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,refining,gas to liquids,gas to liquids,0.0365822,0.06157,0.0658398,0.0646556,0.062841848,0.059292329,0.05144853,0.039814809,0.030736011,0.029520007,0.0343303369,0.0405713647,0.04954657278,0.0579874784,0.0655791503,0.073016012,0.087105733,0.10043309,0.120633196,0.14530633299999998,0.16212539599999998,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,refining,oil refining,oil refining,0.581312,0.835562,0.799628,0.9464919999999999,1.0385811,1.2093665,1.3681666,1.5197923,1.654773,1.7461920999999998,1.8025725000000001,1.86904747,1.9120324400000002,1.9447622,1.9488317,1.9197513,1.7769197,1.6727446,1.5891647,1.4974058,1.3334033,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.0,4.68749E-4,0.001343845,0.002567931,0.00436331,0.006101987,0.007266239,0.008056923,0.0086225999,0.0092344249,0.0097536735,0.0101404181,0.010608090200000002,0.009913012499999999,0.001143189635244,5.80712015465E-4,1.59567E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,refining,biomass liquids,FT biofuels CCS level 1,0.0,0.0,0.0,0.0,0.0,1.68008E-4,5.82336E-4,0.001314686,0.002703344,0.004412077,0.005894495,0.007401956099999999,0.00935208,0.01260822884,0.0192462793,0.030718154500000004,0.0478855361,0.082123383,0.11822861640000001,0.1446420674,0.153929185,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,refining,biomass liquids,FT biofuels CCS level 2,0.0,0.0,0.0,0.0,0.0,1.26712E-4,4.42037E-4,0.001003593,0.002081557,0.0034232659999999995,0.004599783,0.005830616,0.0074803585,0.010334130530000001,0.0166158669,0.028289121100000002,0.0467069331,0.0880629229,0.13621304880000001,0.1757967803,0.19587857,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,refining,biomass liquids,biodiesel,0.0,0.0,0.0,0.00409114,0.00314009,0.00373481,0.00437487,0.004983706,0.005666423,0.006365233999999999,0.007043186,0.0075127678,0.0079706563,0.0084318767,0.0089564026,0.0092737483,0.0096607345,0.00955308712,0.009583329333,0.009326710799999999,0.008782201100000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.0,0.00242841,0.00695502,0.01325571,0.02241067,0.031208609999999998,0.03693531,0.04069699,0.043188775,0.045722043000000004,0.047645702000000005,0.048360856,0.048574962000000006,0.0232743581,0.003043762837312,0.001367540242287,3.25977E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,refining,biomass liquids,cellulosic ethanol CCS level 1,0.0,0.0,0.0,0.0,0.0,8.98883E-4,0.003042246,0.006698580000000001,0.013161797,0.020587443,0.026474554,0.031461511000000005,0.036530409,0.0432298653,0.051921475,0.060772173,0.068720487,0.07480648200000001,0.0591213449,0.00363728229649,9.02859055159E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,refining,biomass liquids,cellulosic ethanol CCS level 2,0.0,0.0,0.0,0.0,0.0,3.55058E-4,0.001263007,0.002913884,0.006182267,0.010372996999999998,0.014104562,0.018282486,0.0243501546,0.035737328900000004,0.0661608476,0.1304587225,0.23216516099999998,0.47033954899999997,0.728995085,0.931329714,1.031541166,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,refining,biomass liquids,sugar cane ethanol,0.0,0.0,0.0,0.00368817,0.0,3.21087E-4,7.57521E-4,0.00123738,0.00225536,0.0027612601185110002,0.002639574213388,0.002902630659426,0.00408223861777,0.007120469355999999,0.01309102435,0.0245274377,0.0395882882,0.0579222463,0.0675841657,0.0591292323,0.03297377881,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,0.0,1.38932E-4,4.8386400000000003E-4,0.001054678,0.0018688819999999999,0.002611495,0.003099396,0.0033231641,0.0033448874,0.0031823568,2.0290345130000002E-4,9.9008781457E-5,7.87972E-5,4.39692E-5,2.47972E-5,1.15942E-5,2.63675E-6,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,refining,coal to liquids,coal to liquids CCS level 1,0.0,0.0,0.0,0.0,0.0,5.47351E-5,2.469288E-4,6.740767E-4,0.0015561527000000001,0.0026815032,0.003722485,0.0046434905,0.00564580207,0.00694292246,0.00798578249,0.0087727779,0.0098142771,0.0111482752,0.012381779400000001,0.012780605599999998,0.0119124406,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,refining,coal to liquids,coal to liquids CCS level 2,0.0,0.0,0.0,0.0,0.0,3.81108E-5,1.743677E-4,4.818885E-4,0.001132979,0.0019826673,0.0027855684,0.0035311804,0.0043934913700000005,0.00558629404,0.006725115909999999,0.007801278500000001,0.0093361694,0.0116272002,0.014245560800000001,0.0160316219,0.0159859524,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,0.0,7.41965E-4,0.002982085,0.00737854,0.015471342999999999,0.024796725999999998,0.032632651,0.039152952000000005,0.045342013,0.0522382293,0.05667469799999999,0.059291790999999996,0.06388426800000001,0.07311464499999999,0.085838011,0.095921445,0.09648349599999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,refining,oil refining,oil refining,0.820451,1.25366,1.65668,1.718454,1.513146,1.6191180000000003,1.700111,1.753844,1.7839580000000002,1.796126,1.7973199,1.8174543,1.8137082,1.8016699600000001,1.7095939,1.5664238000000001,1.317949,0.94858377,0.53600079,0.23935964199999998,0.0488634541,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,5.38903E-4,0.001584725,0.00287107,0.004630152,0.007086415,0.009850890000000001,0.011937561999999999,0.0134904996,0.014753125899999999,0.0156196832,0.0165428665,0.0173357135,0.018470684,0.0173742348,0.002400646949552,9.51397056548E-4,1.85923E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,refining,biomass liquids,FT biofuels CCS level 1,0.0,0.0,0.0,0.0,1.36617E-4,5.11296E-4,0.0011198660000000002,0.0021721379999999997,0.004079519,0.006848706,0.0096742446,0.0127968465,0.01674121579,0.021571220999999998,0.0320350743,0.051186385900000006,0.0839214231,0.16147562,0.23861619499999998,0.282096305,0.289651815,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,refining,biomass liquids,FT biofuels CCS level 2,0.0,0.0,0.0,0.0,1.01961E-4,3.84523E-4,8.475970000000001E-4,0.0016542610000000002,0.0031345714,0.0053089807,0.0075525685000000006,0.010101759299999999,0.013429855289999999,0.0176641893,0.0275548814,0.0470253517,0.0821003696,0.175593618,0.27827785299999996,0.343683782,0.364135767,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,refining,biomass liquids,biodiesel,0.0,0.0,0.00322299,0.01094650141774,0.00945039,0.0094123666,0.0085981272,0.0076766494,0.006933402092,0.006199457463999999,0.0054014006302999995,0.004748270452,0.004471162698,0.004214085686,0.004109841224,0.00368956551084,0.003315912757361,0.00314542,0.00255347,0.0020166,0.00104642,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.0028158,0.008233790000000001,0.01488761,0.023941650000000002,0.03646389,0.05043949,0.06065145,0.067993714,0.07366318699999999,0.07720603699999999,0.080786581,0.08275624100000001,0.084443221,0.038875591030000003,0.0064022687893910005,0.002240470257634,3.79821E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,refining,biomass liquids,cellulosic ethanol CCS level 1,0.0,0.0,0.0,0.0,7.6241E-4,0.002767576,0.0059177050000000005,0.011175784000000001,0.020058512,0.032082107,0.043251825,0.053581533,0.064097958,0.0740075407,0.087961611,0.103106702,0.11908635399999999,0.135113744,0.10167113990000001,0.00587449966232,0.0010542815694780001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,refining,biomass liquids,cellulosic ethanol CCS level 2,0.0,0.0,0.0,0.0,2.77941E-4,0.0010695700000000002,0.00240247,0.004772713,0.009259113999999999,0.01605175,0.023176272999999997,0.0318268955,0.0440046796,0.0609090431,0.108719937,0.215852458,0.40933131500000003,0.947434707,1.4996357969999998,1.8354226,1.9385347240000002,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,refining,biomass liquids,corn ethanol,6.27862E-4,5.85962E-4,0.00280441,0.007124430000000001,0.01019187,0.01629411,0.02379896,0.03256328,0.042705343,0.052153574,0.058980925999999996,0.064493743,0.069494176,0.074173061,0.08206150699999999,0.092824397,0.107833443,0.131008447,0.140088497,0.13247463399999998,0.12314341000000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,9.48004E-5,4.20385E-4,9.33016E-4,0.0017704508,0.0029229753999999997,0.0041633524000000005,0.0051078771999999995,0.0055887129999999995,0.00571978738,0.0054635989,3.1849913849999996E-4,1.60481133304E-4,1.40504E-4,8.49557E-5,4.32724E-5,1.54671E-5,2.46215E-6,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,refining,coal to liquids,coal to liquids CCS level 1,0.0,0.0,0.0,0.0,2.45033E-5,1.5262170000000002E-4,4.3752769999999997E-4,0.0010620251,0.0023081481999999995,0.0041974242,0.0062557766,0.008215127019999999,0.01029159259,0.01224814737,0.0139199325,0.0151735424,0.0170141008,0.0196257298,0.021637407999999997,0.0216329966,0.019706224,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,refining,coal to liquids,coal to liquids CCS level 2,0.0,0.0,0.0,0.0,1.67006E-5,1.058931E-4,3.078097E-4,7.571773E-4,0.0016764503,0.0031022523,0.0046892774100000005,0.00627299252,0.008049366741999998,0.009848809069999999,0.011664702439999999,0.0133919968,0.016119932400000002,0.0205942467,0.0250901477,0.0270466611,0.0259741819,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,4.08974E-4,0.002147678,0.005477053,0.011930020999999999,0.023412138,0.039117497,0.054630567000000005,0.0685859903,0.081682341,0.0920462011,0.099293061,0.103381658,0.111404542,0.12928499799999998,0.150129256,0.159718637,0.153036835,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,refining,oil refining,oil refining,0.836427,1.39582,1.82989,2.132769,2.3260259999999997,2.6349510000000005,2.870761,3.027545,3.1348789999999997,3.197788,3.2178725999999997,3.2338796,3.2064754000000004,3.1672004000000005,3.03791,2.8104196999999997,2.354833,1.5991436,0.77002401,0.28257250300000003,0.0449975263,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,5.93159E-4,0.001416939,0.0024111030000000004,0.003721959,0.005605728,0.007941174,0.010281352,0.012871326999999998,0.015664098100000003,0.018470666,0.0214452687,0.0242325712,0.0258370455,0.027460978,0.01675542003,0.00239125644253,0.001262791717929,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,refining,biomass liquids,FT biofuels CCS level 1,0.0,0.0,0.0,0.0,1.48755E-4,4.23834E-4,8.58438E-4,0.001574219,0.002886143,0.004893542,0.007332891500000001,0.0105007597,0.014297339230000001,0.0184124806,0.024443158299999997,0.032577312,0.0406821986,0.0619213761,0.08829827600000001,0.120436807,0.154490837,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,refining,biomass liquids,FT biofuels CCS level 2,0.0,0.0,0.0,0.0,1.10841E-4,3.1610000000000004E-4,6.428250000000001E-4,0.001183805,0.00218439,0.0037217487000000002,0.0055846044,0.0080186952,0.010938301630000001,0.01408821385,0.018800147099999998,0.0252948355,0.0319174802,0.0510416125,0.07719802419999999,0.112045716,0.155077674,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.0030993,0.00736696,0.012509409999999999,0.0192563,0.02885907,0.04066301,0.05213319,0.064567371,0.077687043,0.09061614900000001,0.104060149,0.115092182,0.118643986,0.118493188,0.021189300807000003,0.005573687411795,0.002579730380811,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,refining,biomass liquids,cellulosic ethanol CCS level 1,0.0,0.0,0.0,0.0,8.35024E-4,0.002364708,0.004714138,0.008476749,0.014975762,0.024496494,0.035586762,0.04872879,0.0632537417,0.07794316009999999,0.09502624400000001,0.11139485299999999,0.12027368499999999,0.129070885,0.126700862,0.040394478170000005,0.005567877983476,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,refining,biomass liquids,cellulosic ethanol CCS level 2,0.0,0.0,0.0,0.0,3.01107E-4,8.63337E-4,0.00177999,0.0033228199999999998,0.0062468390000000006,0.010806783,0.01627151,0.0235784936,0.0324504233,0.042070973600000006,0.0576098838,0.07962021690000001,0.10113719299999999,0.164922077,0.250009015,0.361230942,0.49819516,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,1.0288E-4,3.44333E-4,7.07693E-4,0.001250293,0.0019846304,0.0028248547,0.0036368148000000006,0.0042121679,0.0045303396,0.0045598132,3.521442651E-4,2.07624684813E-4,1.5588124398099997E-4,1.20169E-4,6.90599E-5,4.33111E-5,1.72754E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,refining,coal to liquids,coal to liquids CCS level 1,0.0,0.0,0.0,0.0,2.59069E-5,1.063146E-4,2.741634E-4,6.016763999999999E-4,0.0012216467,0.0021357566999999997,0.0031968944,0.004221396089999999,0.00507409016,0.00561744118,0.00578087653,0.0056557498,0.0053318747,0.0053484649,0.0055421843,0.0058213552,0.003925871379999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,refining,coal to liquids,coal to liquids CCS level 2,0.0,0.0,0.0,0.0,1.76031E-5,7.24673E-5,1.887331E-4,4.181789E-4,8.609093E-4,0.0015200412999999999,0.00228391007,0.00303296296,0.003662248444,0.00406614504,0.0042082520900000005,0.0041439182,0.003962307199999999,0.0041709175,0.0046906099,0.0055549109000000004,0.0064172324,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,4.4288E-4,0.0017156559999999999,0.004051084999999999,0.008202515,0.015543027000000001,0.026362488,0.04002176,0.056065414699999996,0.073453806,0.09049858920000001,0.106559338,0.12383921099999999,0.14266215100000001,0.182403515,0.229877549,0.28851549600000004,0.341840338,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,refining,oil refining,oil refining,0.222211,0.551145,0.631771,0.8246220000000001,1.052994,1.303866,1.518954,1.702804,1.894636,2.0794859,2.2642130000000003,2.47745229,2.691752,2.9000605999999998,3.0676666,3.1900429,2.9928685,3.0093507999999995,2.9646384999999995,2.8852930999999997,2.6862809,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,5.8129E-4,0.001286637,0.0024637110000000004,0.004911146999999999,0.009092407,0.013676329,0.016601431,0.018050642000000002,0.018965179199999998,0.018852419899999997,0.0189512481,0.018878351,0.019369866,0.018388169000000003,0.0102396737,7.2853550537E-4,3.91933847403E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,refining,biomass liquids,FT biofuels CCS level 1,0.0,0.0,0.0,0.0,5.25333E-5,8.8056022E-5,1.9619283E-4,6.399748E-4,0.0018458252,0.0033664514,0.004616894599999999,0.00554236585,0.00655764684,0.00748834875,0.01020469798,0.0154049954,0.024564162800000004,0.0339541812,0.0431990668,0.05265099250000001,0.062212714100000004,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,refining,biomass liquids,FT biofuels CCS level 2,0.0,0.0,0.0,0.0,3.40917E-5,5.7364210583E-5,1.2431656686000001E-4,3.245215391E-4,7.717701199999999E-4,0.0019256058,0.0029844773000000002,0.00370668822,0.00442105409,0.00510027533,0.0071629633,0.0112986672,0.018865270500000003,0.0274654045,0.0367548145,0.047222029799999996,0.0599355998,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,refining,biomass liquids,biodiesel,0.0,4.60479E-4,0.0125574,0.013047947,0.013704560000000001,0.01438133,0.01509092,0.015790272,0.016671931,0.0168955747,0.0165845517,0.0164231752,0.0163067759,0.0161766105,0.0162471118,0.016279873,0.017290957000000003,0.016382522,0.015731277999999998,0.0151062463,0.014278573400000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.00303728,0.00669139,0.01277998,0.025377129999999998,0.04669592,0.06988197,0.08424243,0.09110055799999998,0.095091067,0.09381453899999999,0.093128588,0.090417791,0.08838138,0.0798812,0.011062594394000001,0.001685760747328,8.00674E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,refining,biomass liquids,cellulosic ethanol CCS level 1,0.0,0.0,0.0,0.0,5.01622E-4,0.001303703,0.003050286,0.0074356249999999995,0.016464976,0.028289861,0.037450388,0.043263882200000006,0.0484613228,0.0516136276,0.0585601196,0.066845874,0.076588516,0.07740458,0.073879702,0.019922900240000003,0.001732820137244,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,refining,biomass liquids,cellulosic ethanol CCS level 2,0.0,0.0,0.0,0.0,6.96306E-5,1.19281E-4,2.63239665302E-4,6.9568770261E-4,0.001570375641,0.00271024071,0.00507247206,0.0083391911,0.01019618571,0.012091628969999999,0.0184692002,0.0321877697,0.057191901899999995,0.08662407899999999,0.11743569749999999,0.1514167776,0.19248144399999997,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,1.34943E-4,4.30138E-4,0.0010867960000000001,0.0027050069999999997,0.005250454,0.007661193,0.0090398843,0.009357705,0.009123159950000001,0.0081526889,2.845276675E-4,1.79884416838E-4,1.77567716966E-4,6.01963E-5,2.85591E-5,1.58397E-5,6.51206E-6,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,refining,coal to liquids,coal to liquids CCS level 1,0.0,0.0,0.0,0.0,3.70458E-6,1.540678E-5,5.240315E-5,1.7449322E-4,4.5677975E-4,8.423169599999999E-4,0.00116822423,0.001360711179,0.001520539542,0.001603699209,0.00168711929,0.00182427732,0.0022630037,0.0025367718,0.0028030783999999998,0.0029924397899999994,0.00206627179,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,refining,coal to liquids,coal to liquids CCS level 2,0.0,0.0,0.0,0.0,2.03241E-6,6.6939507E-6,2.1425593999999997E-5,7.6004772E-5,2.01402908E-4,3.76411232E-4,5.400045700000001E-4,6.31360056E-4,7.275655172E-4,7.986626329999999E-4,8.65573934E-4,0.0011089004,0.00161098638,0.0019437054999999997,0.00232069428,0.0027309272900000003,0.0030784785800000002,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,4.27579E-4,0.0015170020000000002,0.004353112,0.012489321,0.029564321,0.051209788,0.06834306600000001,0.07892823130000001,0.0877228503,0.09188217500000001,0.097431542,0.10441787299999998,0.12250229500000001,0.13462267,0.148206065,0.16359846,0.17605846,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,refining,oil refining,oil refining,2.09484,4.16594,4.18048,4.312618,4.495736,4.605939,4.625537,4.558737,4.435359,4.2478529,4.0309326,3.8342287399999995,3.6197850999999996,3.4073339,3.1577944999999996,2.8793259000000004,2.4906866,2.2271478,2.0291227,1.8504986999999997,1.6150642,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.00161783,0.0040066500000000005,0.00740607,0.01292515,0.021510500000000002,0.032041200000000006,0.041689857,0.050575044,0.0593369612,0.06696058399999999,0.073737301,0.078623187,0.083292583,0.07881379000000001,0.0057175209693,0.0036851803069219997,0.00280495,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,refining,biomass liquids,FT biofuels CCS level 1,0.0,0.0,0.0,0.0,4.08205E-4,0.001248081,0.0027846629999999997,0.005889194,0.012176157,0.022117287,0.034034888,0.048833658,0.0685860295,0.09336883160000001,0.1386686518,0.207808407,0.307163701,0.407964273,0.497877789,0.577236033,0.6772385999999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,refining,biomass liquids,FT biofuels CCS level 2,0.0,0.0,0.0,0.0,3.04439E-4,9.36023E-4,0.0020970900000000002,0.004454494999999999,0.009289782,0.017030632,0.026419553999999998,0.0383983235,0.054848185300000005,0.0761458494,0.11792273079999999,0.185507313,0.286097907,0.39955915899999994,0.509593277,0.615833779,0.769254613,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,refining,biomass liquids,biodiesel,0.0,0.0,0.0227284,0.021472307,0.02724392,0.05404025999999999,0.10923160000000001,0.17725159999999998,0.26256285,0.36737818,0.47638610000000003,0.58923786,0.72005034,0.86138906,1.0754906000000002,1.37747409,1.82201603,2.30503125,2.7606842,3.1843486999999997,3.72679885,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.00845329,0.02082879,0.03841279,0.06681991,0.11059089,0.1638461,0.21125095000000002,0.25398109,0.295048515,0.32963192100000005,0.359053132,0.37505353999999996,0.38227938,0.263566727,0.01413170717702,0.008677831978258,0.00573019,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,refining,biomass liquids,cellulosic ethanol CCS level 1,0.0,0.0,0.0,0.0,0.00228388,0.00682508,0.01498062,0.03102825,0.06126198,0.10573413,0.15430967,0.205412868,0.26230128799999997,0.320313541,0.39011328,0.455036524,0.5112590699999999,0.51070686,0.42160217099999997,0.024634537212000002,0.013741867856181,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,refining,biomass liquids,cellulosic ethanol CCS level 2,0.0,0.0,0.0,0.0,8.28637E-4,0.0025873750000000003,0.005880128,0.012669663000000001,0.027048198,0.050809222,0.080142788,0.120079137,0.17869245279999998,0.2604236707,0.45248871300000004,0.794874581,1.2879738069999997,1.84575004,2.33057013,2.75007744,3.29635193,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,refining,biomass liquids,sugar cane ethanol,0.0,0.001465,0.0136036,0.0190464,0.0215744,0.0290034,0.037418,0.0542171,0.083470700731638,0.106369012648556,0.114573182955354,0.12272811851237,0.14501903081050002,0.168073042054,0.2527095549,0.419922178,0.8501803800000001,1.07210378,1.36963163,1.66556473,2.09739691,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,6.21687E-4,0.002059304,0.00447625,0.008644086999999998,0.014340473000000001,0.020409146,0.025375024,0.028208504,0.029337330400000004,0.0284621991,0.0016278075520000002,8.8034272871E-4,7.69726226461E-4,2.76825E-4,1.51264E-4,9.42071E-5,5.78886E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,refining,coal to liquids,coal to liquids CCS level 1,0.0,0.0,0.0,0.0,1.58867E-4,6.997349999999999E-4,0.001906701,0.004604309,0.010021334,0.018298676,0.028153364700000003,0.038393740499999995,0.04945002542,0.059900677299999996,0.0679353492,0.07275773599999999,0.07767378100000001,0.07645857799999999,0.072792782,0.067376882,0.056331598,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,refining,coal to liquids,coal to liquids CCS level 2,0.0,0.0,0.0,0.0,1.08133E-4,4.82616E-4,0.0013266850000000002,0.003233108,0.007161867,0.013313661000000001,0.0208128556,0.0289971953,0.038297755509999996,0.047640894,0.055999915299999994,0.062377378799999994,0.06984842999999999,0.072214572,0.07263362400000001,0.07138139899999998,0.070526357,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,refining,gas to liquids,gas to liquids,0.0,0.0402773,0.0363013,0.0356484,0.03725923,0.04230831,0.05248993,0.07609803,0.12463592,0.1966641,0.27619707,0.35359309399999994,0.431376699,0.49690291,0.542036499,0.57248032,0.62485724,0.6531387900000001,0.6972617499999999,0.7688278399999999,0.92183048,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,refining,oil refining,oil refining,3.13926,6.26521,8.23937,9.29505,10.6393,12.02777,13.188419999999999,14.12796,14.925074000000002,15.532722,15.991892000000002,16.424532499999998,16.7019737,16.8609573,16.429728599999997,15.475705999999999,13.28346,11.456465,9.550078,7.795316099999999,4.808925400000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,1.57106E-4,3.95401E-4,8.72312E-4,0.002070162,0.004255251,0.006675072,0.0082292431,0.0091959352,0.0100561489,0.010546222099999999,0.0112879634,0.011788524999999998,0.011879833,0.011399569000000002,0.006066083600000001,5.0612747849E-4,2.8187515902800003E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,refining,biomass liquids,FT biofuels CCS level 1,0.0,0.0,0.0,0.0,3.70434E-5,1.1476990000000001E-4,3.1350379999999997E-4,8.897142000000001E-4,0.0020572524,0.0034084376000000005,0.0043000476,0.00488469116,0.00544535672,0.0059851861199999995,0.007676617529999999,0.0107875256,0.014762847200000002,0.0199642786,0.025587095400000003,0.0322050339,0.039238548799999995,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,refining,biomass liquids,FT biofuels CCS level 2,0.0,0.0,0.0,0.0,2.73511E-5,8.51465E-5,2.334781E-4,6.608052000000001E-4,0.0015170513999999999,0.0024898563999999996,0.003116985,0.0035208364300000003,0.0038991129999999996,0.00426464362,0.0055146627600000005,0.0079654826,0.011268778600000001,0.0160527585,0.021719985499999997,0.0290351579,0.0382971768,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,8.2089E-4,0.002055402,0.0045223,0.010687871,0.021829689,0.034073379,0.041723075,0.046363205000000005,0.05033203139999999,0.0523223955,0.055249182,0.056233776,0.054515953,0.050048801,0.006311026697999999,0.001176268648171,5.75839E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,refining,biomass liquids,cellulosic ethanol CCS level 1,0.0,0.0,0.0,0.0,2.14987E-4,6.52756E-4,0.001755406,0.004999075,0.011667872999999999,0.019706874,0.025212393,0.0287770621,0.032081126700000004,0.0346061065,0.0396587608,0.044907789000000004,0.04798934800000001,0.047963611,0.045522386,0.01119347432,0.001244403957562,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,refining,biomass liquids,cellulosic ethanol CCS level 2,0.0,0.0,0.0,0.0,7.28677E-5,2.3000279999999999E-4,6.398952E-4,0.0018113659,0.0041189736,0.0066628987,0.0082240271,0.0092085027,0.01010436772,0.011008478400000002,0.014770216,0.0228688105,0.033891926,0.05030252,0.0691050726,0.0928321068,0.1227355601,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,2.74103E-5,9.73863E-5,2.719681E-4,7.686422999999999E-4,0.0016148926,0.0024724458,0.0030048033,0.0032054769400000002,0.00324119361,0.00302721349,1.626494897E-4,1.00582991698E-4,7.420867195E-5,2.94447E-5,1.47494E-5,9.12137E-6,3.85222E-6,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,refining,coal to liquids,coal to liquids CCS level 1,0.0,0.0,0.0,0.0,5.95561E-6,2.801011E-5,1.0025738E-4,3.2626947E-4,7.3354086E-4,0.0011291237500000001,0.0013561121,0.0014502852,0.001467959527,0.001406075903,0.0012921128900000001,0.00120577911,0.0012480421,0.0013065165,0.001416003,0.0015235861200000001,9.83912543E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,refining,coal to liquids,coal to liquids CCS level 2,0.0,0.0,0.0,0.0,3.97807E-6,1.892907E-5,6.831673E-5,2.2136185999999998E-4,4.931627100000001E-4,7.5090217E-4,8.9458762E-4,9.5034858E-4,6.628987414E-4,6.155916260000001E-4,6.31528201E-4,7.261124499999999E-4,8.825375E-4,9.914597E-4,0.00116618457,0.0014015546,0.0016126486199999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,1.16352E-4,4.83212E-4,0.0015943149999999998,0.00529602,0.013348026,0.0234429184,0.031135043,0.0363332356,0.041310449289999995,0.045054732699999996,0.0500813813,0.055566976000000004,0.062333970999999995,0.06849354599999999,0.075617274,0.08478487200000001,0.092526856,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,refining,oil refining,oil refining,1.07078,1.83458,1.98546,2.0034632,2.043715,2.0638278,2.0469044000000003,2.0062186,1.9528976,1.8778112,1.7926550600000002,1.7358180100000002,1.6790745599999999,1.6353856100000002,1.5775276699999998,1.4905733,1.2977983,1.1775126999999999,1.080549,0.9864403500000002,0.85224366,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,refining,biomass liquids,FT biofuels,0.0,0.0,0.0,0.0,0.00241289,0.005681820000000001,0.01272302,0.0282263,0.055531510000000006,0.08496549,0.10460633,0.117298773,0.128676732,0.135866285,0.146447141,0.156729125,0.16954553,0.16215357200000002,0.018239398203200002,0.011397927077002,0.0032804,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,refining,biomass liquids,FT biofuels CCS level 1,0.0,0.0,0.0,0.0,6.11786E-4,0.0017847380000000001,0.005129763000000001,0.014467815,0.035818232000000005,0.065212141,0.09057242599999998,0.113506201,0.1437553325,0.18217897440000003,0.288149127,0.49329767700000005,0.81839273,1.29370619,1.86405214,2.3930936,2.6106771,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,refining,biomass liquids,FT biofuels CCS level 2,0.0,0.0,0.0,0.0,4.56602E-4,0.001341383,0.0038883370000000004,0.011055561,0.027654627,0.050783265999999994,0.070956152,0.0897019329,0.1151758278,0.14889626250000002,0.24895205600000003,0.456988354,0.804221121,1.37827198,2.135179718,2.9127788069999996,3.3424619800000004,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,refining,biomass liquids,biodiesel,0.0,0.0123896,0.0312251,0.0400942675829,0.03927090562,0.0497481133,0.0785707159,0.1145664333,0.13859262585999998,0.13868771825,0.1338698201,0.166572449,0.20641271700000002,0.263274447,0.31859144,0.34019526,0.33910377999999997,0.268476337,0.219626872,0.1912066123,0.18867504699999998,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,refining,biomass liquids,cellulosic ethanol,0.0,0.0,0.0,0.0,0.0126075,0.0295425,0.0659642,0.14576240000000001,0.2849895,0.43390529999999994,0.53052106,0.59136831,0.643785263,0.6735146670000001,0.71617343,0.74631548,0.7704767,0.440382985,0.04844620092282,0.026841407777108,0.0067015,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,refining,biomass liquids,cellulosic ethanol CCS level 1,0.0,0.0,0.0,0.0,0.00341387,0.00968592,0.02696041,0.07342119999999999,0.17225328,0.29905759,0.39907034999999996,0.47530725700000004,0.557494176,0.6355018779999999,0.778812622,0.94707705,1.11303962,1.18834451,1.020898074,0.071634068249,0.018486949491057,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,refining,biomass liquids,cellulosic ethanol CCS level 2,0.0,0.0,0.0,0.0,0.00124474,0.00372479,0.01106604,0.03217971,0.08267093,0.15522756,0.21951041799999998,0.283276532,0.3761406827,0.511053371,0.993872463,2.13376458,4.03920887,7.337243129999999,11.37671425,15.304985509999998,17.413546550000003,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,refining,biomass liquids,corn ethanol,0.0,0.325437,1.03105,1.120621,1.1808258,1.2109537000000001,1.2306857,1.2612872,1.3590146,1.4734587000000001,1.537398,1.54291345,1.56596992,1.54074717,1.58230142,1.7159375,1.9754250999999998,2.3672429,2.7750436,3.0768082100000003,3.1278124500000004,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,refining,coal to liquids,coal to liquids,0.0,0.0,0.0,0.0,6.1689E-4,0.001965289,0.005513433999999999,0.014532422,0.029804163,0.045201363,0.055061445,0.059341578,0.060739788,0.05776524769999999,0.003658349429,0.001973897666616,0.0016238005916289998,6.58561E-4,4.01581E-4,2.21062E-4,5.19207E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,refining,coal to liquids,coal to liquids CCS level 1,0.0,0.0,0.0,0.0,1.59508E-4,6.920569999999999E-4,0.002683797,0.009531926,0.026447668,0.050459906,0.072015805,0.0885948773,0.10628500140999998,0.1230580248,0.1416158284,0.157247674,0.179047114,0.19437913,0.21234742,0.22302717700000002,0.210061563,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,refining,coal to liquids,coal to liquids CCS level 2,0.0,0.0,0.0,0.0,1.0872E-4,4.79632E-4,0.001892987,0.006832390000000001,0.01935492,0.0375557049,0.0542540071,0.0677192293,0.08286202485000001,0.09846771060000001,0.11880369319999999,0.14009565000000002,0.171759116,0.202040048,0.24213674899999998,0.277924917,0.280078398,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,refining,gas to liquids,gas to liquids,0.0,0.0,0.0,0.0,0.00266138,0.00986388,0.032915200000000006,0.10240121,0.25413019,0.44717450000000003,0.60398038,0.7178774929999999,0.830236808,0.916764065,0.9981064599999999,1.0558520699999998,1.16058789,1.27072562,1.4690047000000002,1.6871822600000002,1.7274571499999998,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,refining,oil refining,oil refining,31.688,38.9652,34.1005,35.15057,36.13386,36.61006,36.68235,36.26805,35.79701,34.903437,33.838543,33.2533594,32.6947925,32.2031823,30.790518,28.245786,23.949955,18.413573,11.6288021,5.3985419,0.9992428720000001,EJ, GDP by region scenario,region,1990,2005,2010,2015,2020,2025,2030,2035,2040,2045,2050,2055,2060,2065,2070,2075,2080,2085,2090,2095,2100,Units, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,29289.6,51313.2,69017.4,102827.0,126629.0,152896.0,183239.0,219931.0,263998.0,320528.0,391868.0,486011.0,604843.0,753571.0,937063.0,1154470.0,1405110.0,1689480.0,2017880.0,2396110.0,2798040.0,Million1990US$, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,115864.0,199485.0,243312.0,317979.0,367378.0,420758.0,469619.0,517890.0,560867.0,606695.0,655563.0,717235.0,788176.0,868825.0,956247.0,1044840.0,1132890.0,1220720.0,1315480.0,1418660.0,1514170.0,Million1990US$, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,32529.2,53208.5,73880.1,85872.1,103064.0,118280.0,132906.0,149155.0,169362.0,197441.0,234776.0,285562.0,350229.0,431473.0,531780.0,650396.0,787716.0,944205.0,1125630.0,1335140.0,1559040.0,Million1990US$, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,88438.0,139825.0,176708.0,225800.0,275045.0,338986.0,412563.0,499869.0,601363.0,728925.0,888728.0,1099640.0,1364830.0,1694690.0,2098210.0,2571750.0,3112550.0,3719420.0,4413370.0,5203160.0,6030750.0,Million1990US$, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,72706.3,130395.0,174776.0,260751.0,300820.0,344088.0,392845.0,441672.0,498103.0,553168.0,622022.0,690248.0,778091.0,878845.0,1010160.0,1159080.0,1333410.0,1524640.0,1726480.0,1917630.0,2139450.0,Million1990US$, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,260522.0,446801.0,490385.0,548951.0,610896.0,674643.0,742380.0,811570.0,887262.0,964506.0,1043340.0,1121770.0,1202000.0,1275350.0,1349690.0,1412810.0,1477060.0,1538620.0,1606740.0,1700710.0,1777220.0,Million1990US$, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,408942.0,628042.0,752813.0,838859.0,976038.0,1107270.0,1238010.0,1356460.0,1502590.0,1647650.0,1826590.0,2000980.0,2230590.0,2489280.0,2831670.0,3231210.0,3698080.0,4206000.0,4738530.0,5244400.0,5841800.0,Million1990US$, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,440774.0,666489.0,690655.0,771766.0,845803.0,916857.0,985002.0,1055380.0,1131200.0,1211110.0,1304380.0,1396130.0,1500440.0,1605400.0,1725490.0,1851090.0,1984780.0,2128940.0,2293670.0,2488850.0,2682230.0,Million1990US$, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,94674.7,155160.0,185941.0,200728.0,230998.0,267431.0,310851.0,357514.0,417759.0,485502.0,571998.0,665114.0,785944.0,931650.0,1125610.0,1359900.0,1647160.0,1980100.0,2351970.0,2734670.0,3189110.0,Million1990US$, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,42378.5,46470.4,65156.1,97116.6,124602.0,157183.0,192732.0,231314.0,278554.0,331287.0,391812.0,453731.0,521107.0,596463.0,684318.0,781750.0,893103.0,1021710.0,1169330.0,1343960.0,1527020.0,Million1990US$, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,446032.0,1690660.0,2567710.0,3552360.0,4818070.0,6277200.0,7956670.0,9829880.0,1.18502E7,1.39868E7,1.62216E7,1.85222E7,2.09903E7,2.36709E7,2.67487E7,3.02894E7,3.42864E7,3.85805E7,4.2676E7,4.54606E7,4.87683E7,Million1990US$, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,64505.2,104386.0,126248.0,179024.0,209836.0,236696.0,272028.0,310593.0,360112.0,414028.0,482382.0,554514.0,647443.0,757541.0,902072.0,1071890.0,1275200.0,1503230.0,1748520.0,1989160.0,2267760.0,Million1990US$, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,271734.0,399608.0,453318.0,524369.0,606103.0,681142.0,767097.0,850403.0,970352.0,1090470.0,1247570.0,1374950.0,1538660.0,1689890.0,1891110.0,2083330.0,2295620.0,2513380.0,2793770.0,3165550.0,3502730.0,Million1990US$, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,5210350.0,7138690.0,7209600.0,7525870.0,7995750.0,8485340.0,8949090.0,9381120.0,9808030.0,1.02314E7,1.06887E7,1.11511E7,1.1679E7,1.21828E7,1.27722E7,1.33176E7,1.39049E7,1.44787E7,1.52148E7,1.61787E7,1.65971E7,Million1990US$, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,69216.3,50958.1,57150.1,79034.2,91939.1,105941.0,123062.0,142612.0,168062.0,197536.0,233848.0,273423.0,318092.0,366724.0,421962.0,481803.0,548622.0,624602.0,711686.0,818770.0,927126.0,Million1990US$, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,187946.0,312336.0,354824.0,724029.0,868960.0,1019600.0,1166750.0,1303850.0,1442040.0,1576000.0,1717330.0,1853920.0,1996120.0,2126230.0,2273180.0,2409190.0,2549150.0,2683390.0,2848740.0,3058290.0,3167970.0,Million1990US$, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,280899.0,382416.0,401530.0,341504.0,371785.0,397860.0,421918.0,443287.0,464088.0,486263.0,513430.0,542938.0,575185.0,606718.0,643843.0,679328.0,717076.0,753469.0,797057.0,851328.0,876422.0,Million1990US$, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,218493.0,522808.0,745987.0,1027300.0,1382000.0,1842760.0,2404600.0,3097040.0,3922740.0,4903560.0,6055630.0,7400820.0,8908860.0,1.05785E7,1.24138E7,1.43939E7,1.65386E7,1.88498E7,2.15226E7,2.46349E7,2.78607E7,Million1990US$, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,108303.0,211476.0,260911.0,442931.0,633430.0,884898.0,1189310.0,1545770.0,1959610.0,2435150.0,2961680.0,3568560.0,4222040.0,4925910.0,5606820.0,6338550.0,7053750.0,7806090.0,8561450.0,9361070.0,1.01753E7,Million1990US$, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,3341300.0,4048790.0,3937570.0,4138660.0,4339440.0,4546210.0,4766180.0,4989910.0,5249800.0,5512120.0,5797640.0,6079360.0,6372020.0,6671650.0,6966520.0,7242500.0,7533850.0,7828080.0,8159310.0,8567420.0,8923910.0,Million1990US$, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,376422.0,604511.0,638835.0,607295.0,683569.0,771053.0,874768.0,982150.0,1113580.0,1254410.0,1437290.0,1627950.0,1872650.0,2163770.0,2548290.0,3004790.0,3555030.0,4178190.0,4860600.0,5547010.0,6359840.0,Million1990US$, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,354599.0,649164.0,799311.0,974231.0,1174060.0,1392630.0,1635400.0,1889570.0,2189090.0,2498920.0,2852310.0,3189990.0,3578330.0,3967750.0,4432680.0,4896340.0,5423530.0,5952470.0,6525260.0,7119570.0,7769380.0,Million1990US$, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,43517.3,83775.9,96558.5,172085.0,218316.0,285098.0,378037.0,502699.0,666897.0,883517.0,1159160.0,1515330.0,1954080.0,2495970.0,3122590.0,3868810.0,4690560.0,5621320.0,6643290.0,7794950.0,9053260.0,Million1990US$, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,338432.0,308850.0,350315.0,395888.0,460235.0,524267.0,600244.0,679944.0,777742.0,880502.0,1000190.0,1124150.0,1269000.0,1421560.0,1594070.0,1777760.0,1978810.0,2206350.0,2468360.0,2794560.0,3116910.0,Million1990US$, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,106461.0,148802.0,169021.0,145698.0,161309.0,175513.0,185741.0,195063.0,201819.0,208782.0,216190.0,227234.0,240783.0,256272.0,273254.0,290426.0,306935.0,322622.0,339208.0,356905.0,371640.0,Million1990US$, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,72496.4,105483.0,120587.0,141351.0,156855.0,178432.0,203843.0,231084.0,264566.0,300956.0,347363.0,395881.0,458382.0,530078.0,622270.0,728994.0,856131.0,998364.0,1150310.0,1297030.0,1467250.0,Million1990US$, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,97661.2,191670.0,234897.0,325486.0,391389.0,463248.0,541799.0,620312.0,717005.0,820303.0,948573.0,1079720.0,1246500.0,1441820.0,1697980.0,1997270.0,2353880.0,2753000.0,3182710.0,3605180.0,4100050.0,Million1990US$, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,36401.3,77487.5,99669.6,185595.0,263617.0,364291.0,491180.0,645549.0,836531.0,1075880.0,1369840.0,1741870.0,2190230.0,2730190.0,3336720.0,4060740.0,4862450.0,5784550.0,6812590.0,7991140.0,9306050.0,Million1990US$, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,230025.0,538826.0,607043.0,656707.0,706988.0,756462.0,810681.0,870578.0,941232.0,1017390.0,1099630.0,1187730.0,1282630.0,1378250.0,1475140.0,1570970.0,1668710.0,1766110.0,1880230.0,2024750.0,2151600.0,Million1990US$, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,226566.0,494485.0,586645.0,805491.0,1051060.0,1346800.0,1708650.0,2133480.0,2628780.0,3215010.0,3893080.0,4706080.0,5626830.0,6676450.0,7796130.0,9077400.0,1.04383E7,1.19376E7,1.35068E7,1.51107E7,1.68404E7,Million1990US$, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,117947.0,264007.0,302344.0,310941.0,388058.0,450756.0,512619.0,577917.0,642241.0,704683.0,759545.0,813093.0,865979.0,951674.0,1030950.0,1113110.0,1183890.0,1249020.0,1304290.0,1356380.0,1402030.0,Million1990US$, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,5728650.0,9104330.0,9601260.0,1.07572E7,1.19149E7,1.31758E7,1.44598E7,1.58304E7,1.74671E7,1.91662E7,2.12519E7,2.31994E7,2.55183E7,2.78733E7,3.06695E7,3.35834E7,3.67431E7,3.99698E7,4.3837E7,4.81526E7,5.27564E7,Million1990US$, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,45886.2,84512.7,115111.0,143044.0,191928.0,259127.0,348384.0,463619.0,617776.0,821360.0,1085340.0,1422750.0,1847810.0,2374740.0,3016680.0,3783180.0,4680490.0,5714520.0,6888630.0,8203190.0,9651030.0,Million1990US$, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,174060.0,312565.0,391024.0,416645.0,521213.0,667444.0,835702.0,1021780.0,1228340.0,1454920.0,1698960.0,1964380.0,2252440.0,2560870.0,2879010.0,3201610.0,3528230.0,3859780.0,4197240.0,4538980.0,4880000.0,Million1990US$, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,50396.5,80467.5,116822.0,151815.0,194858.0,250042.0,315179.0,392168.0,494305.0,630999.0,810854.0,1042310.0,1333840.0,1694850.0,2133630.0,2656080.0,3269480.0,3978680.0,4786410.0,5692830.0,6696370.0,Million1990US$, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,162800.0,284830.0,382851.0,489485.0,626996.0,864024.0,1179640.0,1584650.0,2116130.0,2808560.0,3700630.0,4838840.0,6266580.0,8025340.0,1.01492E7,1.2661E7,1.5574E7,1.88941E7,2.26235E7,2.67442E7,3.12257E7,Million1990US$, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,135643.0,233513.0,307677.0,348894.0,348350.0,412815.0,481176.0,552488.0,624052.0,694818.0,767550.0,842530.0,918875.0,996116.0,1072850.0,1147610.0,1221580.0,1295540.0,1369900.0,1443930.0,1516680.0,Million1990US$, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,459499.0,747676.0,851009.0,970768.0,1119040.0,1279810.0,1437250.0,1597220.0,1768040.0,1953040.0,2140320.0,2333630.0,2546510.0,2774640.0,3012460.0,3249550.0,3485680.0,3716540.0,3944380.0,4171900.0,4398100.0,Million1990US$, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,774550.0,1141710.0,1419390.0,1497630.0,1629470.0,1915120.0,2186040.0,2446180.0,2713910.0,2983650.0,3249640.0,3521410.0,3797840.0,4067700.0,4335610.0,4612160.0,4884260.0,5152230.0,5420290.0,5693070.0,5970470.0,Million1990US$, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,667729.0,1003540.0,1068960.0,1184350.0,1314700.0,1454110.0,1597850.0,1756730.0,1927360.0,2101190.0,2272290.0,2444870.0,2633090.0,2842720.0,3068920.0,3301710.0,3539440.0,3776020.0,4012710.0,4252170.0,4494400.0,Million1990US$, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,113544.0,179822.0,220413.0,256631.0,300804.0,360812.0,428187.0,502959.0,588659.0,685940.0,794005.0,913335.0,1044230.0,1188050.0,1345060.0,1515040.0,1698080.0,1893390.0,2100050.0,2317290.0,2544230.0,Million1990US$, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,126298.0,134509.0,198594.0,260338.0,328258.0,426583.0,526229.0,625801.0,723323.0,814183.0,893377.0,967660.0,1046970.0,1135380.0,1225660.0,1311010.0,1394960.0,1479880.0,1568270.0,1659850.0,1751020.0,Million1990US$, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,634800.0,2444330.0,4097640.0,5912420.0,7951320.0,1.05956E7,1.30367E7,1.50922E7,1.6911E7,1.85094E7,1.97579E7,2.06489E7,2.13813E7,2.19605E7,2.24056E7,2.26876E7,2.28898E7,2.29757E7,2.30031E7,2.29997E7,2.29837E7,Million1990US$, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,98009.1,152213.0,190000.0,236953.0,281537.0,329017.0,386039.0,450143.0,522729.0,602556.0,689667.0,784202.0,885852.0,994793.0,1109970.0,1229560.0,1353540.0,1479950.0,1607470.0,1735420.0,1862660.0,Million1990US$, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,523683.0,714315.0,829653.0,928022.0,1079210.0,1230740.0,1383010.0,1534200.0,1678940.0,1809980.0,1933220.0,2052600.0,2180300.0,2316600.0,2451650.0,2575720.0,2692320.0,2804990.0,2917570.0,3034360.0,3155880.0,Million1990US$, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,7015490.0,9615180.0,9957200.0,1.03682E7,1.12924E7,1.21766E7,1.31024E7,1.41123E7,1.52448E7,1.64478E7,1.76824E7,1.89778E7,2.03962E7,2.19025E7,2.34475E7,2.49979E7,2.65746E7,2.81732E7,2.97976E7,3.14493E7,3.31064E7,Million1990US$, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,163100.0,114725.0,130554.0,124212.0,141092.0,167809.0,196890.0,227474.0,258612.0,288980.0,318520.0,350058.0,385928.0,424556.0,463133.0,499289.0,533868.0,567816.0,601721.0,635376.0,667444.0,Million1990US$, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,309152.0,494907.0,572808.0,684297.0,805217.0,956358.0,1111780.0,1271350.0,1441150.0,1615710.0,1793300.0,1977410.0,2166610.0,2359340.0,2553480.0,2744920.0,2932910.0,3118490.0,3303010.0,3485680.0,3663940.0,Million1990US$, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,447753.0,604048.0,650903.0,702439.0,765960.0,832774.0,901007.0,972635.0,1052120.0,1140040.0,1238730.0,1347650.0,1465000.0,1590890.0,1723800.0,1859640.0,1998680.0,2138270.0,2276550.0,2413350.0,2549650.0,Million1990US$, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,316261.0,753264.0,1122980.0,1547960.0,2234280.0,3013670.0,3912260.0,4934840.0,6105320.0,7407100.0,8825350.0,1.03619E7,1.20108E7,1.37502E7,1.55449E7,1.73652E7,1.91904E7,2.10029E7,2.28004E7,2.45697E7,2.62768E7,Million1990US$, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,186551.0,355299.0,469691.0,613619.0,808803.0,1091860.0,1406040.0,1746910.0,2123660.0,2519610.0,2925290.0,3342240.0,3765220.0,4186320.0,4595680.0,4998200.0,5396000.0,5788510.0,6174090.0,6552000.0,6920630.0,Million1990US$, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,3013250.0,3577270.0,3637170.0,3760530.0,3903350.0,4111430.0,4304120.0,4447720.0,4561460.0,4685400.0,4805360.0,4939610.0,5086750.0,5230530.0,5369690.0,5499390.0,5623230.0,5748790.0,5878120.0,6009400.0,6138390.0,Million1990US$, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,410287.0,632736.0,696055.0,798165.0,932455.0,1089690.0,1262160.0,1447230.0,1643450.0,1856080.0,2089360.0,2340860.0,2605160.0,2888930.0,3187930.0,3504280.0,3836280.0,4181710.0,4542440.0,4919470.0,5310360.0,Million1990US$, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,549554.0,1041920.0,1306880.0,1540040.0,1843430.0,2237460.0,2683300.0,3152270.0,3649600.0,4156400.0,4665170.0,5199860.0,5776880.0,6398760.0,7048610.0,7719270.0,8418280.0,9143770.0,9902290.0,1.06892E7,1.14929E7,Million1990US$, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,52824.3,99194.9,117328.0,141898.0,180415.0,227685.0,289264.0,367705.0,467795.0,591693.0,741062.0,918620.0,1127890.0,1372900.0,1656470.0,1974310.0,2322250.0,2697730.0,3100540.0,3531120.0,3985190.0,Million1990US$, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,936278.0,848542.0,1009850.0,1067440.0,1120300.0,1317260.0,1523380.0,1720410.0,1898450.0,2043380.0,2161120.0,2283060.0,2442350.0,2610650.0,2775360.0,2922380.0,3054460.0,3181610.0,3310590.0,3440240.0,3559850.0,Million1990US$, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,142548.0,206044.0,241707.0,268321.0,299611.0,364513.0,432721.0,503849.0,578672.0,655488.0,733529.0,814762.0,900855.0,988916.0,1077030.0,1165070.0,1251460.0,1335410.0,1416860.0,1494770.0,1567900.0,Million1990US$, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,158112.0,220826.0,264823.0,256120.0,220391.0,259728.0,302932.0,350729.0,402176.0,458672.0,520102.0,586338.0,656840.0,729024.0,801897.0,875758.0,951691.0,1029300.0,1107440.0,1185020.0,1262070.0,Million1990US$, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,143871.0,270298.0,339262.0,417422.0,490384.0,601346.0,718034.0,839562.0,971958.0,1114910.0,1266610.0,1426150.0,1592930.0,1768380.0,1951400.0,2139880.0,2333610.0,2531500.0,2732800.0,2937600.0,3145350.0,Million1990US$, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,44814.3,89835.5,122881.0,166484.0,227124.0,303314.0,391854.0,492317.0,611803.0,751254.0,913086.0,1100960.0,1318100.0,1565860.0,1845740.0,2160900.0,2510270.0,2894770.0,3315590.0,3774840.0,4271710.0,Million1990US$, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,249698.0,592525.0,724835.0,838931.0,996176.0,1164830.0,1320550.0,1459460.0,1580880.0,1687520.0,1777250.0,1857840.0,1916120.0,1962180.0,2008460.0,2044950.0,2079840.0,2110370.0,2135140.0,2154480.0,2169790.0,Million1990US$, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,309017.0,660885.0,842792.0,1061140.0,1348430.0,1687430.0,2060500.0,2458960.0,2899690.0,3378560.0,3889660.0,4438100.0,5022550.0,5641360.0,6285210.0,6949100.0,7627930.0,8314850.0,9010780.0,9714070.0,1.04215E7,Million1990US$, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,104193.0,227518.0,278726.0,320306.0,370584.0,415979.0,453273.0,488472.0,520570.0,545340.0,561088.0,569555.0,577573.0,604875.0,631993.0,656442.0,677348.0,692692.0,703460.0,710027.0,713157.0,Million1990US$, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,6045970.0,9610760.0,9974570.0,1.10388E7,1.24811E7,1.39847E7,1.53603E7,1.66213E7,1.78152E7,1.89431E7,1.99822E7,2.10265E7,2.21236E7,2.32707E7,2.43717E7,2.54184E7,2.64705E7,2.74725E7,2.8434E7,2.9363E7,3.02551E7,Million1990US$, Population by region scenario,region,1990,2005,2010,2015,2020,2025,2030,2035,2040,2045,2050,2055,2060,2065,2070,2075,2080,2085,2090,2095,2100,Units, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,151294.0,229496.0,261195.0,290437.0,316741.0,343604.0,367627.0,392456.0,410576.0,429462.0,443316.0,462107.0,476063.0,490068.0,497165.0,504095.0,507225.0,509059.0,506716.0,501188.0,498888.0,thous, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,118829.0,155017.0,167629.0,176959.0,183264.0,188973.0,192389.0,195957.0,196326.0,197346.0,196198.0,197353.0,196496.0,195799.0,192472.0,189335.0,185274.0,181315.0,176528.0,171141.0,167362.0,thous, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,81775.0,121174.0,136928.0,151677.0,165392.0,179644.0,192680.0,206396.0,216935.0,227941.0,236490.0,247645.0,256261.0,265086.0,270283.0,275326.0,278494.0,281149.0,281469.0,279880.0,279979.0,thous, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,242102.0,365301.0,416138.0,463145.0,506983.0,553511.0,597213.0,644032.0,681377.0,721429.0,754629.0,795458.0,827750.0,860966.0,882366.0,903332.0,917589.0,929311.0,933346.0,931378.0,935554.0,thous, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,32459.0,38476.0,40306.0,42284.0,44248.0,46035.0,47793.0,49419.0,51120.0,52644.0,54185.0,55535.0,56910.0,58194.0,59485.0,60637.0,61691.0,62614.0,63373.0,63813.0,64537.0,thous, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,20497.0,24511.0,25800.0,27023.0,28193.0,29354.0,30398.0,31369.0,32134.0,32789.0,33249.0,33619.0,33782.0,33805.0,33626.0,33338.0,32937.0,32485.0,32005.0,31569.0,31113.0,thous, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,148809.0,184998.0,194435.0,204306.0,214024.0,222725.0,230726.0,237518.0,244062.0,249492.0,254444.0,257888.0,261134.0,263404.0,265402.0,266451.0,266917.0,266467.0,265156.0,262514.0,261080.0,thous, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,27692.0,32312.0,33890.0,35034.0,35928.0,36793.0,37381.0,37905.0,38121.0,38339.0,38420.0,38625.0,38750.0,38933.0,39066.0,39279.0,39517.0,39809.0,40090.0,40339.0,40612.0,thous, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,59218.0,74803.0,80040.0,85282.0,90334.0,94941.0,99357.0,103322.0,107201.0,110637.0,113958.0,116771.0,119519.0,122087.0,124790.0,127272.0,129651.0,131653.0,133255.0,134171.0,135706.0,thous, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,68789.0,75885.0,79447.0,82854.0,86066.0,88673.0,90951.0,92613.0,94034.0,94770.0,95068.0,94511.0,93632.0,92452.0,91288.0,89927.0,88647.0,87526.0,86876.0,86884.0,86436.0,thous, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,1132110.0,1311550.0,1348170.0,1383800.0,1410530.0,1425300.0,1431640.0,1428890.0,1416580.0,1397880.0,1372580.0,1348110.0,1320740.0,1295560.0,1268210.0,1244390.0,1220870.0,1198400.0,1171820.0,1137900.0,1110670.0,thous, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,33017.0,42812.0,46173.0,49613.0,53046.0,56255.0,59362.0,62192.0,65013.0,67601.0,70122.0,72329.0,74569.0,76569.0,78559.0,80324.0,81888.0,83107.0,84013.0,84421.0,85129.0,thous, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,107609.0,103758.0,103019.0,101885.0,100703.0,99438.0,97948.0,96128.0,94360.0,92284.0,90229.0,87469.0,84694.0,81552.0,78724.0,75762.0,73127.0,70782.0,69246.0,68759.0,67384.0,thous, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,367144.0,390522.0,397492.0,399793.0,399450.0,399602.0,397433.0,395576.0,390287.0,385558.0,378851.0,374128.0,367643.0,361528.0,353602.0,346582.0,339688.0,334216.0,329796.0,327526.0,323323.0,thous, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,66274.0,60393.0,58112.0,56169.0,54639.0,53340.0,52353.0,51407.0,50659.0,49842.0,49115.0,48226.0,47417.0,46457.0,45546.0,44563.0,43657.0,42839.0,42257.0,41995.0,41436.0,thous, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,78877.0,92544.0,96540.0,99401.0,101732.0,103842.0,105109.0,106018.0,105837.0,105321.0,104075.0,102790.0,100877.0,98830.0,96279.0,93658.0,90959.0,88522.0,86559.0,85377.0,83661.0,thous, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,11282.0,12470.0,12907.0,13230.0,13487.0,13789.0,14012.0,14222.0,14283.0,14356.0,14359.0,14438.0,14437.0,14420.0,14298.0,14181.0,14046.0,13947.0,13866.0,13849.0,13731.0,thous, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,849515.0,1094580.0,1214460.0,1291720.0,1352180.0,1412220.0,1456110.0,1494750.0,1521580.0,1544450.0,1561580.0,1569150.0,1569660.0,1559180.0,1544500.0,1519120.0,1487950.0,1449540.0,1411440.0,1377390.0,1340540.0,thous, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,183599.0,226915.0,244436.0,260144.0,273985.0,286206.0,296773.0,305555.0,312463.0,316989.0,319187.0,319010.0,316941.0,312762.0,307010.0,299537.0,290883.0,281212.0,271117.0,260836.0,251721.0,thous, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,123478.0,127773.0,126995.0,126369.0,125521.0,124121.0,122841.0,121335.0,120020.0,118428.0,116732.0,114698.0,112501.0,110071.0,107461.0,104726.0,101995.0,99478.0,97414.0,96155.0,94208.0,thous, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,83833.0,105918.0,113126.0,120655.0,128148.0,135028.0,141600.0,147475.0,153226.0,158294.0,163199.0,167349.0,171337.0,175124.0,179288.0,183320.0,187236.0,190645.0,193443.0,195349.0,198241.0,thous, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,131495.0,188106.0,210542.0,232198.0,253011.0,273172.0,292929.0,312247.0,330563.0,347974.0,363789.0,378471.0,390958.0,401515.0,409339.0,415117.0,418699.0,420752.0,421589.0,422203.0,423371.0,thous, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,111391.0,158375.0,176897.0,196628.0,217070.0,237250.0,256456.0,274732.0,292454.0,309218.0,324798.0,337769.0,348451.0,356695.0,362926.0,366966.0,368883.0,368805.0,366889.0,363691.0,361094.0,thous, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,148256.0,143551.0,141728.0,140765.0,140002.0,139014.0,138297.0,137449.0,137176.0,136642.0,136289.0,135276.0,134314.0,132895.0,131631.0,130142.0,128787.0,127570.0,126946.0,127197.0,126474.0,thous, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,36528.0,48232.0,50653.0,52199.0,53037.0,53816.0,54030.0,54315.0,53777.0,53486.0,52761.0,52783.0,52404.0,52091.0,51076.0,50087.0,48780.0,47487.0,45931.0,44188.0,42802.0,thous, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,20816.0,27962.0,30410.0,32920.0,35377.0,37693.0,39962.0,42038.0,44078.0,45934.0,47747.0,49354.0,50952.0,52366.0,53702.0,54820.0,55803.0,56552.0,57038.0,57138.0,57412.0,thous, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,58813.0,75252.0,80197.0,85187.0,90001.0,94392.0,98557.0,102217.0,105783.0,108849.0,111762.0,114132.0,116441.0,118534.0,120730.0,122702.0,124506.0,125928.0,126938.0,127317.0,128295.0,thous, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,154854.0,215912.0,236380.0,257436.0,278747.0,299724.0,319872.0,338744.0,356248.0,371702.0,385175.0,395879.0,404178.0,409812.0,413272.0,414161.0,412870.0,409378.0,404437.0,398452.0,393589.0,thous, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,42869.0,48138.0,48501.0,48866.0,48896.0,48574.0,48264.0,47965.0,47528.0,47119.0,46495.0,46156.0,45559.0,45025.0,44054.0,43149.0,42102.0,41194.0,40297.0,39629.0,38805.0,thous, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,285383.0,364841.0,393017.0,420307.0,445659.0,468667.0,489436.0,507502.0,522855.0,535346.0,545074.0,552587.0,557962.0,561072.0,561763.0,560131.0,556367.0,550677.0,542972.0,533062.0,524825.0,thous, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,20151.0,22690.0,23658.0,24024.0,24306.0,24574.0,24841.0,25091.0,25337.0,25557.0,25773.0,25940.0,26092.0,26191.0,26257.0,26251.0,26191.0,26068.0,25917.0,25747.0,25686.0,thous, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,250284.0,299839.0,321813.0,336377.0,349743.0,365229.0,379129.0,393438.0,407489.0,421987.0,437264.0,450786.0,464583.0,476709.0,489862.0,501173.0,512211.0,521959.0,532466.0,544158.0,554807.0,thous, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,152395.0,227408.0,258513.0,292077.0,327250.0,362941.0,398625.0,433737.0,467664.0,499832.0,529721.0,557088.0,581788.0,603820.0,623231.0,640003.0,653877.0,664853.0,672948.0,678523.0,681660.0,thous, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,119694.0,153606.0,165907.0,177958.0,189345.0,199607.0,208611.0,216569.0,223623.0,229682.0,234438.0,237916.0,240134.0,241247.0,241278.0,240381.0,238841.0,236805.0,234438.0,231697.0,228677.0,thous, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,82371.0,120072.0,135522.0,152533.0,170880.0,189754.0,208927.0,228106.0,247099.0,265290.0,282583.0,298546.0,313172.0,326617.0,338819.0,349556.0,359014.0,367193.0,373806.0,378910.0,382552.0,thous, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,243864.0,361978.0,411864.0,465760.0,523803.0,584660.0,647570.0,711776.0,776117.0,839639.0,901711.0,958956.0,1011580.0,1060810.0,1106110.0,1146880.0,1182890.0,1213720.0,1239540.0,1260930.0,1278300.0,thous, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,32642.0,38681.0,40412.0,42045.0,43570.0,44939.0,46155.0,47219.0,48142.0,48854.0,49377.0,49702.0,49834.0,49830.0,49664.0,49350.0,48902.0,48392.0,47830.0,47222.0,46575.0,thous, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,20494.0,24538.0,26637.0,28751.0,30839.0,32898.0,34842.0,36688.0,38490.0,40260.0,41973.0,43599.0,45115.0,46409.0,47493.0,48372.0,49028.0,49446.0,49598.0,49468.0,49087.0,thous, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,149650.0,185987.0,194946.0,203150.0,210743.0,217420.0,222819.0,226941.0,229841.0,231531.0,231868.0,230802.0,228665.0,225548.0,221581.0,216853.0,211583.0,205939.0,200123.0,194262.0,188415.0,thous, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,27701.0,32283.0,34017.0,35858.0,37764.0,39641.0,41384.0,42992.0,44540.0,46068.0,47585.0,49053.0,50465.0,51700.0,52762.0,53647.0,54322.0,54757.0,54945.0,54831.0,54424.0,thous, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,59547.0,75197.0,80249.0,84810.0,88972.0,92714.0,96000.0,98782.0,101032.0,102765.0,103957.0,104631.0,104798.0,104693.0,104354.0,103763.0,102967.0,101952.0,100784.0,99501.0,98155.0,thous, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,68820.0,76041.0,80114.0,83909.0,87178.0,89762.0,91693.0,93149.0,94260.0,94934.0,95059.0,94673.0,93894.0,92923.0,91756.0,90386.0,88831.0,87186.0,85550.0,83963.0,82391.0,thous, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,1151350.0,1314880.0,1348930.0,1371370.0,1387490.0,1393730.0,1389580.0,1374530.0,1349140.0,1314940.0,1273180.0,1225640.0,1174180.0,1120900.0,1067620.0,1014690.0,962133.0,910773.0,862210.0,817448.0,776501.0,thous, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,33203.0,43041.0,46295.0,49332.0,52233.0,54915.0,57328.0,59422.0,61225.0,62735.0,63900.0,64733.0,65297.0,65565.0,65588.0,65372.0,64912.0,64230.0,63408.0,62472.0,61436.0,thous, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,107019.0,103910.0,103663.0,103391.0,102964.0,102312.0,101330.0,99994.0,98497.0,96966.0,95389.0,93681.0,91763.0,89513.0,87014.0,84430.0,81917.0,79559.0,77374.0,75327.0,73350.0,thous, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,364443.0,387381.0,397391.0,405921.0,412619.0,418915.0,424667.0,429939.0,434772.0,438964.0,442269.0,444611.0,446215.0,446769.0,446694.0,446140.0,445013.0,443217.0,440454.0,436701.0,431684.0,thous, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,66269.0,60516.0,58617.0,56930.0,55407.0,54068.0,52859.0,51796.0,50887.0,50060.0,49269.0,48515.0,47808.0,47019.0,46168.0,45253.0,44284.0,43280.0,42265.0,41238.0,40174.0,thous, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,78332.0,92029.0,96668.0,100913.0,104851.0,108429.0,111557.0,114198.0,116349.0,117989.0,119114.0,119687.0,119765.0,119389.0,118570.0,117330.0,115732.0,113873.0,111903.0,109847.0,107695.0,thous, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,11199.0,12370.0,12904.0,13433.0,13932.0,14455.0,14972.0,15458.0,15912.0,16345.0,16763.0,17159.0,17523.0,17822.0,18063.0,18256.0,18403.0,18498.0,18521.0,18467.0,18336.0,thous, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,873785.0,1140040.0,1224610.0,1307930.0,1388090.0,1461770.0,1528600.0,1590440.0,1645880.0,1694570.0,1733800.0,1762640.0,1779300.0,1784820.0,1781250.0,1768800.0,1747800.0,1718940.0,1684430.0,1644920.0,1602940.0,thous, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,184346.0,227303.0,239871.0,251396.0,261705.0,270395.0,277364.0,282723.0,286314.0,287958.0,287522.0,285512.0,282010.0,277241.0,271456.0,264911.0,257844.0,250451.0,242867.0,235195.0,227518.0,thous, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,122251.0,126393.0,126536.0,126105.0,124813.0,122850.0,120410.0,117670.0,114754.0,111708.0,108609.0,105523.0,102415.0,99095.0,95619.0,92122.0,88690.0,85172.0,81686.0,78276.0,74941.0,thous, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,84307.0,106484.0,113423.0,119973.0,126183.0,131812.0,136747.0,140908.0,144298.0,146898.0,148719.0,149772.0,150033.0,149955.0,149685.0,149196.0,148421.0,147341.0,145998.0,144559.0,143066.0,thous, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,132332.0,190129.0,215480.0,239992.0,263092.0,285231.0,306336.0,326606.0,345934.0,363626.0,379267.0,392680.0,403763.0,412618.0,419368.0,423999.0,426714.0,427809.0,427591.0,426374.0,424121.0,thous, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,111845.0,158645.0,173593.0,190015.0,207341.0,224144.0,239684.0,254203.0,267979.0,280898.0,292577.0,302301.0,310048.0,316184.0,320897.0,324545.0,326985.0,328462.0,328660.0,327939.0,326374.0,thous, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,148244.0,143843.0,142958.0,142671.0,141969.0,140910.0,139632.0,138489.0,137792.0,137238.0,136715.0,136087.0,135424.0,134504.0,133427.0,132158.0,130636.0,128882.0,126968.0,124905.0,122622.0,thous, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,36794.0,47793.0,50133.0,52493.0,54797.0,56845.0,58585.0,60028.0,61254.0,62250.0,63045.0,63631.0,64042.0,64183.0,64028.0,63591.0,62884.0,62019.0,61000.0,59823.0,58484.0,thous, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,20934.0,28112.0,30490.0,32734.0,34835.0,36795.0,38593.0,40166.0,41510.0,42627.0,43510.0,44171.0,44616.0,44840.0,44835.0,44615.0,44235.0,43706.0,43049.0,42283.0,41433.0,thous, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,59145.0,75654.0,80408.0,84705.0,88621.0,92144.0,95180.0,97666.0,99619.0,101013.0,101846.0,102145.0,101963.0,101499.0,100796.0,99862.0,98695.0,97324.0,95805.0,94215.0,92587.0,thous, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,155484.0,216282.0,231965.0,248779.0,266253.0,283166.0,298953.0,313432.0,326434.0,337659.0,346965.0,354309.0,359633.0,363269.0,365412.0,366284.0,365976.0,364597.0,362296.0,359282.0,355745.0,thous, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,42980.0,47044.0,48184.0,48906.0,49378.0,49641.0,49661.0,49342.0,48630.0,47560.0,46183.0,44598.0,42906.0,41155.0,39392.0,37655.0,35975.0,34371.0,32855.0,31436.0,30044.0,thous, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,287781.0,365562.0,388124.0,409493.0,429717.0,447641.0,462887.0,475280.0,484828.0,491539.0,495416.0,496992.0,496510.0,494066.0,489977.0,484268.0,477214.0,469124.0,460305.0,451064.0,441509.0,thous, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,20233.0,22728.0,23216.0,23216.0,23216.0,23216.0,23216.0,23216.0,23216.0,23216.0,23216.0,23216.0,23216.0,23216.0,23216.0,23216.0,23216.0,23216.0,23216.0,23216.0,23216.0,thous, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,256971.0,300712.0,314242.0,326649.0,339508.0,352372.0,364622.0,376039.0,386598.0,396256.0,405392.0,414503.0,423721.0,432406.0,440154.0,446684.0,451824.0,455629.0,458294.0,459938.0,460474.0,thous, Primary energy with CCS (Direct Equivalent) scenario,region,fuel,1990,2005,2010,2015,2020,2025,2030,2035,2040,2045,2050,2055,2060,2065,2070,2075,2080,2085,2090,2095,2100,Units, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,a oil,0.3410638321055842,0.5294176238092931,0.7293950104371278,1.1703571001738724,1.2953224803966001,1.4102265280725033,1.5197411764146496,1.627101675856355,1.7127684910586953,1.8203782330172193,1.9974516867016234,2.2715901694376095,2.5843679540542177,3.0117551829979825,3.37906916817403,3.748281132682454,4.201780021541344,4.680405691837407,4.944243218654308,5.083793617506997,4.897111950906635,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,a oil CCS,0.0,0.0,0.0,0.0,0.0,0.022231155087953442,0.041252830770784926,0.05855400229572289,0.07380826398995582,0.09321765097934112,0.11339574889489565,0.1467648825300473,0.19367659232736373,0.23956860084088172,0.2998960329416802,0.3551756197119041,0.39811006780925234,0.4788567554501516,0.4940070032759338,0.4439272099146089,0.32752470039804965,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,b natural gas,0.0,0.01784059843066816,0.0238143516653842,0.07331906007105982,0.13164300858951913,0.22959659253282463,0.35303877476968054,0.5198714641780345,0.7182538706777744,0.9581135682834617,1.2069440410578904,1.416881470384301,1.5983575219035264,1.7911301002528892,1.9365807561012758,2.0775527679117523,2.2320400890171763,2.358575325364381,2.4790115120900884,2.6421767306969812,2.87805331643585,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,b natural gas CCS,0.0,0.0,0.0,0.0,4.6769767370483E-4,0.004028903105860066,0.010115250979449517,0.01985596094434189,0.03432128349825501,0.056752528891146334,0.08314974082283454,0.11762113301550638,0.1625891776512161,0.20627981225194783,0.2730688362804747,0.34980899578132296,0.42442323439615387,0.5472605593450259,0.6630254979432952,0.7719248451589596,0.9099887563988732,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,c coal,0.00864167966373384,0.010928725616987541,0.01576316687508165,0.04098555634990342,0.058742852667236306,0.08565122302183335,0.11194190265795738,0.14066686206087628,0.16659998900786846,0.19314704664069074,0.2139735405953045,0.21635764751627737,0.21087491288783158,0.19771466967782111,0.09495458432163507,0.06105647723229276,0.04048821237522595,0.017039865793071807,0.009669794286404958,0.007209525283623522,0.005815528591719317,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,c coal CCS,0.0,0.0,0.0,0.0,0.00397708986695887,0.016839094436066217,0.034211627027710995,0.062109258560455446,0.10064508487071407,0.15398772082054893,0.2133769974798248,0.27442294189262856,0.3372574193861516,0.38963137576458556,0.42883020916986075,0.46188953931694654,0.4759097206970254,0.4789806898459172,0.39453429884525937,0.41494074777852336,0.4513006041332912,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,d biomass,0.5984681648574127,0.833701747427757,0.9626097907400377,1.3825010988663362,1.798021009366977,2.1868003285909117,2.6078938114660155,3.0435446615361514,3.4498544693154614,3.9180968635739566,4.374885819650083,4.780146479198593,5.083119513435428,5.31753735150677,5.044649108800797,4.4796670131711815,3.750689542395493,2.138909449634443,1.398298755311048,0.9303047431933454,0.5305470093909388,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,d biomass CCS,0.0,0.0,0.0,0.0,0.00916163584512962,0.031142297994954642,0.07075097795492559,0.14313939756525915,0.2590349595135219,0.44355375365868216,0.6751164768040613,1.0089512493465234,1.4711569715387274,2.064037680454102,2.9663368394255567,3.89522013637984,4.757956143014145,5.47761936238674,5.9534119042450255,6.251944388442084,6.17917146764736,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,e nuclear,0.0,0.0,0.0,0.0015610942259620649,0.0024694594101931917,0.007761895186977172,0.019791561856914813,0.03965255908428172,0.0654953576184777,0.1057985467172526,0.15947217508845246,0.2360738926042275,0.34117939886130777,0.4704382476588876,0.6361054619484368,0.8376308958068562,1.0544194096402706,1.3550834522121669,1.6797110698091469,2.0041633989176253,2.3695961310204163,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,f hydro,0.02195964259982854,0.03539187610149868,0.05392175202793784,0.07124137670598645,0.0888814193583656,0.106466157472036,0.12406492833376878,0.1417118894792968,0.1766508912200255,0.2117779873198177,0.24702582209438834,0.2820482089508421,0.3174284971850981,0.3530170035190339,0.3885620285830959,0.4243759080696899,0.4604912776787136,0.49723724840811,0.5348529637690301,0.5738088931609251,0.575126381464257,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,g wind,0.0,1.109999250468233E-5,2.3270065608032954E-4,0.010142839625951658,0.019530619818062294,0.03450995886211292,0.06028404181111741,0.09775381557656612,0.1485824550842756,0.22134358191822906,0.3242854353001087,0.4796767670692973,0.7004514902364376,0.9588154004033976,1.3132413123205335,1.7119073094598969,2.0878231117668298,2.5647971959783282,2.9859676902269476,3.3256728347826106,3.714871495859098,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,h solar,0.0,3.599997569088593E-6,7.200010299835281E-6,0.00824164223469344,0.01614564382831142,0.026300334062841532,0.04138433649248364,0.06412168465462452,0.09758653220792111,0.14107741957303113,0.20335683939960017,0.2918636645918523,0.4124945164056107,0.5727859667102699,0.805984404090528,1.1044560294076025,1.4484282170043707,1.8880568096830717,2.336712030378495,2.78410950490671,3.2859511939055723,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,i geothermal,0.00117360693231624,0.00361079756179497,0.00529561493055005,0.019755126466286247,0.02849050285503097,0.03860676241149018,0.05124220142194432,0.06484147670423186,0.07419289322201335,0.0743343295998489,0.074477234951568,0.07452947829705761,0.07465989878214314,0.07480517024438248,0.07491279818152263,0.07505049399607225,0.07517938736230131,0.07544463991661539,0.07576908262623544,0.07623167722929663,0.0764074801634296,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,j traditional biomass,1.377214,2.0188930000000003,2.5967089999999997,2.6376340000000003,2.688501,2.717759,2.7199199999999997,2.717129,2.692078,2.651425,2.554599,2.4108400000000003,2.206937,1.9891999999999999,1.763464,1.5552759999999999,1.352449,1.185773,1.021474,0.876924,0.790038,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,a oil,2.2111559986838065,3.037532367474579,3.589360144254038,4.345318202307877,4.47136819395166,4.586932716163755,4.5514771133758956,4.374358799669123,4.003759622817952,3.595404641879326,3.2903800278956923,3.1911176846742046,3.13125372277608,3.183141133545327,3.1840229222204406,3.14715307181616,3.1569897869842625,3.180222006891217,3.0336830839092643,2.8337611789047172,2.502072444720467,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,a oil CCS,0.0,0.0,0.0,0.0,0.0,0.05258949791449296,0.08801338337492706,0.10434890028045302,0.11049495663143025,0.1132205691638592,0.1145924214374028,0.12600383998336545,0.1553137013912817,0.1729327830701203,0.19223958257398274,0.1987084635311111,0.1975561307509274,0.21411189072918138,0.19529386409149826,0.15060003523962331,0.09623998293271505,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,b natural gas,1.0127169955784043,2.470169065609815,3.0313050884484247,3.7923501248148557,4.293245979299109,4.687113312439125,5.001001915849959,5.313731932596389,5.532707089266926,5.7635494915443815,5.915041382912549,5.90712784858177,5.562177303801002,5.321138951675682,4.999981278068972,4.68082162884364,4.384471315100906,3.8879061623576874,3.520157270018794,3.356339736471759,3.4910677894363795,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,b natural gas CCS,0.0,0.0,0.0,0.0,2.1953205208426E-4,0.08764072542353611,0.21790126098322202,0.35555040785527997,0.4860655532066408,0.6126632770640507,0.723492664015978,0.8418138220456508,1.031944600338572,1.195796636769926,1.3184420231707863,1.4260882793183132,1.5127862539098085,1.690262304120643,1.8463069251354884,1.9561961468940285,2.0763719637544384,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,c coal,0.10942819817387547,0.204752469389522,0.1665966528091854,0.21956853354951544,0.24361203631443484,0.28972331163919496,0.32820459570917543,0.37028849509446243,0.40065059797032726,0.4244172966576532,0.4310631995593507,0.40122087744260193,0.36076693840500645,0.3108622205676712,0.135703310019935,0.07004814104880444,0.03704122795705318,0.011922083776085191,0.005411537428745691,0.0033919429726369118,0.002338316767500886,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,c coal CCS,0.0,0.0,0.0,0.0,0.00434276082290515,0.023227272176241986,0.04693263996421401,0.08883674265265576,0.1469257901211758,0.21433728943559321,0.26547959997251114,0.2939979223067595,0.3101604416950528,0.3081395237328932,0.2880467094042406,0.26605623960067304,0.24197594224602356,0.22259435732877525,0.16588662063945994,0.1598725961364432,0.16427602543625214,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,d biomass,0.0302875501,0.0503842,0.0942316,0.11759591791212023,0.19314947371796848,0.2825586326309117,0.37738085467514254,0.5063131781732537,0.6797283262094409,0.8829449760817912,1.0284981638677784,1.1167231736084913,1.1604881331844157,1.160491822290743,1.0909157690279105,0.9508460138138394,0.6627474864760583,0.11071164914568515,0.06133653596166102,0.04246510705936231,0.028503496300665336,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,d biomass CCS,0.0,0.0,0.0,0.0,0.010882455597582791,0.04424288254555978,0.09645806187312385,0.20320186379717142,0.38137278662363105,0.6253210644277111,0.842194144928151,1.0517737225804271,1.2804886811477159,1.4879358643839335,1.8249846881725316,2.162136842945107,2.4952799096625142,2.73128235589957,2.8358149591880237,2.84817249857884,2.6694830642834426,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,e nuclear,0.0,0.0,0.0,8.712757934835801E-4,0.0016806749348412839,0.005880549962357946,0.01621234783464278,0.031449530930299195,0.04795875618115472,0.06675297712851525,0.0870747443014364,0.11105238723947584,0.151989779890914,0.1938709640774425,0.24174800245785058,0.29597226092835904,0.350163999715939,0.4185974839016984,0.4832186864466079,0.5388841172358011,0.6039406793009705,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,f hydro,0.0407969355450152,0.0515904106172327,0.06027726138445204,0.06322469810704573,0.06621414130395832,0.06919743527395311,0.07218430429063791,0.07517117291134928,0.08109697148950992,0.08702678902349001,0.09296460067286479,0.09890101010688739,0.1048524953584597,0.11081765910226445,0.11677828311819176,0.12273648232009028,0.12869405771171935,0.1346591836227158,0.14064228889391742,0.14664622412062536,0.14667274671933972,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,g wind,0.0,0.00287842677737274,0.008214207514600358,0.01770584996522604,0.031202726753395915,0.047007134688728094,0.0749270489348906,0.10998078617801707,0.1410933243987613,0.17775351518267302,0.21533403398270265,0.2645191568059467,0.3577128534272549,0.45077253267435824,0.5724230383043596,0.7206344692942874,0.8712560558921278,1.079522751501294,1.2395533151527816,1.3713211975959199,1.520227604558005,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,h solar,0.0,0.0,0.0,0.00481428821336465,0.014071960422355121,0.02778068037221176,0.04935589433896557,0.07672267497620379,0.10590947662726165,0.13195266449692158,0.16040234743751,0.20621364789394067,0.27002014596063584,0.3396087929814518,0.4335105904160674,0.523899595346807,0.5990473289206694,0.6786059456543891,0.7503535576506716,0.8177367258726004,0.8976087190047966,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,i geothermal,0.0,0.0,0.0,0.0072640494299788996,0.016615097619800612,0.0257892610827022,0.03836105956054632,0.05071606631153138,0.06163057807945446,0.06629986359279101,0.06951115327776038,0.07264597388139722,0.07266390605137239,0.07268851165729309,0.07270489965443887,0.07271658101556858,0.07272747798984446,0.07273731654488348,0.0727534721881544,0.0727760291215554,0.07277432388839108,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,j traditional biomass,0.062738,0.0925072,0.1004378,0.10180449999999999,0.10453390000000001,0.10685069999999999,0.1086482,0.11060299999999999,0.11238930000000001,0.1144512,0.1167692,0.12016389999999999,0.1242266,0.12899187,0.13455606,0.13997283000000002,0.14526929,0.15059102,0.15635052,0.1626409,0.16888145000000002,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,a oil,0.2487467343048265,0.3505672376792083,0.5241692762538934,0.6634808073044667,0.7353424664578557,0.7781839933283508,0.8057653579884193,0.822427986272119,0.8288371389732958,0.8550980649721721,0.9242148586265319,1.0438491315964158,1.1644548120776934,1.334443554198368,1.4695105149764587,1.5892421984967775,1.750102266482916,1.9063519088319258,2.0197918435483624,2.116045648851507,2.093595743017335,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,a oil CCS,0.0,0.0,0.0,0.0,0.0,0.01776369376917201,0.035038851374857516,0.04955717601187402,0.06272307260091509,0.08121888307973507,0.10397489382833976,0.13922005204943255,0.2002357323923234,0.2697347971876283,0.36604279990975785,0.4606401264216152,0.5285565520206459,0.6145128891894776,0.5970477706052137,0.49817078470640086,0.33672256554481306,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,b natural gas,0.01846021,0.0407854529441145,0.0622221625502205,0.14088492116392048,0.202668391006944,0.27155401128284323,0.3526742428598274,0.45652032689270977,0.5754213066614128,0.7230886469266747,0.8847375021915989,1.0290139187019312,1.13564238509447,1.2688977605334157,1.3696378566455543,1.449976104796033,1.5287412228064652,1.531345219220774,1.5398791324694283,1.6138659868305856,1.8835404442653367,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,b natural gas CCS,0.0,0.0,0.0,0.0,2.1506336483202E-4,0.0076717566784861154,0.020405132196918967,0.037505329843948186,0.059804704673670314,0.09334060539754634,0.13511032220809321,0.18964899163997356,0.2806068940257089,0.3910937339008245,0.5579442528039227,0.7706302822048816,0.9757030538313641,1.2537577084442162,1.5038552108951257,1.7313720462099351,1.971781096222784,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,c coal,0.17708672863824543,0.12864235948318312,0.10955303438544402,0.20478122544022595,0.24275672175015314,0.27629951757825094,0.3139089277148564,0.35446951858577697,0.3876971082201564,0.42731191133237206,0.4690658415178081,0.4895018609279538,0.5059225368045104,0.5057407328744579,0.39690441582227326,0.2540379144865266,0.16349545311369157,0.061808830888505695,0.029379571235804824,0.01781649800137891,0.010827014577507073,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,c coal CCS,0.0,0.0,0.0,0.0,0.0022876456641234503,0.009104717240456067,0.018511188450354064,0.032776595027915675,0.053907296681889955,0.08475332450026327,0.12246934807909418,0.17044949215575417,0.24372873872504872,0.3417985925414568,0.4744117167609453,0.6426253410450976,0.7926000359941611,0.9545861030597885,1.042914319929423,1.14216171840587,1.2513800675493456,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,d biomass,0.37663409499999995,0.616619908,0.7085608969999999,0.7295406079533351,0.9407564051131146,1.098463651966548,1.22867871204013,1.3465686449440726,1.4640676718274575,1.6173475652461895,1.7848394249516015,1.9546304535308425,2.059770909639831,2.1333680937267063,1.9979426657030268,1.7396925790049034,1.40790955677928,0.7659426714185177,0.4845895750906513,0.31205520022182504,0.1686396917194015,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,d biomass CCS,0.0,0.0,0.0,0.0,0.005302930177503272,0.015573816626876682,0.03351835686144079,0.0660378847048387,0.12105549263268012,0.20858243768800422,0.31850329927534154,0.47794423082154186,0.70312731915681,1.024565944105292,1.5738588832298213,2.162101705900196,2.7082374082012155,3.1776901003653553,3.467652207787343,3.610885937931723,3.5191801320145575,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,e nuclear,0.0,0.0,0.0,1.1935683121088938E-4,2.8680204254821187E-4,8.132633821397019E-4,0.0021581904620427386,0.004546022274804569,0.00781275533261476,0.013334573727157871,0.02178486790629295,0.03426344723909019,0.056728518941076604,0.08900030428585992,0.13636519935251212,0.20279778654801947,0.27810579747047937,0.38375962584611095,0.5044679239273396,0.6382669980132644,0.7871002675706404,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,f hydro,0.054906318605825566,0.12279986282803355,0.14380348113770627,0.15219010165779623,0.1607607350412313,0.16930937078512123,0.1778385398370851,0.18636878756306044,0.2032761194430284,0.2202506991190447,0.2373208740687664,0.2545088011627994,0.27181452506934634,0.28920573818554146,0.3065198683954247,0.32368555059350373,0.340891161046223,0.35815624876021485,0.3756222455878908,0.3933464825838281,0.3936284513183923,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,g wind,0.0,2.399997319114938E-6,3.550001877597253E-5,5.206115508476359E-4,0.0011576964317187282,0.0020342518209678128,0.0038370673054587295,0.006723828062064037,0.01088070683861023,0.017883121569994376,0.029189065198387796,0.046661208947952955,0.08053483837700467,0.12879194470939945,0.21033237330502083,0.32829357219355687,0.46139578169528095,0.6485080720759717,0.8438277700128841,1.0506328327406083,1.2723691637860044,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,h solar,0.0,0.0,0.0,8.585468241682096E-4,0.0026962091801063,0.0057560670178339254,0.010295856165768443,0.017090799774720257,0.028145731972639247,0.04565387020330439,0.07182872041287938,0.11178214836854285,0.16905819381636053,0.24428214962321898,0.3567713413549352,0.49866177955429364,0.667373255090981,0.8781599522772285,1.096027233230973,1.3086708455886757,1.5365108808719545,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,i geothermal,0.0,0.0,0.0,0.001160127411356751,0.002395717775410497,0.004041776397809771,0.00713035970638289,0.01144738285939788,0.01676040709298113,0.023549928949963612,0.03254700207430619,0.04350117167988294,0.05887736799772281,0.07133661561465159,0.0714359036017445,0.0714939103806966,0.07156468715718603,0.07162548222251058,0.07173300396481574,0.07188204786100935,0.07194953579775723,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,j traditional biomass,0.9525201,1.331009,1.516337,1.529416,1.567803,1.5992030000000002,1.61472,1.6320599999999998,1.6431099999999998,1.644114,1.627106,1.6196389999999998,1.585484,1.537592,1.431367,1.2865229999999999,1.133416,0.9969779999999999,0.855201,0.718582,0.627737,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,a oil,0.7422939129088946,1.230899331501618,1.2428750477516777,1.5765713668883157,1.752709576752904,1.9583449970461202,2.1613873481103516,2.363530988665406,2.5432802952277918,2.7843047035405526,3.148724712857286,3.6671658547825197,4.295661598873864,5.06554488122821,5.7189244648170146,6.344412738848235,7.1011131962168506,7.8524814508264775,8.246148006211746,8.422132910827333,8.036423164571573,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,a oil CCS,0.0,0.0,0.0,0.0,0.0,0.0356857203767436,0.06709627007161037,0.09302334682158346,0.11184838635834324,0.13649036356338767,0.16839100970285997,0.22108757960087172,0.2984729108765345,0.38494247958186534,0.5125487010226917,0.6381916637901593,0.7381988992610061,0.9114925158791755,0.925177426656743,0.7926563814122836,0.5625318635583334,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,b natural gas,0.14069156655765988,0.4126739344274451,0.4003274016690722,0.5792522161258569,0.7539786237122246,1.0159016227597994,1.3466135126617267,1.7677851713072503,2.225849408704673,2.7743728549850566,3.3898699082552297,3.9739028255282647,4.537439589049004,5.1562067414277175,5.638386246096953,6.084787983279235,6.491256959948636,6.496485808939701,6.420504651910915,6.473842018933634,6.785783018322388,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,b natural gas CCS,0.0,0.0,0.0,0.0,5.8092404529032E-4,0.0407288377412964,0.10682784237619324,0.19384559618210548,0.29081917653194006,0.4127641098366411,0.5606037508217699,0.7623743621294305,1.0507593491721647,1.4012802697891809,1.922809421569854,2.6059371540877785,3.335749189403002,4.4385027434868745,5.517875089235466,6.48688244268993,7.4797346412348675,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,c coal,0.01605138244714842,0.023705822029246044,0.03241407142944298,0.049267551912945635,0.06796625065456117,0.11205161833093687,0.15562437097067927,0.20296879778833513,0.24226449556215626,0.2801049577810192,0.3112326141154586,0.3099541066144517,0.2992994376358238,0.2796283925051751,0.12039948255994716,0.09078412207569901,0.06895105364342947,0.03876924581964304,0.02711377647963061,0.02201357480326284,0.018038706281832833,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,c coal CCS,0.0,0.0,0.0,0.0,0.00563142941659704,0.028114546494227982,0.05886904835512409,0.1060699555359203,0.16723633562887344,0.2467871295301927,0.33718024329587604,0.4349512082553412,0.5428753468193083,0.6377232721346099,0.7066560724784964,0.7666706405406705,0.798816972227924,0.8174612690783625,0.660144110622834,0.6950460621166339,0.750196015199234,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,d biomass,0.8578774189892077,1.3382216910405385,1.4926864957339667,1.9334816646892747,2.510185711465463,3.1817824735018654,3.9158957707457343,4.687874395201696,5.439031153893987,6.290777369913961,7.165563013910044,8.035048801118784,8.782623422924965,9.441553029214237,9.310387789291394,8.585700429828396,7.465591611827507,4.667296576191269,3.213905355672119,2.1960168766347437,1.2644310629458553,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,d biomass CCS,0.0,0.0,0.0,0.0,0.013021765956375898,0.04976991005070346,0.11674590334622212,0.23457645154998283,0.4114589131310606,0.672726860841363,1.0038109932099655,1.5039049135627978,2.2410204102914144,3.2044816880121867,4.701942124715814,6.243540767880899,7.7247663633064345,8.938758749960607,9.678789078020833,10.101337104695588,9.825250408153543,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,e nuclear,0.0,0.0,0.0,1.601732940770405E-4,5.885347187706768E-4,0.0024373940105431044,0.007346839839988725,0.016220888228247302,0.027685290936575655,0.04453902293641663,0.0694312850338646,0.10823591659432112,0.17015037654009812,0.2672006630880622,0.4066927236801576,0.6127763739828844,0.8755215092961186,1.3028179846865384,1.831290150374338,2.413807648891652,3.078638519432683,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,f hydro,0.08142536723038464,0.10931049057146054,0.11379168471091616,0.1397872929235683,0.16613652542214524,0.19243671845103055,0.21871299041683695,0.2450329640539762,0.29728439885131624,0.34981784163629254,0.40260800944551267,0.45551167789070685,0.5090372173019372,0.5630925940261169,0.6174116517674336,0.6716074131332295,0.7258704871664744,0.7814350025326781,0.8382027567168336,0.8963268861425765,0.8993574609732733,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,g wind,0.0,1.1700052508343796E-5,1.7689950985448085E-4,0.00137970338841037,0.003961980482722751,0.009392660763165323,0.020814547202476448,0.03909871927606398,0.0633544172822056,0.09933685374335766,0.15289715737450293,0.2347797692946958,0.36444351708643224,0.5474266173072811,0.8535242785817706,1.2986682914397447,1.8434111538708697,2.6706382901209746,3.5766749507887545,4.479551194099654,5.444963177588118,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,h solar,0.0,1.4400064625636214E-5,1.07999700759009E-5,0.0017615017654189942,0.005805333294452827,0.013683579705878888,0.026263349496808603,0.04561245074731652,0.07228347760387678,0.10760947313439137,0.16043057519091544,0.25100013598683507,0.38762873210790744,0.5814739777044368,0.8807596504366447,1.2574312751973409,1.693004272802771,2.304767425394598,3.005132849243427,3.767602434074554,4.706347667600983,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,i geothermal,0.0,0.0,0.0,0.00157313556287592,0.004451014372892559,0.01015694195033983,0.020525234561622772,0.03437522333714005,0.04960315276670181,0.06704725868553399,0.08751230162829803,0.11126841671487206,0.13873352125650004,0.14678241962167146,0.14721427816539287,0.14755231387613335,0.14785524448521115,0.14835112205443096,0.14900399091255706,0.14980823591075226,0.1503164920960255,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,j traditional biomass,3.31438953,5.054457299999999,5.700202,6.025495599999999,6.2982372,6.5069148,6.6475405,6.7743008,6.8637315,6.9211774,6.902689,6.9185102,6.8416563,6.7210987,6.5924985,6.4358078,6.2279676,6.0749866,5.8435938,5.3654107,4.929714499999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,a oil,0.8781008011495126,1.1268098650533915,1.3443824519425958,1.719381325489995,1.797030104792842,1.8404660803477007,1.8472481976296526,1.7978175527386164,1.6901691053491694,1.5486876087161965,1.4548594662317098,1.4058472896832628,1.3809270513165035,1.3917228594477482,1.3696186813354798,1.3057654199933741,1.2542673094685073,0.9547649907883694,0.7412592078433716,0.42806242455669913,0.08092704300693493,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,a oil CCS,0.0,0.0,0.0,0.0,0.0,0.018289323765603938,0.036478467749522785,0.04520916261052757,0.05214393764999757,0.054797961711623135,0.057852711706805435,0.06493529303005065,0.08442504617904437,0.09660696576130198,0.1173613764301725,0.12862037817883495,0.13593790262329727,0.12841013843120314,0.10550703880595945,0.05638912400075413,0.00817835145368447,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,b natural gas,0.788218538878429,1.43436027639146,1.5605144539344895,2.073084667584462,2.2609269525104247,2.4137821819239385,2.56621404277718,2.7080212625436224,2.8397957282435624,2.9538340523243085,3.06422220711472,3.0423923547765774,2.840961535016765,2.723019824751207,2.5407438038231,2.3358176907675245,2.1599600762743556,1.7824861678687347,1.5619221777115198,1.5521473915693642,1.8211846559107097,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,b natural gas CCS,0.0,0.0,0.0,0.0,1.6432814533066E-4,0.034175446130598405,0.09671348395634145,0.16508049907370306,0.24118025235714402,0.31608771152242754,0.3896634131842326,0.4699256028687058,0.6056386961380248,0.7276526945276643,0.866350289465987,0.9992320332415532,1.1193742198748244,1.261501468613772,1.3996048518691269,1.511535526324305,1.6535794143227722,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,c coal,0.03951589153682511,0.036794871423530516,0.04123145651605128,0.06611988394882042,0.08123751251091907,0.09963797930714502,0.11933523695743667,0.13983443331342238,0.15759254078513937,0.17123095272886513,0.17868187142625502,0.1670540937880614,0.14990890953676367,0.12559174222934097,0.04644347192868496,0.021095855809872756,0.01080404221274792,0.003563887842137,0.0017969600224605614,0.0012367514625474378,9.142322184654308E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,c coal CCS,0.0,0.0,0.0,0.0,0.00271510761870926,0.011537458264482632,0.02562882548891838,0.048765197754460546,0.0839658307549587,0.12417247988826152,0.15910253812707847,0.17980463370731997,0.200064231862248,0.21286370553153222,0.2225094818921114,0.2332689672519619,0.2477205960183963,0.26458634950562443,0.2751140702688023,0.29019546515350764,0.32908007321273436,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,d biomass,0.06693409435120509,0.09223786697540974,0.1036389453674233,0.12578884337191487,0.16037034554045604,0.19821344495682489,0.24673636837012244,0.30272424293972694,0.3799218885372291,0.4625709203826658,0.5285989807793292,0.556759924282079,0.5689669773831626,0.5611687097374626,0.5239953021943827,0.4518567534818446,0.22658600783781263,0.1595467561210027,0.13686847776161556,0.12813045675056536,0.12066745303026963,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,d biomass CCS,0.0,0.0,0.0,0.0,0.00516481418321684,0.01764582156583551,0.04301209123439685,0.0897218297517634,0.17231216530848803,0.2805046218881823,0.3883771281010143,0.4887966593043581,0.6301611189621321,0.7873052754241952,1.13796062107531,1.5833181691021019,2.1990336702046553,3.232347805819323,3.846691199853314,4.336156058793422,4.608454112330115,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,e nuclear,0.02621156724893717,0.02474273514481149,0.025815066732270728,0.02940592864487124,0.031655902190852826,0.03309425058327626,0.03673032390379381,0.040950477327634814,0.046637137096550776,0.05369020401380689,0.06301151274739887,0.0749857014368169,0.09676572311741523,0.1187592519099932,0.14356823389712298,0.16741484193696354,0.1926323357675939,0.22219680755469903,0.250819869030247,0.276212303367264,0.3097990299307888,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,f hydro,0.06435351959099034,0.12241367913158392,0.12091050232413933,0.12379613123688643,0.12676753293915635,0.1297304930171039,0.13269177410446756,0.13565231338984565,0.14087224784947094,0.14610043118818192,0.15133649512974418,0.15657094927130824,0.16181489827159434,0.16706729562898534,0.17231018598607786,0.17755343314871722,0.18279577929361357,0.1880601071402159,0.19330628791043455,0.19855135920627429,0.19851866856011427,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,g wind,0.0,2.6999929228296003E-4,8.999814088784439E-5,0.003988427952975249,0.009096652489787978,0.015324940503858705,0.0299209453647563,0.05000026747764065,0.0771338041019544,0.10684407846042995,0.14372442347576123,0.1911430761321334,0.2761727135044521,0.3584315691878326,0.47012346828779905,0.6004192196072655,0.728553653559226,0.8812704252770275,0.9993688246994155,1.098150437168837,1.230137440622668,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,h solar,0.0,0.0,0.0,0.00116879206105477,0.0029080223863021276,0.005230929293661283,0.00978873806687696,0.01592682298693396,0.02434339159332006,0.03255715553454299,0.04062033401457436,0.05082629194034416,0.06621282829687165,0.08087644430766829,0.10059240358644961,0.12268901875459773,0.1463849495493944,0.1742947540177044,0.19798811214081774,0.2193756255344577,0.2477342467806164,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,i geothermal,0.0,0.0,0.0,0.004215572686083671,0.0089320417902719,0.01395577700442546,0.023786379090304673,0.03504349929621135,0.047664604905119166,0.05694628256811462,0.06692967671742046,0.07822359793731734,0.09389765348699879,0.1055656367954561,0.1197913212863132,0.1335174877184338,0.1401227127957927,0.14015470453516074,0.14017161362270225,0.14018684431282624,0.14016376313855455,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,j traditional biomass,0.005148801,0.0028465,0.0020511,0.001269993,0.001217725,0.001108966,9.94015E-4,9.05887E-4,8.52703E-4,8.09369E-4,7.503799999999999E-4,7.36233E-4,6.934329999999999E-4,6.349462E-4,5.926521E-4,5.332864E-4,4.6218809999999997E-4,4.215665E-4,3.753218E-4,3.317814E-4,3.01896E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,regional corn for ethanol CCS,0.0,0.0,0.0,0.0,0.0,2.0051251502117E-4,4.7071656414186E-4,7.3421103332596E-4,0.00116642139804017,0.0016557171519153,0.00218519180882656,0.00284520630186571,0.00422869373759312,0.00533184864452463,0.007484940739192019,0.00948128179018359,0.01148131189904239,0.015252110607026182,0.0159127686955545,0.014616475703268109,0.01111575972117511,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,a oil,1.5911311224189504,2.1282399914196177,2.2508264392363335,2.30185537231163,2.361211119584952,2.3813163533348325,2.3708246992620534,2.298119839283166,2.1751902608179776,2.037703501516303,1.9541529432154305,1.8988936049331089,1.8523208119282273,1.828368521287155,1.7460842773858578,1.599111125077619,1.457479487852904,1.1354756428183634,0.9085315300479279,0.4637485502505366,0.08110468639912964,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,a oil CCS,0.0,0.0,0.0,0.0,0.0,0.0020585227526273356,0.00430325462523231,0.00570416310053267,0.00796255242148247,0.00870862029528105,0.009408925755407641,0.011158674396607598,0.013313403474873113,0.01514487785187932,0.02047171227862898,0.02210759234448758,0.0218840361518473,0.02174991235227435,0.01837731169831007,0.00901350451886875,0.0012738001293732502,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,b natural gas,0.781737476909127,1.1509170281924732,1.3776108700317373,1.4551697648429593,1.5377872050261647,1.6606236443959026,1.7853780857338637,1.948905514631843,2.138069334354022,2.2947776987169246,2.3882738608691634,2.3666673644256027,2.2864116603019724,2.1970596480382674,2.026646177721887,1.8460612560433811,1.6807234854310702,1.3836727002536087,1.1956733455427246,1.1729273289993922,1.4469579884007269,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,b natural gas CCS,0.0,0.0,0.0,0.0,3.1294093362237E-4,0.011797501508002581,0.03372037123890877,0.05943731554791451,0.09441577492926764,0.12485437733102621,0.1503037707066464,0.17961375493893672,0.2141692679772795,0.24703307598375154,0.3008503254237334,0.340552764768614,0.35922781922625197,0.37919447076703505,0.39804584971990953,0.41644220870454973,0.44936117048262003,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,c coal,1.5242796791026236,2.2451687479396627,2.2043314004834103,2.3814032667750014,2.3621744478276088,2.362348128179515,2.3568566506000925,2.308524151141152,2.219507546785487,2.07264198015807,1.9067368624700811,1.6770778688177377,1.4357493440569509,1.1719217428428688,0.6118969711583193,0.264125466580438,0.12889233671758757,0.044127663951366025,0.022588496676100904,0.014481476988598002,0.00878992931908164,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,c coal CCS,0.0,0.0,0.0,0.0,0.0025330095722802,0.011781288255105205,0.03283172025002243,0.07411955088135566,0.1422155250561644,0.21501087933893892,0.2769755923971308,0.33417509848475746,0.4026734521824627,0.46578359073738523,0.5777232120323678,0.6677766099052701,0.7227594408257584,0.7828807489071739,0.8272048653467661,0.8767054431916304,0.955156877304122,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,d biomass,0.1979000125439441,0.27124017212693136,0.28418445862666003,0.30245802936287336,0.374623027808346,0.4256380270629667,0.47589219031433233,0.5245275816818096,0.5913045654070478,0.6518527615941643,0.688525936924028,0.7001362398466748,0.6854492817326275,0.6513217706865122,0.5660161745869389,0.44775513091956276,0.23552023342903916,0.10952171126974936,0.06445003549369785,0.04610670689072965,0.029879127389874412,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,d biomass CCS,0.0,0.0,0.0,0.0,0.00103234218274517,0.004338780319023742,0.014892616713151534,0.043216277493827525,0.10476305282949475,0.18279093993822582,0.25338453301142727,0.32730037564485875,0.43023174779860623,0.5560806912046791,0.8836664323439007,1.283466604993879,1.7800686056895052,2.5454590083336406,2.940552563233402,3.6062501271060228,3.9636332517747124,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,e nuclear,0.0,0.0,0.0,0.0,1.4722196877287E-4,7.339489900022946E-4,0.0023363749537159,0.004911642529760119,0.011321504391223041,0.0198589717772378,0.02997511643287455,0.04307463186905238,0.05962458079770945,0.07774113565055193,0.1015373143816399,0.1218706683776304,0.13614179532850954,0.15188378943379816,0.16718297688816122,0.18185331295101287,0.1998304549328157,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,f hydro,0.1354377682638639,0.14144103172598024,0.1366296509926284,0.14267567366871817,0.14957316852708719,0.15627563459358335,0.16223865233700094,0.16799168749057988,0.17517438920270686,0.18217803671745708,0.18904810227455887,0.19566337828962196,0.20211543122501033,0.2086293112410072,0.21488590341446218,0.2213836273035775,0.2281968387897029,0.2350620740747212,0.24208069003727542,0.24916788045628147,0.24897264148746934,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,g wind,0.0,0.00549536010113646,0.023634472800966002,0.03102358703897393,0.035694532823731404,0.045995539895449904,0.06888920175363458,0.10060256811989048,0.12784912841807525,0.17449476173061879,0.22566968970862644,0.2889150814354485,0.36517202937481635,0.43925975858972843,0.569810775260652,0.676639609233101,0.7360328447122654,0.7994514433583032,0.8294205737408933,0.8451822473445756,0.8517172856556946,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,h solar,0.0,2.896152960737495E-4,0.00101784134499361,0.00282340496201951,0.004824160157205976,0.009395066550854229,0.01904627736486568,0.032166956960477826,0.04688920198537672,0.05839649388092749,0.07183865023497767,0.08825043392528636,0.10384693919308229,0.11681412365167104,0.13776896316885723,0.15515450416341123,0.16672292544405942,0.17951469323103755,0.18962625191827415,0.1992441520855597,0.2082782663888745,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,i geothermal,0.007524519775884569,0.011353673602523278,0.021418740975875438,0.028024869052093837,0.031679217020435815,0.0389048622306132,0.05276219848358991,0.069308975582997,0.07282001435135242,0.08938842686814705,0.10683946657496639,0.12423151601317994,0.14013579881384503,0.15274240465906455,0.17250513662320577,0.18592660181045167,0.19028344532674288,0.1952577876476429,0.19367207875914857,0.19124248259805132,0.18846229188828031,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,a oil,2.526428682387815,3.935899983569916,4.66170582608885,5.860955079878869,6.286575913825025,6.505321752845276,6.601904607586362,6.486347848590773,6.21318361996922,5.820963306260308,5.562465514343747,5.4038208992421115,5.320813594392749,5.334854524249529,5.214001004713919,4.948275395288279,4.7231500732431915,3.8817215571677903,3.1703670232337693,2.0155435648135183,0.42881237292888974,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,a oil CCS,0.0,0.0,0.0,0.0,0.0,0.07187559589270094,0.11836684511711727,0.14920107945965672,0.18155696101667826,0.20482407014001155,0.2335363832395343,0.26902274518866043,0.3553598402861046,0.434912324065252,0.554124045111266,0.639135187946627,0.691356795592393,0.6950719448159908,0.6043165869073968,0.3626572398658552,0.062484926359829135,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,b natural gas,0.13147643666301048,0.7002441217743721,0.9634165251710177,1.4718480704551733,1.9110685791600026,2.4430795942387418,3.0420906245929373,3.700059076192894,4.479642486869452,5.244358986519969,5.956076411339225,6.283869180008143,6.215625577350467,6.1416891443824415,5.87965090328383,5.5162334375786894,5.20301765462711,4.510314372938196,4.0811825944572195,4.172303198077642,4.652960854437986,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,b natural gas CCS,0.0,0.0,0.0,0.0,8.711573108675E-4,0.020219124575695045,0.05073436944317485,0.09039171809718764,0.15043763860904488,0.22727549066245936,0.325437756007624,0.44068641626510047,0.6718154642551665,0.9321922969348682,1.3578552605043512,1.8474288909841592,2.3041177779455215,2.8152734229015803,3.2690203536846782,3.6624550564838083,4.167022405548432,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,c coal,0.4068360582893719,0.5429225111603139,0.6068854648070645,0.7876371193944844,0.8498575459655471,0.9702899723262173,1.076934947993266,1.1733653621246525,1.243461383917552,1.291186551246994,1.3164762381338837,1.236428788414617,1.1470874723496807,1.0210526570207632,0.5914902850647488,0.32529926888322885,0.18679522184866257,0.07857999127412177,0.04423145373602143,0.0287649509586745,0.01703839140726262,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,c coal CCS,0.0,0.0,0.0,0.0,0.01407043956149191,0.052098068193152894,0.10775595557491911,0.1961994017440503,0.3347725673989661,0.49309571979448114,0.6355259278595514,0.7271436201598259,0.832109988994789,0.9234990863757819,1.0402842344939702,1.1797566599033082,1.320160734591515,1.464153996131615,1.5833521291698418,1.7114191726458952,2.0085501296238353,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,d biomass,1.6667476471273852,2.3004593094871963,3.103302453660157,2.689744665384349,3.179102803624521,3.5266177088267074,3.8748413336485505,4.136591596599275,4.406201968141012,4.6313434306867505,4.781521379538869,4.715809558623113,4.554149592193294,4.244110091015205,3.5584018782110864,2.764868668254066,1.7271876315904073,1.0368034769313246,0.7339467442657777,0.5856067696162108,0.47122539524208934,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,d biomass CCS,0.0,0.0,0.0,0.0,0.01293242724625673,0.062476358733955635,0.14964658912418766,0.29710394485036606,0.56018177120745,0.911856310459163,1.300414094233138,1.7052452517559886,2.3499533193044058,3.1201352567268605,4.733964999895512,6.733193940667588,9.165337127686078,12.582198570989746,14.84861438136308,16.822810614644172,18.48465582210871,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,e nuclear,0.008051898779519819,0.035468222012807075,0.05227062995081045,0.048909991791340826,0.05020143565431389,0.051957887599059574,0.05495017551652569,0.058260025316813804,0.06366428106233378,0.071929880345414,0.08651119842048235,0.10726778940216053,0.15043327683774538,0.20491027999144526,0.2745844828040703,0.35855827024959946,0.4376079184065501,0.5275998017520594,0.6200803141348677,0.7087373571965658,0.8317390672962379,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,f hydro,0.7441473109156186,1.2148412325055211,1.4518341920221296,1.4757891508128227,1.5002872646620566,1.5245879792203851,1.548893901157414,1.5732342191423525,1.616046630089794,1.658967520530144,1.701894340733673,1.7446840060080917,1.7877032783175102,1.8307271281282758,1.8736125905709986,1.916314156262193,1.958999937988488,2.0019982230915896,2.0444067065382425,2.0866780124809434,2.0855220247363224,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,g wind,0.0,3.3470767045585187E-4,0.00783537069887157,0.01945483941604102,0.031298448326075104,0.04748464723100269,0.07097706578471996,0.09839894952811842,0.1262584826833397,0.15919392252361322,0.20914474079643702,0.2683117712309435,0.39392238687793424,0.5425204660817752,0.7788827282554642,1.0535223804316713,1.3102434743895133,1.6077381712617447,1.8323330826197484,2.0030651373338912,2.2256992441437764,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,h solar,0.0,0.0,0.0,0.00207901437495939,0.006788468853563951,0.014677308972451699,0.026880166932895116,0.04359582029626111,0.06987399375681123,0.10358743722958762,0.15051372076554712,0.21345863045781074,0.3097042555364788,0.41358998259732777,0.5648690892019504,0.7369422002565241,0.9098792789754562,1.1050551498510548,1.2841353736940286,1.4460508241366714,1.670810854426746,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,i geothermal,0.0,0.0,0.0,0.0040735187008430805,0.010132628843339611,0.019825990682646746,0.03451299687704863,0.05159424275528402,0.0728384005229674,0.09389612523886982,0.12028693392822046,0.14757837970510435,0.19693380463034987,0.24605356028210032,0.3113653625221712,0.3730783188416644,0.41764870814136734,0.4282265832489514,0.4282398864390541,0.4282410665872459,0.4280396496331325,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,j traditional biomass,0.33324729999999997,0.344634,0.3045312,0.2800761,0.2778233,0.268632,0.2573807,0.24755829999999998,0.2398755,0.2304363,0.2169953,0.20797949999999998,0.193277,0.1741712,0.1533701,0.1307196,0.1085667,0.08926500000000001,0.0731706,0.0602098,0.05015227,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,a oil,3.3510062032866985,4.361236545441407,4.097639963091055,4.160911314645782,4.196465923306429,4.169953297513195,4.044832793624353,3.789357587765378,3.4106293583796274,3.026624552353245,2.750114612228153,2.5909877678913937,2.4678968112926163,2.418474256368189,2.2973732303541636,2.106966410431874,1.9380424539313752,1.6315889491411435,1.43012796794878,1.187826404466626,0.5165156177957623,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,a oil CCS,0.0,0.0,0.0,0.0,0.0,0.0028673052715594903,0.00686998938698121,0.009575336198004802,0.012940846603224749,0.013679072825830668,0.014195652266705772,0.016168635663306757,0.01808864535064885,0.01971560938732475,0.02473494492882923,0.026084869972367957,0.025388841984633176,0.02717080353055824,0.02413149667021152,0.017141160055516382,0.0053629113658172104,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,b natural gas,2.287875866911783,3.1679895931522837,3.3534371606010795,3.269631959062831,3.2471998699931306,3.3235460984705996,3.371926778953063,3.479021932757291,3.5955983865237156,3.6911685288613074,3.69565380309983,3.557367613841906,3.360349632540583,3.1656335160051103,2.8603733144296806,2.569548931666921,2.3300977523115667,1.989496307337828,1.7766411516105365,1.7350227336188413,2.031871354349789,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,b natural gas CCS,0.0,0.0,0.0,0.0,4.5418584607458E-4,0.011343001782460626,0.03395089306219704,0.060693126286142374,0.09653513441706746,0.1285260825801553,0.15581822925830247,0.18757539326708875,0.22039279247157048,0.2486835639050592,0.2888138584470116,0.3158982595835964,0.32698348361694146,0.34388508523943795,0.36026628387549653,0.37325666618087344,0.3957381873869083,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,c coal,1.0655354947795945,1.2414020377056139,1.02984292198102,1.1313275087130377,1.1178226082622664,1.1096759583044764,1.1075182448942786,1.0997336160078568,1.0776072549208713,1.0273287979598589,0.9588144566158862,0.8483058408902618,0.7226443522479854,0.5773931449470796,0.2514749871319184,0.10642798966729963,0.05376611525752894,0.020502315838213506,0.011677975106502413,0.008263694093190787,0.005848366841296133,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,c coal CCS,0.0,0.0,0.0,0.0,0.00277777152622096,0.012222661138182453,0.03294258138783687,0.0790233861813432,0.14828980486648222,0.22107666802129658,0.2744220147849965,0.31158758314189855,0.3453527383520923,0.36533086769488804,0.39499961537939604,0.41869987359977806,0.43466649477338964,0.4527618559550639,0.46137421382723376,0.4690036074449481,0.5425963557510508,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,d biomass,0.3415149506480351,0.5104636784621391,0.5069855463986513,0.535684683378188,0.6116006693225456,0.6570828065257304,0.7098040224060227,0.7805543285215771,0.8891153732061694,0.9924749950638604,1.0410397746645044,1.0395061662595635,1.0165201410785558,0.9666553478042055,0.8718027737033388,0.7449660740728381,0.4733191547426749,0.3111180328885115,0.26087870109004346,0.2404996267578768,0.2477119709698118,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,d biomass CCS,0.0,0.0,0.0,0.0,0.00199581326771701,0.00805401226680058,0.02683277399347579,0.08074386573505567,0.18855041854034627,0.3222051619520255,0.43020268097049874,0.5298921849170234,0.6593874715935695,0.8082488869072875,1.2122546753288514,1.7471203333203331,2.406973539222367,3.2059777989520524,3.6066747061088624,3.9308148695141507,4.6980735111683085,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,e nuclear,0.2625703003721823,0.3312786587794856,0.3263631732372731,0.3504724640752362,0.35644206588298494,0.36007521509540646,0.38552049089719953,0.4199350622676696,0.47503733530914927,0.5203016247710842,0.5603893675171825,0.6201820617679127,0.6930650514098591,0.7647698460785609,0.8602028518449694,0.9195796195414037,0.9780959651808255,1.0517146756422482,1.0898959853588948,1.1025499586911505,1.123273112438483,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,f hydro,1.0685964120851115,1.309399367122185,1.2656730010847916,1.3071841083733082,1.349085193068246,1.3909024006840942,1.4326393855999142,1.474343679092772,1.500607274633408,1.5269118544636942,1.5532104047275201,1.579414990962532,1.6056710889940615,1.631977067586757,1.658270253588435,1.684575233714145,1.7109275619841284,1.7373835955104189,1.7636831561055764,1.7899192274830074,1.789647691875249,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,g wind,0.0,0.005294545706715869,0.03440416951069854,0.04613559231544479,0.053877676083883906,0.06492994897725415,0.09248661113820225,0.1315912296738136,0.1615784050054061,0.217642009248175,0.2790091020911397,0.3576413940018257,0.4357437554541205,0.5008407044707953,0.6027318746635222,0.6970028892988377,0.7552365639466192,0.836821499287353,0.8980086639487866,0.9483384237899752,1.0153246260095432,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,h solar,0.0,6.118783134577916E-5,5.687836167753031E-4,0.00110419868770477,0.0018061034947532606,0.003910342379476274,0.01044544943433435,0.0215450107938756,0.040759125227772385,0.06272754992729429,0.08676448945168413,0.11860100863942856,0.1548912440459759,0.18805912540502034,0.24253227261344448,0.2945884364389969,0.3297612393427322,0.3779167597684243,0.4169173931589385,0.45000573245566317,0.4940009840260131,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,i geothermal,0.0,0.0,0.0,0.00369446081663027,0.00598554145863748,0.00859809677143216,0.01282858669072866,0.01311064545288245,0.01312300651903584,0.01313454102130237,0.01314271511217297,0.01314880401284408,0.0131543634906345,0.0131576145192825,0.013162466263471041,0.01316720975626385,0.013168668925436399,0.01317831512957717,0.013181569257608428,0.013182941271958959,0.01318472580632725,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,regional corn for ethanol CCS,0.0,0.0,0.0,0.0,0.0,3.96011909224226E-5,1.1172148830213E-4,2.0654547192854999E-4,4.0601789389481E-4,5.947124973886E-4,7.5609224806148E-4,9.550356660816E-4,0.00116627539547671,0.0013105891608756897,0.00181449832794763,0.00219589232038511,0.0024719264183141,0.0032977358234138904,0.00328433455108154,0.0028097915673957197,0.00225237704634097,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,a oil,1.2966515139625185,1.8259955617559391,1.9759996730517475,2.0213646843409436,2.1166141351987124,2.1489651064191193,2.1441350258109915,2.0678517608674696,1.9386039297248105,1.8091803787106813,1.754845763840324,1.7331716150036267,1.718037527305532,1.7522346389727255,1.7387118520147964,1.695967404169712,1.6842296643952135,1.5702349401265374,1.4505871249553286,1.3141548286567422,0.9838135647566932,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,a oil CCS,0.0,0.0,0.0,0.0,0.0,0.037294901356011226,0.07807648527963715,0.1087141352884605,0.13324945351008208,0.14974642349563885,0.16753242866132836,0.19036614476640307,0.22617307927950528,0.2664540402083958,0.31549037178080636,0.3508291483505007,0.38429256897069236,0.4152230581601806,0.40948707156067443,0.3627504966903588,0.23172090621083952,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,b natural gas,0.19752714984758993,0.7016884141053439,0.9046226702754346,1.0134111163560309,1.1394905005466576,1.3145048852425598,1.528396335051351,1.772902642845248,2.046994970794715,2.3049109244372863,2.547984136042331,2.662989346797516,2.7258759006132838,2.7782039233730593,2.755665197730086,2.732933563973645,2.746274473931721,2.6293372094212546,2.583262713464185,2.624431470661643,2.920242965175529,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,b natural gas CCS,0.0,0.0,0.0,0.0,3.0049677919542E-4,0.013406136264037178,0.03590617891473001,0.06411144611296672,0.10158902065274772,0.14251996775305503,0.1836159243156363,0.2240454454650412,0.2758156916881876,0.3267222858955682,0.38720338291246725,0.4462410380675989,0.5076087747366897,0.5815041190971192,0.655969618574811,0.724108733086928,0.8317251730468386,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,c coal,0.008982330047698436,0.04111380068804027,0.04762649659137108,0.06631583631065958,0.08307576194458559,0.10751934673219925,0.13547218678258788,0.16566769807684703,0.1932766833109206,0.2138297832199353,0.22635075261092605,0.2181886481073515,0.20414665323357653,0.1825106254715952,0.09490795170299672,0.05754428233476148,0.03308501968087417,0.01106352556173761,0.005349965308228285,0.0035379583220388833,0.002526587299102573,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,c coal CCS,0.0,0.0,0.0,0.0,0.0035005386513746895,0.014529754626892469,0.03364850337064883,0.0633792427214272,0.1057241035041933,0.15100890597284952,0.19124914318611447,0.22054662220259466,0.2491790756111615,0.27406356469787807,0.29571422837343003,0.32733753248077,0.36315231339169685,0.3870479599203213,0.40373344032304687,0.41685606897477084,0.45736861051022115,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,d biomass,0.43097009713271456,0.2828799055482479,0.28323096956625404,0.26022438671456016,0.35353066228373536,0.43932954229179016,0.550336423880814,0.6662985374483795,0.8007004178204781,0.9237318271858562,1.0213643288589227,1.058861389420733,1.0675311153219242,1.0404864539400072,0.906504527951487,0.7118414720864866,0.39410427406154425,0.16556472781325934,0.09869907268716285,0.06940976880204267,0.04977493115868691,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,d biomass CCS,0.0,0.0,0.0,0.0,0.0060536093976154195,0.024009730394168986,0.06352958928604215,0.13375408717196788,0.25141585951236656,0.3958178557267459,0.5462951886347845,0.713150428428941,0.952734308771793,1.2627492048338356,1.8744366775677068,2.6379757293353068,3.5694492013614765,4.524955558191813,5.154924442609409,5.513569985946291,5.804989304518969,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,e nuclear,0.0,0.0,0.0,0.0,1.42332895414E-4,2.8935619749933E-4,4.870941648111E-4,7.4237002934408E-4,0.01244299121249456,0.03554530706874928,0.07150086320955937,0.10974306236210515,0.15947415947913757,0.2143422086162545,0.2805043343484976,0.35114291544756676,0.4217904403868458,0.4993223682150675,0.5814689764300979,0.6648144536600065,0.7645147259039131,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,f hydro,0.04860990588735221,0.07679990234987848,0.0855113586049241,0.08910378994667074,0.09277396608144249,0.0964240460717492,0.10006609207173592,0.10369615719838966,0.1100839646337678,0.11650077308476281,0.12294535047121954,0.1293837816115237,0.13586924504228662,0.14237282123788522,0.14885731502237007,0.15534142043686391,0.161827342895339,0.16832619974704782,0.17480774313997063,0.18133009721115478,0.1812731389712478,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,g wind,0.0,9.1440002797827E-4,0.0020700062601486,0.012250642083287145,0.029657291519120332,0.05432508667649169,0.09855459928452433,0.1543176750398302,0.22305276914465996,0.29350980684910055,0.3696086793714711,0.4478781313216617,0.5445821653546461,0.6449379176666972,0.7772647675901265,0.9154235014931472,1.042821713250915,1.177852307676938,1.2775415039881144,1.3541745966829,1.471823166362312,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,h solar,0.0,0.0,4.320013064657707E-5,0.005042717101186698,0.01440780334831974,0.025404463757289227,0.040789937073428685,0.06310509311914601,0.09529842135429782,0.13262979960407092,0.17960004238888438,0.2401061770612571,0.3249281366992291,0.42059824930796597,0.5465787009178166,0.6874773545781284,0.8365490910994616,1.0009680581558864,1.1640845082449813,1.3185833253825114,1.5196524104327567,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,i geothermal,0.00289800035098914,0.009417600288154221,0.01178643564474176,0.01907557525105771,0.02692567793680625,0.03379557103680522,0.033795394166212085,0.03378946724890137,0.03377955879147313,0.033778412581732455,0.033788079632473274,0.03379984770739602,0.033823077213903686,0.03384900816642768,0.033870708192878705,0.03388864779668174,0.033905360773088394,0.03392201465944521,0.03393275498276325,0.03394837266370268,0.033933894930787946,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,j traditional biomass,0.327264,0.4026073,0.4420999,0.4452606,0.4424821,0.4318257,0.40998609999999996,0.3853631,0.3583784,0.32977009999999995,0.298118,0.27303869999999997,0.2432515,0.2118744,0.17981640000000002,0.14889618000000002,0.12013033,0.09554201000000001,0.07608263,0.061161679999999996,0.04923208,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,a oil,2.7712778372262434,1.16950460770417,1.4979693257154234,1.9274809479888586,2.0997034610270027,2.280952504522283,2.3999273290999854,2.44554061616234,2.4295424169199533,2.3708195301069317,2.3545748271568083,2.3754043986583713,2.4097087170428884,2.4672513000676397,2.441392777503564,2.330764390902841,2.2367670480342663,1.4540312218656315,0.997140531885788,0.4784851296435058,0.07763800651899151,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,a oil CCS,0.0,0.0,0.0,0.0,0.0,0.00178965775804766,0.0031717224653681304,0.0036564066452371502,0.00460527108249617,0.0050730648515075,0.005402983975881109,0.00647319524989763,0.008470213059634671,0.00982605458591208,0.01348719207306147,0.01645165869542397,0.01804054130480816,0.01630738975744856,0.0130276628995565,0.00637583071181205,9.019659900402501E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,b natural gas,3.38086604804558,3.271900256941309,3.75813525956026,4.346513598966232,4.870236011975272,5.376016220955121,5.760923400755566,6.071400859599552,6.327991959548583,6.536616945990232,6.677310815281733,6.559878681627101,6.1365019622624,5.826046615316536,5.36635231335011,4.877387307343908,4.445833254826241,3.5763118400168072,3.0502731126647626,2.8946571009311084,2.972918469023914,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,b natural gas CCS,0.0,0.0,0.0,0.0,4.3610219211562E-4,0.05133772690045872,0.1326931340593775,0.21126373349611982,0.30757296856203276,0.4003390494413488,0.4803621282073288,0.574185978002935,0.7055525899102877,0.8194315884848706,0.9653053518816131,1.111802709043498,1.211324071150232,1.358229769311631,1.4962525463384557,1.6131664056592858,1.7482854309608076,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,c coal,2.114264723746773,1.3439272153207922,1.6823412222710687,2.004533409837079,1.984946684642072,2.0179612010737356,2.0194723553935274,1.9865957801817322,1.890286925819702,1.7799432868538159,1.6665124687090431,1.4458713496135989,1.2352030388645383,1.0187056863452948,0.5629259274134246,0.2896738883804595,0.1814805814743518,0.09290525682139958,0.057211894302520744,0.0389401740629632,0.023014510813077864,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,c coal CCS,0.0,0.0,0.0,0.0,0.00551227431472104,0.025168184847745842,0.05173190634807343,0.09062741969263052,0.14622322775728702,0.21012546325844794,0.2695837199329412,0.3163357197918006,0.3674512776392273,0.4095430955184395,0.46291605465567953,0.5182256454372763,0.566949268738242,0.6367878792207573,0.6845702758617717,0.7344702173557339,0.8031005254659601,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,d biomass,0.0278787,0.022311402,0.023483594,0.027633180429778862,0.0795872386168569,0.13946180987727577,0.208921703500057,0.2925089759920464,0.4108684272771583,0.5428462152423317,0.6533973996680564,0.7201264612858742,0.761473589587085,0.7732157848284936,0.7403058377201668,0.6231435502645899,0.12963772528056114,0.03802220793198065,0.01146579014955689,0.0061612019634613045,0.0024480291982197575,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,d biomass CCS,0.0,0.0,0.0,0.0,0.01280383401763904,0.04161018793947161,0.08907434191014751,0.1689939436868725,0.30149190895513556,0.475528620307172,0.6579976255307692,0.8520802045468494,1.0991199751709517,1.3898609363766448,1.963540714317449,2.673290289303838,3.7372425754200997,5.788999704348411,6.8199436099603945,7.655192951461335,7.822554082195681,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,e nuclear,0.0,0.00978388564935184,0.008981382144798891,0.0846583790098207,0.12383937278172966,0.15481161479382574,0.2130538296705287,0.2799593335752897,0.36274687800912286,0.4475577330566263,0.5278172515800501,0.6246219247599981,0.7595318411416683,0.880348667416074,1.0583482898230008,1.1780286217490057,1.2916634454134945,1.4630691882632065,1.60362924212886,1.7199030743953505,1.8694472303146645,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,f hydro,0.1837149974660883,0.2115757916917212,0.2178949166152985,0.23705589569926325,0.25645293904213873,0.27587725913656164,0.2952276308091016,0.3145825392007663,0.33606715806060855,0.3575852787445074,0.3791271361190565,0.4006308645218517,0.4221978589073191,0.4438001451002841,0.46539873771659857,0.4870006924472607,0.5086441647475652,0.5304045754821711,0.5519950230682116,0.5735328412320287,0.5731671429727524,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,g wind,0.0,0.0,2.88558068143838E-5,0.0074695987356148295,0.015955212145022015,0.023760277792211845,0.03982114122528436,0.05966275513423885,0.09015095579722543,0.12057605980754442,0.15438567947528828,0.20454398407933025,0.2793224053478476,0.3483010259223819,0.46591897699462537,0.6057206012318094,0.7150246364387471,0.8737907077998233,1.0088404751529885,1.1391505303354776,1.2883440925614411,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,h solar,0.0,0.0,0.0,0.00174686575454102,0.00401472764485059,0.0063428607398367115,0.01102745761200767,0.017251649323768443,0.027237773723448617,0.03848652072508572,0.05189699775827475,0.07159986239846823,0.09887716759652979,0.12522138821524986,0.17026240647388402,0.2237927527500539,0.2686924559800099,0.33486573087615945,0.39806262435324496,0.4625452941911689,0.5400137655078009,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,i geothermal,0.0,0.0,0.0,0.00790324348794619,0.014745894394467711,0.01991768285090506,0.02822661324863771,0.03637558680858547,0.04610126962011675,0.04923253822469563,0.05333004490162974,0.060725850533160576,0.06738423028593968,0.06740408300331854,0.06742666981658146,0.06744892850297175,0.06747384279827527,0.06752697449211698,0.0675472676870955,0.06756030930749407,0.06752586527136226,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,a oil,5.46885727577337,15.431019221933878,20.661291906770114,23.834887825552293,27.5543836518296,30.37527201331759,32.523708102634764,33.79586435866317,34.098592519279734,33.9446714574604,33.95136834121306,34.18173869163881,34.43670385342276,34.90251506586706,34.24965738056512,32.711304949192176,31.380132483440224,26.41165908990268,22.070893581892012,16.438778314252286,5.057097885327802,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,a oil CCS,0.0,0.0,0.0,0.0,0.0,0.016087038655002953,0.02725821700729405,0.03512498564087462,0.04374485765515274,0.0513824463875713,0.058607432535961936,0.07126456745963887,0.08512540554033947,0.10041817017240406,0.13509761919290306,0.15777520969180006,0.16461213359913496,0.16634656709066642,0.144457686458837,0.10131215245754782,0.02484997708071759,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,b natural gas,0.47597163245330365,1.5543812849349552,3.852329988593449,5.25617640439515,7.422831066521399,10.15768823128795,12.97632027705589,16.078565552576478,19.295720301046373,22.164223652011103,24.121218079938814,24.73124674181136,24.60653833321561,24.01171559051848,23.139162204866235,22.712032896055298,22.38226812485707,20.66512135283886,18.9769878129796,19.07457753728102,20.031552169022795,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,b natural gas CCS,0.0,0.0,0.0,0.0,0.00283856909332584,0.06586303373510369,0.15656685369169643,0.25346021125868334,0.3554919151506821,0.45372890131413607,0.5431117894949766,0.6482108079291857,0.7695547716296837,0.9085884754534534,1.211909731216761,1.6327371993691993,1.9964692757034384,2.556579604837264,2.9742719006979645,3.228445337095921,3.7062674970994305,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,c coal,21.394720990763357,49.70800884469441,66.27194397616292,76.87620928176702,78.57695324891031,82.37558979316374,85.12482391127851,86.18638738204342,83.94231611189537,80.58420080265971,76.54313947101221,69.59844550242984,62.50939294046988,54.96482312571294,37.3224166784006,22.056539995226093,13.801700226128455,6.931708601039701,4.542119206106863,3.3718269024628245,2.4415185620510735,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,c coal CCS,0.0,0.0,0.0,0.0,0.1138194307788242,0.47318380725809905,0.9860726923498465,1.6978822029866085,2.5984884471949012,3.6333989886006615,4.7102160685124215,6.01121550832624,7.6661805147612725,9.597438484260858,13.30411287550128,17.017187459127907,19.445265262574857,21.729481636247872,22.920102633337347,23.418902368318964,25.41331418389809,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,d biomass,7.064931099276758E-4,0.25379647987405424,0.6822946760552655,1.291206976215507,2.367885858472735,3.4161600070329756,4.770002043257871,6.37004596473307,8.33889847164133,10.36181017022381,12.085640624347922,13.544054048031349,14.477389720226588,14.858274696610366,14.04669529536082,11.867441077047006,6.423322568817226,3.3447696551496673,2.3621662850095366,1.9889709370718571,1.9502180681441692,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,d biomass CCS,0.0,0.0,0.0,0.0,0.10442269989319186,0.3330380009161191,0.7781208062203384,1.5752191048726105,2.7874164288548418,4.363020385102981,6.087247731872374,8.306380788383084,11.24643784857762,14.947237918965207,22.480768707722238,31.612980825897086,43.39785001347809,58.816399261810574,68.18155810773976,74.2845622387905,87.25222435738681,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,e nuclear,0.0,0.19116811743760023,0.26622947271651276,0.4298661467506082,0.6494073612733715,0.9975477105489364,1.5952346201235508,2.346536573623147,3.3103628694485003,4.4462113587627705,5.703738338091496,7.214586343868691,8.93428941912878,10.778483980376755,13.941703629394077,16.795530669240332,18.55946855291432,20.26987012548492,21.06164064545687,21.211882694587228,21.805162175671644,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,f hydro,0.4565688509522749,1.43068733341569,2.603162296000182,2.645315847552558,2.687695475777939,2.7298750851262747,2.77213127105134,2.8144419337181414,2.911664493917059,3.0091373506712915,3.106733362453825,3.2043958628808644,3.302237596482922,3.400277656720433,3.498527966524451,3.5967157725592434,3.6951437515135392,3.794100618955959,3.8921602854443966,3.9898933093613524,3.987841069179213,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,g wind,7.1927381857559656E-6,0.00730348112031159,0.16080253345366713,0.2699056516457162,0.4281197007388608,0.6918296504449087,1.1488783222734975,1.7243015957846188,2.2727482738544627,2.969616067302988,3.67590116617577,4.54195638167357,5.477890446558172,6.491320124950789,8.612064926889875,10.610803446666925,11.709058868738706,12.741738817748772,12.911091011585203,12.419320714148324,11.701213422118558,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,h solar,7.189669884350637E-6,2.7404216595785716E-4,0.0033913468312472303,0.02935594173584414,0.08073698819241831,0.17791600521267714,0.36144647689489834,0.6170453739734535,0.9520232010243073,1.2841386872474088,1.6453912134505764,2.1463890940825365,2.698982963132562,3.286969141172841,4.342193266451959,5.487546954458346,6.366082098669526,7.236830057749323,7.750840767733878,7.979608393161683,8.087391840306022,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,i geothermal,0.0,4.1366521336509E-4,5.8304562124031E-4,0.04843402496327724,0.09391050349887131,0.11578494512605199,0.11579452963048079,0.11580529292127904,0.11581776634151139,0.11583503065356505,0.11585240182007853,0.1158713747628389,0.11593177672277828,0.11598871614168794,0.11595509447944567,0.11598371764980071,0.11590633658277684,0.11606422192520781,0.11608073430781797,0.11608513117051077,0.11602090676635174,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,j traditional biomass,8.39255,8.28969,8.064680000000001,6.90845,6.36707,5.5114,4.70171,3.98602,3.48395,3.02528,2.6021799999999997,2.352038,2.078745,1.8084959999999999,1.622965,1.417997,1.214936,1.139719,1.09311,1.090354,1.21085,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,regional corn for ethanol CCS,0.0,0.0,0.0,0.0,0.0,3.8678633382323996E-4,7.6953662560738E-4,0.00115319080832537,0.00167330106954211,0.0021788435714681803,0.00259061413765087,0.00320653436558118,0.0039154464135870495,0.00469887450346634,0.00674113562355994,0.00859488622447998,0.009938096398759559,0.01247116176589373,0.012535314117356599,0.01130224882341093,0.00924523204380555,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,a oil,0.4470155749243007,0.5482242538712402,0.6108492578435728,0.8099608519071766,0.8658946741054411,0.8990763200389725,0.927276501063475,0.9311359342420716,0.9148177262361175,0.8848187892757339,0.8857960585248333,0.9114266130315246,0.9614690434163178,1.0275221827649554,1.0646783088878506,1.0657356793678767,1.0706733227830911,0.9084128185687931,0.7763410617358192,0.5468806271303681,0.1431534784451333,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,a oil CCS,0.0,0.0,0.0,0.0,0.0,0.0020760776861932597,0.005380623732595811,0.00712424561786068,0.00879820592846459,0.01031846265897567,0.012601478228059352,0.0160607608937687,0.024666820063495114,0.03300947844278447,0.04831897738041646,0.06445971300244872,0.07960354694575347,0.09205033856376635,0.09237165156971681,0.06780153646942116,0.01606589148164447,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,b natural gas,0.13466118006821096,0.2561373586537186,0.3254976102421679,0.5333202916427218,0.6338712864349377,0.7160449455272936,0.8352756815845268,0.9711541849427511,1.1234488870751933,1.2798753263110139,1.4464277339129998,1.5518247380195946,1.5799768030489298,1.6344502637206908,1.652314475638672,1.62687191245799,1.5972878555339531,1.4058347422294901,1.2721980792343281,1.2851624439976053,1.5671281996564166,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,b natural gas CCS,0.0,0.0,0.0,0.0,6.954566183366E-5,0.008612358331364514,0.03070684771963897,0.05754993585126092,0.08880014008295384,0.12289450037042407,0.16211220485302755,0.20725544952340053,0.2928265651714628,0.3866762680048255,0.5306088920134523,0.7089235208744946,0.8872516312898202,1.1096440247838297,1.3154961318438843,1.4790157270552053,1.6986318737044144,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,c coal,0.13843132400799585,0.11641258135628266,0.11155663026049452,0.18838262083405308,0.20869067343611608,0.22770604471641803,0.2570419784527188,0.2866947007325153,0.30929630076635084,0.3274790878907989,0.3437220997880101,0.3326426441888352,0.3183505259253925,0.29231062071069525,0.18828085345083354,0.11223690781293622,0.07430761873575754,0.03856544492771485,0.025126610638789137,0.018199955404728303,0.011799964830977509,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,c coal CCS,0.0,0.0,0.0,0.0,0.00179827649124165,0.006448942916510778,0.015288481406455973,0.02943288218624329,0.050667610614783226,0.07583534742679131,0.10103018826856458,0.12262827467406383,0.15336091084129336,0.18600009961249236,0.2301683877751573,0.28436858876692667,0.3409869271185695,0.40093268241903224,0.4507934646425909,0.49564194994473293,0.591433735336982,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,d biomass,0.08995713974791864,0.09041754603227359,0.07854356707921688,0.11056825420733862,0.14752106609148646,0.1781796592643805,0.22003983947254668,0.26392865364490703,0.32106234516241633,0.38237102718745863,0.44069836818421393,0.4789635359899093,0.5103322589681376,0.5262861417975084,0.505344062935904,0.44152355184547426,0.251861224359287,0.14369596320646735,0.09721431710139264,0.07450223186540367,0.05593445660223903,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,d biomass CCS,0.0,0.0,0.0,0.0,0.0031475496625790723,0.008736816237907057,0.02233264982638635,0.04748131545678345,0.09163244802414748,0.15153550078503036,0.21834084228436448,0.29201318197766174,0.4052855354604822,0.5517796465867123,0.860070639915623,1.2629390341727567,1.812534217116062,2.5984656581991716,3.124836289030782,3.588483878277479,4.128148376813184,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,e nuclear,0.0,0.0,0.0,0.0,3.279088200451E-5,7.754625762816E-5,1.455508688795E-4,2.3783000143128E-4,0.0019696502160996597,0.005690298765705909,0.012426483944822759,0.02051050364773878,0.035364309221384914,0.05248096567341398,0.07568802211506448,0.10459971776992087,0.13414048640626122,0.16964765072446306,0.20579949751270588,0.2394679382216151,0.28344177116575736,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,f hydro,0.09898886789754233,0.14329055410739058,0.14544320744951048,0.15205601024201726,0.15869624961926698,0.16533507248834098,0.17197112980050833,0.17860861618952106,0.19032832683713624,0.20205858126819998,0.2137987795299969,0.2255488509106226,0.23732101590993973,0.24911517283453707,0.26092793693661864,0.2727240289350021,0.28453669493733313,0.29640763390133557,0.308226092483473,0.32007471073447297,0.3199852661440818,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,g wind,0.0,1.7639945107887742E-4,1.403992349351749E-4,8.973475604538357E-4,0.0017053190394403235,0.0023906721709035126,0.00437026240803883,0.00709833296449328,0.01051035341795046,0.014251587530306059,0.01949858073762024,0.02615200657072174,0.038157020969290696,0.051107745266829804,0.0705402101333034,0.09472338413680785,0.11815427515881273,0.14629060482550893,0.1668545242658851,0.1815097343580178,0.20040582446589877,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,h solar,0.0,0.0,0.0,3.067046123121873E-4,7.677820101526882E-4,0.001349150374659027,0.0030730753848303705,0.00593586180419743,0.010399373412891771,0.01653984854493009,0.025962328716749937,0.03938911219867008,0.06501423402814002,0.09576170301182844,0.14442706338849245,0.20744523961572883,0.27604942090606577,0.3618403471593339,0.43946325568706457,0.5075286463730018,0.5958065874908508,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,i geothermal,0.0,0.0,0.0,0.00153262062172272,0.00323620176822876,0.00464285550510749,0.00849285075954658,0.01333121822050664,0.018928345944111934,0.023808119601582762,0.02981790691748416,0.036671786796034486,0.04630432725023745,0.054607365419630044,0.05877043204873136,0.058797908457086746,0.05882570525107929,0.05887084053471879,0.05889422517938298,0.058920410085526176,0.05891106676096671,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,j traditional biomass,0.14111010000000002,0.0457948,0.0595668,0.0510138,0.052274799999999996,0.0535504,0.052087400000000006,0.050381999999999996,0.0491862,0.0476722,0.045328,0.0443332,0.0420893,0.038790000000000005,0.0355418,0.031404600000000005,0.0269245,0.0231565,0.01982954,0.017148240000000002,0.01497405,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,a oil,3.7071957872605585,3.0210250209317926,3.051820889147907,3.2420632845979642,3.364157742941742,3.384062778864128,3.34318957514149,3.1751024697541435,2.939083640509846,2.66332350633249,2.4918855882923157,2.3828550499803445,2.3165732646594144,2.291774958080118,2.2547637129463105,2.1741947754210753,2.136795035486914,2.116858550947456,2.041031255781968,1.9687085136115208,1.7895083161075132,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,a oil CCS,0.0,0.0,0.0,0.0,0.0,0.012027839916162452,0.022275079676245788,0.028473668206783338,0.037505357292952006,0.04166892206878062,0.04605726258943902,0.050984928154641285,0.056800854116525475,0.05998337034370571,0.07141546870278745,0.07355210627683564,0.06802044518876825,0.06540850607353647,0.05450273014015111,0.04029950602157971,0.02487651353225193,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,b natural gas,3.181941323446538,2.8331272518750334,2.514820677786644,2.7669178494171516,3.101417903207025,3.3540265802678686,3.593755858645209,3.823214456273139,4.148137382335383,4.384135210957084,4.563140016408314,4.5025833420634855,4.355180684394792,4.155803945276409,3.894208260713899,3.635983849608997,3.402460539150007,3.04505461133443,2.785218758144755,2.677560025422847,2.801051264282025,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,b natural gas CCS,0.0,0.0,0.0,0.0,1.1668001145353E-4,0.02044949768129357,0.05383995421097517,0.09077509058065956,0.1408574164490171,0.18909266582779022,0.23565284611572393,0.27737669465741255,0.32385954557679747,0.3601159484163961,0.4247007576099003,0.4784182097638576,0.49977004609036707,0.5233838636696309,0.5350951678566859,0.5424356800232579,0.5678660583056104,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,c coal,6.9083177173611,4.672743476995802,4.600364144296653,5.02864659887659,4.8734192133259375,4.905782179545739,4.899706351909967,4.813186191447735,4.640821992446893,4.408830806212635,4.186474863255769,3.783515289181093,3.4014534206086577,2.971237929467056,1.9089120855160449,0.9897875009544631,0.51939951779692,0.17451315604595408,0.0817853814356884,0.049198339484269805,0.027698822211019873,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,c coal CCS,0.0,0.0,0.0,0.0,0.00426049476794081,0.01665480965234737,0.04054426822110984,0.08190726104794857,0.15415045850693207,0.23355713172057269,0.31063776857117126,0.38001719745076973,0.46310261435367106,0.5276848624802187,0.6695762915263116,0.8029359818598991,0.8728583272180096,0.9365216194350119,0.9427182596473215,0.9463911773259848,0.9516456781044443,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,d biomass,0.2593906286025529,0.6892296292152656,0.9898991966106019,0.9955907246438919,1.2458569308439162,1.3557252617763307,1.4767082977805166,1.5691212071457443,1.7159040048400365,1.8342463468020358,1.9017668423163163,1.8877297125403674,1.8104554958674925,1.6732231616602395,1.4335044921208753,1.1383045887934657,0.8263588459943024,0.41178898272087744,0.32408256303382293,0.2882897361249813,0.2540595049195418,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,d biomass CCS,0.0,0.0,0.0,0.0,0.00827474709658599,0.02357247533675077,0.06027888581228033,0.13577023582039405,0.28435513896935655,0.4570837841809384,0.616517227923489,0.7527375735708381,0.9120823086362532,1.045723627650323,1.360547646559306,1.65544772043561,1.8987868872062679,2.0608465376430107,2.1301424760664873,2.151658417899909,2.010941013867507,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,e nuclear,0.2847000130409805,0.36759325672192195,0.34272335400099124,0.3894856492766168,0.4262048865971357,0.46003501358536847,0.5125237486768954,0.5632030874578667,0.6364688541427456,0.7096858431536235,0.7930785898041255,0.8738655406490657,0.9830869285692628,1.0845232138980483,1.280429519455571,1.4277089657436268,1.5298059751960218,1.6457206328151142,1.7149193871585646,1.7776002695975937,1.859892458451298,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,f hydro,0.0980422398809942,0.15655560373764502,0.16732697917893416,0.16557308907019821,0.16538277308297658,0.16545138731569564,0.16443469725050064,0.16339994145938128,0.16835806480806056,0.17332775709207826,0.17834760167523378,0.1832496893661424,0.1882259897819954,0.19332339557373435,0.19828642668245608,0.20345746942625145,0.20878961682168765,0.21408945524612025,0.21952629203020238,0.22502393919426128,0.22495503440796535,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,g wind,0.0,0.0010633459987845898,0.01548112763046269,0.024128912053463878,0.034420061500990515,0.05001508691054134,0.08068715700823187,0.12055430012031917,0.1674688532371822,0.23076963571957357,0.30577814196231584,0.3780205243664353,0.46233355604133797,0.5332669755239361,0.6984796771451163,0.8662655235538633,0.958780185623467,1.0804506748497942,1.1612780059010175,1.2545872419350796,1.3161495120472189,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,h solar,0.0,3.7976627744023465E-6,0.00252175759126781,0.00360046940406383,0.004957981429912507,0.007411883199437011,0.012920743066177161,0.0211468521378775,0.03264573128493806,0.04914167037365841,0.07032367989702226,0.09290933801743806,0.12197002049257018,0.148701114352174,0.2095199453734315,0.27439444700962773,0.31615586082707464,0.3700940957705808,0.4118466663950606,0.45812198685189676,0.49792259133824723,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,i geothermal,0.0,0.0,0.0,0.006293465421082729,0.01332359781898184,0.02207237287593618,0.03475958402034599,0.04702824756493995,0.05886989392580157,0.05861259647486907,0.05838704697790077,0.058138660043969954,0.05792543540833448,0.05776557981000651,0.057572619127402976,0.05744794846500902,0.05737448559271006,0.05729465814835493,0.057254518292773726,0.057231366109196755,0.0572077874444236,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,regional corn for ethanol CCS,0.0,0.0,0.0,0.0,0.0,1.5053682550168E-4,3.0299572404384E-4,4.5960332367631004E-4,8.4860061493369E-4,0.00130424682873128,0.0018086146563528,0.0022932789243095097,0.0029048525623125696,0.0033169275884417497,0.004572014436916449,0.005553884236678771,0.005914561523280691,0.006319115389683439,0.0056184884170734205,0.00443601541335779,0.0029919025468256397,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,a oil,24.30334227719169,27.730694769082987,24.69791489729909,24.921058456201333,24.674660523371,24.213313367531423,23.189070791754723,21.32723735470233,18.66260509673257,15.984505674174676,14.097089330839056,12.99594375165229,12.157509038341326,11.82861307305305,11.387000001570076,10.873266168257924,10.589497018806748,10.45832860429303,9.92403801768958,9.31815710121842,8.270999898038443,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,a oil CCS,0.0,0.0,0.0,0.0,0.0,0.024864815269547456,0.05681192919214161,0.07900592602076652,0.11512029222956864,0.11122969980724112,0.10953256498675681,0.11456578868416374,0.1200027401373197,0.12161181297092685,0.13898509727888708,0.1334463869654519,0.11973276521782215,0.11923271872147558,0.10607566101895159,0.08244939855421472,0.05793575779554515,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,b natural gas,9.240620718739759,16.216240901748783,16.559704440882975,16.829025470099204,16.639457379299188,16.877588057281166,16.850545190114033,17.15496575174588,17.618691723635376,17.86051948316504,17.58601963482586,16.563294345074922,15.237780647893295,14.02703171827588,12.533774759609852,11.321981347127643,10.242329961824854,8.894437439462564,7.852614040012183,7.1651273030189575,6.729599409547214,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,b natural gas CCS,0.0,0.0,0.0,0.0,0.01452758917801263,0.09288392260853519,0.2475369360068383,0.43495168901981274,0.7268137776198597,0.9415445809899768,1.1082195881747345,1.2576504018616328,1.4011891365386815,1.5048116860758325,1.6924264668047861,1.8170621496560748,1.856798403604369,1.9044681837113941,1.983774490559908,2.0626330060265143,2.190836274438011,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,c coal,12.691929341548652,9.452839944458045,7.958314181477178,8.348708745935772,7.986582275915547,7.852881958232244,7.683807685738523,7.469250908097219,7.175918855781954,6.673013441458881,6.1097769948373015,5.346954084054163,4.599146294412863,3.7902596558476644,1.912368268740147,0.9021265369308132,0.45273425388720573,0.15209551786902828,0.07327251113304717,0.04513474150240475,0.02684227721852514,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,c coal CCS,0.0,0.0,0.0,0.0,0.011081128706369493,0.040523902778315815,0.12784136826560685,0.34333827274394135,0.7086864756575981,1.0704737233038473,1.3162307737595473,1.4436471430968687,1.5227227449918623,1.5013426817423496,1.4817275902703764,1.4047175818849638,1.303442343386502,1.2343647673298477,1.0731506972260612,1.0516995335935622,1.0367884824928038,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,d biomass,1.70151286973696,3.01254256776503,4.750402538162461,4.06029948293229,4.778601493875354,5.209603839100872,5.692109010383995,6.262149680672132,7.098768016678345,7.836004569237184,8.172394891959232,8.117393579514305,7.756642915692921,7.148214809212829,6.00155645580208,4.630990368392151,3.2378770566938555,1.2928580680878596,0.9650893479272227,0.8351085623340427,0.7328909227590491,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,d biomass CCS,0.0,0.0,0.0,0.0,0.006940963431165357,0.05411782305426362,0.22272587444045303,0.6950419113484684,1.6279448307698086,2.662116413150438,3.4168062392719487,3.9595504215929958,4.513461119202358,4.907634769729991,5.881670769368371,6.704937832086271,7.353167767995148,7.643360748966077,7.594646335303889,7.4064529426727885,6.698649691300322,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,e nuclear,2.6656342315354657,3.4350570403425325,3.162661793630794,3.249914816214027,3.2968416682108037,3.3053466496977153,3.36610894397915,3.405400259406222,3.657742331074851,3.787701399655661,3.917123959892565,4.178304104706507,4.590553674315351,5.039839222851382,5.615216862276234,6.01755640846496,6.406615651526026,6.903390691109868,7.249326221124313,7.521838287239927,7.661155898616789,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,f hydro,0.9660456594887168,1.0151795396308656,1.2464371047525702,1.2224961953103666,1.211979382004004,1.2047363058264782,1.1860235502885852,1.1660179870425849,1.1610002465703113,1.157747353371704,1.1559340743253403,1.1526274871449627,1.1515139388948041,1.1522491622894804,1.1517441912020243,1.1531952875338916,1.1559606157075604,1.158920847235466,1.1632291964262924,1.1682620003713349,1.167344094843873,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,g wind,0.00287959684220104,0.2675020062802818,0.5551886127124432,0.658201486287967,0.7416108235917288,0.8610383951003342,1.1162415222596898,1.462399649721819,1.5429772044656016,1.9786991931447453,2.4105808640021116,2.9099397386554235,3.4028080710121453,3.7736116927204226,4.341329321217106,4.907317125935761,5.295523515089654,5.822519296533726,6.243113717090209,6.684704945826871,7.061439128646842,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,h solar,4.437979471552065E-5,0.00555173546981191,0.08579819519814703,0.10008908094335218,0.11808877402915008,0.14128924905498494,0.18913632805694167,0.2616094680374545,0.3113237482880633,0.42724881845535967,0.5503898365944454,0.6978317570024646,0.8611260354621402,0.9966918001157257,1.225102184551302,1.445519491071211,1.6112079410551259,1.8360928012118487,2.039886007936291,2.254815122770274,2.4581713012470585,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,i geothermal,0.01193073278985261,0.02056461763925736,0.02144856764267355,0.05229998517940119,0.07925124534684683,0.11548738974371102,0.17686762088593583,0.23868205188452152,0.2680120203464976,0.266165904264577,0.26466170685489215,0.2628291569348205,0.2615061635224103,0.26061562157327084,0.2594502113556497,0.25873273804023045,0.25832303345131086,0.25794326899628345,0.2578717472135323,0.2579601824819145,0.25775720233121796,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,regional corn for ethanol CCS,0.0,0.0,0.0,0.0,0.0,1.3171416627626E-4,3.3909155687954E-4,6.7094943493464E-4,0.00172028303499539,0.0026808685466680805,0.00354298022496468,0.00432758419908936,0.0051810934489818,0.00555734238726144,0.0070702580012732405,0.007626195866479019,0.00750484472644073,0.00799367370414069,0.007371028391900399,0.0059591555896707305,0.004496107666174661,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,a oil,4.2298530551121125,1.000482395366871,0.9089471469339087,1.010478202688135,1.046645547590461,1.0660065303204753,1.0673054406144873,1.038545114708641,0.9876106265280761,0.931510436228182,0.9079360820495338,0.9091291370666161,0.9184888764666378,0.9407724616447257,0.9387762384018643,0.9142395212707086,0.9049814095610049,0.8814781982732806,0.8324863678643755,0.7852636216692316,0.6906518732007365,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,a oil CCS,0.0,0.0,0.0,0.0,0.0,6.260522986961837E-4,0.00149472873682666,0.00199517838925947,0.00263697268901135,0.0030090015462788597,0.00334547138817599,0.00391491090664947,0.0045846119603881194,0.00506776466482509,0.0061428895890328905,0.006548966761065,0.0063635024992446994,0.006753259414018519,0.00602285066709748,0.00467102025944231,0.0028349195409274803,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,b natural gas,4.781085170132646,3.889149291929316,3.0287575589383584,3.3327180785260246,3.3678138956833545,3.415974471574737,3.438419023203036,3.4426227222199857,3.4393386438027593,3.4222609452294708,3.3933873808526274,3.2733471187074494,3.073824563577485,2.9249358160780705,2.678594766012454,2.463483386327546,2.279093388890052,1.9712126587218513,1.7542127238070346,1.650824054219901,1.8038287612071837,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,b natural gas CCS,0.0,0.0,0.0,0.0,1.0340400548775E-4,0.012744916268707988,0.03932359896731798,0.06845010620682933,0.10519113269910436,0.14140336246068566,0.17479951685785766,0.21151147246304833,0.25205157581705045,0.2860377264128487,0.32803083420553697,0.3574471233514863,0.36814394154046487,0.38174998844750113,0.39164937276969086,0.397120067638451,0.3999402599875487,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,c coal,3.5816493206617963,1.6254964400167164,1.6252781191056607,1.79448124594854,1.680755884964666,1.6469052768435886,1.606598056464582,1.5526435582508025,1.4568326013794617,1.357044324548738,1.263533949933594,1.1018628622385136,0.9495851356730434,0.7960263750961992,0.47943517297693045,0.26661384315459824,0.17279677551689504,0.09006220786575558,0.056630706233800246,0.03972741463907428,0.025262042762899582,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,c coal CCS,0.0,0.0,0.0,0.0,0.001326650180436,0.005418444233772364,0.012751812733098286,0.026127491092516938,0.047975373222337296,0.07341997642414624,0.09740570848394103,0.11928471006359916,0.14339493990879226,0.16348111173562613,0.19019011543707243,0.21375984332745523,0.22764200536533985,0.2418104362522815,0.25164633515792045,0.25542666280037596,0.2594716920134331,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,d biomass,0.0250323,0.07342311903226016,0.14969950009798944,0.18743922696664203,0.226767178505178,0.2505764490378303,0.2843313231032792,0.323535682235097,0.3816792108874219,0.4400839278640833,0.4847742030706189,0.5108076161896516,0.5210304245550575,0.5123367007935967,0.47121387084219735,0.40662367875538663,0.2886735802395239,0.1712468374993922,0.15245796461949157,0.14977961299063558,0.1473830402038598,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,d biomass CCS,0.0,0.0,0.0,0.0,0.0025896022702123498,0.007876970760849596,0.02035354486833985,0.04730672850217471,0.0976545039209542,0.1621172324966835,0.22591257516165186,0.292699872103271,0.37633210485511,0.4679761720333369,0.6464540127391951,0.8421786943330395,1.0516833090988782,1.244894711855545,1.367487935208426,1.4416504808021662,1.4121254564940806,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,e nuclear,0.280705008048329,0.3279525388173897,0.3292564437062387,0.37290342300992224,0.3874495736065109,0.39448673335501294,0.43347963805019524,0.4859486847970398,0.556234501140962,0.6297772205273271,0.7065256621820772,0.8012166523334363,0.9172671869287261,1.0206569028232255,1.1650582284192126,1.2638428607311774,1.3580170248905525,1.4831415061265707,1.5659145911034131,1.6245590394906122,1.6931955912306282,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,f hydro,0.039579522288475784,0.0460090462516687,0.04916076294518378,0.049090768943919345,0.04941435698437027,0.049873408804369135,0.05006299787912503,0.05021207258354809,0.050355938152380667,0.05054076113176244,0.050756359445421305,0.050960647752800646,0.05120191833200996,0.051469694686172046,0.05173038160135694,0.05201872582023559,0.05232431317825287,0.052630500487582485,0.05294532663385878,0.05326302105794518,0.0532412360964542,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,g wind,0.0,1.4398183940399814E-4,1.9188598184053998E-4,0.0050766435282902905,0.009384456700742637,0.01397874517755197,0.026560317514970608,0.043861186126303464,0.0702627886293229,0.09812682929973493,0.13149197640831953,0.1741615510059656,0.22087392445577064,0.25999129955786243,0.32320770142392086,0.38772210572884286,0.4277824172575929,0.484608966811103,0.5350184699777552,0.5921991137214289,0.6513589820534298,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,h solar,0.0,0.0,0.0,6.5751605539425E-4,0.0013512370676408852,0.0028803467442131336,0.00834337512550984,0.01734014098008614,0.03252794919198798,0.05194163371599254,0.07598162880384346,0.10730012391781515,0.14591737238895228,0.18100623260068013,0.2396211588123258,0.3018225180499233,0.34428069067454986,0.4032186383999517,0.4576317298416313,0.5172491661659198,0.5811620477960567,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,i geothermal,0.0,0.0,0.0,0.00419378081207209,0.00660173575405079,0.008454227267641721,0.009885234787666501,0.009883152307290661,0.00988090100152443,0.00988114846213536,0.00987505982558666,0.00985826109464928,0.0098449199777956,0.009833499771760651,0.00982173737864581,0.009814754072597982,0.00980892537556141,0.009805948484003658,0.009804327371568281,0.00980265444346966,0.00980089527086374,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,regional corn for ethanol CCS,0.0,0.0,0.0,0.0,0.0,5.44004858454E-6,1.6555232436860002E-5,3.073508220378E-5,6.116352322866E-5,9.894012816038E-5,1.4131797438746E-4,1.9363372205676E-4,2.5727356785559E-4,3.0919352913221E-4,4.297679119012E-4,5.3503294402541E-4,6.0687497289458E-4,7.5823441541746E-4,7.6384759710365E-4,6.767990479214E-4,4.8684515267520003E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,a oil,1.6127042841937023,1.858679493794465,1.8442720696187591,2.806691520911437,2.9984334357544267,3.1223971966823725,3.1613775718655184,3.0982772421137295,2.9122303251606336,2.6450144198791468,2.4139871774653523,2.2807969582213254,2.1923492390395642,2.1467382578251253,2.0656992968330363,1.9461698674030525,1.8625518823694578,1.7753478568333816,1.6449388196384482,1.5314401377089457,1.351744974411996,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,a oil CCS,0.0,0.0,0.0,0.0,0.0,0.003968391954991653,0.005370625015722811,0.00615955067084879,0.006784713991336499,0.007790116744833309,0.0084878678557334,0.01050620838126998,0.01732564926449546,0.019515540936127482,0.026507967482667098,0.03148689651175974,0.03054923476761939,0.032799573240587604,0.030383244237701768,0.02382384516378245,0.01503441681161675,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,b natural gas,0.34754650645079016,1.18118226226814,1.5545766579012517,2.7377249785531657,3.124492317111418,3.52469144378425,3.867434525591529,4.165941340541515,4.419448503133281,4.646149035536228,4.778958844289692,4.747902680880835,4.167895137225083,3.8590776500878867,3.4332281863753176,3.0304980135964303,2.6671905418204798,2.197665788728058,1.8567641461091664,1.6757599977476574,1.6707614725186588,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,b natural gas CCS,0.0,0.0,0.0,0.0,1.5793189309327E-4,0.009413447828496974,0.022848150235335832,0.039272327074440734,0.05836402630137727,0.08313249145571996,0.10985520985149687,0.14934942750100572,0.25864750306696366,0.3359571717145105,0.47786821442046057,0.6417722475043606,0.7273738974631981,0.835457582016265,0.9298951576441863,0.9912829560864607,1.0516387951837327,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,c coal,1.3960736627403703,1.5860956235853725,1.9610696848652482,3.0391221768509067,3.041567905018232,3.1662286028879723,3.236143896218325,3.2571007044328133,3.157516927513802,3.0440324683833553,2.9139686917295355,2.6544869619926654,2.4155628445607302,2.1025160342877234,1.3083716437309245,0.5862345392737086,0.3207110514831161,0.12481062903467356,0.06623566924936958,0.042413843510158256,0.02443739921674265,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,c coal CCS,0.0,0.0,0.0,0.0,0.0054926470960007506,0.020317059006159165,0.03961201473868894,0.07015268403656454,0.11604447544811529,0.1769148315756302,0.23285109481231986,0.2800388658649503,0.373317037638408,0.43294106385191605,0.5423855371816585,0.6582106534203411,0.7051954600777244,0.7509620944253317,0.7729904800986424,0.7661763767826058,0.7679190761292828,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,d biomass,0.4053529,0.33117310354025237,0.3192826967580159,0.4280910366586757,0.5165504634952509,0.5852065104000543,0.6545691954693003,0.721477758627798,0.8056307723536175,0.9131990776146306,0.9868636340938188,1.002196408696524,0.9832914369523107,0.9317605159139424,0.8354265417660518,0.7047253823737998,0.48828588422753366,0.21830622358660579,0.18347468861342997,0.16906203329157513,0.15214418807847552,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,d biomass CCS,0.0,0.0,0.0,0.0,0.01127431308574324,0.03001450719699554,0.06011809341040297,0.11702410094041224,0.21821220982269865,0.36913910716573006,0.5162247483917275,0.6407750434906386,0.7872181877012729,0.8978504255236248,1.128198327293021,1.3802951610554335,1.6163075980656836,1.7858406156096347,1.8524048366011723,1.8583957150637425,1.7204687251913275,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,e nuclear,0.0,0.0,0.0,0.08923996733589865,0.12407923385533515,0.15866298514853763,0.1974243228120254,0.23506368550659085,0.2713042675842411,0.3127957669230004,0.3547267460858067,0.40679544122821065,0.535716936158569,0.6278293663231116,0.7787789446375506,0.8601070149843488,0.9276952273976877,1.0136618917763869,1.0969451102342798,1.1644640691815524,1.254134780349705,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,f hydro,0.15840173300012783,0.2695360550046713,0.3406252259470569,0.3283040932898804,0.31664396837182357,0.3050408703098723,0.2929793727614702,0.2809146313529125,0.29720312999060605,0.3132908106418596,0.3292059414926962,0.34475736087855746,0.36030475233496895,0.3757676883089813,0.39082122458941104,0.40618655811056686,0.42178090605922275,0.437233538922105,0.45297064475840715,0.4688547808244675,0.46866521151153284,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,g wind,0.0,2.54316734795272E-4,0.011180425396988259,0.026453249014159186,0.03555138056541998,0.047782765423073095,0.06523094227041557,0.08575263417379032,0.09666903247172492,0.10931661002195851,0.13053194530439285,0.15971255583503718,0.2502398754829442,0.31063540270119855,0.42967737730190586,0.5657191817603047,0.639051269353492,0.725782677754525,0.7544989529410234,0.7946241607365487,0.8104867915110466,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,h solar,0.0,0.0,0.0,0.0020916710203284796,0.004143479631104542,0.007552914048007004,0.01316116145484802,0.020881818623076955,0.031048118493848902,0.04311352348966874,0.05885570126083871,0.08233177434371697,0.13442081255399538,0.17458667545185821,0.24736319293621994,0.3333440677703013,0.39136657781805323,0.4616652381178466,0.5099176773744699,0.5646631352708796,0.6066997926619083,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,i geothermal,2.9592998197002006E-4,3.4646093927055504E-4,0.00244388241254819,0.012271298772511341,0.018442853667207142,0.026075074556332727,0.03545351420515542,0.044889975782349115,0.0514576358772901,0.05284196523392343,0.057838479990925,0.06416755291324205,0.08099318720535359,0.08082685944135412,0.08058677664728046,0.08042549104508127,0.08032165506750431,0.08019630898621077,0.0801300703185172,0.0800934064236002,0.08005190255898446,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,regional corn for ethanol CCS,0.0,0.0,0.0,0.0,0.0,5.954782011475E-5,9.058448301956E-5,1.2302105158336E-4,1.7117516410721E-4,2.4848715815547E-4,3.2582081965719E-4,4.597813876836E-4,8.4568297554065E-4,0.0010200029860242899,0.0015517955980852002,0.00209294918329815,0.0022760218434209,0.00268671243593869,0.0026315675144152,0.0021668127546638598,0.00145174062119612,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,a oil,0.9535333277766902,1.0044211671674594,1.005685328647585,0.8793277261924193,0.8874389765748291,0.8873158610075244,0.8792870042045903,0.8122530787756227,0.7132683197864245,0.614206995624751,0.5481783933825726,0.5123507643574995,0.48602923616096455,0.47775591968407366,0.45377444125645505,0.4170769048736133,0.3894024661378033,0.35761834894011824,0.32634596051948195,0.2994089406760676,0.24190127395389097,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,b natural gas,0.1509147898057322,0.3030740418372956,0.34325923095744426,0.3425824771611249,0.37196024969155395,0.4078470730191745,0.44123879791377196,0.5077313489439925,0.5728999244217273,0.6307247526137425,0.6657203066416522,0.6657599752550286,0.6575613895087318,0.6343157101227289,0.574985278586861,0.5159265737348918,0.4717897577484793,0.4040823306376998,0.3594114557955886,0.3642065092225826,0.6443478454596419,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,b natural gas CCS,0.0,0.0,0.0,0.0,0.001390482902118,0.0035931923647677102,0.00658838263980784,0.00992816466300093,0.013449830356559922,0.017292495901555533,0.02123630036546051,0.02568109466504539,0.02993187119552864,0.03380074932179476,0.038319038024574065,0.04118912363815601,0.04292075613661786,0.04752972233536662,0.052128434586973575,0.056361732348707824,0.05853872940145229,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,c coal,0.053626280505638974,0.04296136790803485,0.04070798460827029,0.04147564349679694,0.039917084025049114,0.04330904983409188,0.047026049838160944,0.05687586615334701,0.06222014554139231,0.06537738225328711,0.0659803625182469,0.06051059617714964,0.05481429978092425,0.045793356016532005,0.01583511618741035,0.008433396855430722,0.0048927210003465605,0.00231092212504185,0.0014938088480327928,0.001148065507373491,8.848213308068214E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,c coal CCS,0.0,0.0,0.0,0.0,0.00102608214156639,0.0019862402801701,0.0031760958534322904,0.01216481163796219,0.02864904614376166,0.04606771244541439,0.059098869778716055,0.0669959941005984,0.07249316139998817,0.0737476292965248,0.07392848614592844,0.07109539802856253,0.06761685708255172,0.06352663332710384,0.060064953428004345,0.057377396156549604,0.05608803986602896,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,d biomass,0.10377223027372248,0.14421370627227467,0.1696043927530084,0.15664189749790128,0.1937481161342146,0.2149086069734547,0.2342570142607083,0.26537913346525843,0.29317456838819417,0.31777936203714857,0.3263134876409933,0.31455637661988806,0.2936628959906144,0.26398419677750085,0.2146795981514456,0.16412648692895246,0.09409422595591216,0.04626864188574324,0.036789986959119655,0.033060691983930246,0.03128756710513069,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,d biomass CCS,0.0,0.0,0.0,0.0,5.0880106193375E-4,0.00302657546098853,0.007142254032002059,0.029118866082322628,0.0681713438363025,0.11324087037331126,0.14815744059235683,0.17858100695658863,0.21309892036544892,0.24937583004119115,0.3385353549327276,0.44002719033341003,0.5524394680016093,0.6372042557874562,0.6702204348783346,0.6858364477966226,0.6812658492047282,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,e nuclear,0.08556158997171798,0.0852131298430216,0.09630638627310815,0.08867861187394108,0.0855770865961809,0.08003025897282916,0.07210724711274845,0.06200585972343599,0.05854082469016859,0.06014805519444545,0.06833089801645356,0.08803915923637522,0.11200688779048905,0.13906988072307672,0.1558723519241446,0.17428511400076568,0.18881665115677732,0.2071896619172109,0.22557781878299252,0.24415255621026427,0.25306662809796976,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,f hydro,0.5618447809731906,0.635160027142169,0.6077523881592226,0.5909239206807179,0.5790721879308244,0.5653949975573745,0.5507400529115084,0.5354616060349439,0.5407378455891869,0.5459234180271183,0.5512135690511845,0.5558240911806986,0.560899149319947,0.5663120506166908,0.5715805287235444,0.5768750443055144,0.582296062257849,0.5879042327733813,0.5933401426155553,0.5987767034351635,0.5980330927895081,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,g wind,0.0,0.0018509558554413,0.0034077847504451293,0.00542557221438034,0.016884478582134373,0.039187959390405105,0.07569778997856026,0.12050292960618655,0.14072163128300078,0.16223709762391245,0.17742178010489235,0.19854037936385732,0.21374982880987858,0.22522007339616992,0.2551678278579369,0.27490657601356794,0.28528947347169914,0.2913028035176975,0.2907328830713581,0.2887544086849753,0.29142673328615154,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,h solar,3.6101637132446826E-6,6.915613072613E-5,3.0265856225293E-4,3.8998568782188997E-4,0.0014363082861431101,0.0026213515339881402,0.004278888349160359,0.00571226884510562,0.00644571949219385,0.0073712868975881005,0.008026134319811919,0.008205103543485179,0.007972725829514821,0.00798462406338471,0.00898712966065251,0.009999257227629699,0.010938974633467938,0.012080217983442141,0.013374074353140482,0.01487540394501236,0.016004864725222168,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,i geothermal,0.0010852884346667401,0.0060487335807215496,0.01631552952964739,0.019298626029266547,0.02706718826610289,0.03552834843888452,0.03609623202794595,0.03604780207922877,0.03601679944239511,0.035984099005148824,0.0359581455752589,0.03589245673300467,0.03585807175027615,0.03584651605061009,0.03582606313001195,0.03580765246199298,0.0357974934882658,0.035796263181409715,0.035785701925816905,0.03577459214579725,0.03572865396361621,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,a oil,2.5727581436448537,5.265202933440152,6.875596275171798,8.505918812735972,10.390750572559556,11.965913066487875,13.444515834198553,14.734004125892973,15.820972579272576,16.84516386664806,17.99783103351564,19.290362146272155,20.356979239494425,21.494063408688667,22.174846035922233,22.544432136326378,23.220869020453705,23.946667442565275,22.944640492554726,21.833887074115154,19.656144317068772,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,a oil CCS,0.0,0.0,0.0,0.0,0.0,0.31138936286766283,0.5273843064670626,0.7178373533105403,0.9045582072704049,1.0713399314649696,1.190696229521184,1.3415406257391216,1.4895679487651956,1.598402893607985,1.7434613828981989,1.8608385398664216,1.9196728809275,2.1380284264912985,1.9358717228075635,1.536763756116466,0.9791189440824464,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,b natural gas,0.4422936196233034,1.3281032888301034,2.2058124186968526,3.1354149037748233,4.475247133376934,6.321843730499043,8.459504110924316,10.957006218934731,13.518926366818045,16.09233446549267,18.469639222460614,20.051455988331575,20.73982764809191,21.1120257181751,20.948729083488406,20.598218649244117,20.130936257118467,18.772758791795457,17.277493822192692,16.46404911035482,16.046132467031082,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,b natural gas CCS,0.0,0.0,0.0,0.0,4.5336050232288E-4,0.203346631305474,0.524633841652727,0.9378637877247537,1.415835993927506,1.912327434442294,2.3437134601637517,2.730181539348864,3.1164861121758225,3.458047503680261,3.893564559029012,4.5217143329488225,5.128997066953108,6.277814008656861,6.97875336425494,7.477491889269667,8.184614399611412,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,c coal,4.3901083440218205,8.692809229278682,11.901930126073175,16.260915394160033,19.14444573542486,22.959040071347538,26.998365829862305,30.99006954566887,33.758288263726136,35.85416496964262,37.43871852783636,37.14968490835511,36.49684165750208,35.39445528995973,30.007684449579898,21.745183299380123,14.277184474447866,5.345793734705186,2.42054363167226,1.474715055820745,0.957321200127781,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,c coal CCS,0.0,0.0,0.0,0.0,0.050427131602728936,0.2373684287617764,0.5097844451687497,0.8952353134895186,1.3993536558288304,1.9803811181767494,2.5055556585546666,2.9758452567901417,3.4463667714297315,3.869973000639195,4.682245449371827,6.055243140300225,7.299508225367999,9.178218499554417,10.572568314969043,11.518965709478358,12.444622379701258,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,d biomass,1.13930329,1.448953460709084,1.5561134649871082,2.335955754721834,3.8409469417787436,5.347063103542836,6.97137988662375,8.591487824278195,10.258173659403269,11.796027002453984,13.051196904199537,14.050222635381145,14.479218007004906,14.502446125765694,13.483591340317565,11.48282341385135,8.640629929781237,2.6921758972303778,1.468828673951726,0.9192892039945433,0.49998993739452274,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,d biomass CCS,0.0,0.0,0.0,0.0,0.12864024092076926,0.418129656248445,0.8915449831909404,1.6339199666596622,2.702874166343397,4.045210703706866,5.407919751167259,6.906365861653397,8.335448285697055,9.570099795757349,11.109819817923198,12.562454393941701,13.874825210097224,14.555720552456304,15.824338845202877,16.98241755706937,17.269460152449394,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,e nuclear,0.02210767929225579,0.06236629388948987,0.09455744922547628,0.15144401092563337,0.21750118993865486,0.3121321382269402,0.44490435308979276,0.6046071653571315,0.8023508424245761,1.040299488728711,1.318391263060209,1.6108690261484997,1.97072271716159,2.383822016704133,3.060082003636246,4.0046094920009665,4.957375035385639,6.1376434301956735,6.86349032273055,7.380609078558267,7.949944366825696,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,f hydro,0.25796292521978365,0.36622796411780234,0.4119257788081701,0.44785125798528097,0.48381200010518677,0.5197744417393266,0.5557407627801557,0.591708291834301,0.6550664516186776,0.7184547598555362,0.7818459689181934,0.845254154782341,0.9087041950484352,0.9722220751447008,1.0357459883442415,1.0992678732488401,1.1630692499218944,1.2263403039357024,1.2899845032357946,1.3537241867940226,1.353643769832737,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,g wind,1.1520041318226001E-4,0.02377079767099035,0.07167946151027182,0.11846652219873684,0.1883883679335602,0.31167899505198815,0.5116714592501707,0.7802219035794913,1.0392337680439068,1.3815121253565945,1.7535157273195072,2.1046246115610416,2.5097199772019843,2.9461859510959134,3.7904018922606344,5.091921962807684,6.341573561710488,7.920207545404592,8.691808354307636,9.076162132681535,9.19530021563149,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,h solar,0.0,6.839989329833001E-5,8.279985553896E-5,0.013445337449628909,0.049825290104205715,0.13543078196770794,0.3024876767690136,0.5731539991552411,0.982444882896328,1.5061511214421628,2.1926349573257333,3.235611049736399,4.564455059513194,6.06465250000146,8.368413162788846,11.234788853130528,13.992316526831525,17.274815986926004,19.337342133054666,20.832928640995927,22.079507674616508,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,i geothermal,0.0,0.0,0.0,0.022067122815701824,0.04756144131617521,0.05655856449986226,0.05655643184243254,0.05655528362874013,0.056559460918781,0.05655925776723768,0.056563861802463894,0.056569515915557304,0.05657969217461693,0.05657432799049879,0.05660471118128716,0.056623889282630326,0.056653914185303376,0.05663609648771233,0.056650534327883535,0.056667384046486184,0.05666662215377446,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,j traditional biomass,4.4472504,5.21060866,5.57558156,5.04559128,4.707147,4.20366295,3.6304584699999998,3.0888161000000003,2.6568720200000002,2.25589103,1.88263559,1.61187104,1.34698089,1.09380294,0.91831923,0.74021703,0.57761008,0.449913012,0.333873454,0.243535789,0.179683716,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,a oil,1.48820573819064,2.832053577563879,3.10468570387153,4.3947965363136525,5.378710500326867,6.214792693817731,6.952372587816954,7.54297023132493,7.962429021313453,8.295806910701831,8.631196036022116,9.124336781173776,9.568031097812376,10.050501283775395,10.292743193638074,10.409812660516176,10.443074301636383,10.48292828927921,9.828943846557365,9.0317260653105,7.851148925080696,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,a oil CCS,0.0,0.0,0.0,0.0,0.0,0.10982407742203243,0.18670277238832775,0.24344984152782925,0.29037023595996847,0.3135252102552809,0.3202235835351909,0.3414213347294299,0.3704656571879332,0.3867026518058186,0.42019213909800407,0.44901196766466855,0.4721660437624348,0.5352345529074916,0.4728232435597492,0.3564142349753133,0.22503248310245272,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,b natural gas,0.6173077438204592,1.2218861804990602,1.5887475249945122,2.532692706196068,3.4530179226623425,4.581519561143728,5.734126754810815,6.914297927778564,8.06946789136235,9.24375080114376,10.291982893567933,11.017773759016789,11.317352564760302,11.51038876773973,11.425329160920425,11.268080795782797,10.942006893194758,10.136429320371676,9.31747680120974,8.901039240115754,8.908673494845523,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,b natural gas CCS,0.0,0.0,0.0,0.0,4.4666803960583E-4,0.10593226331258372,0.25945731171861347,0.4339598947248311,0.6174695359397844,0.7821352671650736,0.9083343849664606,1.016486300259524,1.1313897521894298,1.225556976129625,1.3179670348412904,1.4718019837017189,1.660860396716379,2.046880740591724,2.2798794574541175,2.4121636431584648,2.557545048928765,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,c coal,0.1869461533790809,0.911629267583157,1.3225678161928558,2.2105382936551887,2.735607354309721,3.3734193249321844,3.99402966780199,4.5518511573851015,4.9389387318405085,5.246486101274761,5.460305653702904,5.38911502589292,5.2836037497504655,5.095338027561926,4.083523556625633,2.8416794981052207,1.7758043895921247,0.6417564398983135,0.29485263609244616,0.1789518129575801,0.11073164282562874,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,c coal CCS,0.0,0.0,0.0,0.0,0.02501384657769446,0.10100446096076544,0.19823528381152278,0.31932578721103505,0.4475099098518842,0.5591541858342622,0.6304064926743749,0.6570334734649234,0.6518271602491359,0.6209338029446249,0.6108895443469975,0.5857802934500109,0.7448482373611859,1.0572644946601555,1.287013610970909,1.4502082109432786,1.6231172808746868,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,d biomass,0.409056388,0.3197684102461965,0.3184309844817969,0.6554158294880249,1.1071461830547296,1.559763196443395,2.0369647639810067,2.507309530419548,3.0205223198819935,3.5707042392324846,4.078130597571921,4.541635737842025,4.868804137411568,5.070830103121386,4.983960903937785,4.578630412243815,3.7425176847073707,1.824859523014206,1.436570808235118,1.2245134791261916,1.0206185407835011,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,d biomass CCS,0.0,0.0,0.0,0.0,0.04813151492908162,0.15056479926519523,0.31476464606049936,0.5596491835492942,0.8863638091692855,1.2698670247651855,1.6309529282551152,1.9948746012742022,2.295652828796013,2.504088881216954,2.722161242550249,2.893811567515956,3.0813610978953827,3.028132434218752,3.2526762217496588,3.4543732314143853,3.4869718232197178,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,e nuclear,0.0,0.0,0.0,0.003852545689945935,0.0075632303642608565,0.016806836544627845,0.03519623103160475,0.06263117747385048,0.09832955902431847,0.14268523900903468,0.19445745391744157,0.2518612733069553,0.3321032977698463,0.4287349635147164,0.5715074458466592,0.7834040296425824,0.9998893207642792,1.2798434208578362,1.4905224876884404,1.6515111342604663,1.8257448191007906,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,f hydro,0.02054872678398869,0.03861002523400326,0.0636336662363203,0.06425558310331006,0.06493859377806428,0.06562491418115174,0.06631551097108036,0.06700598360099556,0.06906727296944831,0.07113345534057659,0.07320140486906214,0.0752657124423118,0.07735109515601593,0.07946363848829077,0.08157571947506603,0.08369917991465692,0.08582224413555048,0.0879789075350283,0.09015910254058508,0.09235998867333062,0.09243892797086335,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,g wind,0.0,0.0,0.0,0.0027053969376636413,0.00732995933576513,0.015624645877067888,0.029353650121084214,0.047320609455555246,0.0698599347750633,0.09432953940829189,0.12046874288052659,0.14669592189594094,0.1822725012088407,0.22118405300958058,0.2884545171987535,0.39304189833792347,0.4927430621594486,0.6147698539799343,0.6797759159562132,0.7115205144289731,0.7248309934542941,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,h solar,0.0,0.0,0.0,0.0019063311375485108,0.006465822915391441,0.016903133455673222,0.037262550868814893,0.06994193786538316,0.1212700987853189,0.1928306051455291,0.28665003745390516,0.42351820203879914,0.6218412612742973,0.8592046732440609,1.2586985134814122,1.8322668133235551,2.412419161187247,3.1953760844256083,3.747764875334621,4.144029270404598,4.538834518061336,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,i geothermal,0.00404998556972446,0.02377441553802868,0.03368523506298082,0.05959760729541617,0.08069430611436347,0.10462733164657484,0.13175939338610734,0.15497810804564,0.15501172912676484,0.15504928553989097,0.15508881633208493,0.15513121353697423,0.15517753600453218,0.15529287516854823,0.1553922039369885,0.15551118963894736,0.15563152808107253,0.15578583323551456,0.15599023352380081,0.15622447792306393,0.15635709750611715,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,j traditional biomass,1.41181,1.78826,1.93778,1.72233,1.57688,1.37667,1.18093,1.00215,0.860595,0.72557,0.604168,0.517972,0.438991,0.364559,0.324671,0.276997,0.229239,0.194915,0.158683,0.125879,0.103557,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,a oil,10.78951443268896,10.648479855318094,8.754044914422565,8.483597753361009,8.067056415780009,7.8859709001541605,7.693503009639752,7.064082439131286,6.194859349823001,5.317893017104037,4.731655904653178,4.347639935534774,4.011624120485571,3.841313156675381,3.5426438706372965,3.1593987056896244,2.8813803085191556,2.590922821445411,2.315496996505449,2.0939558789212205,1.7261483591812972,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,a oil CCS,0.0,0.0,0.0,0.0,0.0,0.01380480665194131,0.032723120528454594,0.04409341709632224,0.06121013905913246,0.06857736347050916,0.07452399717198951,0.08753322533226864,0.12575573820020117,0.13889573692001417,0.17554310920420055,0.1786778382561148,0.16874623209633546,0.17255183897596282,0.15022866469267138,0.11402079007118997,0.0639592598518881,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,b natural gas,2.0253897984561,3.1051088690459028,3.80758410092341,4.277005413003163,4.517243264541692,4.620076117188102,4.739105924356859,5.129059273958501,5.671433507197783,6.102319448155416,6.307252476769466,6.232474740779051,5.3670519825766,4.872000577927748,4.2700278762435255,3.62256343166973,3.039900675798331,2.341379938892947,1.9140033012265816,1.7278068526919377,1.8886385248185449,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,b natural gas CCS,0.0,0.0,0.0,0.0,2.9819979910893E-4,0.0075411013483148905,0.026296300948050414,0.055042926515116615,0.10858258901919277,0.17562757935401213,0.2467110659162506,0.3358542926414816,0.5484549028472849,0.6931787723017417,0.9500062188870201,1.1557129256438299,1.2749029302987676,1.4355199619525894,1.5660618929250623,1.6477559742969057,1.736614642192145,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,c coal,3.2667010139991595,4.682320765480623,4.601325735111624,5.228097969907863,5.1139971938759095,4.99203288176193,4.874032298094509,4.766688364065807,4.58227605995782,4.347535726303682,4.088359802832495,3.6714368643330215,3.283220579606995,2.798709921697601,1.632042340967312,0.7810516170573285,0.44996701197216704,0.19772593528685825,0.11398183080169376,0.07704717129769086,0.04807736282584409,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,c coal CCS,0.0,0.0,0.0,0.0,2.2178459433323E-4,0.0021728692187603033,0.008720731500821425,0.08725957270658248,0.2221347085039558,0.36248871627743473,0.4661304345983148,0.5369966753932364,0.667811981039266,0.7449309071085597,0.8775107777535535,0.9734581041202226,1.0190564507719846,1.0822088058626063,1.1330965334482566,1.156832517978738,1.1804269769762425,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,d biomass,0.20970117875745214,0.29729389769602166,0.300753869120482,0.3261409547169802,0.3417786916542153,0.3510190990781304,0.3732017172134717,0.5668228447479754,0.9025785730518326,1.2292060293063254,1.4263739065414123,1.4822561706127872,1.4772669445456286,1.3852625423153928,1.1941856917977467,0.9215526773976075,0.3960669098796735,0.06223520081616516,0.026609505576412288,0.01626072434078137,0.009469177709128692,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,d biomass CCS,0.0,0.0,0.0,0.0,1.0931229293256E-4,0.0016802668543111558,0.0086275958772652,0.1888732943850755,0.5515673920827219,0.9656427509784454,1.2691912181172056,1.4448388881802818,1.6645548306729723,1.8365053386452301,2.5083103522148114,3.301763703374345,4.145768418035626,4.645040877112627,4.7502256445670135,4.736638027945881,4.655341693756176,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,e nuclear,0.7281330787737438,1.0970711096120396,1.0375959503472276,0.9588825084000349,0.9140845901899445,0.8602073640143849,0.8183376526854816,0.7946660375499153,0.7945352298679315,0.7986116004119961,0.8103201421634982,0.8510661644905224,1.0568060085866957,1.1940905741238164,1.3886105255170744,1.61932252186315,1.7750206419634222,1.9635315802212516,2.1077810099400915,2.1831542611200883,2.257657248758909,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,f hydro,0.32147816682130054,0.2752797323057802,0.2959532880242634,0.29497192777893144,0.29400011096220363,0.29302027175937584,0.29203981926694944,0.291066253254408,0.2942382325943655,0.29741865142143903,0.30060189165943996,0.3037832489773593,0.3069632931334006,0.31015372793334456,0.3133367867450533,0.3165180806227479,0.3197033509909896,0.32289153651740976,0.3260783830961971,0.32927127353941166,0.32926208881794905,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,g wind,0.0,0.0063059987619353405,0.01424790451832952,0.02590193002433627,0.03343202681989257,0.03870018800928579,0.05272287465483208,0.07378521236954129,0.09493413959247465,0.1249460755006415,0.16129197515193183,0.20595096316503972,0.298891128618785,0.3534887008029409,0.43651341950207617,0.4995826971389743,0.5315374167620458,0.5838883081699319,0.5824793258204833,0.6017527009061481,0.6085585637645963,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,h solar,3.5930041058825534E-6,0.005367647403100299,0.013661733787262448,0.019050083528193748,0.022056413205691367,0.02477984310867549,0.032406460441840465,0.04502484337169087,0.053329853410418696,0.07535616340822675,0.10338225153222563,0.13844889664681048,0.21473260406626105,0.2647332705231262,0.3458250377387657,0.4150278920361034,0.45799962881408157,0.5246260889690036,0.5463959884600369,0.5811117992843625,0.6035502804312451,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,i geothermal,0.00625541016780952,0.011598166603838618,0.00946502905470235,0.017631728631612806,0.022174040258416,0.024997661182305078,0.03133413560359635,0.03914838740041676,0.04220105940420111,0.047196633254348,0.054339225694700066,0.05655839936082384,0.05656137964011779,0.05656881584506806,0.05657186656216053,0.056572575648417806,0.05657457825940688,0.056574926875486986,0.05657462329191655,0.05657483634962797,0.05656725707326256,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,a oil,3.272688199694502,4.411223916078784,4.229981980134559,4.091078923986301,4.163040650596507,4.1590663039088875,4.140129689638506,3.9581075614287893,3.661603633239994,3.3617917160135957,3.2447668171862114,3.237090481622981,3.286424541919321,3.401994580662515,3.4046819563195663,3.3097389451126844,3.275125936917863,2.795277689606599,2.5060263972896006,2.099666155418952,0.8313575894155403,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,a oil CCS,0.0,0.0,0.0,0.0,0.0,0.04758190412167491,0.07116600718890254,0.08652743110172657,0.10583172024728059,0.11292359527985565,0.1321038028461108,0.16015177308519882,0.2072226186358403,0.26872200833796167,0.35520558939106583,0.4192556235134339,0.47358338823627816,0.49692065866367324,0.475153657204871,0.37696195421061174,0.12016543629767738,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,b natural gas,0.9678456472462059,1.5793836513244817,2.229198796211071,2.1381438073257972,2.4232678291328913,2.7891888751611953,3.2455807698546155,3.7543930306181714,4.333096378875418,4.843072030081213,5.354809150382578,5.612283183998795,5.7710886979155624,5.787929403645245,5.572020509531553,5.319468519306905,5.124647094298903,4.523549816037975,4.235145790528087,4.334852242250918,4.840537763613745,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,b natural gas CCS,0.0,0.0,0.0,0.0,3.1886326448453E-4,0.014282587656276043,0.03709824871927682,0.06945939733740807,0.12208205060170134,0.18157930046203768,0.2611898654346344,0.3633994251888453,0.537048372265065,0.7873190412319033,1.1942696113173292,1.68181246360359,2.1820991800172282,2.7916711205412312,3.36895235568307,3.8744597357536925,4.4940750422522235,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,c coal,0.147263572077845,0.39936511635097843,0.4047762669549464,0.4076389783072408,0.4311067674180063,0.4759661322113188,0.5270592150015465,0.5774448753667194,0.6203858819495548,0.6440511243965055,0.6583708824887852,0.6263511144895182,0.5828534563276158,0.5175719810409698,0.2792011517636877,0.15861567811546048,0.08484451440430549,0.028695200890281842,0.014565056924673324,0.009606541674424377,0.006256554972049491,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,c coal CCS,0.0,0.0,0.0,0.0,3.032415887254734E-4,0.014866620075267001,0.04856723161594629,0.10712436190846453,0.1930004332456596,0.2747025789398809,0.3477965460229096,0.40628399538597093,0.47782502603305027,0.5528160594384149,0.6446368783039998,0.7526226844448112,0.8705145066327548,0.9906796848995378,1.0771696137078013,1.1434723782826899,1.342873107693735,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,d biomass,0.08162710000000001,0.10555371971053067,0.0908377340762741,0.07759033154852372,0.10797608861059377,0.17684800947269466,0.286157624755692,0.43127410727758886,0.6426075834154499,0.8452171539032601,1.0033650154874474,1.09904342937801,1.1727883326989652,1.1988083514673855,1.1441436565235041,0.9824091674398573,0.3825452014064874,0.1555368603346237,0.11278356054864085,0.10099790119544039,0.09742354807344933,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,d biomass CCS,0.0,0.0,0.0,0.0,4.56578863600951E-4,0.024886769717860486,0.08877583308010789,0.21502453923049297,0.4366285252995082,0.6816809720041251,0.9140669152223729,1.154115110234969,1.5281636757584445,2.0297110621370784,3.1260115172203586,4.472596196250499,6.225566245707592,8.56908834858259,9.76683633421656,10.420152051344273,11.911571133219894,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,e nuclear,0.01057319611634999,0.03878711778698321,0.021132501147480786,0.02090317367274205,0.02319852627215793,0.0262854104067668,0.03098504646278611,0.037002483248758385,0.046668460615543014,0.05816583276089309,0.07460076510676725,0.0951471350551814,0.12870749316515326,0.17793971695109748,0.2430762068621304,0.31904965009477254,0.3961069785262418,0.48849660729815664,0.5846890967251357,0.6822139080109293,0.8104859167595097,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,f hydro,0.08452076895460169,0.09928856000649407,0.13343458464897381,0.1334616557733294,0.1334991973355519,0.13352621346791002,0.13355396203574937,0.1335829682048637,0.1336105132007817,0.1336487731033458,0.13369007260808066,0.13373374807299626,0.13378430762477903,0.13383784050419265,0.13388222920964132,0.13390938020348991,0.13393703018622732,0.13397892197098057,0.1339943940899812,0.13401873832840794,0.13399869439135015,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,g wind,3.5999986776807888E-6,6.82049199937733E-5,0.004453667327834089,0.00571350477890099,0.010763433698887511,0.019075221593255098,0.03280380043010169,0.05148567363545767,0.07501200356351373,0.10594979427710584,0.1436814117070812,0.18703846216413397,0.2577820201257079,0.35942577889315014,0.5096856652974001,0.6849437895753122,0.8593438291210138,1.0713605665398087,1.2498002097052292,1.3835694243716667,1.5451335551465135,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,h solar,3.5999986776807888E-6,3.23076409146583E-5,1.1143179717161242E-4,7.8503311637288E-4,0.0036087902094763973,0.008704137507594481,0.017556804834488553,0.03069480148571929,0.05238748003757758,0.08015897349270273,0.11376852442131503,0.15466683615953974,0.21170938361223318,0.28483004253736843,0.3864747200927894,0.5008599757650618,0.6319266755000059,0.7882003009344366,0.9539445312504373,1.1273942215499737,1.3452855790258234,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,i geothermal,0.018446393224439018,0.026201496781785318,0.023788891409087912,0.026482884759616784,0.03302462817011452,0.04079336930090058,0.05051899778148097,0.0609300710551872,0.05389353956780031,0.066401596144676,0.0769279944815384,0.08696151151905047,0.09707140925848981,0.09711245504452054,0.09714486376416477,0.09716436409958094,0.09718613069823276,0.09721482345953267,0.09722608007693248,0.09724361383817665,0.09722917028608803,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,j traditional biomass,0.27636,0.266313,0.259741,0.261532,0.285443,0.289218,0.28697300000000003,0.283165,0.280649,0.27595800000000004,0.266347,0.262947,0.252393,0.236983,0.222613,0.2049726,0.1845022,0.1693529,0.1567906,0.14607900000000001,0.14043450000000002,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,a oil,7.311530172895905,12.455902721825531,15.520499536710398,17.42040913552822,18.2697039427831,18.70085107640717,18.686849536944656,18.114274762709762,17.00387276922342,15.76131984970241,14.984254372599159,14.645697285278672,14.190789259509376,14.01114884980321,13.52982995597399,12.686856163560732,12.181779564501712,11.207155143827922,10.065352600731114,8.999911182841561,7.125405033101268,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,a oil CCS,0.0,0.0,0.0,0.0,0.0,0.3767548725370902,0.7244593568623942,0.9570406702869927,1.1143539314447055,1.1813453812104635,1.2433800832125175,1.374117971123121,1.6358665036305018,1.8595722370559638,2.102228849630889,2.1745058135692323,2.1906710304355093,2.251136767562454,1.9999216672518056,1.569132223398488,0.928912496908123,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,b natural gas,3.0568880420246662,9.226034978493745,13.13164483452857,14.395632409807215,15.802770699660188,17.067042835461887,18.308086612565187,19.600103214958633,20.844963460205303,21.954578380602356,22.83790751137028,22.82395340428024,21.90785117851563,20.895188579081665,19.30605523264478,17.717560514247957,16.36463082836583,14.078056324684837,12.525817853615665,11.700446658224848,11.455632751898754,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,b natural gas CCS,0.0,0.0,0.0,0.0,0.00159411984480486,0.2707407131665426,0.6849764469284282,1.1681508676275516,1.7191361305038024,2.25241407003239,2.7331889051401994,3.2264196179976925,3.9818718623731506,4.696153577718023,5.459390726728652,6.213416124342747,6.897988062382785,7.915439850453255,8.916804926132645,9.802943900839105,10.905739205616962,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,c coal,0.1251171768122908,0.3828281851819387,0.39464932661842134,0.467229347525194,0.5976346418379274,0.7917239078486438,0.9730243630236172,1.1663159861129984,1.3354474487739783,1.4546932987471943,1.498516160160591,1.3899766356579653,1.2331247521358648,1.0342902245510541,0.3796294602531617,0.21515120913204408,0.12062650576469887,0.04024632027640648,0.01843405150385927,0.010798339009987697,0.005885289400761576,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,c coal CCS,0.0,0.0,0.0,0.0,0.029036122571828037,0.1314679751511556,0.2711795070016056,0.5004323021166811,0.8300175478104672,1.1870329044915027,1.4831483818383884,1.6815781730057204,1.8296524930260878,1.8929380937453877,1.8732868194860854,1.8537868111731468,1.8350183618856337,1.7797752106806268,1.7032008022829455,1.6237039652267673,1.6290109244190436,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,d biomass,0.0198416,0.02973293785652145,0.02628471093387003,0.035804385754370886,0.30015591520066115,0.6255130703610229,1.038141531200666,1.6086944172166262,2.4298369673301066,3.2949304650206384,3.9378086547596176,4.281113857175302,4.405834525681783,4.3373035405445695,4.050730571990884,3.4401835124004587,1.4027195284173781,0.1392949792846718,0.040556557884827704,0.019255138981888985,0.011434319449009547,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,d biomass CCS,0.0,0.0,0.0,0.0,0.06923245497177428,0.23600179318194844,0.5393488459251581,1.1122497968948777,2.0860484746743952,3.2997602332891227,4.444398594518478,5.595069227432269,6.945557766874878,8.380485835737511,11.426204772048061,14.635068448880508,18.58881824017757,22.024763781016215,23.756915741492975,24.352001555667457,24.44653733985284,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,e nuclear,0.0,0.0,0.0,0.0078122765834612185,0.023200028133157524,0.04690348392950791,0.09505532768745666,0.16304584578478098,0.2444858787863654,0.3322031438884848,0.42520815467376794,0.530433946388808,0.6978546617244681,0.8856144015689741,1.1076369633508556,1.3623671724259805,1.620177859855384,1.9469954588811027,2.2889473038859474,2.630720314803894,3.0588339578536337,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,f hydro,0.04289342073684487,0.09915576134002498,0.0642237609836532,0.08552556218559197,0.10699365830367415,0.1284609687595407,0.1499278235880339,0.17140203362003173,0.203121629457345,0.23487755546937392,0.2666712101974669,0.2984811497218302,0.33036295311594827,0.36231015495861113,0.39427572469327665,0.42619539209997265,0.45813125229007545,0.4901331674074832,0.52212883824603,0.5542525976227689,0.5543427371404532,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,g wind,3.5969225650712234E-6,3.0585760526328316E-4,6.262211583761495E-4,0.00988334477953238,0.027839754536730925,0.053280576835843335,0.10304449086872143,0.17123002403059362,0.2584206996227058,0.34978625818720577,0.44399172623854766,0.5501727139881576,0.7267417272881048,0.9100720715190643,1.171041087963282,1.4974022530941071,1.841312471302764,2.3103869768412593,2.7308008191402284,3.1356360911696295,3.6232339638156734,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,h solar,0.0,0.0,2.519284544049136E-4,0.015717265292941155,0.0471076118968887,0.09604197103436458,0.1655472034775936,0.2586261610187321,0.3877839745587372,0.5287563830326848,0.6746938985329582,0.8599043457228376,1.079988040602513,1.289648764393473,1.5252807723648836,1.769303995023184,2.0514691444680455,2.375200959331668,2.7098432690290593,3.068909984510651,3.525563238049169,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,i geothermal,0.0,0.0,0.0,0.01102074993954579,0.02499055112206515,0.038763748485149775,0.05646070871397584,0.05653024873760623,0.05655616450148929,0.05658519799018012,0.05661463478283105,0.05663727978376502,0.05666736944319574,0.056702238305297706,0.05673414628290459,0.05675877680224041,0.05678485579574655,0.05680925580946252,0.0568357801295645,0.056873415899423546,0.05688948262931314,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,a oil,0.45759557857354205,0.7183564674897136,0.9563633315620043,1.617000406338474,1.786232286324651,1.9207870862133956,2.06402418335007,2.1983026868858233,2.310774808108448,2.4375748224770923,2.630028382659759,2.9382435306512487,3.1972869546703673,3.6273812457024563,4.058278251468527,4.506125700898016,4.946922414752628,5.48440874096627,5.578681477956402,5.505194705868936,5.10274925950291,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,a oil CCS,0.0,0.0,0.0,0.0,0.0,0.06428160591838261,0.12639859532227973,0.1838319637835009,0.22511657035644933,0.2482195808906193,0.2567885866232002,0.2698483134952497,0.2868928874436439,0.29613739936532024,0.3166128042154218,0.3388515921046312,0.3632653239707427,0.4150051325281574,0.4026979804836231,0.3412024122509138,0.2361842423742355,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,b natural gas,0.40399135822816395,1.0777737197751878,1.130629742393182,1.9549868710551521,2.3699644570402167,2.9335915366109195,3.629727236636847,4.461941786645231,5.365317526057779,6.387167327965507,7.421186856359299,8.272670135299434,8.798046464552238,9.368030212722354,9.578332098378494,9.707010125856353,9.706258884116254,9.119182446211873,8.550219580835059,8.243704878401726,8.084906075711906,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,b natural gas CCS,0.0,0.0,0.0,0.0,1.5566941069456E-4,0.04893841473899258,0.12987939248987654,0.2375041623226771,0.35600670878201757,0.47311237824249924,0.5647050775632954,0.6432757193889916,0.7235660373142481,0.7854037798235374,0.845733505777798,0.9266638919207693,1.028227012702143,1.2411532167111408,1.4498980432201551,1.6394586815976926,1.8671539192384592,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,c coal,0.08380380033251461,0.15057040716455647,0.17120749708144317,0.32494380293857844,0.3656805101463963,0.4585323540262227,0.5606166397815766,0.6752583382046848,0.7686380989785339,0.864129306464454,0.9500707301655105,0.9436929272921246,0.9237414362099623,0.8898348032285588,0.6573966229734555,0.5220800940623604,0.40096631285535056,0.2227124288110209,0.1433758053404169,0.10634430812642284,0.07783211712830075,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,c coal CCS,0.0,0.0,0.0,0.0,0.0044924808204706,0.021076869009908232,0.04692662639948833,0.08400188006140878,0.12513801347335865,0.16314131673487595,0.187663086996358,0.19557683993071934,0.1899017466565224,0.17496386708742645,0.14595357537935474,0.11114838048388376,0.13845250523276534,0.1884072429767333,0.24905380300010965,0.31322094815381474,0.3952221074642181,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,d biomass,0.101175602,0.14935700000000002,0.1634214,0.2858352251743202,0.4511256256699302,0.6538655773611697,0.9219892631050883,1.2399959852618319,1.6110811294258518,2.0481977197637464,2.4883301459574696,2.8822284064385126,3.1849979833076705,3.4134135505512657,3.3077324609427885,2.8695903617018823,2.2115453413944257,0.7569176022778914,0.40165329459887944,0.24365391312034151,0.1273557948584788,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,d biomass CCS,0.0,0.0,0.0,0.0,0.011745273292546071,0.04486308309953853,0.11169148753969427,0.22669769696629619,0.3951593847532111,0.6127253851241309,0.8254656512330418,1.045404325756234,1.2386122177918244,1.433600407461789,1.7216458730810573,2.071725052079923,2.5284228068152386,3.101821060443747,3.789963522657511,4.416307404547477,4.85051321974969,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,e nuclear,0.00105480046547632,0.00894241987724311,0.012311984103135939,0.03199546160239584,0.04266074861601141,0.056076041246164596,0.07824889265268721,0.10960619031832249,0.14930913563831788,0.20066001676038153,0.26024500205435824,0.33393969149214864,0.43403194841169407,0.5441815958870051,0.6825500651699133,0.8320908399573338,0.9926223413253417,1.1962419146717165,1.38638755701588,1.5572218530452184,1.74613652483121,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,f hydro,0.06093002688800963,0.1111032469606975,0.11451985213540682,0.1177043872299765,0.12093183058649491,0.12413124164036922,0.1273368769966616,0.13054637131590519,0.14022245356433682,0.14991566118162916,0.1596189449989582,0.16928816315624165,0.17898550025766652,0.18873926552661413,0.1984516175441192,0.20820008888493427,0.2179716655760213,0.22776513360098083,0.23762496286290027,0.24754695878178898,0.24759086506261524,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,g wind,0.0,0.0,0.0,0.02227713076168605,0.04642448443853129,0.08514537954320477,0.15634894611798442,0.2619854660302608,0.3985618436132987,0.5543362916421226,0.7354392280767699,0.9443090380426599,1.214163017240413,1.4721948521455333,1.808818695254137,2.203384001706685,2.57038997863904,3.0174588551988535,3.3192624383097935,3.5292953143498313,3.713931112203175,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,h solar,0.0,0.0,0.0,0.014572006633688852,0.03287642600916181,0.05427149683185533,0.08884213662170336,0.14771983077042128,0.23988113222869206,0.36545843530191646,0.5398959251533576,0.7972883514090452,1.1532752887994262,1.5448676411933684,2.0609993914188096,2.6781413197037494,3.30735498561204,4.09343507198569,4.7609742203179986,5.328833577773656,5.9076511122961595,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,i geothermal,0.0,0.0,0.0,0.02435496521168419,0.0429027012536246,0.0639723587281281,0.08055752221136471,0.08058545224026407,0.08061259678257138,0.08064641255286586,0.08067881388523103,0.08069179221667201,0.08072999355406812,0.08077377597410391,0.08080372330493181,0.0808400643862552,0.08083825883964535,0.08092276372783505,0.08098171828938125,0.08105372059784467,0.08106337909550149,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,j traditional biomass,0.6844110000000001,0.9536132,1.0434866,0.8339449,0.832736,0.7913902,0.7140596,0.6242867000000001,0.5460191,0.46621785,0.39093095,0.32803345,0.26888462,0.21338087,0.17549607,0.13913956,0.10848268999999999,0.08600968,0.06657296,0.05080653,0.04030433,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,a oil,12.50879260061553,6.9435108333787845,7.3525398635544885,7.777499147848006,7.776666187911574,7.820371488268726,7.720423359326168,7.356972481259776,6.772328060559386,6.1382906703253415,5.771413981458391,5.6230432872323,5.560156579165744,5.602375544836143,5.454448257811365,5.11625726733421,4.850505273913979,3.7416640777286263,2.998131584583398,2.0938833686807503,0.5306493441677621,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,a oil CCS,0.0,0.0,0.0,0.0,0.0,0.006531674161873669,0.012902136346387053,0.015095792282614671,0.01804754474559755,0.01896687977113893,0.02010400929420204,0.023044765803667936,0.02723705745881963,0.030903248828704398,0.03939268034631758,0.043257037800696646,0.046107038558513676,0.04639698601777226,0.04102143293477045,0.027405867323683348,0.005517298806582098,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,b natural gas,19.631882984879084,17.033737847878403,18.58638383630864,18.36827855278967,18.67865949583254,18.5967813358943,18.34371681184686,17.968172828480824,17.515458779240383,16.95722684436812,16.337441203465183,15.266071458878459,13.984931336434874,12.741394642707961,11.166172840534461,9.838081679229145,8.700299498991624,6.930661486235967,5.83057573929327,5.482753128799252,5.34279561502929,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,b natural gas CCS,0.0,0.0,0.0,0.0,0.00167427725361471,0.1553369744136501,0.42206757005016493,0.678279001192726,0.9735993732802035,1.2447920247572482,1.4855363382519151,1.734298785637086,2.0142385202761686,2.259272087647058,2.5070085895013774,2.637152075644348,2.7150135000178306,2.8216062192761684,2.9038410888894846,2.950196621266376,2.972756066975437,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,c coal,10.252523918161994,5.202680549072172,4.699684347994367,4.7498869210866745,4.277036008083151,4.166819389349678,4.0147630212030245,3.852010938630945,3.571005525283015,3.286556494466115,3.01871368323734,2.566524793448443,2.1648315021803466,1.7684482912768829,0.9238308292576147,0.5494583384416634,0.35738743521730826,0.18787351207828976,0.11629310030555907,0.07896902426897,0.04699544455418609,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,c coal CCS,0.0,0.0,0.0,0.0,0.00419303757341674,0.02973511234421839,0.08060225466434083,0.17387311899240768,0.3085059507796167,0.45377396464425696,0.574837859764727,0.6583549851966455,0.7379540580582686,0.7896123295847105,0.842499259787727,0.8820544629451121,0.9256572106100346,0.9775343105018116,1.0018949788829214,1.0325622053705996,1.1710935526065014,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,d biomass,0.6937325995513319,0.3616886010427503,0.369641223512841,0.36575108651996374,0.4898480144719776,0.6057101786172426,0.7811382535829159,1.0239132802518045,1.3979931840825015,1.7736743967461444,2.045233652875673,2.184461606599476,2.246990335275205,2.203216116199437,2.0150411107650776,1.6379878758031174,0.5361943572534845,0.1995173089931104,0.10423051328762853,0.06689299222997327,0.039008363454387684,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,d biomass CCS,0.0,0.0,0.0,0.0,0.007789915680511949,0.045215492560790396,0.14014156658371493,0.34812158412141797,0.7188337766387917,1.1654361269398636,1.564194891501523,1.934939757427877,2.42726705155187,2.987498198391675,4.248914460697053,5.782869167141966,7.924411334702929,10.981104637978065,12.588124130424385,13.86901468155495,15.436386171750726,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,e nuclear,0.4461818447562886,0.5635871479552887,0.6476205170573097,0.7148188489467576,0.8084560425003358,0.8670705965765338,1.0107967324579648,1.1779466083183245,1.3868613601076156,1.5879272837860143,1.7875687674556833,2.0159801741189236,2.3020128682433225,2.577293440875151,2.945643393432629,3.2264748638050817,3.4421489476829668,3.764078624848981,3.967157298824191,4.116452852971422,4.304831206806275,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,f hydro,0.6257245877214083,0.6512091657034871,0.6327121578594416,0.6700514974304663,0.7032028052739763,0.7428365959015104,0.7767431511368252,0.810899904314834,0.8483874026203673,0.8868417065778225,0.9260564237784055,0.9647283038348269,1.004173059489945,1.044123197599887,1.083631150662686,1.1239872847470367,1.1650066308585412,1.206216419839627,1.2475345608230393,1.2888332998506349,1.2877739310169507,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,g wind,0.0,2.6377680692987458E-5,1.5196616027886081E-5,0.01235224274324108,0.04062922405705165,0.06542335214657866,0.12015918284808816,0.18801197646674442,0.28846705979805864,0.392666219548892,0.49547932447749815,0.6271900685145781,0.7737376455127737,0.9089966183686837,1.121407654685983,1.3268860461425067,1.4972093107109123,1.737472321670963,1.9391161986844534,2.1400965752830623,2.362391435513441,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,h solar,0.0,0.0,0.0,0.00113887609816862,0.005076600375931927,0.011302128809681605,0.02857237532075983,0.05381284650511997,0.09480737629040417,0.14450701392719495,0.20172661487236596,0.27107842499075196,0.355101354892312,0.43738299199308445,0.5754639003113301,0.7165379655232254,0.8399218849969846,1.014579672940812,1.1743907681492058,1.3353878800409589,1.5194775990849467,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,i geothermal,1.0503278870308836E-4,0.00154141355865048,0.00191526138386625,0.01502669536409093,0.037859528789917295,0.05448105539805684,0.08275622566074677,0.11032572179941438,0.14032367798692288,0.15901547592948356,0.16925898595586164,0.1868000110842383,0.19598426606044683,0.19562484911157607,0.19521286202549643,0.19497974292250508,0.19487652111930814,0.1948070605050672,0.1947572353586758,0.19470434012735832,0.19453765780343762,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,a oil,0.7715063845368526,1.0300200922231282,0.9760254188266085,0.8546278917676681,0.9461904033862831,0.970359879683492,0.9284513647595241,0.8783422404093042,0.8196103411462534,0.7562070468944544,0.7018557438366595,0.6901949226641007,0.689255478779984,0.6984409314239056,0.6945484780892114,0.6875887499415103,0.6941640988215467,0.7205236653490721,0.7034302644999394,0.6724180455899297,0.6098709352533966,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,a oil CCS,0.0,0.0,0.0,0.0,0.0,7.530236604159972E-5,1.5472134057057E-4,2.2029365089089E-4,2.8683110229172E-4,3.6114090658018E-4,4.1575213152434E-4,5.167005035684399E-4,6.0616345992543E-4,6.803331299093801E-4,8.437005708692E-4,8.8566577272445E-4,8.6691016609044E-4,9.366807473389601E-4,8.178571097769E-4,6.1501669649831E-4,2.5970666944564E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,b natural gas,0.06340162767253642,0.11697330087360759,0.12484867675609115,0.23284468889007848,0.2683291175749104,0.31938555311758177,0.37633605634245987,0.4349915154667465,0.4856965669690485,0.5379454079512752,0.5817874168200232,0.6037019911717498,0.612185692292075,0.6081707120511087,0.590531707356944,0.5709013458023917,0.5567989163264102,0.5379470048047434,0.5192473879371261,0.5099419365551889,0.5074315405693275,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,b natural gas CCS,0.0,0.0,0.0,0.0,8.07874461041E-5,4.5757456926140004E-4,0.00126143752834729,0.0025036553441118003,0.0041666103711060195,0.00633686802919047,0.008699464259079219,0.011988484854808771,0.01586003560517301,0.020161853494664064,0.028752198014311763,0.03726462368542085,0.04419770997416101,0.05398060050826233,0.06109096923776937,0.06758725586226763,0.07892541984205668,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,c coal,2.8927040061502223,3.6416418800505155,3.8815003958839016,3.253381666125179,3.2060576672967405,3.184954233075811,3.0493208542518815,2.8505000810624934,2.5432205507243686,2.2475596663245105,1.9769967901350052,1.6827932540308579,1.439998130430507,1.2359704643501233,0.8446892057208134,0.5680144936292194,0.3570719173330055,0.14692284891481577,0.07737799624307812,0.049226517347410244,0.030536643758406253,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,c coal CCS,0.0,0.0,0.0,0.0,5.890323361513E-5,0.003367733647394868,0.016328556882568415,0.0344766998862131,0.055427117096780595,0.08035928297183391,0.1050263861562265,0.13802639321685659,0.1766305699478973,0.2161488951646044,0.2876798175734272,0.34800498773284205,0.3865694449989543,0.4194506859503022,0.4200229402952236,0.4216904402060594,0.4188286483421294,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,d biomass,0.20193241,0.26176954805394625,0.2772087899805082,0.24488018451019147,0.30326697381588097,0.3493334695208094,0.4100535841175057,0.4627109835053117,0.5085792789431252,0.5507173958198441,0.5712070568062387,0.5831510654039352,0.5699035585528319,0.5447506053333241,0.47798487429778136,0.3879354347917315,0.28704747121933083,0.10687124165259365,0.06209767116252009,0.03856656162433337,0.020041731967210475,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,d biomass CCS,0.0,0.0,0.0,0.0,2.9480416824E-5,0.0036690099354835,0.02655581745433108,0.0615265920435031,0.10307011430149,0.15086801303994832,0.19158568004052232,0.23717664636161345,0.29210148305321315,0.36234978893707975,0.4790813955645809,0.5788133803312099,0.6557565414617132,0.7065433506288576,0.7223312488121706,0.7214643832456767,0.6766976476540552,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,e nuclear,0.030416406437838432,0.040654541817377134,0.04355274763513808,0.0358399210346062,0.03772247835838208,0.037058106277636685,0.03801405958777328,0.04174345973227409,0.04695737036566206,0.0553354423630127,0.0659016028584325,0.08075328864336646,0.09874487706130687,0.1187520364968793,0.15107923261750228,0.18373516662691147,0.21002214983266101,0.2390896196898046,0.25722829406461234,0.2690690247399113,0.2880407751654155,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,f hydro,0.0036360007695841897,0.00476635797113454,0.007640899128154399,0.00697837972641985,0.00787248260945775,0.00820423773398604,0.00840500320238106,0.00860860239865537,0.008998842419830571,0.00938672462438491,0.00977090908270085,0.010152939170454829,0.01053343078962708,0.010913487352775619,0.01129314024654873,0.0116723444346295,0.0120510273647242,0.012431000808645828,0.0128118941127295,0.01319281122051831,0.01319126818557341,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,g wind,0.0,1.1519883513354492E-4,1.1519086898231887E-4,1.0257248443462877E-4,1.4469458291181396E-4,0.00491384258487888,0.0164552518866123,0.034077933102505925,0.05660366121771955,0.08671359080910662,0.12080986392559842,0.16145746981909118,0.2056489692437698,0.25116039758003855,0.3392364142032642,0.4157919294960175,0.47146404505439665,0.531355284553973,0.5562119630391332,0.5673642461541388,0.5762353383272225,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,h solar,0.0,7.559959180587706E-5,7.559370779342983E-5,1.493970740835538E-4,5.360562802820246E-4,0.00410299455331141,0.01247633929842951,0.02577802203640967,0.04063894657872123,0.05380977791906629,0.06935353689362543,0.08949381322048333,0.10835473100565014,0.12371900830144204,0.14456441655634614,0.16715295308596245,0.1896084426414321,0.2173935668049741,0.23457610996144138,0.24590819215361717,0.2544749403471809,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,i geothermal,0.0,0.0,0.0,0.0,0.0,0.00368528793855319,0.00899617377736692,0.01408954598508851,0.015492579314113202,0.01551094930062817,0.01552201646316435,0.015528822325592481,0.01553334925179517,0.01553607486285917,0.01553864259577457,0.015540247395022319,0.01554121764004346,0.01554375254003699,0.015547113242960868,0.01555044667457836,0.015548637896117531,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,j traditional biomass,0.233914,0.305578,0.323662,0.316054,0.32898099999999997,0.33394100000000004,0.334866,0.335213,0.33614299999999997,0.336596,0.334558,0.33532,0.333239,0.33009,0.326232,0.319201,0.307299,0.29706299999999997,0.283773,0.2692434,0.25964560000000003,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,a oil,0.9761874185405249,1.473347404553573,1.948421464733007,2.2560438101088636,2.3118309252829907,2.265626840896183,2.182770041350389,2.0488990331892603,1.8986678137219657,1.7688624195355123,1.7012913561143503,1.675985252274224,1.6544927074070115,1.667246613060946,1.6364761894991333,1.573792279340453,1.5385291872115685,1.261005211728512,1.0594463371872842,0.7271427236520517,0.1827350691974722,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,a oil CCS,0.0,0.0,0.0,0.0,0.0,0.02691699109308697,0.05022782363686168,0.06426723125814163,0.07711355591271181,0.08732797030046789,0.09640445844100758,0.10922140827422866,0.13514991740868373,0.15501290624847636,0.17885605883014322,0.19482541092706518,0.21000427317574813,0.2059674688613068,0.1921106142501313,0.13435937519399818,0.031561701604496194,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,b natural gas,0.8302300087934155,1.1554285909599147,1.3100134741490888,1.275849540805735,1.3372723362000718,1.4474860276983657,1.5758157091087965,1.7096520372990578,1.827777581542187,1.9494028677334545,2.083582845261508,2.126682900288218,2.065127156075832,2.05239941846339,1.9957130262402905,1.9466845244287494,1.9297349894047808,1.7612595098576844,1.6622884685001758,1.735823557055448,2.1095367128072153,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,b natural gas CCS,0.0,0.0,0.0,0.0,6.3375506658717E-4,0.019651970013743678,0.04607461278688178,0.07233157989560243,0.1033596212294099,0.1370922600465493,0.16972211252708017,0.20206978944086046,0.24938192124494427,0.28764754379103996,0.3283952183361923,0.36694625923923435,0.4053781995272837,0.4495122241337405,0.49475709668358275,0.5447512325570261,0.621881569773232,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,c coal,0.01939828,0.0015823199,0.00838015,0.0214397785347715,0.03744432717593835,0.0700764461427224,0.09990565938712805,0.12778697367153713,0.14936616247522383,0.1648316719541156,0.17149575613578114,0.15920888427261537,0.14023996646776038,0.11747770174814519,0.046206483866334615,0.026374064481386274,0.014992199627269671,0.0046780385052075735,0.0020704871044244385,0.0012808307499002302,8.541033765995481E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,c coal CCS,0.0,0.0,0.0,0.0,0.00413078124038101,0.02282328671274224,0.0494389640631062,0.08493670656549249,0.12426872661520498,0.1616012762132289,0.19635795093899736,0.22086694476873067,0.24042651070596688,0.25718943890604423,0.2703435963574869,0.28865097526251754,0.3129881331493801,0.33500088532829936,0.3491918620781968,0.369047427976857,0.4452203518521283,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,d biomass,0.02514174474505075,0.03209316485399212,0.029285819982187614,0.06375898700756442,0.08575408988297067,0.1493381569262588,0.22764723152745783,0.3134666190534929,0.408068232367915,0.4975714924646672,0.5665347455077617,0.5971290228501063,0.6040606328575219,0.5985201133128615,0.548858674351966,0.45405149979895026,0.16972364003974066,0.06013897316251739,0.03287820308529791,0.027095811252231997,0.02604065023297155,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,d biomass CCS,0.0,0.0,0.0,0.0,0.00858635140537109,0.03638390619089728,0.08642803381288405,0.1630282460377243,0.2642261115471912,0.3787507514823473,0.4981493656645541,0.631309016177276,0.8126118520534816,1.058082558288656,1.5378411944583656,2.1098087902917766,2.8723447787340532,3.9905026702095046,4.71058611974337,5.342983202465875,6.063021283361856,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,e nuclear,0.0,0.0,0.0,0.0,2.9881850290088E-4,5.5927116572578E-4,8.8981960604701E-4,0.00130478040091825,0.011600541405772722,0.033603145787596475,0.06511153131221753,0.09778859377055689,0.14630565328350248,0.19212732321466544,0.2445110528411364,0.29962177781931504,0.3516550866073329,0.4104081355921909,0.4723377221382503,0.5286988917394948,0.5933240554069119,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,f hydro,0.13536035173228195,0.28053777217130244,0.27939733465435307,0.2828800066375579,0.286806492087917,0.29057762186066466,0.2943468061327852,0.2981711785916369,0.3046029411104385,0.31105622707970104,0.3175450749713766,0.32397520549652215,0.33058785945064395,0.3372817309314692,0.34389348642814055,0.3504947311582509,0.35717721902153776,0.3640739181909558,0.3708026232144264,0.3776427007873916,0.3771125513855788,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,g wind,0.0,0.0,0.0,0.009045447249122391,0.018328072644784563,0.030455940555830435,0.050662945007046455,0.07356196950165017,0.10329689706471208,0.13179375924382952,0.16323512985035127,0.1950254090473925,0.24407776215023444,0.2853756004342462,0.33973753836031134,0.3932214421116588,0.44092248252354954,0.4977440699581474,0.5307117855204245,0.5520108799558334,0.5910307525014838,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,h solar,0.0,0.0,0.0,0.005187397878363741,0.011821553899215728,0.021423030406615088,0.03645314960766484,0.05237969226911436,0.07408427302530798,0.0985176969548386,0.12927250955953296,0.16669051671097967,0.22311777994530235,0.2804610802051067,0.3526529510638338,0.427205900043374,0.4996936865346995,0.5774481770793757,0.6453384842437708,0.7055917972039425,0.7906690513552029,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,i geothermal,0.0,0.0,0.0,0.012308865417362569,0.022127958819817318,0.03239987247919542,0.04564675479360486,0.057677394414037825,0.06861406694142629,0.06868831572599454,0.06877000509895519,0.06883879236989007,0.06893790402067478,0.06904908965665449,0.06913474602183892,0.06921460863498384,0.06930816052631586,0.06943618469777434,0.06952898708292694,0.06964085377233205,0.06955007891855587,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,j traditional biomass,0.017020091199999997,0.0220903096,0.0231320917,0.020243024300000002,0.021002448700000002,0.020877207199999998,0.0201883185,0.0194793954,0.0185505758,0.017423301800000002,0.016019789,0.0150232439,0.0136755244,0.0121273829,0.0104602887,0.0087705345,0.0071547105,0.0057199933,0.0046034471000000006,0.0037765508,0.0031234395999999998,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,a oil,0.8934535037687139,1.494509705841048,1.9371614291320025,2.4834412568995647,2.690211139948054,2.8085031470944735,2.8673346185873596,2.8343719055409147,2.728654963406943,2.5794400263354396,2.5029664618748635,2.4748863835109907,2.466795125169824,2.5195374318639026,2.5102893822756647,2.4315756052254516,2.383641588792056,1.8754301771700876,1.5149100958457018,0.9393734690337736,0.2021827416333841,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,a oil CCS,0.0,0.0,0.0,0.0,0.0,0.05204774665077085,0.1029835210017875,0.131675804045937,0.1507721730571181,0.16137666571786916,0.17404376571526695,0.19729210931315072,0.24782933596459264,0.2922661865446351,0.3576760558994165,0.3971414669758958,0.41944853350105893,0.37825561848463757,0.3074133162711031,0.1720328230509428,0.028759401515880103,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,b natural gas,0.10200860966100572,0.44390404833718444,0.5534298425770627,0.9163127516020485,1.1584380651371338,1.409329340604748,1.7038625527902338,2.0229380653610045,2.375181357684529,2.727675152138389,3.0732561564923513,3.226231537557131,3.2052912496752852,3.2322662126346344,3.1805790197904638,3.0899155161503113,3.024036311526454,2.670546329946223,2.49380480822028,2.639925395020008,3.1086273506862208,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,b natural gas CCS,0.0,0.0,0.0,0.0,0.00259327153115194,0.04964623987706068,0.1318426732933661,0.22323928751694755,0.3244510928488326,0.4290597030894644,0.5373238398969413,0.6537016280038673,0.8343524297463237,1.017358105962501,1.2634559758806487,1.5262306418539282,1.767240269029584,2.018047126340685,2.2556353451490474,2.4659222930918614,2.761614271889519,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,c coal,0.11513453535776343,0.15273393764951346,0.23103571064403614,0.39337063135236267,0.4725694070578588,0.555303081423495,0.646873876443956,0.726475415448472,0.7821665862229431,0.8204103736122046,0.8444712525292842,0.8128973445808217,0.7640851231732213,0.6813001883530927,0.39518555795179927,0.1815073517644615,0.08604958240988086,0.02361754519948519,0.010006519426244673,0.005952586785203883,0.0037085746144047177,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,c coal CCS,0.0,0.0,0.0,0.0,0.00822927161621482,0.03081590426811437,0.06459003326701164,0.11218619700309188,0.18263145189407418,0.2649478787466231,0.34523010608929305,0.41366781074577846,0.49487525089253803,0.5714143201003348,0.6691287920498785,0.7864325056447777,0.9043025320303845,1.0141257391864558,1.1014253753354204,1.1818946375694528,1.3309894638017143,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,d biomass,0.1528537482333655,0.19595185241041146,0.2646501612821294,0.3743797850788312,0.5050409543146092,0.6306434873523266,0.7439120757630483,0.8463905648056258,0.975016028413279,1.1036795887788429,1.2087975170132592,1.24723928368712,1.2497973003950293,1.2201819393617024,1.1094282744751682,0.9339761799422029,0.474383405377323,0.29717011870830495,0.23315069557845255,0.20519056237389036,0.18224463147221465,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,d biomass CCS,0.0,0.0,0.0,0.0,0.013393291130514582,0.04215923848363366,0.09561665617614458,0.1813860367842558,0.3260678301949316,0.5164643067837423,0.7193319694454413,0.9367644167636796,1.2306911956156155,1.5845212520981167,2.3569375375971826,3.2970801889242973,4.57432648549682,6.717444003091301,7.997908886859365,9.017753152311036,9.70974727970515,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,e nuclear,0.0,0.0,0.0,0.0,0.00122166072130826,0.002896791813319171,0.006144265605832685,0.010765137924257,0.01901514665740994,0.03086081993616714,0.04786097211285116,0.0713715292079993,0.10988321702911884,0.1614659882349507,0.21257723022210898,0.27201255322704293,0.3309900412431643,0.3951993920891256,0.46436852839670445,0.5325541775449403,0.6162246781956108,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,f hydro,0.21793360896837097,0.40518574983292915,0.4241362807044356,0.4550242886130708,0.49033459010421004,0.5247323286394767,0.5560419948236619,0.5871280102544677,0.6433157686918557,0.6998328511041733,0.7565327584438438,0.8130558764062866,0.8702426637875004,0.9275510712847409,0.9842446338724204,1.040799485755311,1.098221449444853,1.156316209902729,1.2130838558785695,1.2698652354017543,1.2661229043125608,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,g wind,0.0,2.9123844965248485E-5,0.001484265441297874,0.00564665463842471,0.011256324405909813,0.019480196348997603,0.03586472525200782,0.057227829731013306,0.08252173878582904,0.1112213354922608,0.1489541291806833,0.19268409860447616,0.26565908427491863,0.34768402029741574,0.4745144971052262,0.6266652721247723,0.7702561875434778,0.9221724414793554,1.037925482394368,1.1211905250512249,1.238750984258774,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,h solar,0.0,0.0,1.1021752871315593E-5,0.0012402726767866,0.0044527353600959,0.00908893937318541,0.016743240221313977,0.02686848094815389,0.0410671335798246,0.05822438208766359,0.0811964900068723,0.10906370237590571,0.14346813408465167,0.17620128279576308,0.22277214271384238,0.27352963625834226,0.32402034532308205,0.3735545035608465,0.4221731859245733,0.47218989138659145,0.5424617988483429,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,i geothermal,0.0,0.0,0.0,0.0034661545810722397,0.00765437235473418,0.01411641704736623,0.026207285086776055,0.040264946351583,0.055613093483812305,0.06901238222142918,0.08434190111800147,0.09950317989348484,0.12042178997743744,0.14025155427043096,0.16777855041232276,0.19506276594278238,0.20275340369157271,0.20296525914160055,0.20293341147484584,0.202911608428005,0.20232286179017048,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,j traditional biomass,0.2725087,0.2679878,0.3247083,0.28809779999999996,0.2807717,0.2657543,0.2471059,0.2303885,0.21546189999999998,0.2000266,0.1821411,0.1706628,0.15543800000000002,0.1378416,0.1212817,0.1036575,0.08600949999999999,0.07181660000000001,0.0599464,0.050289,0.04334881,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,regional corn for ethanol CCS,0.0,0.0,0.0,0.0,0.0,6.8314324491328E-4,0.0015909982025093,0.0024693717824134397,0.0035925040831403998,0.00473691115965391,0.00594913344209382,0.0075500060587211,0.01047242991470981,0.013253906240305079,0.01806258369008034,0.022364343887376768,0.026248117538349512,0.03192481574480377,0.03155499009485346,0.028209240325818518,0.02155405337439333,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,a oil,0.23250754163116688,0.5676676111605243,0.6391338525495449,1.1955816491851163,1.4554928316878253,1.6578207573207273,1.8632213870376408,2.053328038125886,2.226001771680558,2.405371341493325,2.6289641472169856,2.949077954481668,3.2884694367569804,3.686347701285601,4.041923924138809,4.397891418591751,4.784662449395049,5.288409753706394,5.374776523365637,5.307628599329251,4.940942948892267,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,a oil CCS,0.0,0.0,0.0,0.0,0.0,0.07250422919136523,0.11476593234347901,0.1399249567562769,0.1560726221376668,0.16113773018078825,0.15767154067708086,0.16515796644785957,0.17476989095057777,0.17813997607044596,0.19709048382719624,0.218139167974928,0.23920152558187843,0.2814009868038414,0.25987995515147844,0.19546702010357017,0.12119931304191363,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,b natural gas,0.16151918976386556,0.4580893419734703,0.6993260638441974,1.5274373013975786,2.2439127527675677,2.9131938930266092,3.676118886773452,4.501697053297829,5.356528279228729,6.33574288487802,7.369357518070263,8.225285310437787,8.76589776785328,9.26962497851831,9.400624375449706,9.335049444973638,9.04551635113765,7.981661269151275,7.0418083387658905,6.589013598944767,6.485118772768862,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,b natural gas CCS,0.0,0.0,0.0,0.0,0.00186007560314156,0.1781757049983085,0.42657093287684567,0.7012703677596422,0.9819145136935495,1.2441549811767336,1.4525761346474704,1.6525996850400373,1.8494214286333328,2.0183446972914596,2.165759479219241,2.379708126936247,2.6747886687174423,3.2548843709969484,3.7887589328132574,4.2042767393678,4.581489882892614,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,c coal,0.018663211,0.04005030331725738,0.05994034581874501,0.14209189323383897,0.21119847788696955,0.31280189547817117,0.41587620229313127,0.5256286333960412,0.613796969777684,0.6988077717265624,0.7765498767619028,0.7646527607033011,0.7374378984509219,0.6950673418851276,0.4569305851264954,0.33701689954708397,0.24910580591745685,0.14908982136224386,0.10735163511582534,0.08684231849889036,0.07021417303629213,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,c coal CCS,0.0,0.0,0.0,0.0,0.00806890407315044,0.031298430608912894,0.06130784390593079,0.0983604922231396,0.1378284563303295,0.1728941554914211,0.1954010485358957,0.20354756852884553,0.19781747527192603,0.184211999613851,0.1668725962758935,0.15190375291809133,0.18463018974885242,0.2287294004962263,0.27366515798323615,0.3182064347877848,0.3638124978165031,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,d biomass,0.03912939132844486,0.0898888991803048,0.10029486903892845,0.18404167449802308,0.35457489413413973,0.5452354871080514,0.7587729044927061,0.9819851511082663,1.2344726129675843,1.534641739259314,1.8453985628469438,2.141745860888121,2.3676776385576117,2.5157879338226277,2.3853937893758044,2.0411103907845027,1.5369968339790763,0.40864791757232943,0.21118778983378209,0.126555899932384,0.06629765807397771,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,d biomass CCS,0.0,0.0,0.0,0.0,0.01799803825095979,0.06061618312795124,0.1281096259169784,0.22541628498981095,0.36066403442918454,0.5328004680324352,0.7064764448645887,0.9006015986655194,1.0752033626049755,1.227173823876769,1.4366785594523366,1.656066587795396,1.952875272163961,2.304807538768677,2.7599308250865,3.178054942017954,3.4161682735162735,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,e nuclear,0.0,0.0,0.0,0.004837020281959732,0.01042916210123349,0.022415492892691243,0.04543915912501696,0.07966075509489472,0.1258896606212421,0.18847314500301393,0.267410240149227,0.3781559102920197,0.5361671556066036,0.7481823152173614,0.9715785228835477,1.2238317381093005,1.4796107652609558,1.80534640171602,2.115507205039476,2.3904519979463985,2.6353414611342787,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,f hydro,0.0268079043787579,0.04630894531654028,0.07103796373900331,0.07480921837182647,0.07889603606244334,0.08293646796189089,0.08695156945205186,0.09096572837889381,0.10289305178143447,0.1148659703371918,0.12686274714672427,0.13876035690644628,0.15079364946543536,0.16305636423522224,0.17523966315784456,0.18752487201889514,0.1998476620410364,0.21231979304584983,0.2249317563377407,0.23768127838286382,0.2377115176049837,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,g wind,0.0,4.920004814569048E-5,1.3119937896258E-4,0.007984635479456235,0.024951555863618895,0.05559802341633939,0.1109478573667646,0.18985538522539253,0.29920178827305105,0.4424538704660882,0.6170269454451802,0.8427850738847431,1.1440003382987758,1.474423519041842,1.8897134115340846,2.3810945482592576,2.875757345527792,3.4828485331293275,3.940622232489708,4.250486989937642,4.4900571569911465,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,h solar,0.0,5.01200490459711E-4,5.4759740792612E-4,0.004318079628306323,0.012622524178235405,0.027024943852653707,0.05133966343225973,0.08068452250414869,0.11619010155267102,0.16471587401017013,0.23073902110169234,0.32750160063533146,0.4679968095419607,0.6453636587647256,0.9137654601201145,1.239574679042056,1.578426522784272,2.01067618195708,2.4038358760327188,2.7492319652556345,3.095175584257424,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,i geothermal,0.0,0.0,0.0,0.008310058264518565,0.021135052089461013,0.03818010539543483,0.05981065962141826,0.08181459011292247,0.10043282234665948,0.1005672523774938,0.10069273716035419,0.10072657120494424,0.10084507027616862,0.10108763978866726,0.10124901901809047,0.10144575740926287,0.10161697971836982,0.10187989050953979,0.10215634821342168,0.10246250708817728,0.10246802031523128,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,j traditional biomass,0.7144003,0.8983974,0.9657846,0.7820926,0.7231413999999999,0.6464586999999999,0.5653411,0.4933646,0.43624660000000004,0.379035,0.3248628,0.2818927,0.2400028,0.1988279,0.1730971,0.1442924,0.11774,0.1004387,0.0840419,0.070371,0.06638379999999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,a oil,2.1343344976661416,4.389448509696788,4.482800573425345,4.439833891619679,4.3942186247735595,4.319892055235291,4.159915102069429,3.8634582701941014,3.433970738306319,3.019196886316031,2.734044552728914,2.5796268944737704,2.466989550423132,2.4397902140970564,2.41837905617291,2.3684187549015836,2.3529437172016516,2.374323184230477,2.2409299137098295,2.0980581410814163,1.87255124787248,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,a oil CCS,0.0,0.0,0.0,0.0,0.0,0.0013942285168034585,0.0025457637936341705,0.00319053025918754,0.0039466374104891,0.004084945977042089,0.0041247818529415595,0.005168801088109639,0.00651390610906938,0.0077831806005392,0.013108430106467311,0.01791986717638857,0.020237332443698942,0.026443742220345588,0.02604462699039794,0.02247404037615932,0.01636518026199725,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,b natural gas,0.11908457434334047,1.1700425644437953,1.6448477714684255,1.6997902769084197,1.7834730657078646,1.8693053609136339,2.0010100656498317,2.2226710886424743,2.518369275482554,2.781328246469932,2.9162802478148726,2.9196683321709678,2.7952704616144746,2.615229513510474,2.356482659905465,2.091980815378217,1.8405810325923195,1.548025233214581,1.3105800411584407,1.1597607708471203,1.0481141643379408,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,b natural gas CCS,0.0,0.0,0.0,0.0,1.0733804611716E-4,4.997569056649847E-4,0.00126583340394429,0.00254227261357449,0.0049862903189430196,0.00835385548759183,0.012397897825859731,0.019717693685307146,0.030024916409641243,0.04201771609663309,0.0736439703370186,0.11259028463432418,0.14595057877549694,0.1952139620757476,0.2316346913878432,0.2619327684247272,0.2956753331216808,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,c coal,1.1133228134737707,2.3021928625107093,3.155535912684488,3.292521020429991,3.1112530371949148,3.0523766722949737,2.9788133154206755,2.9043416820145174,2.7615459892045884,2.59486761665093,2.4125805239574007,2.1573167413559977,1.9201421306020154,1.6683498129936267,1.0269470682050656,0.5881231653443383,0.3227182136852063,0.11547519651557256,0.056788685739826913,0.03590122773739119,0.02290963842743924,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,c coal CCS,0.0,0.0,0.0,0.0,8.83367379534E-6,3.786896941855899E-4,0.0018462323344559878,0.006090771328797839,0.01244137693178083,0.018242216106321107,0.02179387901817631,0.02538307077661921,0.030988991388892606,0.03757954944163033,0.05898101621544721,0.08926767986383725,0.11552190766450919,0.14882228440656226,0.17285455425561463,0.19368159940422952,0.216710790141313,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,d biomass,0.030860647886263578,0.0910615569844754,0.1480784517262229,0.14976256313291292,0.1794300898605787,0.20788832004921387,0.273616325083894,0.4064872409656991,0.626317275961638,0.8519847558623164,0.9914507885619106,1.0576878649320147,1.0790357232991772,1.0366568686978657,0.9198171145788833,0.7327907437464495,0.47445674437724344,0.06957328510635233,0.035324916575766814,0.02530312754604562,0.01851448082221678,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,d biomass CCS,0.0,0.0,0.0,0.0,1.895590814429E-5,0.0020094790314320716,0.011820185808221823,0.0448209135491775,0.10627020411523398,0.177070465179376,0.23116463291081343,0.2727641150746394,0.30800031398518024,0.3364775006671029,0.4113879176800843,0.49036057673682476,0.5708179291534808,0.6076757386641413,0.6496137381195495,0.7041575470687189,0.7514670252829039,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,e nuclear,0.20166795308409635,0.5615476766134995,0.56353171086608,0.5983767696873161,0.6275858063928818,0.6443919561527928,0.6779978458478357,0.7211844198587205,0.7782174605575167,0.8363149119208353,0.8903909597944604,0.9747862917302881,1.094340592570505,1.2291455884122446,1.434461439900508,1.6195777545352608,1.752488591459417,1.9154944108203802,2.0011908169161257,2.0466355348084204,2.085767094130302,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,f hydro,0.02425480808006602,0.01405178961832368,0.01470087438908199,0.015991441749491398,0.017762559239209514,0.01974486624355156,0.021669571101358684,0.023592386911825632,0.026774988090539523,0.029969996134568386,0.033173543917435044,0.036279053065686774,0.039434365897813364,0.04265954517189077,0.045781691600566256,0.0489890557185882,0.05224858799048822,0.05552079283401886,0.05887825659702293,0.06229640206646316,0.06226787229056471,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,g wind,0.0,4.9735458561276E-4,0.0030963066615410503,0.004152842267042081,0.006267816409472798,0.008512918602393688,0.012653023126148718,0.01851708799404363,0.02415018200171597,0.03328549282893148,0.04222137929419804,0.05326173569415838,0.06520848632207515,0.0756399406361017,0.09690856578583842,0.1196835930106871,0.13491118570660224,0.15164924273366956,0.15968218243631832,0.16549049541653432,0.1645022949747423,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,h solar,3.8131766347523206E-6,5.73870675707116E-5,0.0029257628751247996,0.0036814857283692395,0.00625908107344134,0.009073496827998122,0.01453882042833789,0.02329999591358728,0.03461984206417689,0.05237887228906249,0.07256609647839408,0.09897431549692962,0.13026022272559115,0.1602167395947258,0.22021610411422263,0.2862491836783827,0.3357420738680696,0.39361810735711766,0.4311316763435673,0.46347315574892184,0.47912793661928377,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,a oil,3.303603307169578,6.800540928561153,8.690536508611828,10.218072640085946,11.538987287687242,12.669917812193322,13.625410508756124,14.263121994502187,14.499087966250451,14.620292241878168,14.926136874796779,15.567166043230237,16.28717203214531,17.200950898668378,17.608699675386834,17.796718719407387,18.14901868602539,18.281668958920505,17.752024057600362,16.948445654486115,15.286103832348344,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,a oil CCS,0.0,0.0,0.0,0.0,0.0,0.05055988865342193,0.08299868441133121,0.1046005706221183,0.12681612871553102,0.14724040194624552,0.16934128393934594,0.20883596667985557,0.2693969636501256,0.31584540707934927,0.3786881664667715,0.41733759208481447,0.42642791266186036,0.4516629141033659,0.4046723735497319,0.315709972866572,0.19707733773163985,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,b natural gas,0.567730067525582,2.9848181287704785,3.4841843475904715,4.682331010349745,6.0159495790208215,7.439743276855587,9.095573729838861,10.939001882008418,12.831311777766023,14.694774808463253,16.319567227976023,17.386875754204077,17.382188158476414,17.292778783542254,16.789395021799468,16.074525205232526,15.337119001536118,13.96363775775754,12.823016518779465,12.293096793811824,12.387874217970282,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,b natural gas CCS,0.0,0.0,0.0,0.0,0.00119328138255263,0.2101163528310109,0.5429847178145543,0.9515076698119197,1.4320249073174607,1.9542860126262502,2.4879923260538255,3.1250641468267144,4.049141309587057,4.943356675880386,6.053923783438606,7.336473464151601,8.335990359533964,9.755885234415784,10.784626414233724,11.371935737279593,12.077959488896848,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,c coal,1.5567922826845726,2.143589480494478,2.910963446513182,3.9403428499807283,4.390622176238868,5.0405861818359705,5.693126269526275,6.294580049196723,6.638665686091961,6.864157435955781,6.96896268561864,6.6292317480002145,6.21525881839426,5.683344854431151,3.894086641516802,2.5212308985923833,1.6740290559309419,0.8395200153472321,0.5391937989968257,0.3961719868211609,0.27705807540608346,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,c coal CCS,0.0,0.0,0.0,0.0,0.038472689581981974,0.15030132378513653,0.29946823053498417,0.5223006025039855,0.8102428053231135,1.141357532880406,1.4619887275204062,1.7686715939139068,2.1213278587247797,2.409725472759146,2.7155903731191615,3.046317601566019,3.264927731331203,3.504480078236645,3.483775562959707,3.3228147510837376,3.41695631309315,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,d biomass,0.976161391207725,1.1373158550373845,1.3847428989430073,1.6931616256667397,2.4382835400262675,3.189473075149419,4.0399859450907,4.901405433851304,5.844718773187926,6.801716289454122,7.617601596526628,8.257812053085392,8.671350535111126,8.869430191774267,8.458860442050593,7.571481221245801,6.07618546587589,3.3947642175114745,2.774574963870836,2.4669370759046174,2.1886179392646783,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,d biomass CCS,0.0,0.0,0.0,0.0,0.05107156391056579,0.16686187078017614,0.3805123224141246,0.759991502811297,1.3341737678524246,2.0890490729545528,2.914301773134592,3.9705884604436745,5.359328571805739,6.887458616422506,9.166608713768285,11.534731993944037,13.842909209943432,15.695321756347465,16.678828359677315,17.027667035946617,16.314180712831647,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,e nuclear,0.0,0.0,0.0,0.0096260755634605,0.020149305543328347,0.03896513340908796,0.07855036820757613,0.1375398918656477,0.2161248033431709,0.31566317463483756,0.4370215085533041,0.5850641942044247,0.8018928814069786,1.0370661023119168,1.3455445122967606,1.7143021697237002,2.057172528262178,2.5190299414549338,2.9356827606167633,3.2898268892954055,3.7140091586956547,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,f hydro,0.14079621744049045,0.19966652006981603,0.2543345552348322,0.26514480839112686,0.27604802620397845,0.28699337841631034,0.2978574692526607,0.30871890763532495,0.3391852121732209,0.3696905169116473,0.40023784948604096,0.4308119844414512,0.46150421933885755,0.4923208360043909,0.5232357089913245,0.5541201680541712,0.5851272239092024,0.6163897778618084,0.6479651012485376,0.6801955301666099,0.6810455935551711,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,g wind,0.0,8.334018717825595E-5,2.8472675996848003E-4,0.007657366954662889,0.02042180213886625,0.03931104816460901,0.07413567244455965,0.12080584969969312,0.17990206116809315,0.24509611816527319,0.3177095522163983,0.4055642963248997,0.5314810656112723,0.6554592785601949,0.8330502117434326,1.0499382613392267,1.23260142422601,1.480993618633274,1.6391829706814,1.7357271916281996,1.8543096095360663,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,h solar,0.0,2.510213453200264E-4,3.3366573558344E-4,0.004333325981851579,0.013056097376970022,0.02791467821515542,0.05793604917236678,0.10423364995456386,0.1739967042239058,0.2690946731981566,0.3951604148308564,0.5817123571993155,0.8620143848549148,1.1671983570358206,1.5983669841557504,2.1273665142889495,2.6612263471177093,3.368838792394423,3.974758905305185,4.522000147570937,5.163626012142362,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,i geothermal,0.01964829623553365,0.03567154385190781,0.03578009571771217,0.06046820804787676,0.08604358556055958,0.11414219553170912,0.15345018144154246,0.1939160420179321,0.20836404682936505,0.2341777687632547,0.23425026120848158,0.2343313827476675,0.23445641428587524,0.23462682448835961,0.234819934175335,0.23497698047331902,0.2351644422135003,0.23542804195942155,0.235776370766237,0.2363172388591499,0.23659589637718031,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,j traditional biomass,1.20571901,1.2835728,1.3275854,1.2793548,1.24775382,1.19612896,1.11217011,1.0259833999999999,0.95670205,0.87884292,0.79789644,0.73497498,0.66647677,0.5950854400000001,0.54280262,0.47873629,0.41632175,0.36199943,0.30892305,0.26109301,0.2226485,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,a oil,1.1710049034746912,2.0437550568901353,2.011357551051939,1.920848090938401,1.9899300772784716,2.004944333824954,1.9771538789550873,1.8874419211279545,1.7340177220286568,1.5776673367566176,1.4706810761002653,1.4068824522857943,1.3617623128417826,1.3628733509940163,1.3640265670541052,1.3418341434520893,1.325966346159863,1.331111369308658,1.2355770408837037,1.1294158863964234,0.987029223990399,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,a oil CCS,0.0,0.0,0.0,0.0,0.0,0.009375141974035718,0.011553014833853141,0.01122638180717658,0.009869565811591373,0.00799117835525605,0.007140297429630969,0.00880537772423452,0.01342451003986006,0.018914505736533496,0.03050117974937798,0.04712650703093409,0.060152433897872226,0.08189276778298234,0.08225716970086133,0.0730239673525441,0.05283900596228428,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,b natural gas,0.06150068496606045,0.4239759677192195,0.6138548961256376,0.7208988475234196,0.9468009316403676,1.1068838963193073,1.2662389027727903,1.4534317983786882,1.6572014708745506,1.8232909297643103,1.9414555127405604,1.9869660785423557,1.8730445934158773,1.7251774942358282,1.6062336295475586,1.4763165584098499,1.327594074612752,1.1259522938430815,0.9419642279877025,0.8190625044002873,0.7271990154665062,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,b natural gas CCS,0.0,0.0,0.0,0.0,2.906261133206E-5,0.005665393721272768,0.012213608645104743,0.017916306982136903,0.0224784492721734,0.025478134968255076,0.02783841710472212,0.03263439021899206,0.04507773350175458,0.06371906767678263,0.10140853887537872,0.17097741327293356,0.24224011093280826,0.3409465814831222,0.4050970835274373,0.4519917392992077,0.5117168483742917,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,c coal,0.48447641661066637,1.7647548241130668,1.8373184617856804,1.8919306215409335,2.0872501482934993,2.2277994625228925,2.304745387887419,2.353682844591914,2.341949910395588,2.3001349411146177,2.2363989837397362,2.091848535108445,1.9834265532797835,1.8656870163809849,1.4333387444760801,0.8831683058136173,0.4827499381527855,0.15505161483627694,0.06619332885727265,0.038811260987807135,0.024148719573337845,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,c coal CCS,0.0,0.0,0.0,0.0,4.840477542556E-4,0.00711409798780973,0.01591803087604341,0.026521325594369448,0.03510234949335784,0.039351429619486886,0.03124561315592705,0.03040963551357233,0.03309093158690574,0.03797303636846672,0.057449520023713875,0.10608073718935086,0.15999001600240326,0.22533880640527687,0.26493174525984475,0.2934192535578123,0.3281404657459079,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,d biomass,0.0,0.05773583348798079,0.06305263941387082,0.040673321190634944,0.07347455084213736,0.10492989808599659,0.1557915118247355,0.23466897833590977,0.3562587190533217,0.4859800725743873,0.5744252438849669,0.6201433791999312,0.657019668764098,0.6636908011579324,0.6167515267661933,0.4996936926157657,0.32528444013306546,0.03233175182966091,0.008181452448752005,0.003287680981726679,0.0012603603641880908,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,d biomass CCS,0.0,0.0,0.0,0.0,0.00132807208273955,0.012308892699366096,0.0327099048469101,0.07188267485286344,0.12549788967860914,0.17118652243456325,0.19273626489625872,0.223819969439089,0.24680819426975545,0.26613759741804566,0.31731793197322383,0.3906139288969324,0.46698454737676365,0.5180206913352359,0.5620839711932931,0.602539958860104,0.6280143566503206,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,e nuclear,0.1243953996015746,0.17179636711714139,0.1737611121505269,0.15246636225019172,0.14548802389501697,0.13932102076399627,0.13110507740477453,0.12176813919686605,0.11210541422068304,0.10372053860548712,0.09789616108315961,0.09623430079794583,0.10972280694214903,0.13287260571046672,0.1662350771865218,0.22533567931253376,0.27477212058535355,0.32467715292600297,0.3532066327385684,0.3714664770250917,0.3947659524282497,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,f hydro,0.02415133124424252,0.01712926214638983,0.01750585377301916,0.01676049728793877,0.016818121515050192,0.017211323352377638,0.01751608848089318,0.01782658938477084,0.018855586060484788,0.0198809209209666,0.020906576072056596,0.02183861931747643,0.022783424653019538,0.023736573763172432,0.024607082049142,0.02553646192099623,0.02651731467194577,0.02749625813718775,0.02852252953971406,0.029564893766498238,0.02954812117173691,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,g wind,0.0,3.9110955762999003E-4,0.00407385834760092,0.006705561563406221,0.012153457169222849,0.01723221101422753,0.02396631781740122,0.03203908963346116,0.03811207064287396,0.04587882235629727,0.051060304290146026,0.05804127598737277,0.07423033637006807,0.0933885539826874,0.1182965739070715,0.14247604347259185,0.15432992295742828,0.16014358252389668,0.15392153926713995,0.14443571828150586,0.13711103479569625,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,h solar,0.0,4.297905390223898E-6,9.600276807984333E-5,7.256061986253999E-4,0.002568886526964986,0.005182859866647513,0.009927193374153695,0.017239058220178082,0.02765884430677628,0.04032369063934518,0.053782597617866815,0.07147177243906379,0.10946522621679876,0.1625972797789902,0.25476526010831263,0.3958934778985386,0.5269173568743879,0.6702784214613735,0.7409813582112033,0.7721661359267724,0.7901821772564166,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,i geothermal,1.10790355255E-5,0.0,0.0,0.00187379220504111,0.00362716195165838,0.0036347211983776603,0.00362354493328009,0.00361418041140869,0.00360051636220355,0.0035872062739611002,0.0035738066011047603,0.00354528460216459,0.00352068459164136,0.0034985888661596496,0.00346487485502953,0.00344159404504475,0.0034223410999055,0.00340781246363117,0.00339597623539041,0.0033848912919389896,0.00337364804572145,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,a oil,34.035570059927366,40.65654997107799,35.77888723585012,36.64628848266549,37.10754646615233,37.124999640358894,36.41112785953125,34.51666217193904,31.67147970642487,28.735369307977034,27.022587049016124,26.227234103995315,25.81597601507925,25.924248237231733,25.31970780073763,23.853017821983254,22.590121315258152,18.753206716890716,15.939509289438618,11.26439455834185,3.1422872799791994,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,a oil CCS,0.0,0.0,0.0,0.0,0.0,0.022686531355098346,0.03856118849850667,0.05266457725805882,0.07412737031217988,0.08425199373486426,0.09622083735617157,0.11828898604372053,0.15770488883468858,0.1871822931998699,0.25940396049901066,0.30272097019616845,0.3212783046760848,0.3355886883268493,0.3116159799647648,0.2170830882675642,0.049916666453591094,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,b natural gas,18.38422210596133,21.597895085212823,23.233626074327336,24.44413432169542,25.860992301322188,28.036709606259848,30.20810339498678,33.00602420167488,36.374268899998754,39.200448295356665,41.23411911637823,41.375583477422516,39.506165711137214,37.982254372375685,35.159952206090054,32.29213212239556,29.688009270458164,25.17108225530754,22.1541260537685,21.48034145791227,21.543426840873057,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,b natural gas CCS,0.0,0.0,0.0,0.0,0.00282434736453508,0.05980570331415438,0.1612185700439985,0.309479121756425,0.5599168634169764,0.8473012710509076,1.1691194901848985,1.5920938548488868,2.2981819055218913,2.975092031939879,4.26873826770659,5.631877295615803,6.643261663585496,7.838546452641704,8.910726155583145,9.807315568600488,10.932285955559749,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,c coal,20.57203368586485,23.428325123719336,21.607654489873156,24.296969243154273,24.628791088347572,24.99215151778147,25.111403986974995,24.944125642546403,24.50110983559922,23.550187887628503,22.44775623489872,20.54605000710625,18.499260311814243,15.836634230303751,9.034698555271849,4.014969767459897,1.9328380499526125,0.5486967302952007,0.23763641053373324,0.1423925288885647,0.08663157841702075,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,c coal CCS,0.0,0.0,0.0,0.0,0.026476079644126953,0.14312341136473375,0.39100272435374245,0.9043613205114351,1.7505841028013867,2.640256726598549,3.398935186034965,4.134945474857893,5.246136773403661,6.270656651850091,8.117347164243727,9.911164074424248,11.235888518420188,12.63487343699679,13.812714267619112,14.915048392381197,17.004789176627337,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,d biomass,2.6415799461035654,3.2467863456956487,3.8840079825371454,3.9981762842367914,4.895227217975251,5.725778179905854,6.778956272770289,8.14912547266092,10.136609897992214,12.062131256818226,13.47248726352328,14.212302114513681,14.459273650522611,14.116572477170967,12.864267877196959,10.808925322923209,6.6279777017457855,4.783592000851996,4.188690039112286,4.095701754744794,4.25973077601787,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,d biomass CCS,0.0,0.0,0.0,0.0,0.04496041890378919,0.16764854904071283,0.4961038371856204,1.3081863072650803,2.8267183490108865,4.602219958703828,6.134804946861505,7.584170966255625,9.622907882238799,11.887145600493072,17.410118434132027,24.162249562563293,32.601760734325914,43.32972115458381,50.08385558293399,57.30165342068431,66.82396640943543,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,e nuclear,2.3412649022978593,3.021242532968092,3.127522039090407,3.304981644386077,3.3635683116677515,3.4440307343537517,3.571593675051926,3.7354584137731845,4.046739472951432,4.358423976429512,4.732077945881827,5.243460069553008,6.20297816542722,7.110166824352392,8.513349063983764,9.637374793639943,10.605854016317355,11.644431480215282,12.50480085275738,13.184366816380997,14.061255445398372,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,f hydro,1.0456662937081656,1.0162230447503524,0.9789003161846981,0.9812489674527892,0.9958705202925826,1.010453462744151,1.0222148732845964,1.0331310081681848,1.0372683575252035,1.0404071829026433,1.042759054126548,1.0431669939850916,1.042706188318823,1.0422692418489734,1.0401198507711138,1.0400076598214716,1.0419050292067562,1.0437403720673957,1.046858383117842,1.0506250970832636,1.0496518402135993,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,g wind,0.01173763596836127,0.06662792521334111,0.35469710942491656,0.4705912979615463,0.5422092117752187,0.6681322089874626,0.8824338600089348,1.1859879697994329,1.327515499936667,1.777545133856002,2.361205290423017,3.021392796872048,4.059963755065586,4.9500625576589865,6.4918089896045705,7.960225393328067,8.904927669987948,10.029799002648014,10.663230615006038,11.272120255656526,11.758851536595277,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,h solar,0.00254889138968348,0.004172014268279091,0.014663608145750571,0.027627226934158616,0.03922700588103227,0.061608359922285985,0.10240005946436126,0.16558719947480424,0.26051137862947327,0.3845153110794492,0.5385609954035186,0.7169768998889839,0.9953717350380937,1.2525364666643575,1.7037249220446882,2.154756823181037,2.4908711433554878,2.913987945021792,3.242338055027449,3.578694235463945,3.932355469847391,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,i geothermal,0.06128053925884113,0.062498159864326136,0.06551670486134839,0.12015398836088753,0.15726292612016837,0.2206004616755257,0.3150939793334214,0.4274877202218302,0.519363324988414,0.6178863354396059,0.7288420743068235,0.8197023486419656,0.8158171415090167,0.8119964393353178,0.8068727163983629,0.8033630668729378,0.8014435088792373,0.7994607346266567,0.7984875522370863,0.7980126434280143,0.7972749160559022,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,regional corn for ethanol CCS,0.0,0.0,0.0,0.0,0.0,9.767124386236101E-4,0.00180696787417093,0.00284037752300107,0.0050019612739813,0.00699836535885884,0.009050708396710759,0.011715439271384392,0.0164233694000866,0.01960923886714347,0.02921198669573768,0.03816738381852329,0.04593508385044724,0.06165720395840921,0.06787015178000583,0.06984689231846881,0.06324543768119559,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,a oil,0.3410637411870681,0.5294176182306937,0.7293948931287185,0.947358901241752,1.2275949983583394,1.5629709611154599,1.9922688880179993,2.52843344001985,3.1993023228533994,4.018225364099973,5.023125921079844,6.14500638171303,7.340357904793785,8.616627945460156,9.591660347417994,10.399969769027356,10.376813561986106,10.515418196376526,10.670253868137317,10.692532087499105,10.03621198419793,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,a oil CCS,0.0,0.0,0.0,0.0,0.0,0.04559660799511257,0.08744187218523256,0.14214367768915492,0.21835627390261356,0.31363448012586687,0.4291941056456185,0.5749391510661424,0.7416576863844782,0.9064304049788449,1.0857862582620565,1.2177558033072993,1.0646642734283496,1.138297785937445,1.0679762155304149,1.0035404357951339,0.9039335818965935,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,b natural gas,0.0,0.017839844216691554,0.02381377133782358,0.061915192493788004,0.09859368523164118,0.14990709239857286,0.22723921588832485,0.3416419148816641,0.5013994724771869,0.7263261711360385,1.0312782985686593,1.357929059398348,1.7391603669424704,2.173881360891207,2.5859540592462595,3.0492389755188807,3.709354292748528,4.2517788631731825,4.875930297677252,5.566431674913075,6.034394129168267,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,b natural gas CCS,0.0,0.0,0.0,0.0,4.1610921265599E-4,0.0042400432333932975,0.009948208424470004,0.019829458141021918,0.038140937178013624,0.06868698871844792,0.11570542396686624,0.1851811331455643,0.2763762604517385,0.38054865833641394,0.536165741295898,0.7254928769652655,0.9606589178112482,1.3256078955725568,1.7166226946637542,2.139342589731914,2.58378902874327,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,c coal,0.00864167163889282,0.01092872283619866,0.015763165870683958,0.02964204511316936,0.03997217723187004,0.054601512048389346,0.07325419971445064,0.09764050157798736,0.12440907175702112,0.15651805409548086,0.1947652126984929,0.21773934794081798,0.23757616913820098,0.25381890327173945,0.21523838380991667,0.17568879192210338,0.13640164901741925,0.05735661056955978,0.02605546298919192,0.015010390974095403,0.009266081685956995,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,c coal CCS,0.0,0.0,0.0,0.0,4.2536567998461E-4,0.0016047876953509462,0.004176280598617711,0.010176528597766282,0.023942577255163768,0.05004752274143191,0.09412768898507011,0.1588454159997047,0.23794386818381247,0.31429189404756486,0.39852164779136623,0.4832268034584588,0.580202196063916,0.702679958422238,0.8263015231484644,0.9864357436626191,1.1028932852711408,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,d biomass,0.5984681559442119,0.8337017414795804,0.9626097864540004,1.1438464168750926,1.5680607555469153,2.1057251796828402,2.807868061823596,3.647984785876483,4.582206917239071,5.593736198792435,6.575093333231576,7.523960096517414,8.370643848470671,9.061623827893087,9.217148913002246,8.746284750007355,7.849484849006124,5.601597734047766,3.2784052699151345,2.0678951834472734,1.2178126971479937,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,d biomass CCS,0.0,0.0,0.0,0.0,0.003710197436286266,0.014107795153352962,0.0352870488662171,0.07789569040581269,0.1601293794823638,0.3028096117278098,0.5182883675487463,0.8645908529574043,1.3761936940697055,2.0588470740048015,3.219920747004788,4.6750971192494735,6.141759060343518,8.035696015908174,9.691275644264673,11.138822711246819,13.290268635217222,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,e nuclear,0.0,0.0,0.0,8.876925914444385E-4,0.002048591523818167,0.011719372850161638,0.03390354004062702,0.07533914604159339,0.14118880695896405,0.24409728834842148,0.3970103004736668,0.6014260312236493,0.8651428317838615,1.2053607709488239,1.6494310362340525,2.218703363481117,3.006212732499455,4.009331291021636,5.0687946746167265,5.999531771062095,6.87168465192206,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,f hydro,0.02195965473015728,0.03539191374669842,0.053921691358000956,0.0712427843933219,0.08883390258924215,0.10636281104050042,0.12404492813204109,0.14195263895678123,0.1773213402849042,0.21298007819429293,0.24890774802673335,0.2848652090211022,0.32155624064647653,0.3585870926989216,0.39525065041413837,0.4321297601007892,0.46968867181854734,0.5084621308803398,0.5497662054075574,0.5931764024916767,0.5937927074599809,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,g wind,0.0,1.110000431138668E-5,2.3270039425771777E-4,0.00598228741611126,0.019217261717663463,0.04653363842044482,0.09087829438338936,0.1526444878874511,0.23376912342464654,0.3404825745672748,0.48225588721919077,0.6516965956289987,0.8421776549100279,1.0572906247977423,1.3592297649224248,1.7357989789857895,2.2437733046358193,2.8601696775898766,3.4339423743043183,3.8634356001387524,4.266573346728521,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,h solar,0.0,3.5999913982882468E-6,7.200012198771749E-6,0.005897574557106571,0.02011145358225638,0.0498578207091292,0.07973984941348303,0.10834445441351817,0.15878288263021256,0.2387008352804375,0.3602114913310972,0.5401738745186568,0.8089941700865052,1.1758535030423842,1.705875750997703,2.3935451873460374,3.3546595238800205,4.4881103463389085,5.618000997372884,6.545201738492056,7.435174600193201,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,i geothermal,0.00117359758062781,0.00361079140248027,0.00529560897220093,0.014487218180165282,0.02708285359720987,0.0438658901243228,0.06277124526179018,0.07416191070526668,0.07441332758333889,0.07468852886992411,0.07497306235611073,0.07520098334767908,0.07555799731432511,0.07591795250650364,0.07614760763131442,0.07637913087200002,0.0766973988190936,0.07713887391720528,0.07787853803707671,0.07880286512762633,0.078885922312174,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,j traditional biomass,1.377214,2.0188930000000003,2.5967089999999997,2.672556,2.7564490000000004,2.797873,2.818519,2.820951,2.801418,2.7508350000000004,2.677919,2.605683,2.42388,2.210109,2.02421,1.8443999999999998,1.6993070000000001,1.544981,1.407051,1.281878,1.2032539999999998,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,a oil,2.2111559986838065,3.037532367474579,3.589360144254038,3.6856341323246715,4.217790252729714,4.802653968491696,5.305409074512802,5.713782394991878,6.06181302139351,6.340386419075653,6.5658141092779605,6.801086455073258,7.000540950410961,7.175715132658961,7.143304084367682,6.947163756903793,6.31960900283706,5.90065104331776,5.501785462405324,5.103043593179136,4.432208520881043,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,a oil CCS,0.0,0.0,0.0,0.0,0.0,0.0982036483071029,0.16773823104753185,0.20933256075837123,0.2473907013248354,0.2706313285829024,0.28345139095397404,0.30570355618891587,0.3391542799848551,0.3783309629195973,0.43024815259294874,0.4284860705409164,0.3061823622932069,0.3158273186536838,0.27915942383046205,0.22551604042475837,0.1940500367177958,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,b natural gas,1.0127169955784043,2.4701689458860416,3.031304937670546,3.228986975258608,3.905975927762636,4.571981145118848,5.275362071306293,5.971754360936916,6.569608215212366,7.150059392293341,7.752915968906216,8.118778441165036,8.33737359873819,8.443966310129639,8.290539569838772,8.078583600643466,8.444610395983918,7.907935883571005,7.316116547111016,6.955237722091021,6.389334352722786,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,b natural gas CCS,0.0,0.0,0.0,0.0,1.9695233659029E-4,0.15313090533222953,0.38412610268875175,0.643745664013463,0.9222414331943493,1.1930715202517033,1.4333306211621202,1.6807913597700788,1.9494421970350573,2.2476815763487,2.55956907102211,2.8703900311259014,3.178344910229041,3.533355709550062,3.93320377481707,4.2508652384171945,4.6927267988743795,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,c coal,0.10941982357506867,0.20474829589412016,0.16659295930457535,0.19097480905719907,0.20287887621102008,0.22693179445229875,0.256562075739046,0.2849136987445307,0.30330252508868727,0.3168886729199657,0.3267024355950632,0.31861628843234857,0.3051436110161697,0.2859309589480918,0.19260569895451787,0.1162497530619268,0.06924291300846364,0.024331776821176904,0.010453235902690605,0.005851459237240935,0.0033851530662562237,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,c coal CCS,0.0,0.0,0.0,0.0,3.5510334813678E-4,0.0018532392534134276,0.00514620071941851,0.01143733151075272,0.02288897356054451,0.03894959117813061,0.05709401485036783,0.07663710962774603,0.09816106601667773,0.11909535925834963,0.14332783484578954,0.16933647488069414,0.19547526692515985,0.22341212256791196,0.252990660720812,0.2713823270442449,0.29210270098537133,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,d biomass,0.0302875501,0.0503842,0.0942316,0.11098527269349544,0.1614753394704079,0.21968314816865278,0.2950034349214192,0.3874764359322816,0.49777135007022016,0.6105076256721994,0.6934536372228516,0.7675159830799153,0.8383410036703886,0.899852598592439,0.9281031564388845,0.8911782131901778,0.8226601140869457,0.6867497281111576,0.21596653838131505,0.09908575725374306,0.0618221429449499,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,d biomass CCS,0.0,0.0,0.0,0.0,0.0069173324417312505,0.023951860245243407,0.05333200860835155,0.10481874357014118,0.19386084004792664,0.31300556177277544,0.4355731770912733,0.5859468692654167,0.7785302747508452,1.0007296960276018,1.3776625398978715,1.8495529346131354,2.277029225213015,2.934176165515294,3.524488777671128,3.701412394824512,4.203128343364617,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,e nuclear,0.0,0.0,0.0,4.053742857387039E-4,0.0012999495545911969,0.008665872986914049,0.027203452022110868,0.056490340509513175,0.0929344339357183,0.13512175047182956,0.18131936833772722,0.23281792417303515,0.2923805648028767,0.36514151488828844,0.468905313303957,0.5926612422981228,0.7332903743844913,0.8842083506012147,1.0442717447963072,1.1887044771243518,1.3494223882047025,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,f hydro,0.0407969355450152,0.0515904106172327,0.06027726138445204,0.06325131946134406,0.06621943219459697,0.06918828351121685,0.07216823329565784,0.07515260764313413,0.08107395253451212,0.08700240189806345,0.09293781716532246,0.09887186810345212,0.10481647973575545,0.11077668294497937,0.11674298560589516,0.12271826820862448,0.12872578416097327,0.13478609779757955,0.14087290768346927,0.14699358845552402,0.14694950189731207,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,g wind,0.0,0.0028794176757527402,0.008217641931003368,0.012763352735193969,0.028370095770819115,0.056148486279900336,0.10524038859204721,0.17036159108715465,0.24478128754151177,0.33740367525989134,0.42952274486959713,0.5319833526598766,0.6467360042820068,0.7915930155836436,1.0346352791791709,1.3377226462099618,1.6451914029152754,1.877546247380716,2.0718011725882133,2.1941554398244807,2.367354152195274,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,h solar,0.0,0.0,0.0,0.003046710486624635,0.014534754262538224,0.03825993252379936,0.08039738493869382,0.14035000596202762,0.22413666486493403,0.3289476141011356,0.449178327443246,0.6015783186325697,0.7251452458625878,0.7869466841514827,0.8209532264012819,0.8595118704313389,0.9559894400568372,1.0888783511575872,1.2290368736231116,1.3683175261204508,1.4867041702340378,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,i geothermal,0.0,0.0,0.0,0.0036947858560061404,0.014808481070626933,0.029736288268942528,0.048320999287430576,0.06581020030090089,0.0726024878663875,0.07261084605556979,0.07262265628852706,0.0726337463735695,0.07265082970190462,0.07267566899369136,0.07270061649119772,0.07272679397938453,0.07276641412440367,0.07282828854949279,0.07289616765580607,0.07297388486077085,0.07294352761862978,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,j traditional biomass,0.062738,0.0925072,0.1004378,0.1019697,0.10502249999999999,0.109264,0.115282,0.1232519,0.1331046,0.1442909,0.15636656000000002,0.16894105,0.18204974000000002,0.19541640999999998,0.2082906,0.22036681,0.2316423,0.242448972,0.25257522,0.261975065,0.272337319,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,a oil,0.2487467343048265,0.3505672376792083,0.5241692762538934,0.8005235476213604,1.0203635513743052,1.2438103440612391,1.4892756157666351,1.753180539846951,2.0755983822849204,2.478832015551559,2.9738038385047973,3.5185762415878425,4.04510889236139,4.670216147100484,5.168231542671702,5.5514027971763715,5.508193123571888,5.48129596679617,5.535359300736023,5.563931473236598,5.255194200717817,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,a oil CCS,0.0,0.0,0.0,0.0,0.0,0.06505756748369951,0.13119542471191012,0.1989579243940603,0.2826089308387346,0.38663350732117757,0.5105292802194591,0.6735198077322058,0.862396569259361,1.0344238914361994,1.272770863168579,1.472934565076449,1.3293006316425946,1.4062532906452758,1.24407225433375,1.0357615855950428,0.8438925861014271,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,b natural gas,0.01846021,0.0407854529441145,0.0622221625502205,0.1782576804849842,0.2638308738238117,0.35893686909832223,0.48671598477411526,0.6472326954334937,0.8420636416239609,1.1002018598024206,1.442203902000163,1.788719722145086,2.11491406954267,2.4890199454556274,2.8278583426625596,3.1813324540441625,3.7595033428825784,3.9355577394810397,4.03740147273416,4.14858804524667,4.197617732218347,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,b natural gas CCS,0.0,0.0,0.0,0.0,2.8776072590951E-4,0.021608599136149615,0.05578983339915295,0.10228561320173477,0.16518519469919132,0.2536526298728639,0.37227755470303836,0.5383175138660259,0.7648448264849015,1.002368386785551,1.3467497804680897,1.8242955642666556,2.450740600613664,3.318000039556401,4.190660554300026,4.970086449724393,5.627767357541964,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,c coal,0.17708672863824543,0.12864235948318312,0.10955303438544402,0.26082458106811934,0.33607267197486446,0.43258929436650717,0.5583040052643242,0.6985531888518484,0.8358139087828166,0.9904518751442893,1.1637540483145792,1.2841340391345766,1.3737317536673428,1.421420392513332,1.275828610027994,0.9840023736509984,0.7631183694230093,0.30498967465618854,0.11948396859631369,0.05399412269654793,0.025644907832852008,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,c coal CCS,0.0,0.0,0.0,0.0,3.0508347908005E-4,0.002493842153392669,0.006617004938284727,0.014338752454203404,0.02998671242600168,0.05974648343433204,0.11102760620504448,0.20116802166221162,0.33953563266445885,0.4954270996046709,0.7319362145896962,1.0523365754845413,1.4533553315184522,1.930252700099507,2.3719847286406353,2.7811920880523244,3.1033909368333976,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,d biomass,0.37663409499999995,0.616619908,0.7085608969999999,0.8192736289062885,1.0721731284506766,1.3532363231307563,1.6393155279734073,1.9320108552437725,2.25355048796367,2.6077082562514824,2.923936124897379,3.218982960232486,3.4413039240925825,3.684503952451147,3.7360860330784735,3.5020757052898954,3.1025503091262907,2.159992205104537,1.1460955378339714,0.6584936327063199,0.3695978978254455,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,d biomass CCS,0.0,0.0,0.0,0.0,0.0028673435144726364,0.010180217906494137,0.02375232516958602,0.047939401437747706,0.09347102354954145,0.17343936976945926,0.2886154875290797,0.4621647111167524,0.6996227210330959,1.0136356095387438,1.5774459555676152,2.3150296563467525,3.0142267909543667,3.9575623580229573,4.6861309640660895,5.275159601540374,6.314928520377153,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,e nuclear,0.0,0.0,0.0,1.8136275540843686E-4,4.53113174273187E-4,0.002077920107231509,0.0064930654393736825,0.014656262744465442,0.027054543249919065,0.04704718696712614,0.07842972021607972,0.12421572528480876,0.1919132334174128,0.27694826513601345,0.40064389245026566,0.5911061108133597,0.8885124805729824,1.293614676810011,1.735731296625627,2.1126714051629034,2.453127263874428,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,f hydro,0.054906318605825566,0.12279986282803355,0.14380348113770627,0.15222495383254123,0.1608129666374414,0.1693723250934422,0.177912334220435,0.18645559227463504,0.20337569159558766,0.22034755019114985,0.23735274975148588,0.2543432406574187,0.27137883094706294,0.28879304329756184,0.3065041871468453,0.32425784577127736,0.34237370384670207,0.3601924567119427,0.37811544025221666,0.3955983939166643,0.39574189990436637,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,g wind,0.0,2.399997319114938E-6,3.550001877597253E-5,7.74119118000003E-4,0.0020292098980946097,0.004804940389119468,0.010635398156023476,0.02021582608127716,0.03548604642922484,0.060472071653193155,0.10061823227474669,0.16170262785194472,0.24940091100753753,0.30637659372280424,0.37408750643405536,0.47051262937759847,0.6139043290303435,0.8046364446244388,0.9926266052810236,1.1846947743299188,1.3424172087229398,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,h solar,0.0,0.0,0.0,0.0013208076263698041,0.004369780840694447,0.011288795651721579,0.024057032337182822,0.04503063087313972,0.08148346389622897,0.14187799798308554,0.2398241313431389,0.4029404507306903,0.6511652059480476,0.9169200277759256,1.2011900124652937,1.535713081267837,1.9467940319596553,2.480425131023681,3.0085014443471008,3.4502692992794817,3.8673790635588348,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,i geothermal,0.0,0.0,0.0,0.00173578650364117,0.00418597846500872,0.00901288280834752,0.01711848682012376,0.02739645551091589,0.03971796141437629,0.05351114298770529,0.06942640130897187,0.07095028113291377,0.0710231811820303,0.07117591448545414,0.07138051299102702,0.07157901614667875,0.07185466885889148,0.07203135476081482,0.07221518367907251,0.07229910041460104,0.07233508241640946,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,j traditional biomass,0.9525201,1.331009,1.516337,1.52976,1.579966,1.610638,1.621344,1.6234380000000002,1.620841,1.600171,1.564703,1.526496,1.4189889999999998,1.3148490000000002,1.234994,1.1389209999999999,1.057978,0.943785,0.824031,0.7055480000000001,0.6323840000000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,a oil,0.7422939484758558,1.2308992653258708,1.2428750477516777,1.6029742607640103,2.0039367071445167,2.667116530545966,3.5074689729321022,4.521239194700594,5.753611055468551,7.252029847571132,9.063661438826259,11.09139873657838,13.369909252773972,15.797606945725207,17.694114959882892,19.2970494316677,19.383942783691456,19.517038732374015,19.39860807506614,19.11419261274627,17.647878537304038,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,a oil CCS,0.0,0.0,0.0,0.0,0.0,0.09418257779272837,0.19739380675493143,0.3081284850846399,0.43700311156135296,0.5851877677279209,0.7610121340262628,1.0040595635365188,1.2892574078998529,1.5813428450180633,1.9557261111866115,2.1972950509468765,1.878370018599886,2.1670757420534876,2.128055264771153,1.8535545274279723,1.6294308873295051,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,b natural gas,0.1406916230204752,0.4126735397379874,0.40032672021705346,0.6025225053722465,0.8318191315001019,1.185564248501135,1.7127291585093505,2.4277751161387657,3.3099722944881367,4.447121342221006,5.9403768753035475,7.4832915152162185,9.164544415861624,10.992583695367196,12.471109037251797,13.97227172628716,16.27526749063785,16.7470372666227,16.34184898982977,15.975019507482333,15.135488004784987,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,b natural gas CCS,0.0,0.0,0.0,0.0,6.549349294245E-4,0.08812984358283735,0.24158413934291534,0.4660633989969377,0.7693898136230959,1.1718470268111196,1.6913931823722976,2.39954494900388,3.2975823178569246,4.382328287775594,5.859302945826742,7.594148789750267,9.639698268507912,12.923611255916525,16.97692302344681,20.536745977977382,23.838014792975482,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,c coal,0.01605138494340721,0.02370581761624764,0.03241407142944298,0.04913818827932763,0.05551673053663108,0.07833923595689841,0.1113642961995785,0.15413705697791977,0.19572001456578678,0.24423234158748652,0.300083557592417,0.32396669615501134,0.34596107935360937,0.3633638376618225,0.27838007482136257,0.22593793883500576,0.1938333272837042,0.09864503814074209,0.057885618810612154,0.04160304523713826,0.029997967037998223,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,c coal CCS,0.0,0.0,0.0,0.0,6.5413993552748E-4,0.0026105990898260874,0.007006129464861347,0.017121662201713087,0.03854406693658917,0.0773817454783183,0.14066629832110003,0.22964225190015908,0.327945139953641,0.424403254264225,0.5309799734545941,0.6399056291310099,0.7753905638496922,0.9874170674737188,1.2763955146463224,1.57521258530362,1.8262012834936447,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,d biomass,0.8578774206140888,1.3382216881497804,1.4926864957339667,1.9221369224279228,2.5389595789402053,3.5433151573997397,4.774271430138147,6.178755340467145,7.720973325957107,9.398466535910014,11.026255288359927,12.662894771596742,14.224542602461865,15.587610945216078,16.280153255463482,15.96092839413474,14.893243680833171,11.348871984859118,6.973373102538773,4.574966865188676,2.778640919971826,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,d biomass CCS,0.0,0.0,0.0,0.0,0.005339548983522751,0.02411098046884718,0.06302526935758292,0.13692532147930617,0.2700206135659369,0.49181763036875736,0.8136634353080139,1.3185402840437879,2.0499531147190386,3.0156947438246386,4.596825607064857,6.513621661214963,8.436998447982416,11.214999435478523,14.207330616033117,16.513385762740633,20.149042281583093,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,e nuclear,0.0,0.0,0.0,1.8028782085014356E-4,7.342660909564738E-4,0.0048328345079533,0.017056267687319143,0.04172952186165509,0.08029719119141436,0.14041964437086432,0.23303504312633402,0.3698894498130253,0.5708746048234893,0.874663005432253,1.3005163175714158,1.9041611872312556,2.7942093649716586,4.2363525136678355,5.959305524515651,7.618733524616061,9.27192905311021,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,f hydro,0.08142541990859395,0.10931042317188125,0.11379168471091616,0.13978708574011553,0.16612695225743468,0.19241699571840093,0.21867302443925574,0.24494489475206743,0.29706955188484424,0.349344532563167,0.40177074911590044,0.4542111349056832,0.5070719635466342,0.560293314646564,0.6140713139220034,0.6688583122188525,0.7268435560469412,0.7862293193628294,0.844873109390882,0.9045458912494744,0.9073829704007004,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,g wind,0.0,1.1700045294223799E-5,1.7689950985448085E-4,0.0015366867194934427,0.005568456917207921,0.017859768127156762,0.04572366143581091,0.09458904242640989,0.17260449049436183,0.2950967337244796,0.48146815343865923,0.7544180325616157,1.1453779413355465,1.6854372383204632,2.4770083256267266,3.3967662749478214,4.184205438221568,5.29149833572418,6.611643154394858,7.716759584286949,8.698094485075698,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,h solar,0.0,1.4400055746726214E-5,1.07999700759009E-5,0.0020335610128329076,0.007710391480616434,0.023487962541822425,0.05538545219641981,0.1122349795907565,0.21165086120721707,0.3767037477370656,0.6423915308049033,0.9979197101487239,1.3226772801665572,1.661420137438794,2.1024587642791577,2.7706089486968257,3.9613576548380753,5.579887113714507,7.367057629609308,9.059848592587342,10.860725152252238,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,i geothermal,0.0,0.0,0.0,0.0017645195962233801,0.0062820226885766895,0.018318621303613888,0.03938291520247118,0.06675073312696454,0.09854953496361395,0.1330289398676888,0.14531975145945647,0.1454694335057366,0.14571042454766342,0.14600454486230122,0.14638580207981575,0.14693257221787948,0.14806924970710134,0.1492858589311224,0.1502228842654374,0.15121726831821142,0.15169188994816457,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,j traditional biomass,3.31438953,5.054457299999999,5.700202,6.0471768,6.3850095,6.633017799999999,6.7607914000000005,6.809882300000001,6.8141698,6.750570199999999,6.6332523000000005,6.5165475,6.3653115,6.1681021000000005,6.020464700000001,5.857721,5.7744645000000006,5.3443191,4.6120079,3.8818511,3.3231785,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,a oil,0.8781008011495126,1.1268098650533915,1.3443824519425958,1.468613486692864,1.427312196414273,1.5332159834398136,1.5972876347378744,1.631162680379333,1.6434464039498227,1.6290587723703076,1.6005151067500378,1.5774910722423556,1.5393660451904163,1.5038782650079436,1.4155124004548634,1.286231714966154,1.0751401878687605,0.7242993724516921,0.34108404759193284,0.11839344888390717,0.01619117646398779,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,a oil CCS,0.0,0.0,0.0,0.0,0.0,0.021997156178038765,0.0415460818834051,0.05231402978431399,0.06076705185781926,0.06623179182336847,0.06941436874727196,0.07766606397177768,0.08978645391342373,0.09387089818513941,0.10652361034858106,0.10460674296591145,0.07991397811635283,0.06673692129868497,0.031064982373766724,0.00996204081416994,0.00140456387213162,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,b natural gas,0.788218538878429,1.43436027639146,1.5605144539344895,1.749500934404213,1.732972804767219,1.9020797709492652,2.0550501719967973,2.186730089551312,2.2626135388519892,2.320447756428524,2.387257912312424,2.369117567730752,2.2550480493561125,2.200124721319221,2.0161070612060605,1.8405511776742671,2.0903959732834374,1.9191816446304593,1.6366082797270496,1.4376537266922746,1.2212897115788337,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,b natural gas CCS,0.0,0.0,0.0,0.0,1.2081303908321E-4,0.037142048711699835,0.09976220814727416,0.16910367595576067,0.2395873118861283,0.3075495592660612,0.3684129110943513,0.4402889680356149,0.5365884774890851,0.6248862259700899,0.7329141778508181,0.8240111249352275,0.8992196990799106,0.9829635480096012,1.0644005592936308,1.1148328194576058,1.1675743549345357,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,c coal,0.03951589153682511,0.036794871423530516,0.04123145651605128,0.05107857718279417,0.05009781497083937,0.054871503143038305,0.061276931659437615,0.0669084808826776,0.06919180437882928,0.07001462539411801,0.06998285339100555,0.06585384801763783,0.061089507415967706,0.05346807552670321,0.02846821342160843,0.012647055800212702,0.0064834104517959516,0.002253670031988663,0.0012087956133166656,8.328531939647048E-4,5.808326256192605E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,c coal CCS,0.0,0.0,0.0,0.0,9.054492929143E-5,5.575870395879799E-4,0.00163207058128368,0.00379148130830783,0.008040511275688082,0.01406162897251251,0.020319952122346673,0.02686332770399915,0.03535658874088399,0.043825220257198684,0.05577046292124774,0.06807395666402334,0.08252181149487565,0.09962153132704017,0.11802969874945086,0.129204450380516,0.13554608891650613,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,d biomass,0.06693409435120509,0.09223786697540974,0.1036389453674233,0.09400275466405197,0.09944880553876813,0.12077035773241676,0.1461246364177493,0.17421402138586084,0.2052510080769946,0.23409100371597846,0.24832101212312072,0.2543362074517407,0.25656995775450625,0.2522967170352235,0.23843455446941114,0.2162396718315369,0.20233668739110147,0.150920733252356,0.10961494285787843,0.09937295488855907,0.08625408798941626,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,d biomass CCS,0.0,0.0,0.0,0.0,4.208921361593E-5,0.003939311732173301,0.011680164596324434,0.025726404367039657,0.05095075745324322,0.08384951671372405,0.11276569129980972,0.1440036944122465,0.18969303725938416,0.24376887946845388,0.3829906611806247,0.6159799629643882,0.9324554482599262,1.6640127277789623,2.362259386361635,2.7143574290332,2.857859895721392,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,e nuclear,0.02621156724893717,0.02474273514481149,0.025815066732270728,0.026554174442628604,0.026554053502018473,0.028253850441502592,0.03193397859311383,0.0362767799758478,0.04138969294035653,0.04747820022463724,0.05437981028763898,0.0637951079047444,0.07763486789903105,0.09143926566610439,0.1092520556395865,0.1264535089612742,0.14467190652130013,0.161644099340795,0.17704530515942296,0.18762214271833527,0.19946407528293394,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,f hydro,0.06435351959099034,0.12241367913158392,0.12091050232413933,0.12384171723591093,0.12682284867668012,0.12977322512846767,0.1327212557803245,0.13566827925203415,0.14087577268509616,0.14609697635930025,0.15133371974973298,0.15656855140935413,0.16181667846420694,0.16707417735636784,0.17234973853965488,0.17765565544427367,0.18295827154359115,0.1883380749038578,0.1936128834321163,0.1988837334928766,0.19884552959311882,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,g wind,0.0,2.6999929228296003E-4,8.999814088784439E-5,0.00200840684846708,0.0037095093217666348,0.01059603467477701,0.025525652647991958,0.046270331370160685,0.07205541029893597,0.10107488321662128,0.13358517886014937,0.17210320900255582,0.22492885943753965,0.2730377817563152,0.3563360880186961,0.4450514160174111,0.5298087780483135,0.6081051706475493,0.6676866563967412,0.7059518712481405,0.7351130936199192,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,h solar,0.0,0.0,0.0,7.288641827176251E-4,0.0015265825455283927,0.004252466567378563,0.00954601336739866,0.01679682557633423,0.026114250422459906,0.036754696321128544,0.04895400369827946,0.06413065080434623,0.08232244937966676,0.08884254387803543,0.09040870079463262,0.09736575497662381,0.10497339726645569,0.1115368158090005,0.11368655289400882,0.11799339675167668,0.12579755683639032,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,i geothermal,0.0,0.0,0.0,0.0021061130224148397,0.003731425547713148,0.00956171186686513,0.020022299129409303,0.03200946304200926,0.04438836098134074,0.05490693713377377,0.06536001328202481,0.07386466494808051,0.08261033019709603,0.08866926658873676,0.10134489701014278,0.11304331260519238,0.1232698597302964,0.1320922092762757,0.1366894662621167,0.1385434911934702,0.1388834058312626,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,j traditional biomass,0.005148801,0.0028465,0.0020511,0.0018508230000000001,0.0020999869999999998,0.001847038,0.001613788,0.001418566,0.001301095,0.001196341,0.001094637,0.001045371,9.8486E-4,9.154170000000001E-4,8.96634E-4,8.52035E-4,8.058173999999999E-4,7.989097E-4,7.576891E-4,6.935717E-4,6.410524000000001E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,a oil,1.5911311224189502,2.1282399914196177,2.2508264913476497,2.3578252317673134,2.4970543576211743,2.6020477618404216,2.690752137589764,2.764905957655618,2.8628188032803226,2.9323950401079872,2.9861672743113483,3.0379223804733635,3.0889193768890104,3.13189740343541,3.102046192140987,2.9573600119181673,2.6085206991859304,2.1323059893935055,1.139668616710763,0.4498272353708176,0.07000889016827976,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,a oil CCS,0.0,0.0,0.0,0.0,0.0,0.0035237674871153404,0.00620347010380053,0.008237558589705271,0.01196552617721359,0.014055590394888358,0.015926494860318163,0.01967511449190981,0.0252046944469475,0.02945038659662418,0.03880744373902512,0.04443487606391808,0.0380203904371801,0.039815020975396596,0.021151277549112942,0.007614549603864585,0.0012040402906962398,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,b natural gas,0.7817373771021271,1.1509170281924732,1.3776114382618707,1.487056877141517,1.6331867378762943,1.7848412981473127,1.9041718037089628,2.013652388890182,2.1016783902256857,2.186018794730476,2.2879186837433503,2.32404324212366,2.3204968053661688,2.324217374688581,2.276915936296812,2.2717779293835902,2.828266216734793,2.796012848207097,2.474883247375775,2.2072570807723504,1.8758194799847563,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,b natural gas CCS,0.0,0.0,0.0,0.0,3.3706469468287E-4,0.01944631412794887,0.04884796812381167,0.08203284897042061,0.12502563481845835,0.1646997202352379,0.2015398021561228,0.24485142625410294,0.3010049415954448,0.3587605833247661,0.43207521005299,0.511688422195837,0.5992920317531334,0.7062262332220272,0.799616567558888,0.862384908279957,0.9156845492078189,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,c coal,1.5242796791026236,2.2451687479396627,2.2043335428191866,2.442027254894267,2.510519402198411,2.57649070853294,2.61710836333791,2.5998996213696,2.531036539147662,2.404213122298463,2.2606148583184003,2.0456112995317537,1.8180428938376376,1.5492641489168657,1.010056382624733,0.5426741662463352,0.28345703595340516,0.09236095561787866,0.0434273647148927,0.026609584704350746,0.01573047050055415,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,c coal CCS,0.0,0.0,0.0,0.0,3.1775248943984E-4,0.003993200684535142,0.011596138275596793,0.02407909308270138,0.04938819585477808,0.08387426819894982,0.12603398392010734,0.18830540016299682,0.287049199122365,0.40440953934112317,0.587344551254196,0.7870249430406098,0.988715961273076,1.198102315479421,1.3828280396687251,1.505488794320151,1.593647340046,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,d biomass,0.19790011226179072,0.2712563381697479,0.2840939000677768,0.3130579034233672,0.38221717963429497,0.43665460270046136,0.4874457856010099,0.5345277878580302,0.5896135234341934,0.6402790568571051,0.6631023827098281,0.6924310240219467,0.7106744917132481,0.7120224784952677,0.7065686942572326,0.6298057485152437,0.508583757430877,0.32576923784861145,0.16858109214152858,0.11029012086898601,0.06967634239787214,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,d biomass CCS,0.0,0.0,0.0,0.0,2.646626049602269E-4,0.0017591545054803303,0.004950037048890998,0.011058463444928843,0.02459289012795418,0.04488733758440447,0.06837330946000365,0.10269277477793862,0.15919565590505752,0.2389124421225944,0.46140200242852386,0.8965550995124424,1.5588572502585105,2.6536367820208633,4.5425712944142065,5.7857945266817135,6.48333419206992,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,e nuclear,0.0,0.0,0.0,0.0,1.5809385679674E-4,0.0010219693317594855,0.0031171243143345902,0.00639416348342238,0.014336981106456361,0.025515591270694377,0.039846354253763185,0.057970377471466404,0.0824760380681674,0.11053272884388486,0.14425028730039988,0.17901016229140462,0.21476115351602096,0.254255951617158,0.2898228261352824,0.3176255073971992,0.34024361695428595,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,f hydro,0.1354377682638639,0.14144103172598024,0.13662980208532943,0.1426849067875453,0.1493969717106107,0.15591176828147718,0.1617660636663104,0.1675166811573152,0.17470706361914037,0.18176670330163028,0.18860304516904156,0.1955732367815623,0.2024419937867613,0.20923010362990246,0.21630780165560157,0.22326442290956616,0.22989463510608918,0.23664617145608968,0.24329018873125166,0.25020953238179344,0.2498901892744041,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,g wind,0.0,0.00549536010113646,0.02363449893728639,0.03238890637651131,0.04169155547501942,0.05864469415314178,0.08928696944347207,0.1301889418455846,0.1695533773029822,0.23135233686501933,0.30073445247665564,0.3864751343531343,0.504517505463375,0.6282602299007379,0.7584044093562271,0.8563219029509407,0.9519213130976141,1.0644817382693839,1.1433256557508629,1.1896723289058322,1.2388406824238345,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,h solar,0.0,2.896152960737495E-4,0.00101784247057944,0.0035045005893497997,0.0074501085259182,0.01553216412657321,0.030532855496141414,0.05174504138993443,0.08487274858999887,0.12302315293368399,0.16648317270560722,0.1981331548221095,0.19960463310206614,0.20754320347387914,0.22422724052511736,0.241584498196607,0.25478149253100946,0.2774748469365819,0.30279389839028736,0.3190212329644717,0.32549236638869505,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,i geothermal,0.007524519775884569,0.011353673602523278,0.02141876466191579,0.029142249309096507,0.036241027391083626,0.04751760907661707,0.06472816244588209,0.08421902537323686,0.09057572433062733,0.10973722552155328,0.1288723900109472,0.14792276141971542,0.16934636863998442,0.18906735960391635,0.2126811163168706,0.23584031324772625,0.2455983299359655,0.24507528848347332,0.24447627643484277,0.244180596990534,0.2438689486297987,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,a oil,2.526431993240589,3.935914145928853,4.6617207603714705,5.796944476774941,6.006458691689439,6.5082008408385015,6.842704999891418,7.043075067671085,7.180512499696102,7.198376377224115,7.090608194738738,6.974456947726954,6.764801816861859,6.537889616747788,6.082296299882619,5.49303676673521,4.642683705597511,3.654608732838512,2.366050439815137,1.0407272830313883,0.19747178797983847,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,a oil CCS,0.0,0.0,0.0,0.0,0.0,0.11562739916275361,0.19078408594860916,0.2512126457782084,0.31042402992951096,0.3676445811104551,0.4200551358399898,0.4843427622523915,0.5738637251681359,0.6279663346936825,0.6991094348239135,0.6995753726897717,0.5475483535356147,0.49520397265866156,0.2982251797709786,0.11553959121899722,0.021524460401610303,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,b natural gas,0.13147643666301048,0.7002441217743721,0.9634165251710177,1.2993456071406697,1.5369466662583326,2.0415150092844745,2.584365660885048,3.1378897369325576,3.6564003197858024,4.173725059547927,4.75099932795738,5.063167265291547,5.1158080021396435,5.168917682479071,4.88682453721048,4.557391841263491,4.716419925589379,4.339452990681452,3.9639416346508853,3.788793832072437,3.549619147425873,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,b natural gas CCS,0.0,0.0,0.0,0.0,7.8248706760603E-4,0.02274103884557917,0.05526963073700697,0.09719223967746472,0.15054111768664472,0.21972290350551008,0.30524408759664096,0.421703142705436,0.6116199047026635,0.8241804960593492,1.17634849082336,1.579550217307287,1.9586833275165463,2.324114012400487,2.615706855082179,2.7884874070170427,2.937606372412941,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,c coal,0.4068360582893719,0.5429225111603139,0.6068854648070645,0.7061908692010263,0.6897794208433196,0.7933312443399256,0.8825178074677237,0.9554559846335356,0.9804072980329274,0.9933246324773197,0.9995258513353453,0.9467447725361245,0.8885071372084319,0.80490320948193,0.5447715808734901,0.29528745647997684,0.16580365695690324,0.06578660367772857,0.03537885748658851,0.02195085788376413,0.012302078985207526,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,c coal CCS,0.0,0.0,0.0,0.0,6.948919270552768E-4,0.004252964068399045,0.01075993790601898,0.022407468312998686,0.044635179139269204,0.0783670136147392,0.11781175755396324,0.1628368271423068,0.2262538839842988,0.2946059133123091,0.40245463718212093,0.5273218682810404,0.6561343467587193,0.7780491494209504,0.8993299641812398,0.9931611126109794,1.0570516944996435,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,d biomass,1.6667476471273852,2.3004593094871963,3.1033024536601572,2.4778622688522134,2.7467895830280726,3.08184960288391,3.3729725824750556,3.5959376109288086,3.753002411632136,3.8568361260410495,3.828191126669755,3.7298657959646317,3.565008728127792,3.3149264727775742,2.8508836964933395,2.2590806687123743,1.8001592696999518,1.233703940170723,0.8801699019828498,0.7449337747400246,0.5220172098186152,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,d biomass CCS,0.0,0.0,0.0,0.0,8.313421560847583E-4,0.021122301499173372,0.05035868894366227,0.09277449651651454,0.1607131932609712,0.25928223090532465,0.37161974759040006,0.5199050030391362,0.7581875035612133,1.0497335953269427,1.7394999244166893,2.833071590478071,4.116785729178881,6.121602807537699,8.373130801151698,10.536274811368138,12.011840411322206,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,e nuclear,0.008051898779519819,0.035468222012807075,0.05227062995081045,0.0486860306189487,0.04875014581644886,0.051982091101113743,0.05694695097427942,0.06299276108815356,0.07012042501747573,0.08021227398980911,0.09469494113394662,0.11561859402662239,0.15018203748828998,0.19120160706772288,0.24298676140100556,0.30351049159790466,0.3630789045113962,0.41788508998038754,0.467909757465281,0.5045382562802045,0.5421136566949932,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,f hydro,0.7441473109156186,1.2148412325055211,1.4518341920221296,1.4757873786503197,1.500314444932199,1.5246142831596028,1.548909111306229,1.5732043796159874,1.615969870329411,1.6588480109771875,1.7017562321668223,1.7445270459007018,1.7874340852828572,1.8303535850974044,1.8737937804169238,1.9176839752964046,1.961105379324039,2.0057702681594787,2.0479816678237572,2.0901918332259783,2.0891851355099145,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,g wind,0.0,3.3470767045585187E-4,0.00783537069887157,0.01531641214712444,0.02290938269396698,0.044440410360641204,0.07472027419563271,0.1111982238124041,0.1449222251575686,0.18820996231881673,0.24274008444304654,0.2999167090384472,0.3943573510955609,0.49757921771581937,0.6778094439504425,0.881656281900095,1.0805057780697254,1.2666756468319489,1.3891655232767919,1.4492705329780882,1.4652893361332762,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,h solar,0.0,0.0,0.0,0.0018716694694544801,0.005927192990429204,0.016051134630472468,0.031808126527575954,0.05380239865353173,0.08517760738306193,0.1256574084248255,0.1767700679515811,0.2440978377259447,0.33509018139174396,0.4286945603974661,0.566097181087412,0.7094801718865504,0.8431193130648136,0.934240520719562,0.9939962643324174,1.0309501403073655,1.0646149023223388,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,i geothermal,0.0,0.0,0.0,0.00260259842111848,0.006431850847132249,0.019301217740664928,0.03796272983604914,0.06002854789369316,0.08383905914088643,0.10851690729760197,0.13568521666988703,0.1598954616500548,0.1948159980269809,0.2277687639279735,0.28032847519054593,0.33037439455841544,0.370739294758388,0.40149002641339543,0.4113493323378327,0.4091961347373595,0.39974951052097635,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,j traditional biomass,0.33324729999999997,0.344634,0.3045312,0.281618,0.2919546,0.2792982,0.2647048,0.2501609,0.238932,0.2256966,0.2105207,0.1982176,0.1824407,0.1641882,0.1478414,0.1288163,0.1125288,0.0966898,0.082156,0.0686379,0.057785699999999995,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,a oil,3.351006417123482,4.361236545441407,4.097639963091055,4.226506839436551,4.35115211213564,4.41601532512556,4.435739359792026,4.422287744157308,4.414218424489076,4.358180592701933,4.267240023051336,4.217133313911613,4.17188520071822,4.135545235417544,3.980018776410992,3.701788482217597,3.2510810237901158,2.746443632191342,2.1490832671443214,1.4921135242806614,0.42340374328948976,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,a oil CCS,0.0,0.0,0.0,0.0,0.0,0.00666205524229194,0.01313425466334537,0.01754143602089651,0.024697862558426,0.028129381734520877,0.03129567404041634,0.03623295532798068,0.040917259524203414,0.043758967396702916,0.05093239431737817,0.04988524711785341,0.03730800860101206,0.03721727821306592,0.02630966759639504,0.015379180310596437,0.004308411761419139,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,b natural gas,2.287873495908724,3.167987258708196,3.3534356890796344,3.3058485390495007,3.4011221327436854,3.546300897461237,3.6329330355789256,3.6946286558096464,3.696321254071894,3.695413945900663,3.7103652010552115,3.6071727344638425,3.457330438906084,3.333526885434318,3.0837094387366717,2.893218893267309,3.2376852631814446,3.065118887859896,2.7355991303152445,2.5158989911205465,2.295961116245703,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,b natural gas CCS,0.0,0.0,0.0,0.0,4.7231078232853E-4,0.024083818247882208,0.0633833004606911,0.10575006011614117,0.16013670599071006,0.20977124823356527,0.2568888457671586,0.31236307638341465,0.37260561275157916,0.42983797622212316,0.498962545992946,0.5504135537882512,0.587912280689467,0.6267371855936446,0.6581818545418909,0.6720071631050522,0.6879446846913816,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,c coal,1.0655354955129432,1.2414020377056139,1.02984292198102,1.1507832542790524,1.1889694432539015,1.2145612203456593,1.2436661691829969,1.2458478183305361,1.2269824176559063,1.1819429553107723,1.1276204760762838,1.029540138552009,0.9052059075440282,0.7493886754251249,0.40029684174678637,0.17475586114350644,0.08501632527200759,0.03106715512753252,0.01738044017471649,0.011995502559640566,0.008011378490205974,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,c coal CCS,0.0,0.0,0.0,0.0,4.287503475868177E-4,0.0026554591582263975,0.007499001517621681,0.01604801980311729,0.03314203813327296,0.055861636148872115,0.08229111826146786,0.1170756527656049,0.16254668827338764,0.21195089485218055,0.28926235678556167,0.36449325825765666,0.4342330648182641,0.4989272765055805,0.55676396872761,0.5971785464924273,0.6325579288138748,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,d biomass,0.34151495067937343,0.5104637784621392,0.5070428709213175,0.5422058172329578,0.6125514810173274,0.6594746667051827,0.7095786641229247,0.7582077868538094,0.8169754960414091,0.868960962445403,0.8841300973879286,0.8849432176726938,0.8756034785228876,0.8552206370726869,0.8048300730462127,0.7301619948397234,0.6619569661114614,0.5370226559889115,0.3783771775747493,0.3698828023821681,0.37586661986927505,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,d biomass CCS,0.0,0.0,0.0,0.0,5.822259247068001E-4,0.003145712915422447,0.009239183852926028,0.02261397284355655,0.05307867620075587,0.09600047026902446,0.13888465951117793,0.19291238926482546,0.272428871312618,0.37948782226299316,0.6781753774458299,1.2139266831016517,1.924311721879907,2.888294602698366,3.9523845625797156,4.952356022021882,6.655965836919735,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,e nuclear,0.26257030059107206,0.3312786587794856,0.3263631732372731,0.3570293570194754,0.38749589666908474,0.42080953395957954,0.48727600595668097,0.5635293288956776,0.6674425043771336,0.7633030981391956,0.8587383617693238,0.980005607920401,1.1192011402743465,1.2573552827096155,1.4408037856455098,1.571380811058737,1.680912540586922,1.7973347314439612,1.8509626650277873,1.8602652376232252,1.8697497311500622,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,f hydro,1.068596412975358,1.309399367122185,1.2656730010847916,1.3071891027478846,1.3490590955774389,1.390850890146118,1.43257374214833,1.4742985233545698,1.5005871686023693,1.5269154126088835,1.5532478696244916,1.5794873984771964,1.6058095638759173,1.632190178411303,1.6586876155301362,1.6854030162577027,1.711949427661243,1.7388101083633012,1.7650503000004165,1.7912157213981863,1.7908214209684103,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,g wind,0.0,0.005294545706715869,0.03440416951069854,0.047781885802334854,0.0648483447049899,0.08910020303521447,0.13687683094960088,0.19810288613887136,0.2585215733141143,0.3498818457262859,0.4484592175862297,0.5718215628270706,0.6991271048569692,0.8184667347748181,0.9987683720653044,1.1607807321163242,1.2836564821986234,1.4199483688068266,1.5033622674672684,1.543691049234339,1.5746369004814136,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,h solar,0.0,6.118783134577916E-5,5.687836167753031E-4,0.00116263300877733,0.002424767697788244,0.006602011282840811,0.01766985094524599,0.03485320965771879,0.06354738018874459,0.09808897635281331,0.1388003900619779,0.1921635510076468,0.2523511958709213,0.3109624350494563,0.40204618945817944,0.4867676385632974,0.5544121452221202,0.6298043963146921,0.6824573987924951,0.7139604629587257,0.7423409831933492,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,i geothermal,0.0,0.0,0.0,0.00402430258487656,0.008087962908013219,0.01210468046747882,0.013106177755849739,0.01311610246935072,0.013125181134444589,0.013133966501948329,0.01314206194216404,0.01314886744379455,0.01315498625442699,0.013160244160748902,0.0131681730616629,0.01317720127526935,0.01318460222354065,0.013195286624655751,0.01319922811617514,0.01320168612350074,0.01320511922851746,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,a oil,1.2966514647662515,1.8259941616158022,1.9759996834162197,2.186740836604888,2.369432739584463,2.5095203475673316,2.6114165889034626,2.691973749491292,2.730118506922558,2.738521037442811,2.730931856109454,2.710065899654988,2.610107057216338,2.530781726468439,2.356934594478056,2.139775715827601,1.7965366616319391,1.417218691131709,1.0889197577153102,0.7770732314572777,0.24112661885858885,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,a oil CCS,0.0,0.0,0.0,0.0,0.0,0.059252731416608806,0.11596028011529792,0.16368777517248959,0.2145783646721787,0.25783324867150764,0.2946184736893009,0.3395124960344883,0.3958007664745877,0.43971644000722226,0.47283908565197597,0.47482908624750714,0.40257290142957836,0.36104486301173133,0.2756966113811297,0.18685055048068333,0.05659148676417538,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,b natural gas,0.19753442012425168,0.7016923981357172,0.904634110307639,1.093646337206777,1.250901851172854,1.4424839630017297,1.646488512784069,1.873538946125595,2.0857386721819777,2.3016603002348375,2.5283799163747593,2.66216623415464,2.717160701513005,2.768269368767509,2.739632020764619,2.7165050314028942,2.9652541189180632,2.793541727600654,2.612102461766735,2.5216078107604125,2.4226486282107182,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,b natural gas CCS,0.0,0.0,0.0,0.0,3.3351460812112E-4,0.018184542998288207,0.04301987077997937,0.06947003997320576,0.10184813462096201,0.1373848167661876,0.1733044682741978,0.21551706570066326,0.26963529461422586,0.3242138894545605,0.3833010330624206,0.44486409108502656,0.5105705222589302,0.5821867597672596,0.6514890628966878,0.7081452377210623,0.7719015897862825,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,c coal,0.008982330037421066,0.04111373647341391,0.04762649659137108,0.07158332210737638,0.08070054445856259,0.09348951166988657,0.10840889128499014,0.12305653240901265,0.13531637728243695,0.14593424819948894,0.1546484303968525,0.15560149502645418,0.15433713642255462,0.14839807284009843,0.1108072333354549,0.06532670194784386,0.03678899299563085,0.010926956302281318,0.004727197669041041,0.0028559916990950817,0.0018072451138705485,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,c coal CCS,0.0,0.0,0.0,0.0,3.3304851425090994E-4,0.0012444231816092653,0.0030655770937325767,0.006588866859661919,0.013538755964434839,0.024554326444228693,0.03812042490704886,0.054181657720259443,0.07403247597089439,0.0958547367574383,0.123521970058751,0.15660525186178917,0.19599569561919283,0.2347179559053291,0.2704803914468033,0.29954548731608055,0.3271564565744258,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,d biomass,0.43097008950832166,0.28287545462268293,0.28323002650631307,0.2812169754727769,0.3555505583237117,0.4367945284260961,0.5307499316099982,0.6371935564857528,0.7405387508317226,0.838193254752963,0.9005341743697768,0.937862494596063,0.9524071882746389,0.940728715047296,0.8564873286352592,0.7010258999622987,0.5666422851542442,0.3478488005976989,0.2121893040386995,0.2076022817581371,0.2154473244160131,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,d biomass CCS,0.0,0.0,0.0,0.0,0.0020731392794056803,0.010290645142750377,0.025195203592017493,0.051161597539152656,0.09772841307011705,0.16441178522345834,0.23690485424288837,0.32924648929233674,0.45929498717065437,0.6265462175932146,0.9787679480893852,1.545581036545746,2.234317072986731,3.2639962940925717,3.980613221008482,4.502991996704136,5.4563624100589605,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,e nuclear,0.0,0.0,0.0,0.0,1.573642869336E-4,3.2613905451785E-4,5.5130093629119E-4,8.6628376158298E-4,0.01630201499708187,0.04731845204693098,0.09215705584388348,0.1426955933879398,0.20360536519936526,0.26322084836975085,0.33099480653230867,0.39985276561591326,0.469668219869891,0.5392107624457925,0.6098288810243602,0.6726015684404119,0.7226045269319511,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,f hydro,0.048609904693893806,0.07679968617815347,0.0855113586049241,0.0890983031520363,0.09278023432088565,0.09642624979131421,0.10006273621530361,0.10372226517140894,0.11011959192667828,0.11654085622652299,0.12298709599524948,0.12942483151777676,0.13591946155194948,0.14245303710876067,0.1490737830574932,0.15581116770668685,0.1625412830496578,0.1693456465127894,0.17573308461613538,0.18220300714319912,0.18196609744033976,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,g wind,0.0,9.1439745418033E-4,0.0020700062601486,0.01592163902471724,0.03766863521203499,0.07342303224658021,0.12994412261909982,0.19689643660167416,0.28176410167995053,0.36703037705581687,0.45094063814734375,0.5383887024459602,0.6370296972783016,0.7215747642690551,0.8194104099739611,0.913487217074413,1.002989716810085,1.0853657884488506,1.1430168160330847,1.1809768334319894,1.2159333561610022,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,h solar,0.0,0.0,4.320013064657707E-5,0.00778237665678963,0.021523334541272504,0.04591534087525471,0.08368540287387603,0.10334503609522395,0.13269832987415914,0.16847729971166583,0.2081675452151659,0.2535434397608516,0.30958802106803773,0.3809999056383327,0.4740380418338869,0.568944338755926,0.6687853976034767,0.758927534151576,0.8342110247175835,0.8887949736005843,0.9324496512415201,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,i geothermal,0.0028980002798381496,0.009417573780061929,0.01178643564474176,0.02104102746067401,0.02993385537247362,0.033753342469364,0.03374960948566455,0.03374885012675085,0.0337395177479832,0.033742729337784105,0.03375830788300319,0.033777783320762506,0.03381319096660756,0.03385395620995085,0.0339113361444669,0.03398711349246161,0.03405461266764519,0.034130113122479606,0.03411762759969044,0.03411944481623832,0.03407530725423437,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,j traditional biomass,0.3272638,0.4026073,0.4420999,0.42237159999999996,0.40723180000000003,0.3821487,0.3495106,0.32312480000000005,0.2914329,0.2593416,0.2282083,0.2023233,0.1765005,0.15135969,0.12905735000000002,0.10705646,0.08939248999999999,0.07191492000000001,0.058214930000000005,0.04695317,0.03764411,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,a oil,2.7712778372262434,1.16950460770417,1.4979693257154232,1.7855106652776258,2.0299608695425904,2.3505743275300475,2.5879122683669977,2.7591311666711875,2.8837207484830083,2.9435952185519483,2.959494514031781,2.9527461135804547,2.9280168053995173,2.899254528642485,2.766105456404226,2.5396943308355113,2.007268234305121,1.0412893595306576,0.373257875990713,0.1039016670198854,0.008989681644429759,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,a oil CCS,0.0,0.0,0.0,0.0,0.0,0.00241196808523943,0.003949916977210389,0.00453783110623647,0.005736492806015119,0.006446606575793169,0.006811459011589411,0.008260866580706459,0.01034007692790385,0.01129464913983085,0.014507345880588779,0.016221015852067828,0.01267568444389097,0.009350862561212526,0.0035796472167703578,9.996250425897701E-4,1.0205808338259E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,b natural gas,3.38086604804558,3.2719013301794164,3.7581341985314944,4.1324171029903844,4.6551822166291315,5.20498039418015,5.580534288865253,5.844411454646262,5.956470447334689,6.00482433488663,5.987015714977734,5.820060383583151,5.406075868582005,5.120034643134564,4.68506924982639,4.239294421935976,4.346184156963729,3.807159560281767,3.19972490257192,2.7387980791556386,2.2270434439445164,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,b natural gas CCS,0.0,0.0,0.0,0.0,4.2289237520078E-4,0.06333870147671498,0.15241852570150313,0.2369110527961252,0.33436540427496125,0.4265697334996481,0.5021818064072828,0.6005165884752054,0.7345554223108051,0.8543584322168991,1.0031332410281828,1.1408799020046827,1.236062567713111,1.367709804843064,1.4682018523516864,1.5283604790999417,1.5971543878077585,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,c coal,2.114264723746773,1.3439272165244318,1.6823412222710687,1.9431749066006556,1.9148626555916226,1.9415719045894353,1.9284091831388184,1.8728795095458322,1.747552536416407,1.609685202994405,1.4725837622741305,1.263767693108625,1.0747535962073558,0.887961324426523,0.5285388102920379,0.2786579538894907,0.17781049878096897,0.09299217189306064,0.05709828745442414,0.03796944677468665,0.02212903528078197,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,c coal CCS,0.0,0.0,0.0,0.0,4.2109382001102E-4,0.0023970709498413287,0.00610688249578738,0.011809298315463948,0.02244166970330755,0.037581324058275134,0.05517581526931385,0.07875786050762207,0.11294501541985087,0.14803626440341694,0.20523110627512284,0.2663415919543045,0.32490646848148474,0.3994720747116999,0.45851582005492453,0.4933009601830766,0.5292455885521306,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,d biomass,0.0278787,0.022311402,0.023483594,0.02750498023670415,0.040855884224459106,0.05738471782043143,0.07902637214970651,0.10610048816968534,0.14195590497369506,0.1800095797762191,0.20643610153097786,0.22571816683930443,0.24218247140579027,0.25011505379823595,0.2486956699942066,0.2359692003546908,0.2341438835708891,0.10177486865025673,0.01665659257332601,0.005713504473653336,0.0017146111709175121,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,d biomass CCS,0.0,0.0,0.0,0.0,0.00333916002695698,0.011372508736893237,0.02392093679449483,0.045580374423130496,0.08451747014137018,0.13950374817965777,0.19695977093136494,0.2644080553580717,0.3564576143729323,0.4690325303308929,0.7253813725393932,1.1661705141250884,1.9848360215890537,3.893354540598213,5.009574798233368,5.368848062648007,5.422247283892089,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,e nuclear,0.0,0.00978388566296725,0.008981382144798891,0.07615822820416973,0.11522746127450557,0.15372386109049993,0.21736485636658218,0.28806569799193005,0.36903133048516795,0.44838058230507505,0.5172528780139543,0.6070665202608942,0.7301920739489108,0.842233149824041,1.0140881393896544,1.1225776902485192,1.2245439636678392,1.3672689074540822,1.4632157843576512,1.5155890555345255,1.5976539904641283,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,f hydro,0.1837149974660883,0.21157579198615314,0.2178949166152985,0.23706444100397622,0.25646276827346604,0.2758857308750865,0.29523633572300373,0.31458968981089197,0.3360802853095801,0.357603735730894,0.37915699552027576,0.40067579166484246,0.4222464431529049,0.44386777051432524,0.4656089489784892,0.48756135862263567,0.5094200927096753,0.5316880487285793,0.553334973399746,0.575074171777163,0.5749020337465311,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,g wind,0.0,0.0,2.88558068143838E-5,0.00663815106411742,0.015099297458503351,0.02471867038093569,0.042183646421514315,0.06306444798752517,0.09287470883127562,0.12179782623199936,0.14993414454341938,0.19468031331975885,0.2612548651823622,0.32437876125637116,0.43964361695958004,0.5667083852326916,0.6726621817249128,0.8158869187012598,0.9184473713815421,0.9884523366465275,1.06674127266194,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,h solar,0.0,0.0,0.0,0.0018900484970122801,0.0045516841066864265,0.00771275089812795,0.013359402310195249,0.02047084020462672,0.03100660843667429,0.0421588463622034,0.05390393455727221,0.07256708909157236,0.10010070722307131,0.12731075403140749,0.17568864459161226,0.22394866777740485,0.25190059521715874,0.28667888947867,0.31681667944899977,0.33859257177756574,0.36123360643572516,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,i geothermal,0.0,0.0,0.0,0.00711324480380674,0.014017435204704762,0.020329201982047764,0.02915660998686877,0.0375011751224318,0.046812275294543376,0.04985761059481135,0.05253187106836239,0.05854573280508922,0.0658819115565471,0.06742005310220521,0.06745111827544048,0.06750886145275178,0.06754811466899788,0.06763692523172307,0.06764074826811184,0.06765403984001257,0.06762952709121858,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,a oil,5.46885725154263,15.431019175032624,20.66129188916751,24.57484535455468,29.325836600174593,34.070412467597336,37.33350610630716,39.32417193643994,40.690754177763566,41.11339461034511,40.67286078856471,39.69906711631654,38.28597357065951,36.66729351378712,34.153425602047626,30.71313071692719,25.516129421241107,18.807140267452496,9.965614025472906,3.7688914208052138,0.4950709281871067,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,a oil CCS,0.0,0.0,0.0,0.0,0.0,0.02166771060231576,0.031747829312641744,0.03747938112129191,0.047542691053859214,0.055495736567278096,0.060296630482724586,0.0715848803012787,0.08095129004731713,0.08845351740002816,0.11608864452446735,0.12697444573010033,0.09603800338148161,0.08560110160577704,0.04363500404548724,0.015506991136716754,0.0020474301596352298,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,b natural gas,0.47597163101170586,1.5543813648136986,3.852329979477888,4.997659451624382,6.320721888333059,7.607284340908292,8.56864744033002,9.227120784835712,9.682400388529517,10.020332872609291,10.377792007097778,10.397381733724357,10.189490268015934,9.894234046556994,9.514744951121353,9.565829428264237,10.833190619748478,11.581826333115302,11.805100414343245,11.50136742718911,10.466117733598487,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,b natural gas CCS,0.0,0.0,0.0,0.0,0.00300695149468376,0.07816403640920891,0.15800170873655864,0.2256811115540982,0.29177888905441973,0.34825354792850993,0.39489050763548084,0.45669623134060794,0.5135956309770946,0.5636459292234693,0.6746384614171956,0.8314783960257466,0.9899891995545491,1.2755918411666247,1.5054288028306873,1.6518363361731496,1.9123177225974959,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,c coal,21.39472088916888,49.70800712129148,66.27194363133809,77.71214657322874,80.51146533331584,85.31612651481156,87.6482492307614,87.16050527797347,83.52949787337602,78.80625595575864,73.50795748761279,65.86347553434709,58.09944165254747,49.94060449390828,34.32148220140548,19.62885576723706,12.070533033809637,6.078108822838975,4.003559648837409,2.964376268877871,2.10998143646459,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,c coal CCS,0.0,0.0,0.0,0.0,0.00434968208385576,0.10635418689630001,0.2646456272212798,0.4595526940865001,0.7609327835756725,1.1533660934369299,1.5873737382814932,2.3251465227945096,3.353682698517038,4.545757891185485,7.290168710509853,10.133359475460816,11.68805590422039,13.044629887433018,13.804035352716449,14.147320717429604,14.633065586754189,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,d biomass,7.064931099276758E-4,0.25379649110441704,0.6822946703767151,1.1353501819425385,1.7696336172003633,2.4796884704400415,3.261433372962134,4.0467474379093895,4.992985991629314,5.917754563115642,6.5701575821878215,7.15781489991816,7.512462499094642,7.633917722742712,7.611994524297673,6.775260455259765,5.589503896263664,3.639322595350508,2.099119380576994,1.6408228280704533,1.3259498329889594,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,d biomass CCS,0.0,0.0,0.0,0.0,0.01491147097611362,0.07170803584354313,0.160394504893847,0.29539064059179565,0.5405232733886967,0.8987413630702762,1.2971885117985114,1.848132133485949,2.5958852580218474,3.521218851838934,6.146901174488904,10.434554279813076,15.680384791239101,25.68131692241521,38.28534459027569,46.31698103196083,49.889526876192726,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,e nuclear,0.0,0.1911690968183192,0.26622947271275543,0.45294320480512107,0.7156871798369419,1.1534858289685093,1.7521962637862305,2.369853244281689,3.124404471925827,3.9692183362187596,4.7946956079647975,5.8638575084984,7.024712044590436,8.171045058035133,10.44110982072556,12.447265870458494,13.343822815583728,14.000804761266707,14.032561479677605,13.805983641680804,13.762323458355846,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,f hydro,0.4565688509207422,1.4306871769862788,2.603162295963447,2.6450563062479038,2.687282813795116,2.729427658814275,2.7717508487144116,2.8141771216269045,2.911547327928869,3.009058173578614,3.1067153421750695,3.204439406444687,3.3023823685211653,3.4006365109575665,3.500745501074772,3.601808301534483,3.7016792791495727,3.803526019327011,3.900688630622619,3.9983983318829295,3.994798306998328,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,g wind,7.1927381852585506E-6,0.007303480322148127,0.16080253345139772,0.28184109180638767,0.4656987838505703,0.78584627761776,1.2353798517383012,1.7102260167178038,2.1143086454627102,2.611404026847099,3.023847944584551,3.5508243381292965,4.108552954124668,4.701390710835111,6.343276160531835,7.945959870169976,8.611237094838053,9.046879124910364,8.857872263773679,8.359496024108292,7.33842075429942,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,h solar,7.1927381852585506E-6,2.740746899973063E-4,0.0033918339718553474,0.03820624721872754,0.10917527074292585,0.24996622865117962,0.4672799951433362,0.7242830089600393,1.0662859261722855,1.4455159896821723,1.8144705886484636,2.3193882863427833,2.8664889507548486,3.387418326830238,3.6345319588153724,3.846112136583436,3.981398263093276,3.9885891390024883,3.7605110671686504,3.564975167433546,3.76280705763262,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,i geothermal,0.0,4.1366516814586005E-4,5.8304562124031E-4,0.051457632331716685,0.10039288309903686,0.11578591401414276,0.11579584494197326,0.11580958291221585,0.11581700185663216,0.11583249317599775,0.11584989724753876,0.11587055683221553,0.11589744911471934,0.11593282047092668,0.11602529558975852,0.11614375121835846,0.1162188573992046,0.11634891959409496,0.11633531933882224,0.11633629660818462,0.11623225515438514,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,j traditional biomass,8.39255,8.28969,8.064680000000001,6.6995000000000005,6.16491,5.23708,4.5373,4.01448,3.69437,3.38298,3.08584,2.9379,2.755625,2.553622,2.4948550000000003,2.360979,2.202525,2.13898,2.094077,2.073103,2.23011,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,a oil,0.4470155749243008,0.5482242973766556,0.6108493039213972,0.7315172162824136,0.811998115569097,0.8842150622179021,0.9563432876962616,1.0188153524581998,1.0750904246169797,1.1215221850750157,1.163402321421711,1.210188982838551,1.2506924114775024,1.2842619420690464,1.2675839872159202,1.2043612551057175,1.0465934669939678,0.7828370772021384,0.4717016457276831,0.22354903820454256,0.04797318074654332,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,a oil CCS,0.0,0.0,0.0,0.0,0.0,0.0036084456208649,0.00734919270497662,0.009995293048290499,0.012259520127950679,0.015026167757903507,0.018007942627637802,0.022637699650156117,0.030401774299257528,0.0376355213660069,0.048292928092342875,0.056903757117512256,0.05156458860701882,0.05081236949930951,0.032448408010284334,0.015454020869947991,0.00362481835776881,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,b natural gas,0.13466117906821096,0.2561373856507967,0.325497628412084,0.4563453785896624,0.5611947381319493,0.6538665347252612,0.7710343333152961,0.9025512537831242,1.0269276709079154,1.1578972658155542,1.3035247083916124,1.404593700267919,1.444968827752916,1.4776021847872498,1.4556926335236569,1.4202223916326253,1.7243502083746196,1.6410213163337697,1.4315743662079057,1.2829106154999175,1.1107095483242742,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,b natural gas CCS,0.0,0.0,0.0,0.0,6.30968951279E-5,0.014054629867468742,0.04111745926299918,0.07498936267952672,0.11094625180870456,0.15060822278000913,0.19211488071975535,0.24174129249470366,0.3155879641870709,0.40052613365806417,0.5136848079133095,0.6432539467628626,0.7655757143911275,0.9110628687857821,1.0361105542545601,1.1203654699071652,1.2128888871558383,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,c coal,0.13843132400799585,0.11641258332332487,0.11155663286972174,0.15687202971980446,0.17515488988470568,0.19684243711236296,0.22521505101977568,0.2535959840493681,0.2702896488566984,0.2834529541179272,0.2939014202229702,0.28538433956932624,0.2722760086947833,0.25011424808495203,0.17323364931146243,0.10330264946677836,0.06695857744335888,0.03405071761646219,0.02170948973938616,0.015230496500001417,0.009397680293763016,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,c coal CCS,0.0,0.0,0.0,0.0,8.293005242487474E-5,5.82777170096423E-4,0.0018133665438922896,0.004090719851243881,0.0081863505607489,0.014497194788947692,0.022682997667595937,0.033651374727347604,0.05104740932152781,0.07298738643640791,0.10493017943579369,0.14328968550777244,0.18398512924305777,0.2294172779997608,0.272466065330008,0.30412922164151046,0.3316023497622393,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,d biomass,0.08995712974795218,0.09041764643547102,0.0785411211812726,0.09634858758067917,0.12217223101326212,0.1455251870856484,0.17404839245914336,0.2044378978244064,0.23774169290605546,0.2720054707582324,0.2962489150640507,0.31900244706376174,0.33741827579587813,0.349085918514487,0.34771075749972913,0.32436286823381755,0.2987045074547108,0.21704333697039824,0.1483958741572357,0.12133732656803793,0.07977112953855697,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,d biomass CCS,0.0,0.0,0.0,0.0,0.00101677828257864,0.003077559317612675,0.007155138075613921,0.014674864584732883,0.02833430202414568,0.04866142692991438,0.07132264241852011,0.0992145483922353,0.1399339399231574,0.19520445695781297,0.3193434471087701,0.5383787758761298,0.8528482762832161,1.458237457033651,2.065030274529774,2.5151795656473195,2.852922939792125,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,e nuclear,0.0,0.0,0.0,0.0,2.964834469927E-5,7.226966531662E-5,1.3477614450135E-4,2.1875926197857E-4,0.00215099985016359,0.006308981684508431,0.012999736794196318,0.02118542393745892,0.03306464945961138,0.04685853398112397,0.06406189321589967,0.08390095158713919,0.10411767355032435,0.1273807844401893,0.15012676789691237,0.16930492021935167,0.18879316379523267,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,f hydro,0.09898886789754233,0.14329056417225372,0.14544321613326208,0.15206256136917745,0.15869851662699277,0.16533467385272055,0.17196743546232285,0.17860285519864344,0.19031774938664506,0.20204386222024545,0.2137818982359844,0.22552739268098848,0.23729678086280126,0.2490948143756358,0.2609678576748613,0.27293529183311277,0.284900072919609,0.2970955886069513,0.30901043087497615,0.32100172948967737,0.3209746911244073,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,g wind,0.0,1.7639946346933744E-4,1.403992433177749E-4,6.256317552040807E-4,0.0014756791270414732,0.002595206390920466,0.00500342123489141,0.00836228743044407,0.01219409953478191,0.01669327984761982,0.021839198475082002,0.028266247991307863,0.037342377979866684,0.04731872395728643,0.06175587672099718,0.07864083416615918,0.09506421297904787,0.11367406638238776,0.1268391949789881,0.1338302395083257,0.14019959143611987,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,h solar,0.0,0.0,0.0,2.3413267299691098E-4,7.808456446638304E-4,0.0016998778192731585,0.00391503412197073,0.00758931663441883,0.01275187360464099,0.01987139885163753,0.029327909565060106,0.04283168074963285,0.06358293309638206,0.08831721511617721,0.1249150238389217,0.16874440327493556,0.2157009245886698,0.2712312450250973,0.3183239460965074,0.35258745000334435,0.3859157506859015,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,i geothermal,0.0,0.0,0.0,9.544063121358281E-4,0.0027304942306297796,0.00502749571818454,0.009621186417805249,0.015363773886733371,0.02134731446326047,0.027072551911673452,0.03253960157690926,0.03845732200177536,0.04510481716962991,0.051189645373978375,0.05889844076562041,0.058948379999800585,0.058991513206729414,0.05907766133463603,0.05909992515444814,0.05913402007290374,0.0591221005110082,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,j traditional biomass,0.14111,0.0457949,0.059566900000000006,0.0558368,0.0564223,0.0562075,0.0535123,0.0503941,0.0481187,0.0454934,0.042575,0.040687299999999996,0.0382433,0.0351734,0.0329126,0.029918,0.0271526,0.024560699999999998,0.0219277,0.01936053,0.017086959999999998,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,a oil,3.707195681816194,3.0210250173564037,3.0518208594317793,3.2536637201611733,3.455902119975468,3.549548740645686,3.5864061451886453,3.5548078093850966,3.4918052034340294,3.369920572432438,3.2229749638424705,3.1286753631965123,3.0205089717842633,2.925301250237475,2.755323761910323,2.5262124754713184,2.1847071917958085,1.9238818509383449,1.7261935912090258,1.557371890224278,1.3462386859740967,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,a oil CCS,0.0,0.0,0.0,0.0,0.0,0.016934124963557392,0.028428799179433636,0.03683928280562663,0.0470802985250096,0.05477720904121361,0.06089414779892807,0.07048101862767596,0.07957773894216572,0.0854083192884165,0.09775745224584732,0.093713727284988,0.060203496842798666,0.05234872598610217,0.035909466193998846,0.024650569054359164,0.018814867611646458,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,b natural gas,3.181941273556301,2.833124187359594,2.514814375721335,2.683395275222381,3.034165146658023,3.294517517835698,3.488686891016331,3.6370317379111436,3.725813422201858,3.7677303210458235,3.817423450200682,3.769093026850743,3.6363300587270913,3.4991034854441647,3.266183529835848,3.109286725755088,3.3489427666664717,3.127696314082947,2.7849245138137375,2.52756487620051,2.22578439412103,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,b natural gas CCS,0.0,0.0,0.0,0.0,1.0454502151938E-4,0.025633880180293726,0.06161062049012708,0.10076367704214967,0.1431944541566381,0.18355971326211717,0.21998715954439954,0.26222714941432257,0.31124838288308015,0.3603700556017451,0.43204243206488036,0.49682487420139776,0.5369316057170154,0.5861594022436998,0.6122655270877195,0.6240954061969701,0.6464398685811998,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,c coal,6.908262543517958,4.672698147143754,4.600317582901742,4.929760595512185,4.874404804916878,4.984269873417505,5.009124944113653,4.937676618750972,4.698889486943126,4.414325965067986,4.134761781314132,3.732091486107956,3.345590217900896,2.9246029522796717,1.9079241761303052,1.001539907980424,0.5292628838970891,0.18627140365388103,0.09167726660727138,0.055595153409020916,0.031563797649426066,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,c coal CCS,0.0,0.0,0.0,0.0,1.6724815271472E-4,0.005486762314317514,0.014738414224615878,0.02892421038144966,0.053404443076578906,0.08716654715981396,0.1273565783940493,0.18811463198556305,0.2775177903872712,0.3810854515108683,0.581643993939711,0.7741968578632862,0.906833012507205,1.02315906410455,1.0860523760652674,1.1046787618811598,1.09996920718372,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,d biomass,0.2593909249199467,0.689229773969351,0.9898985184215555,0.9805868777507777,1.1700210108955595,1.2556713082460544,1.3402138132868877,1.4096984442574156,1.4955552102284377,1.562465317590243,1.5552850293098281,1.547938825711018,1.5029694418881643,1.4296980709112361,1.2991100356537368,1.0788129293734614,0.8512615383284862,0.5941462924734677,0.34749349103765137,0.28398725742918346,0.24563077041301126,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,d biomass CCS,0.0,0.0,0.0,0.0,0.00289098542612232,0.009386107844012833,0.021609690848797415,0.04651167449498932,0.09566977331835654,0.16031448259219785,0.2184485882070485,0.2816035650180882,0.36174965347023746,0.45436211416538325,0.6881444540368297,1.0070739723381457,1.309760741975601,1.617855072047814,1.8229835246234989,1.8631224933195771,1.9709332169863796,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,e nuclear,0.2847000357566481,0.3675931493889717,0.3427233539600799,0.37902125296177924,0.4255093558592077,0.472522153862604,0.5335950508520885,0.593940458912709,0.6575323883290333,0.7198809110264164,0.781825273244487,0.8636060262612729,0.9701314743816747,1.085389010489527,1.288222833867496,1.4471183623726989,1.5554935717785312,1.6699962424148058,1.7237318896554747,1.7488849842340732,1.8162498203429065,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,f hydro,0.09804224775334859,0.15655555799133616,0.16732697917893416,0.16588961510294756,0.16563010789067212,0.1655726772888679,0.1644677680426769,0.16341871792172394,0.1684871545186893,0.17354805491746106,0.1786053725775985,0.18353693477133284,0.18851938793179288,0.1935972655007862,0.19853438569517304,0.2036436261798924,0.20885133310360754,0.21408814738438137,0.2194795571639893,0.2249494882392671,0.22485817626431878,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,g wind,0.0,0.00106334568806972,0.01548112763046269,0.0229733549619854,0.03534956251752568,0.05473771262966786,0.0884017152006967,0.13210861159465165,0.1734704695189529,0.23115494541096276,0.2897069340995274,0.36012901508964645,0.44090810957729165,0.5236387289244314,0.7030208361728131,0.8803942575852093,1.0069920682377513,1.1423000457379915,1.2166912514330672,1.2598574974691719,1.2831213015975387,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,h solar,0.0,3.797661664702347E-6,0.00252175759126781,0.0035808904624864703,0.005420878811567324,0.008665023158079186,0.014954689711473951,0.024180126861869232,0.03468547437137314,0.049734273136463995,0.06670748241589693,0.08869114089248634,0.11530892714933903,0.14161961056235958,0.19257079738977542,0.25356179217445635,0.3010237961229212,0.3564531580989772,0.3941338768666244,0.42219578138394614,0.44657168571911343,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,i geothermal,0.0,0.0,0.0,0.0055055102875379005,0.01380585995727159,0.02412644898465355,0.0372407476441399,0.04981455114741148,0.058927634075405355,0.058702993155590945,0.0584911339460015,0.058252563385720574,0.058044091042745334,0.05787618762035332,0.057676909413557985,0.057537253269215924,0.05743182382739031,0.05733991743011013,0.057292958016178584,0.05726841806268477,0.05724520154885366,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,a oil,24.303342276130092,27.730694769082987,24.697914897299086,25.485567230145843,25.7596593767799,25.601970016531872,25.216178666399976,24.600404137916467,24.020573647756745,23.205150744779917,22.431764670814776,21.864949995807194,21.326855846423484,20.869669192155197,19.867346652151152,18.505103517327647,16.304119501258736,14.802175978168888,13.74250358871015,12.82637272261848,11.471548358628409,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,a oil CCS,0.0,0.0,0.0,0.0,0.0,0.0394346181258016,0.08384828782848724,0.11891488643458259,0.18393197253828072,0.19952244631512359,0.21545122224626023,0.2390788435278085,0.2575009913116383,0.26228147548403674,0.2856052402214233,0.2544562734037101,0.1507780851475889,0.13591043206706668,0.10370475890218188,0.07931436600477823,0.0707360902210013,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,b natural gas,9.24062071873671,16.216240901748783,16.559704440882975,16.578982225058642,16.93228818169094,17.325169126660946,17.30934636782425,17.184534213693738,16.759592813238093,16.249782749731963,15.8798670056788,14.956187991864704,13.826410257627776,12.905644938875561,11.686817007481737,11.144696736114259,11.709363049119782,11.085942117061421,10.283167042091138,9.626570117487283,8.77613758743161,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,b natural gas CCS,0.0,0.0,0.0,0.0,0.01565740097185288,0.13050494577763533,0.3381808716346616,0.584866973314321,0.9498378876279209,1.2360792185515939,1.4892056749964178,1.7397198548279516,1.963646578488835,2.13605854018207,2.3598185710401767,2.52651045995201,2.693806471240256,2.8884278898744844,3.095599974882273,3.2446463423765426,3.437754278333205,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,c coal,12.691882384436935,9.452839944458045,7.9583140814771784,8.323126512972252,8.200874865794052,8.174830532778731,8.096946900910938,7.904618396259133,7.614456207416998,7.114471103874768,6.594282637852955,5.870170198865011,5.165737342758887,4.403656232063264,2.636381668122973,1.3298132025014748,0.6923147066976304,0.2420131379331659,0.11941402541350894,0.07348027302627086,0.04315279048505764,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,c coal CCS,0.0,0.0,0.0,0.0,0.0112099693391907,0.024736593440790933,0.0558382488071078,0.11063908544762549,0.23184599477659887,0.38862435123360545,0.558396510629128,0.7371443728358554,0.9046716040876842,1.039695224974524,1.2589847490945505,1.427498798095413,1.5555410162823375,1.6408962649296712,1.672661709159295,1.6615413859784918,1.520548794039608,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,d biomass,1.7015610712856482,3.0127169215988188,4.7505591132206,4.166457843126846,4.828937840960871,5.276479784798693,5.767104177381287,6.297712997607363,6.993044490627172,7.548164440548961,7.692000169598953,7.6677313153393465,7.49981840990763,7.2049278901742015,6.5601069549662085,5.479821956123392,4.383719778236906,3.079873743578605,1.6283367429221582,1.2585298852232,1.1425155745038909,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,d biomass CCS,0.0,0.0,0.0,0.0,0.01182959561276905,0.04299049878219255,0.127904886829567,0.3223254128271371,0.7468302100221621,1.277639189488473,1.7476101265672142,2.2214688926526835,2.7748402992158283,3.3437331261920886,4.686525644415431,6.264305094879063,7.740310061983804,9.033096522302191,9.835955942620814,9.769525341587258,10.17436053527708,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,e nuclear,2.6656342315341335,3.4350570403425325,3.162661793630794,3.2445657057012003,3.404320784702159,3.5014067211952327,3.6803709608442743,3.855052039427352,4.3029234326002275,4.636707469652967,4.9984227695096415,5.505139430921361,6.186175641239559,6.949368182577773,7.903885127968104,8.673852856992962,9.379330810269481,10.197308507160509,10.80053584821928,11.226116625936255,11.573254872345045,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,f hydro,0.9660456594882341,1.0151795396308656,1.2464371047525702,1.2238897450389907,1.212287618773384,1.2036876357760984,1.184162735127438,1.1644176532879582,1.1603350221180317,1.1583048222995234,1.1571607828351211,1.1549043468044382,1.1545743030527003,1.155862831078461,1.156296646600205,1.1583767391135689,1.1606513892755463,1.1636584729767807,1.1677698682686313,1.1730740273653222,1.1720453993221085,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,g wind,0.0028795968421996,0.2675020062802818,0.5551886127124432,0.6568143665252885,0.7920948792964139,0.9647151461498311,1.3050748228777882,1.7630339277371447,2.0108447915309884,2.6313604093376814,3.2322876484263094,3.9249622422882644,4.613786118246891,5.213690529272782,6.053947342543137,6.853126327115824,7.525764234220385,8.197676397661754,8.668484157960977,8.994214927910757,9.334745492248366,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,h solar,4.437979471550001E-5,0.00555173546981191,0.08579819519814703,0.10120940616234618,0.12888744016269105,0.1629930179201195,0.2312861231261344,0.3311260893765655,0.42508924095409123,0.5676002432256145,0.7290656221582377,0.9241609269930973,1.1415432070543834,1.3509961004818327,1.695476705597744,2.052130156938451,2.3865003678086745,2.773109481479209,3.1181643755715354,3.4073367194446953,3.729790446182936,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,i geothermal,0.01193073278984707,0.02056461763925736,0.02144856764267355,0.05162665798339318,0.09308142532655961,0.1398031445275788,0.20943364030266345,0.2698606205408634,0.2678525246110125,0.2662873785823774,0.2649359455422473,0.263342235946151,0.2621995708322764,0.2614306822269171,0.260475018430713,0.25989477183682697,0.2593645782707378,0.25899747945581214,0.258878302647058,0.2590226174205609,0.25879618593961,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,a oil,4.2298530551121125,1.000482399221016,0.9089470626477021,0.9050454212745267,0.8995672045842306,0.8962674165905239,0.9301197454006424,0.946575028652643,0.9611272581100636,0.9587538640652081,0.9520383205637876,0.956341883657975,0.9592777609952349,0.9585402200716129,0.923926359775914,0.8570520795782157,0.7381979962720446,0.6501424734233836,0.5684537330704309,0.48942304631252576,0.3330846233429212,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,a oil CCS,0.0,0.0,0.0,0.0,0.0,9.070094941036847E-4,0.0016540887993067,0.00214943275605099,0.0028646895329588196,0.00333755939186024,0.0037164370284333502,0.00440876846837579,0.004995877100563871,0.005453185644293931,0.006414450123506141,0.006232794749384211,0.00453830901849601,0.004560651549671291,0.0034826852100147483,0.0025514215420633255,0.0016511690507608299,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,b natural gas,4.781085170132646,3.8891494175292287,3.0287585123345537,2.8212743881701594,2.924045883321835,3.052910902388682,3.093425442463106,3.095070012830365,3.045980706711477,2.981275811339602,2.9149933164831943,2.8067795079596696,2.6863493316317193,2.5600515704895654,2.329594215893759,2.154685659247594,2.4804795776241697,2.305017263420558,1.9533176370207164,1.6849394691689639,1.4022911429592226,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,b natural gas CCS,0.0,0.0,0.0,0.0,8.643709736258E-5,0.01785692827823478,0.0444072825737228,0.07232840115436687,0.10525470043794911,0.1363084570059118,0.1636833612450241,0.19663116232560057,0.2312372342234767,0.2652650758060788,0.3047658867032475,0.3283496406100123,0.3427934839581581,0.3601392418812913,0.369607891897318,0.3732377922660506,0.37386289184003346,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,c coal,3.5816493206617963,1.6254964425793874,1.6252649161140205,1.541808451705133,1.4653346478991294,1.4589126130786185,1.4180451907203835,1.3554046240120656,1.248512557327611,1.1362788687867544,1.0303141596697387,0.8834814268580375,0.7541773520648963,0.6355100326908703,0.41130215436444856,0.25620709321239504,0.17011813780915772,0.09192047089211262,0.05867268965206004,0.04077590583069398,0.025628581498156486,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,c coal CCS,0.0,0.0,0.0,0.0,6.399099561337803E-5,8.38491449392003E-4,0.0024175453218653604,0.00488462118379902,0.009715555575391641,0.01635922506014777,0.023937738718338743,0.03521584104348357,0.0504687406266547,0.06806716345973131,0.09781525863548401,0.12456638246856176,0.1477416992152035,0.17232732108879087,0.19142904693230609,0.2047749335400444,0.21750073679314594,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,d biomass,0.0250322,0.07342322126672533,0.14970787699361027,0.1528513687282871,0.1724212129047294,0.18615191482494772,0.20452147373235116,0.22432909901743148,0.25168313583777757,0.2766023087065507,0.2871305046153732,0.29609751720680166,0.29900401731807175,0.2954185502722303,0.28061680033851927,0.24792797424090007,0.21426148745929047,0.16811015178443936,0.10619028772707717,0.09793036935273329,0.09583609693189933,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,d biomass CCS,0.0,0.0,0.0,0.0,4.7798165882007795E-5,0.0010409466797903528,0.004968889913594805,0.012855874572716265,0.028426374026248955,0.0480010265897066,0.0652155761340603,0.08535957571062348,0.11511663064301511,0.15483678019946592,0.2549408479408963,0.4023902470905059,0.5605906378655793,0.7563921115540879,0.9076005532292758,1.0033957668783082,1.2314252762003894,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,e nuclear,0.280705008048329,0.3279525388364905,0.3292568929907558,0.3188749486336121,0.3336893120492996,0.3510595873353012,0.38854687715126696,0.4360644996980537,0.4923744885760749,0.5455554797414344,0.5959414949235625,0.667956058923904,0.7502188689504112,0.8357645187847111,0.9592355566966968,1.067197663042476,1.1453079574528922,1.239130616068255,1.2864652944783084,1.3013810329262279,1.3286957644035724,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,f hydro,0.039579522288475784,0.0460090462516687,0.049160830156293175,0.04915053263849743,0.049488222552884556,0.049959980004359306,0.050147801104534734,0.050300965468578276,0.0504512673452336,0.05064162298425586,0.05085879513518945,0.051058919916148617,0.05129460801037455,0.051554749978739656,0.05180636480425037,0.052094146063172454,0.0523950385092515,0.052700824302063014,0.053013021607092536,0.053332874478173,0.053312901685259616,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,g wind,0.0,1.4398183940399814E-4,1.9188624418125998E-4,0.0013305423766421201,0.005791735313463118,0.01225042161851556,0.02470080269173023,0.04123594286284263,0.06463963174252628,0.09081119726092238,0.11582355736748638,0.14898381940452707,0.18263487572789613,0.21574046297433794,0.2734206328273357,0.3204283482936899,0.36143256664394563,0.41516145876478944,0.4556041828150491,0.48626153220397844,0.5148757334179103,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,h solar,0.0,0.0,0.0,1.7566578501495997E-4,9.5026205333918E-4,0.003020002325986394,0.00827433597503002,0.01662393095946419,0.029690346365289638,0.04575540640755758,0.06360847898326148,0.08749319304537369,0.11327671997422958,0.13904781147265496,0.18372504558022631,0.22258024965898454,0.25823443164020554,0.30611520556351934,0.34479456732396835,0.37595171130380345,0.4069774564642546,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,i geothermal,0.0,0.0,0.0,0.00144891688884009,0.00466771717760834,0.007609236452391491,0.009890011968021141,0.009890099582774248,0.00988978525024158,0.009892355911830129,0.00988834496221598,0.00987263239765776,0.00986047222822942,0.00984860363344953,0.009836848809278311,0.009831562781273371,0.00982915972704978,0.00982702342866812,0.00982534006496938,0.00982449922789307,0.00982364268695249,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,a oil,1.6127042663740319,1.858679502309329,1.844271998288417,2.0134708992250174,2.215008681873056,2.406177085349139,2.556589727846835,2.6669518936876133,2.7635924323864187,2.8202408323299437,2.8522552475774403,2.882673514562864,2.8898148681885405,2.8781212614485345,2.7788485939476004,2.6110563968093765,2.3047054647671943,2.0534503483354136,1.8500110210128977,1.673094789288318,1.4566264264057458,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,a oil CCS,0.0,0.0,0.0,0.0,0.0,0.004075181186347689,0.0057910329534792805,0.007151993543851409,0.00879619368957078,0.010698824736721612,0.012828628457717149,0.016620210670919552,0.022170326805916553,0.0268974212480631,0.035141658056927,0.03800896034481496,0.02853393594036623,0.028881808082019716,0.02205836043726348,0.01645886184109824,0.013311594301270019,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,b natural gas,0.347546499577339,1.1811820960146888,1.5545757852872566,1.8338298927224477,2.13018373078328,2.4644711800910355,2.7764338900838568,3.053316108859979,3.274824233291714,3.4533726526133424,3.6021316235962817,3.6734619803233306,3.5611318968452608,3.4084894088981423,3.084317260757806,2.8011154842763206,2.714567455834123,2.265340437434499,1.9092558645715911,1.694495774034327,1.4860308227731107,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,b natural gas CCS,0.0,0.0,0.0,0.0,1.0887905983601E-4,0.009176029865235767,0.02291815540896489,0.04137247561537378,0.06532464542179678,0.09547162902425657,0.13184861306263487,0.18750900219919447,0.2790542559860929,0.388847054044243,0.5705720000793167,0.7561295380853955,0.9143747889797995,1.0976091861790447,1.2267805898275361,1.3083073648692667,1.3901678221450584,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,c coal,1.3957522862837426,1.585940917515311,1.9609990470442313,2.233899491119733,2.2236306685476226,2.357949694042525,2.457425410174612,2.514603764470898,2.4639874708756895,2.386074853438178,2.3002046636512823,2.107404012082185,1.9140354326401279,1.6883639207955026,1.1293514808296525,0.6544800030808945,0.39787192958768564,0.17555100566268503,0.10111019395274543,0.06672077294464884,0.039413873887000204,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,c coal CCS,0.0,0.0,0.0,0.0,1.6105093578274002E-4,0.00305354031996652,0.008030036863181638,0.01617193150685744,0.030175031832596358,0.050784022149749516,0.07775629748250741,0.12128179199943778,0.19653155188348817,0.291273854619748,0.4492343059741411,0.603746875829143,0.7306820861451301,0.8534590234862036,0.9298396294939644,0.9632635053695308,0.9726345573407966,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,d biomass,0.4053531,0.3311761954433339,0.31928701757653283,0.3654921752308063,0.41815575911540037,0.4579615949205668,0.5037143617965558,0.5506080146283225,0.5983553860055901,0.642784729701979,0.6555802642024968,0.6583006452419974,0.6533915342045897,0.6379943676565722,0.6006927651342391,0.5372570962805965,0.4807621702633474,0.3963983220458283,0.2346253690063657,0.2159615746351617,0.20745088981470133,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,d biomass CCS,0.0,0.0,0.0,0.0,0.00278111380820094,0.0082287169817884,0.017756356015647245,0.03622581368437284,0.07085486198346887,0.11823676293537512,0.16622375617198248,0.2213890507452596,0.2971269329959285,0.3910151136055545,0.5952168573179989,0.8866173325417923,1.2087276552021746,1.5510626444568953,1.8076077911644068,1.886291757780312,2.012901595217055,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,e nuclear,0.0,0.0,0.0,0.0239208757578579,0.05099062894233863,0.08475938782504246,0.12499568104461778,0.16766783440869515,0.213702968068093,0.26407352580706966,0.3193096620273879,0.38770860411806096,0.4846269365529558,0.5909632012145329,0.7525828433584931,0.8906111291377367,1.0108080240709403,1.1503651768000625,1.2577778404799367,1.341523970843169,1.4535796060377666,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,f hydro,0.1584017329845137,0.2695360550155994,0.34062484223836675,0.32930750685695664,0.3179152418292944,0.30648982860297586,0.294470471897191,0.2824085070504716,0.29891091754572024,0.3151869841552096,0.33121086702623065,0.34674138788462816,0.3620196023283796,0.37715904891604385,0.39186311313166255,0.40706272144977595,0.4224940622768711,0.43774666422875325,0.45337493989163735,0.4692128698957702,0.4689654593439741,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,g wind,0.0,2.543167348055819E-4,0.01118041280242374,0.01550653539837892,0.02290529411839055,0.03529496704589622,0.05390638693642764,0.07762605831422931,0.09480080023489242,0.12413858034417416,0.15602048293247098,0.19718318093678575,0.2605242427515884,0.3319735138053124,0.455929071435675,0.581144718610603,0.6929638671897654,0.8240223413532463,0.9040638518212063,0.9530434229036922,0.9944255395730087,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,h solar,0.0,0.0,0.0,7.1143662746401E-4,0.002561015770230166,0.00623138296626355,0.01245574938349068,0.02145901844277154,0.03384942727650912,0.04963770846795406,0.06917229979181669,0.0977178864487522,0.14131591554117615,0.1927744429139988,0.28016476368300286,0.3456062239023983,0.3886089494122225,0.45027112208409154,0.5004543646589161,0.5375363284053072,0.5743565838425897,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,i geothermal,2.9592998194085003E-4,3.46460939284605E-4,0.00244387965955502,0.005496094078896221,0.011089182100675112,0.01959363423233486,0.030358535257841268,0.04176833295317787,0.05096988851383869,0.05985804534871827,0.06686969030529333,0.07407962308406214,0.08139238469725683,0.0811404189262904,0.08081872697291816,0.08062000669365156,0.08047873878328153,0.08031508736009078,0.08022679670548227,0.0801806765680389,0.08013125208818371,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,a oil,0.9535337565005368,1.0044204322351904,1.0056848097933184,1.0091978894682612,1.0216336870159342,1.0213398112218313,1.0109048011395876,0.9932861639398245,0.9784316933789472,0.9561908250579395,0.9372744721225142,0.923408583902733,0.9107804712948983,0.8995127622645385,0.8593437999454837,0.793631656408101,0.6857069373881981,0.6015915343650192,0.5370393416691143,0.4798429048366162,0.3731270094205492,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,a oil CCS,0.0,0.0,0.0,0.0,0.0,8.25169274886E-5,1.1294446082525E-4,1.2031917737214E-4,1.1265944937592E-4,1.1570991140447E-4,1.121950491972E-4,1.1646592368138E-4,1.2242387468162E-4,1.1713621283724E-4,1.0814960135632E-4,8.657798983414E-5,1.689313634898E-5,2.8845569368218962E-11,2.9087979329807646E-13,1.5500422864761933E-14,0.0,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,b natural gas,0.15091622056374254,0.30307764124757786,0.3432794649553455,0.44261231223444697,0.49841643253441803,0.5589457500361804,0.6157808607051856,0.6722892493578986,0.7077762651979123,0.742997842890848,0.7784473136251133,0.7798629049209053,0.7260504837470559,0.7020561676189383,0.6422171934281101,0.6217128503580577,1.1035874281766136,1.1775005616610896,0.9911926458286066,0.8456774814760151,0.6983120067086394,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,b natural gas CCS,0.0,0.0,0.0,0.0,0.00158384779612684,0.00516400346859933,0.00956993619446398,0.01430708496014655,0.01983177048654883,0.026613429531060932,0.0338415514772078,0.04235275364076307,0.05175776725945267,0.05909180730575595,0.06675720837358046,0.07272802377885507,0.07909622304073995,0.08816128241178556,0.09686058541968033,0.10109352270811875,0.10262670204796523,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,c coal,0.05362888768899504,0.04296410723105732,0.040711253533553086,0.057103704420057126,0.06012254124699463,0.06789100297110857,0.07533184446201327,0.08185953732891386,0.08189781365649283,0.08137591121965752,0.08017201690687621,0.07307544900110963,0.06544836883023587,0.05507851497275264,0.030125049192608364,0.01432150471736502,0.00817878860750602,0.0037019568623899357,0.0024166786475989075,0.0018375948229089095,0.0013394768329968152,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,c coal CCS,0.0,0.0,0.0,0.0,0.0011726207159889,0.00234241533197749,0.0038895192775920493,0.006242162662120999,0.01171452905987103,0.01939905819840641,0.027973318966055122,0.03581067801717962,0.04329530473069671,0.04876177712414941,0.055300101791796695,0.0601127468884049,0.06504341225659552,0.06641050235028882,0.06743834072011791,0.06655692453300109,0.0635871153062118,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,d biomass,0.1037777363408357,0.14422021329620882,0.16961201383773059,0.19826516830419627,0.23626800757101635,0.26713505457238446,0.2995399855113029,0.3309424808068252,0.3512412562831855,0.3686035601553903,0.36432264725088154,0.3461430491312627,0.32088495304566017,0.2916193440908463,0.2466304518554435,0.19454320876679554,0.15696314413555226,0.11545655364544626,0.060073131164610535,0.05542476293908033,0.05429322399138819,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,d biomass CCS,0.0,0.0,0.0,0.0,8.417757057774999E-4,0.004139523214921089,0.009611071058924161,0.019413808582647792,0.03685469260554399,0.06060041411676285,0.08275529650049039,0.11017387364823442,0.1494903163688917,0.1940644046166568,0.2980746271601515,0.44855080986036183,0.6074328947741644,0.7654919495602579,0.8736705274008261,0.9222721417169338,1.0504834934118044,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,e nuclear,0.08556159007638638,0.08521313213094159,0.0963063862693399,0.08876960385484105,0.08564288039618782,0.08003333971557991,0.07215778721502063,0.06227733446014379,0.06635746927305346,0.08562892624118722,0.11434601278113554,0.15852028279567906,0.2153683287562614,0.26476454761467055,0.30248659838945485,0.3406825801185916,0.3748397094753947,0.4126552083626745,0.4496465334531996,0.47653796057737974,0.4876579234376023,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,f hydro,0.5618447816605011,0.6351600441958237,0.6077523881354429,0.5915302601008742,0.5788649201351613,0.5642323255784543,0.5491243465858399,0.5344027068051644,0.5400194195238995,0.5456062505284051,0.5510743897519396,0.5559103895328403,0.5612668969487261,0.5669779317966538,0.5733179379042131,0.5799668504425566,0.5854378443043576,0.5908011545537224,0.5951414416177494,0.600138420988063,0.5993238651604489,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,g wind,0.0,0.0018509457643033302,0.0034077847503118,0.025768979175744573,0.051567855244599024,0.09698522847114487,0.15710616816615194,0.21879665945728366,0.25903934753114977,0.2894528913222931,0.3168582086210382,0.3500300700433682,0.3946778910316141,0.42548693164597134,0.47140693811371737,0.4979045640972561,0.5190520694418047,0.5313717403893452,0.5267289284505274,0.5102370691803351,0.5072008578088544,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,h solar,3.6101637132446826E-6,6.915613273520999E-5,3.0265856266525003E-4,0.0014180332843321,0.0032545346565256003,0.00484187979228419,0.00602630617874201,0.007250394599680959,0.00814812944427706,0.00832566014625914,0.00854274979881073,0.0083999700076378,0.00878815327481388,0.00897682781108534,0.01010410258160142,0.011245509088010261,0.01283008974923849,0.01455809251966286,0.016379650878312668,0.01827921007089284,0.01966571809498243,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,i geothermal,0.0010852884359952401,0.0060487337431169,0.01631552952899443,0.03541884954642203,0.03602856511741774,0.036024238009157675,0.035987380085533045,0.03597178586860819,0.03596376206530384,0.035954209759775896,0.03593909979049739,0.03588787845626632,0.035871393691536115,0.03587864632457936,0.035925882807510856,0.03599122798112905,0.0359835130866444,0.035968008573238036,0.03588945421717941,0.03585083146109194,0.035802003601904914,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,a oil,2.5727581436448537,5.265202933440152,6.875596275171798,8.843165109704477,12.260104359260277,15.013870312365238,17.622502253073133,19.974741411984102,22.38880565611575,24.492157428754137,26.277102229813647,27.85333553478876,28.803164344257322,29.563759029950763,29.50209236306431,28.586453906237868,25.329492994741496,23.16011733915071,21.237102629975816,19.46774060672015,16.940131867160364,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,a oil CCS,0.0,0.0,0.0,0.0,0.0,0.454449125310138,0.7707857964481301,1.0437869265134094,1.356843050883554,1.639046524605347,1.8533683992176881,2.0877611616665783,2.292137657059912,2.469587033224298,2.7138478471677088,2.7470597412622215,2.0075678592292823,1.8978423627750851,1.4896134782203971,1.1250079468864256,0.842027457662292,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,b natural gas,0.4422936196233034,1.3281032888301034,2.2058124186968526,3.140852863556854,4.5588789143059705,5.9031447813110205,7.4867309685711545,9.279881182235066,11.095671412097042,12.983489717394676,14.990979155203018,16.542509409086257,17.539082002490968,18.285153041072075,18.6842286883638,18.981833498465424,19.896103594678202,18.84146491060703,17.570893182156944,16.713326047823365,15.37076274135759,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,b natural gas CCS,0.0,0.0,0.0,0.0,5.0252738163957E-4,0.22041667230632594,0.5477006792338847,0.9431402133040617,1.3923359299761622,1.8684623259718443,2.327223322744198,2.8038576054807285,3.334414254039344,3.871036840333997,4.6401914184959345,5.717423878799101,6.908239825767668,8.489868884951951,9.546929117694653,10.123627544972672,10.84165076176228,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,c coal,4.3901083440218205,8.69279868490531,11.90191532881228,16.27561004860404,20.5663025532947,25.092540148572546,29.750278813926535,34.07709770447308,37.09568893175936,39.34533735175425,41.04655922269167,40.90513301397085,40.28699437964499,39.29084663818275,33.96798653753165,25.156377958354625,16.810982078550563,6.4894651966228025,2.987604648281588,1.82272489341126,1.1581624356751816,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,c coal CCS,0.0,0.0,0.0,0.0,0.00171883645475102,0.05673539775888204,0.15959939033359266,0.3200924334339471,0.5859342137181621,0.9693191519350457,1.4393188417234095,2.056529865871584,2.850281078180783,3.709179148311087,5.355325405346648,7.6602571212491135,10.169115820811482,12.854611102346363,14.67176397864257,15.637304920928713,16.444289132803615,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,d biomass,1.13930329,1.448953460709084,1.5561134649871082,2.0205865177529274,3.307108463387342,4.489074972769234,5.731490506680959,6.978600533393694,8.323022695199409,9.5717957171163,10.42853199012496,11.31714681954083,11.917139387819546,12.4135904037798,12.528491506999837,11.532506168054361,9.503685943155679,6.091372164537193,2.6816303302814193,1.5081552985056106,0.854192181186007,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,d biomass CCS,0.0,0.0,0.0,0.0,0.04253576915423094,0.12852678780534757,0.26645536652995727,0.4886862474669169,0.8712641134393525,1.422959361864013,2.072258332961086,2.885067528550706,3.802768633837805,4.811777126406913,6.5699735504958054,8.875280702658696,10.832751944868578,14.12040760535741,16.920009487042396,18.53505918470273,21.35615773477796,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,e nuclear,0.02210767929225579,0.06236629388948987,0.09455744922547628,0.15126553033652826,0.24675470491761903,0.3665354203388124,0.5249687036638235,0.7046146721197591,0.9248898219592443,1.1878221941671934,1.4909331428845534,1.8349854171610855,2.255076030863501,2.7323222790009365,3.5889813010013505,4.821707832967916,6.246901570964055,7.757025817582319,8.67345156637154,9.191341491903694,9.724700580585399,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,f hydro,0.25796292521978365,0.36622796411780234,0.4119257788081701,0.44785101733107036,0.4838095834758489,0.5197682217270643,0.5557337420817258,0.5917015366315649,0.6550602391513949,0.7184402715161446,0.7818287316723853,0.845236540556319,0.9086702028920581,0.9722310137231498,1.0358308775493212,1.099409718680537,1.162980323890975,1.22658697199192,1.290306304283034,1.3541684777964382,1.3541380181418832,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,g wind,1.1520041318226001E-4,0.02377079767099035,0.07167946151027182,0.11874595530304502,0.2167375194721718,0.3677579363394286,0.5991191450698311,0.8935992435079555,1.181556626713328,1.5553370489334482,1.932034207608711,2.3303282113264356,2.79434017415447,3.3008746114320147,4.380168230797231,6.030970414109711,7.889351900532066,9.7283142411092,10.620854539155092,10.871589947314122,10.662695877549796,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,h solar,0.0,6.839989329833001E-5,8.279985553896E-5,0.01612526468170365,0.07469786229089312,0.19785806208368414,0.4257484330318969,0.7771436939667411,1.3152955962845778,2.0425850296155867,2.9504186419158285,4.220139703848306,5.668513432452382,6.738723180100345,8.013675040186577,9.870096654289375,12.61653352269357,15.929300009407983,17.795751281340934,18.769350068238325,19.49784115390123,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,i geothermal,0.0,0.0,0.0,0.022025749072276998,0.053585026272650056,0.056541867901085265,0.05653965580466052,0.05659346845774003,0.05653877779854484,0.056542094500042814,0.056547897204497245,0.05655601800535979,0.05656823164916972,0.05658680439022296,0.05660433950796457,0.05662073928478884,0.056642098658562144,0.05665604693460387,0.056673613219312365,0.056693752572144936,0.05669363189463863,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,j traditional biomass,4.4472504,5.21060866,5.57558156,5.03503208,4.60269644,4.15161377,3.70264716,3.30035527,2.99289758,2.69191798,2.39428347,2.1915096000000003,1.9672999,1.76030816,1.63203288,1.46697729,1.3161626100000001,1.1232827300000001,0.9310822200000001,0.7618994299999999,0.626146678,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,a oil,1.488205559090361,2.832053577563879,3.1046851516361436,3.6474352002634682,4.490914251526435,5.412747471567828,6.197647680166096,6.852931852578732,7.447767722681112,7.887163447930664,8.177996835280766,8.408248916572125,8.457633194560335,8.416224354866168,8.114845755531777,7.592297030356624,6.573955531990279,5.670064273394548,4.817740266818563,3.982598968587282,2.867300487332327,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,a oil CCS,0.0,0.0,0.0,0.0,0.0,0.1065851711226989,0.18635367591512578,0.2491814814302656,0.31797628854667337,0.3660168304447993,0.392217927960211,0.42507435113353415,0.45868766941015393,0.4701343098835286,0.48670008707614526,0.47095430885890777,0.36867100717116225,0.33905882330939113,0.259388031198001,0.17793844921722332,0.11673709636082091,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,b natural gas,0.6173077308161717,1.2218861804990602,1.5887469136608239,2.0913604362093836,2.6604756373941267,3.3443745704693115,4.0462760231337915,4.755415607599645,5.431765884489795,6.074545611354916,6.724117393586866,7.1635886289167505,7.397459600502063,7.559774996100414,7.514970125319126,7.458830304701877,8.01165868707197,7.598340300381114,6.919986618927973,6.416760906464446,5.874429632573666,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,b natural gas CCS,0.0,0.0,0.0,0.0,3.7654255707809E-4,0.08209982282802539,0.20076808043820144,0.3373588615544889,0.4896071345034777,0.6350679846646797,0.7598325396526405,0.8750348357902322,1.0073337291933526,1.1343238298473197,1.2665212908339678,1.4416082076249521,1.658596247722585,1.9637735828049288,2.221526883346864,2.36885807668526,2.498281494811921,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,c coal,0.18694605783563595,0.911629267583157,1.3225666346615967,1.8099336491945892,2.1095128596244033,2.5488974314555555,2.9916851810594025,3.3838837355346687,3.64315370764675,3.8117353187219525,3.923245147737087,3.847572586305217,3.7523676951405176,3.6019445488269963,2.975487759415789,2.081791225243994,1.3954935113103988,0.5677619509587132,0.28645418062735145,0.18326623862433944,0.11594487549943613,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,c coal CCS,0.0,0.0,0.0,0.0,6.0692684441937E-4,0.006733120826342503,0.01842266022476992,0.036975134512073536,0.06852541727792358,0.11040464548412013,0.15465994884924963,0.20577062512837518,0.27040926047373515,0.3371024695270098,0.45499652606476976,0.6259957695660465,0.8352176713474107,1.0730200239655183,1.3011973923119018,1.4511266814576844,1.5825061751676062,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,d biomass,0.409056388,0.3197684102461965,0.318430981634685,0.4469395108853696,0.6251789448372747,0.8647951378800873,1.1353380911352882,1.4104657832209813,1.7022409913090588,1.9776558680572252,2.1820137198691434,2.397271007605126,2.5823122176455704,2.734635058811242,2.8962314473448614,2.9845742515796236,3.0578817159630196,2.943290518227928,2.611156986505576,2.7271490056499132,2.8645199076804957,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,d biomass CCS,0.0,0.0,0.0,0.0,0.009365576776345315,0.0314028704221355,0.06616479447979996,0.12195644729310642,0.21693261104501643,0.34503292130176616,0.48110077847028504,0.640034276596647,0.8141785299833201,0.9842213575726048,1.2474048699272742,1.56862837785215,1.8670214294670555,2.275899716508849,2.503608176198125,2.573035136539524,3.0167766125660758,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,e nuclear,0.0,0.0,0.0,0.002248682768747127,0.0048615694097116705,0.012666657774036133,0.028096758984962302,0.051025579600137504,0.0810291561604646,0.11593718695721536,0.15520790169850388,0.19677887349868978,0.2518019123960793,0.3172264848163189,0.41794537213030386,0.5628861886605945,0.7506487420472987,0.9917552595150382,1.1935253643959851,1.3407847613007549,1.4817308859806917,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,f hydro,0.02054870660254676,0.03861002523400326,0.06363357035177247,0.06428187947370127,0.06495422819125794,0.06562731663355136,0.06631165374852177,0.06699963313134735,0.06905830242957557,0.07112800839562396,0.07320351532590304,0.07528140236266954,0.07738016486811129,0.07950365831966072,0.08164413793578826,0.08379925560372739,0.08598078464711867,0.08820059517787832,0.09044078792548964,0.09270443010668407,0.09282761355032512,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,g wind,0.0,0.0,0.0,0.0016896799099850436,0.0051403365492318324,0.01251872283689562,0.02461932861500141,0.04041304667486798,0.06037969991629572,0.08135479743722211,0.10281778201226584,0.12260726901757349,0.1479281715118095,0.17583397033122222,0.22823611674333003,0.30867263120575544,0.4098223817720816,0.5314401185609926,0.6154769835479169,0.6612264053910915,0.6820084878787381,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,h solar,0.0,0.0,0.0,0.0013936397712621977,0.005173297586131794,0.014857043710736272,0.03324324632118402,0.06198516872074082,0.10642337978287641,0.16445936686920712,0.23736185020049008,0.3349811740678829,0.47014371380759784,0.629967392279964,0.907070966013052,1.2678101142657736,1.6383147015271002,2.1484359384310934,2.6119019832989254,2.9512451480721635,3.2666466380817645,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,i geothermal,0.00404998159212773,0.02377441553802868,0.033685184305359536,0.05027662794932459,0.06703649364009498,0.09012449684686268,0.11634494327021898,0.14132938657974967,0.13979270540782102,0.15347201417751585,0.15499566407023976,0.15505754551159995,0.15515790622555442,0.15530149065388346,0.15547029623778744,0.15565801167325413,0.15588442206755818,0.15616793786866284,0.15647382886229502,0.15680580782668593,0.1570143703954002,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,j traditional biomass,1.41181,1.78826,1.93778,1.93128,1.89945,1.77281,1.62732,1.48181,1.3549,1.22677,1.09984,1.01548,0.924416,0.829225,0.774583,0.709995,0.658843,0.592363,0.514541,0.436829,0.378356,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,a oil,10.78951443268896,10.648479855318094,8.754045952767017,8.440716271362643,8.156614741051479,7.94881839257735,7.687274827510135,7.315415174487971,6.939915461815952,6.511741699363024,6.131903025964825,5.804979055691741,5.457979617837275,5.147464467302636,4.648949441716426,3.997450619640858,3.1463046874351157,2.500843190165882,2.04978378347451,1.645569279189488,0.6618083877752681,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,a oil CCS,0.0,0.0,0.0,0.0,0.0,0.01831479800363577,0.03536030679020056,0.04603646085067138,0.06544665519479852,0.07893806924799669,0.08926243076797188,0.1081609296246878,0.15918094186184842,0.16680177348016337,0.20070656517806443,0.1901812269389991,0.13079759437793861,0.11683176498053262,0.08442112047759545,0.055429587688319425,0.020122088019550316,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,b natural gas,2.0253897984561,3.1051098664719734,3.8075841044613288,4.253640040958788,4.482624598323854,4.645353498533618,4.789634069547171,4.902036181755702,4.982754455091036,5.03349357135205,5.05078622136705,4.938007813554568,4.104520350267581,3.7227855963064544,3.2908549301075833,2.8748736123083094,2.8398437935427583,2.3379866986623448,1.8764053625596007,1.5996690078957072,1.4180707080344757,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,b natural gas CCS,0.0,0.0,0.0,0.0,2.8415653401161E-4,0.009589807151598281,0.029337609821021546,0.05643442651829755,0.10156430485790867,0.15915458232677368,0.22110856076356197,0.30647306573560695,0.5176952900177305,0.6690163129523589,0.9469808818950581,1.174266527063692,1.3212994695567586,1.4722076293020254,1.586135417203114,1.6221843106967897,1.660752687385609,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,c coal,3.266439455560615,4.682300008537295,4.6013257387790985,5.2023621395357456,5.099691051245859,5.015860907217721,4.905076400606912,4.731828364621617,4.456530971992081,4.153832732253262,3.8462576250058937,3.4248416174096605,3.041413953583055,2.579093671905247,1.5597020430962723,0.7383580869184815,0.43382245608304,0.19532761045642588,0.11276591149631937,0.07410471199584373,0.04407203191317057,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,c coal CCS,0.0,0.0,0.0,0.0,2.1072865442601E-4,0.0025679552078207673,0.007717299143776911,0.01946011123242493,0.044976166544883706,0.08194030778747713,0.12088492192728116,0.16938523419782178,0.29077190130268177,0.3853834286657005,0.5664474152244418,0.7199609462507724,0.829765402114143,0.9282293301590782,1.0052386522386927,1.0394012400307029,1.0689812932186598,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,d biomass,0.20970127875745215,0.2972938005672031,0.3007538693747169,0.3265731962745414,0.3327968545872611,0.34130255513365154,0.35692865839358473,0.4141623410009966,0.5167453858153469,0.6181839525450038,0.6634224857361568,0.6738002925477166,0.6720104596945303,0.6334270655899568,0.5724416982653584,0.4899599421687457,0.4244120649111796,0.2774164345634927,0.036160883458116896,0.02286658865678024,0.01586077814244418,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,d biomass CCS,0.0,0.0,0.0,0.0,9.878903799582E-5,0.001183069832063,0.003736942452067527,0.05191457337358193,0.16702670482233722,0.3181680074195161,0.43095114830341685,0.5012430930470728,0.6042173110084755,0.6912401678059585,1.091412976057974,1.8597656864181797,2.846984301016674,3.7129082032187055,4.2254345936641675,4.4793156263905205,5.790976487153892,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,e nuclear,0.7281330787737438,1.0970711096120396,1.0375959518221747,0.9588840369420006,0.9140737866373798,0.8636930908747027,0.8243801932727182,0.797336853369099,0.786478167195221,0.7798910544463499,0.7781908713407804,0.8112135075171204,1.003524332871063,1.1275392906405086,1.3153161077046058,1.5251565008536772,1.6720688840511764,1.8179917869552926,1.9156108099679696,1.9243245892891057,1.932237548778102,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,f hydro,0.32147816682130054,0.2752797323057802,0.29595328844496227,0.2949723979897929,0.2939989477628401,0.2930185026560422,0.29203922757230244,0.2910609598245885,0.2942377815647412,0.29741872879934195,0.3006021084957073,0.3037853900251175,0.3069668042382503,0.31016543273266284,0.3133776770227117,0.3166253241502948,0.31985314239997303,0.32308574115697397,0.32624909101007715,0.3294286428999554,0.32939794196537114,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,g wind,0.0,0.0063059987619353405,0.01424790453860406,0.025742421397607122,0.033075563632650976,0.039935388771056325,0.05474530523085599,0.07513982691419954,0.09371424681707893,0.12118360574005943,0.15391443868417562,0.19533378821894473,0.2851268211309798,0.3371162336625943,0.4229969425310432,0.4824898134614689,0.5162681453242028,0.5537104062527018,0.5349557754621583,0.5213577698098913,0.48943511272208934,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,h solar,3.5930041058825534E-6,0.005367647403100299,0.013661733806702879,0.01902580928508294,0.021979869798778407,0.025249130889415813,0.03279831613004911,0.04427740437717682,0.04977319694588994,0.06853192681817666,0.09224833772650155,0.12324988337750069,0.1932060672903783,0.23839241614214052,0.3172784693042963,0.3776943864174674,0.41751412984472963,0.46271444165141157,0.4633568084168744,0.4612464175839225,0.4388044417613737,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,i geothermal,0.00625541016780952,0.011598166603838618,0.00946502906817093,0.017487158896004697,0.021904423967437532,0.02553490831552072,0.03208283284791022,0.03952291252012753,0.04170012938395529,0.04612725466121191,0.05262556321818235,0.05655762475438806,0.05656463283083025,0.056572915039183304,0.05658302734978005,0.05659730184243906,0.056606490137902046,0.05661577439455572,0.05661078802347448,0.05660820957965144,0.05659729325714812,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,a oil,3.272688199694502,4.411286359746402,4.230016074091564,4.537043645753904,4.879323999049283,5.104892318149525,5.288856787026734,5.371979770618372,5.388462144158885,5.333995412888286,5.248618369009422,5.211582212174795,5.123290949383194,5.036455796538637,4.792425478109621,4.401217675932995,3.6988517188477177,2.6134184120007107,1.4982656213123255,0.6952738765962877,0.12739807136903142,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,a oil CCS,0.0,0.0,0.0,0.0,0.0,0.06942222977491527,0.10540158092324783,0.13320336847531508,0.16482968749670732,0.18975844458780838,0.21538560958929456,0.25664419385044834,0.3348961112498125,0.38205970907449266,0.45658167035946484,0.49303243387224754,0.4165396030825618,0.35345214250366924,0.1983038458736885,0.08500848523621798,0.015010116026899065,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,b natural gas,0.9678456472462059,1.5795592883446616,2.2293302210244312,2.6325406319110356,3.0281615450713315,3.5115240280752946,4.049166664484028,4.608516434334448,5.122819715238454,5.6212432692737835,6.17796875526237,6.484931228678288,6.419388053406512,6.392715619411033,6.100436205558695,5.777344628681319,6.046695670682538,5.571733651446647,5.054394948719342,4.769459834693303,4.422749455701764,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,b natural gas CCS,0.0,0.0,0.0,0.0,3.9261880996922E-4,0.01934698355716222,0.04837642790142068,0.08820170748794876,0.14357186594550142,0.21223255416744513,0.295520949681722,0.41505854486916777,0.6488675343831987,0.9160796878471086,1.3235038339636274,1.8160125519782242,2.3291346944119358,2.8790872514781154,3.3862308985552882,3.749567133402005,4.057920992874109,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,c coal,0.147263572077845,0.39936511635097843,0.4047762669549464,0.4942939570403377,0.5260154775040655,0.5670726366336781,0.6066125370515953,0.6391721865788506,0.6522731122444968,0.6553993027522987,0.6537177122156465,0.6227476472277101,0.5848119642838671,0.5216675079563798,0.3341921536487086,0.16878133079795973,0.08732499703892442,0.027789308968160738,0.013161352386416554,0.008088993300378612,0.004818310208626678,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,c coal CCS,0.0,0.0,0.0,0.0,4.5331215858985E-4,0.0025426691576747287,0.0067365751216238,0.014715212401709228,0.030104043293645688,0.051886551506281714,0.07739950643046262,0.11066057326222829,0.16465030492770308,0.22574341310708707,0.31453801945259025,0.4186467165410651,0.5349540386115179,0.656238919615692,0.7735450389459572,0.8563934812730823,0.9116281077331017,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,d biomass,0.08162710000000001,0.10555371971053067,0.0908377340762741,0.11050111840049981,0.14925627467641378,0.19267599525184215,0.24995603901695454,0.32231903043062854,0.4140166384489723,0.507498304726557,0.5712063201816858,0.6147641309466353,0.6479911567754494,0.6578200623605106,0.6463663086731174,0.5950550472617718,0.5454944168380341,0.33145547497221656,0.14437725068798635,0.12251219882567803,0.10665271278547825,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,d biomass CCS,0.0,0.0,0.0,0.0,0.0058577357149462595,0.0180364523040881,0.039712568329199754,0.08172831714280034,0.16116355333996327,0.2682063324695569,0.37057702669337256,0.486558470079516,0.6546871256900251,0.8568390785838864,1.364898540665926,2.2719730272726095,3.549161791930133,6.047565302147444,8.244919135973861,9.569394578460063,10.346636735350312,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,e nuclear,0.01057319611634999,0.03878711778698321,0.021132501147480786,0.02469786634088181,0.027946251825049756,0.03293779927710796,0.04038951702291532,0.04997777171342131,0.0627688063470723,0.07860933061843392,0.09829122898015655,0.12338261413813995,0.16719260089520746,0.21580562114336568,0.27509583621001166,0.3383190211750932,0.4075735219238208,0.4796011276508798,0.5513897046017495,0.6100154157655678,0.667271292648937,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,f hydro,0.08452076895460169,0.09928856000649407,0.13343458464897381,0.13345944190179757,0.13348119621308058,0.13349903423154877,0.13352342334429532,0.1335473435185406,0.1335673802337584,0.13359772087514177,0.13363204890019748,0.1336668144862508,0.13370739767793346,0.13375751155929308,0.13384730441163006,0.13396528004485128,0.13405911989012986,0.13420126626863374,0.13421690503726308,0.13424093563141395,0.13418841338144666,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,g wind,3.5999986776807888E-6,6.82049199937733E-5,0.004453667327834089,0.00907713394646627,0.015484100426022614,0.027119862480705522,0.04613694531879647,0.07208953065894785,0.10165852107479126,0.13816219574438054,0.18089029411974608,0.23111074305506918,0.32235071105840624,0.4164391855567568,0.550076713619964,0.7040362048180172,0.8655402294189698,1.032777095438508,1.1516345098811085,1.227054630060997,1.268174070148318,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,h solar,3.5999986776807888E-6,3.23076409146583E-5,1.1143179717161242E-4,0.0023001585185401,0.006541913607069804,0.014933563202820492,0.029509997069627498,0.05129984339784323,0.08374933900340872,0.12574577172752957,0.17983406109776542,0.25470146173713215,0.3769756756579506,0.5042854494273925,0.6003010071453538,0.6526364587153033,0.7005455936662897,0.7570056408537172,0.8002517022270067,0.8350845535449288,0.8923829808997576,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,i geothermal,0.018446393224439018,0.026201496781785318,0.023788891409087912,0.03290007535571296,0.040434466439674584,0.05010026871576026,0.06177986198369674,0.07396383850906295,0.06772322743292679,0.07609385718599176,0.0861178437530611,0.09570156227840729,0.09701770595123117,0.09705406844044463,0.0971193220358146,0.09720502515308042,0.09727301490067294,0.09737615601338213,0.09738740303625329,0.09740504047209765,0.09736672957215137,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,j traditional biomass,0.27636,0.266313,0.259741,0.24419000000000002,0.24407500000000001,0.237204,0.22836099999999998,0.218137,0.209977,0.199819,0.18711440000000001,0.1783133,0.1667795,0.15322940000000002,0.1463179,0.1359169,0.1273593,0.1182093,0.10999700000000001,0.1003744,0.0933012,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,a oil,7.311533552925424,12.455905385749725,15.52050098458582,17.22869020061998,18.758771345351033,19.992019022306696,20.877740545460778,21.421668154160525,21.752629330855953,21.8036808613953,21.671828739151206,21.57851748241527,21.008614311091126,20.50044614141517,19.487743177379702,17.912506663308395,15.308887376158223,12.747172903205714,10.516804625686227,8.439191942870696,3.8244534320476915,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,a oil CCS,0.0,0.0,0.0,0.0,0.0,0.47696120112245527,0.9363122844172448,1.2749672829540206,1.5553838863617124,1.7442044677385544,1.8718947229417011,2.0714333170665378,2.364288299839346,2.544924759347946,2.748609460075232,2.753632083955215,2.220958733973484,2.044709947887933,1.542590815401084,1.0568049281350809,0.43946461286445876,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,b natural gas,3.0568917398915625,9.226039633751421,13.13160935769114,14.364506618445855,15.70591267121568,16.863318658166143,17.98542707933379,19.006380915165135,19.690673865425143,20.314826285813734,21.015844556376223,21.178668459416006,20.65734822220466,20.22855014061558,19.250561982734723,18.21041038789303,18.055880652663724,16.00810118037302,14.344459241450444,13.310046032465431,12.31713408666706,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,b natural gas CCS,0.0,0.0,0.0,0.0,0.00153613262072236,0.3057502737661217,0.7582386170324869,1.270475784333312,1.813994506237261,2.351787884313287,2.8524486989378715,3.4319491274341516,4.253206574118453,5.133586762415664,6.105797032040493,7.1760328896407355,8.412746427656062,9.868486785249114,11.405381443589249,12.627826189779093,13.694509589627948,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,c coal,0.12511742897225162,0.382828531088933,0.3946494465221019,0.44666000104093867,0.4820407099376633,0.5182442537559268,0.5633132565852408,0.6078331313515439,0.6346162937816926,0.6514160297548571,0.6588709166382906,0.6330640726373575,0.5988846122021776,0.5454439562339567,0.33035697773470696,0.18409553462699912,0.10600366525988693,0.03806328738724683,0.01891443770889269,0.011631442548173004,0.006704709120223248,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,c coal CCS,0.0,0.0,0.0,0.0,0.001821607959109537,0.007198397870200052,0.01752921805401367,0.039068674147099594,0.08328490119438456,0.14915632536703907,0.22451974460185561,0.3085674676250825,0.4053630680937918,0.504017479684769,0.6207956681481692,0.7546684164845662,0.9170231394259014,1.0632770810487389,1.208835173011726,1.322161179964478,1.429236758441486,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,d biomass,0.0198416,0.029732932740743408,0.0262850758416495,0.0354039134595251,0.10632796949846295,0.20433534220576444,0.3461590640888383,0.5562244614391059,0.8452875746964863,1.1547339892212416,1.377243687301445,1.533353932916581,1.640826703487051,1.6927885998497973,1.7074124435292197,1.649802361198791,1.5846445413698702,1.0890172329787038,0.07658704910928255,0.04551830866336856,0.03735205076465426,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,d biomass CCS,0.0,0.0,0.0,0.0,0.02145489319217785,0.07057733722984727,0.16130765359349575,0.3371906438760868,0.6694374224597663,1.1313838663027416,1.5800988030217407,2.0819528934729368,2.705577744807605,3.4651266275813746,5.324623594125292,8.596338612697776,12.77211008969466,18.41451799459582,22.442151056401656,24.84574462596714,31.842682767383685,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,e nuclear,0.0,0.0,0.0,0.00761242277673438,0.023071707156664182,0.05071369132956511,0.10663742599574338,0.18702405836068312,0.2806175466266231,0.38431350439051654,0.493309336107795,0.6202133872683093,0.7978155664458063,0.9963777440216279,1.2327939746001415,1.4969123369310293,1.8164229534519183,2.1831955442635467,2.583559441949013,2.9408127802779926,3.3032035261773682,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,f hydro,0.042893528714851914,0.09915586860879075,0.0642237853985536,0.08552542178294076,0.10699057372490652,0.12845523801624442,0.14991901151805578,0.17138802905217682,0.20310143896364877,0.23484268319680918,0.26660935114734513,0.2983789667562879,0.3302087361828015,0.3620893518960883,0.39418902749710627,0.4265112422745005,0.4587233361808456,0.4910981370162844,0.5229361072007865,0.5549067122183601,0.5548590282238195,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,g wind,3.5969316197996028E-6,3.0585793614640316E-4,6.262213964364395E-4,0.00972508736898434,0.027931735372042896,0.05780108754792428,0.11570495466429524,0.19631122715251487,0.29662837986620694,0.40654731511323916,0.5199438077982572,0.6533799744867413,0.8427816484813337,1.0444845276283312,1.327221414300307,1.6726099746736045,2.1217817822455904,2.649510423741005,3.185352747886891,3.6367508813860647,4.025646896673091,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,h solar,0.0,0.0,2.519285501764536E-4,0.01678333383255698,0.0503093781573046,0.10819567101725698,0.19611369633581663,0.3168069020092896,0.48060725591232334,0.6760922889750891,0.8984991914949131,1.1946677766188276,1.5913488361510795,1.9945280195224133,2.348467369297203,2.5747777239358736,2.743225244795313,2.9507896111551406,3.1237399389589293,3.2604360524679503,3.437949766396391,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,i geothermal,0.0,0.0,0.0,0.01080646464192928,0.02490392229615291,0.040462349366051135,0.05649786746965572,0.056513657812779616,0.056533742838125484,0.05655922603052085,0.05658507311154046,0.05660456457749022,0.05663242631970706,0.05666539760522492,0.056724956233272755,0.056809141293599166,0.056877266491794504,0.056948791127343704,0.056957072627634345,0.05697673136610379,0.05698110257361711,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,a oil,0.45759557857354205,0.7183564674897136,0.9563633315620045,1.1287045360838106,1.316969107791248,1.4458010154718932,1.5782562171504428,1.7210241818793892,1.8831200637691112,2.0488618359172905,2.2317976778538116,2.4502337171589383,2.6250914084739185,2.8338421392353506,3.0203017460888817,3.153783823200263,3.001042697144891,2.9802267963243882,2.952375839558455,2.893302003980436,2.68093661519304,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,a oil CCS,0.0,0.0,0.0,0.0,0.0,0.048234257301576905,0.09044028317547877,0.13074351582631646,0.18279304225805623,0.22959311674706107,0.2642989342715015,0.29984129931159675,0.3355170231358573,0.3569362045943114,0.369196342654083,0.3608724579057036,0.2672698436149909,0.2777729727126429,0.23765477681652994,0.1927914078274701,0.15257926657514834,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,b natural gas,0.40399135822816395,1.0777737197751878,1.130629742393182,1.3775151741452305,1.6756426205399677,1.9915898573582598,2.3737278100297594,2.8511763450533683,3.3922083237525773,3.9911756266295835,4.665457304975712,5.270592706226986,5.7972730565157935,6.312747863754362,6.623179704527511,6.880845854172809,7.276048822383639,6.902323089078443,6.56847161249369,6.363563367205419,6.010654878010094,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,b natural gas CCS,0.0,0.0,0.0,0.0,1.0506307684222E-4,0.030726640382191837,0.07561396536258966,0.1299810579773374,0.20095429781016846,0.282848666708798,0.36228919174366364,0.44736373860078704,0.5415522816942459,0.6322118158331965,0.7204495374574093,0.8258460739457801,0.9539170274791038,1.197668424260418,1.4266096860876525,1.6177038011628733,1.809587338870771,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,c coal,0.08380380033251461,0.15057040716455647,0.17120749708144317,0.23612564375382178,0.26299454503864067,0.31116429781646604,0.36568848342435656,0.4268298818050162,0.4742437042321312,0.5208705224543346,0.5679210603962699,0.5688340457456285,0.5690022281642346,0.5649175081055984,0.48700030994280075,0.41344543661852884,0.35386509651415926,0.2198851328281333,0.15296955629182768,0.11702774361546597,0.08508832966336463,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,c coal CCS,0.0,0.0,0.0,0.0,1.4814242835586E-4,5.884468976503048E-4,0.0016539164670782498,0.003965091643226584,0.008821194209060983,0.01625447028575135,0.024678803698191185,0.034465562907366326,0.04515989121501084,0.05563312929025483,0.06996721595214109,0.09087605465535713,0.11937438648679057,0.17669670862850193,0.2381270776184788,0.2961548117786257,0.3539778572588773,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,d biomass,0.101175602,0.14935700000000002,0.1634214,0.18767011513154142,0.2743073083416296,0.3702207004523162,0.4982082504696871,0.6627848445943936,0.869151174677401,1.0995380130356083,1.3230101514200028,1.5580514734177824,1.789550749190601,2.0039309511280496,2.1327382009586326,2.05418858556219,1.7724030124076728,1.1227514604327136,0.5470427562193235,0.31485601475616276,0.17802788857946394,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,d biomass CCS,0.0,0.0,0.0,0.0,0.00244868253311626,0.00823399673531485,0.01982563832962047,0.04249446290036673,0.0867075338442306,0.153234175293597,0.2296093199761698,0.3295838764914639,0.4521215167041768,0.5953039698172976,0.8358330392007108,1.1664880947509495,1.5229001891668885,2.265069106335037,2.9999015706999264,3.579080809155991,4.371190900691672,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,e nuclear,0.00105480046547632,0.00894241987724311,0.012311984103135939,0.019248409160494914,0.02668613634411564,0.035498304635833644,0.048732913674472744,0.06583703879465466,0.09053636360510904,0.1238660661647233,0.1647916982675581,0.21708113243546992,0.2836504536333448,0.3615034740517237,0.46089622128002256,0.5814755119708358,0.7352954406895573,0.9331771988836558,1.1149084510999896,1.2715224734742376,1.4219256227341128,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,f hydro,0.06093002688800963,0.1111032469606975,0.11451985213540682,0.11770588309676784,0.12092785445204925,0.12412451749733998,0.1273228906101465,0.13053395342311017,0.14020778692012478,0.14989435129150755,0.15960113052846742,0.169293109120932,0.17903194567448147,0.18884150256790116,0.198670596619572,0.2085390592477438,0.21846467448301526,0.2283446735469018,0.23828164252367914,0.24827042652866851,0.2482338752064136,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,g wind,0.0,0.0,0.0,0.009322662340910037,0.027824821693501235,0.05596271147270672,0.10354864054081316,0.1691952103949599,0.2649792794929509,0.3832988232082636,0.5163641696910808,0.6687028545278916,0.8354129734358244,0.9939718463034082,1.1537085166114955,1.3204941611198544,1.5014889761925079,1.7598495862910246,1.9719857745881793,2.1392109788910934,2.326468702268095,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,h solar,0.0,0.0,0.0,0.007087281921058211,0.022885782861149288,0.04928784829066041,0.09588070796746288,0.14603377300501091,0.18692395678022677,0.2462504181024704,0.32556065218557556,0.43484801812351365,0.5835391672980362,0.7768089878320216,1.082410644410378,1.4871754790392404,2.015082089212755,2.6866227967392793,3.271152703116937,3.7333154496964496,4.148037325302201,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,i geothermal,0.0,0.0,0.0,0.012043761997757165,0.029169787154784,0.04792145157982108,0.07024308446984635,0.08058425594237767,0.08058775460781999,0.0806064523353029,0.08063805325280772,0.08066713608185638,0.08072115634375814,0.08079713089149873,0.08087164770310142,0.08095579754316216,0.08106281324104032,0.08113448717766855,0.08121569507081738,0.08130429840892585,0.08129365181397269,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,j traditional biomass,0.6844110000000001,0.9536132,1.0434866,1.0159999,1.0104062999999999,0.9784512,0.9130938,0.8439159,0.7796411,0.7061153,0.6334372,0.5774204000000001,0.5210178,0.46247570000000005,0.42316122,0.37767851999999996,0.33225655000000004,0.2896376,0.2452319,0.20461200000000002,0.1738857,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,a oil,12.50879260061553,6.9435108333787845,7.3525398635544885,7.538232292476244,7.396066187941171,7.601410440082483,7.6808382590336555,7.627479748603004,7.506514447334463,7.26698617215791,7.036089391715705,6.895297994073864,6.7691202191551865,6.643456653579806,6.282682850686819,5.687844337145674,4.5426889040961855,2.777366652267616,1.2220135455059429,0.4127364166066334,0.0560997189666974,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,a oil CCS,0.0,0.0,0.0,0.0,0.0,0.008795659591728702,0.01559473150042737,0.01812506350772812,0.02197548923624608,0.023349715642950367,0.024578781430321932,0.02871020984608561,0.0334321369506072,0.03623654244310596,0.043846910004104234,0.04451323313249878,0.03390244042799188,0.02777768590387385,0.012514753828650492,0.00414303766317278,6.392737007857401E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,b natural gas,19.631882984879084,17.033737847878403,18.58638383630864,18.115228504695338,18.11578178471991,18.317282732640336,18.138111457184607,17.682384501056823,16.884404221674906,16.005923225723482,15.149783051920377,14.08995385531772,12.906116896514373,11.873930450792724,10.42299623081032,9.261690344103561,8.909122122322827,7.596545715614633,6.473271678261176,5.625727559666383,4.653445081883831,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,b natural gas CCS,0.0,0.0,0.0,0.0,0.00163519549132162,0.20066763271563354,0.500425911591254,0.781204728009792,1.0824690693366383,1.3402442417154214,1.554826202870968,1.8086344124903737,2.1038237516190392,2.3727379845565952,2.640618824254441,2.7742111861430034,2.847385760648548,2.9653243338154347,3.0379548944500367,3.049234372471704,3.035040031999718,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,c coal,10.252523918161994,5.202680549072172,4.699684347994367,4.668203619570382,4.145522768374591,4.040489667108539,3.860530869425217,3.6379718162642503,3.2867501816537303,2.945850357477336,2.6350950306875296,2.2156354769560904,1.8632123295938534,1.540009673246646,0.9175506177941898,0.5705787108342649,0.3904447810505038,0.2149665844616939,0.13555128389733054,0.09131796165840628,0.05408709813419458,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,c coal CCS,0.0,0.0,0.0,0.0,0.00122257410565443,0.004561217848536157,0.0112325329586183,0.02268908539718821,0.0448299672659655,0.07399685441661778,0.10596050187570631,0.14266601478745286,0.19110816208959805,0.2407162988018338,0.31842052422561334,0.39302766523431526,0.47359675480666985,0.5719849544154334,0.6549215460725107,0.7030653254337885,0.7372018797525769,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,d biomass,0.6937325995513319,0.3616886010427503,0.369641223512841,0.36415093611402904,0.43031052290654387,0.48560341343876545,0.5596913161319174,0.6551585261326853,0.7938306697980578,0.9262812285626841,0.9916641896202409,1.0424173836110566,1.0741556285163854,1.0729605860672178,1.0404879662361164,0.9336993702345211,0.8262745480074557,0.4436114161604382,0.15717812881674742,0.0938308004786076,0.051076484429103675,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,d biomass CCS,0.0,0.0,0.0,0.0,5.694049121784E-4,0.010555357873098603,0.0349539079452153,0.09165683306021638,0.2078151499956864,0.35675116905545046,0.48169658234833534,0.6059827755165258,0.7913575193022666,1.0241406199720302,1.6680245434628234,2.776600910910748,4.501907506852547,8.106066576695886,10.777743266860897,11.934521467011722,12.318451460646108,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,e nuclear,0.4461818447562886,0.5635871479552887,0.6476205170573097,0.6937377666598953,0.7553806665062561,0.841569632038695,1.0075464460902805,1.1898366660168798,1.3892577707825258,1.5650738006880636,1.71848745518127,1.924713389145162,2.188481555742228,2.4457945738384392,2.8216819252857896,3.1111706653787343,3.345047722063486,3.633405331207094,3.7745958475960886,3.816870014162593,3.923628670934869,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,f hydro,0.6257245877214083,0.6512091657034871,0.6327121578594416,0.6706046736906496,0.7047291315951887,0.7439455105848054,0.7774249907524653,0.8115055567320235,0.8492409526996733,0.8880785044191842,0.9275785235086234,0.9664526347211339,1.0059743573243702,1.0459659534710806,1.0856892106874643,1.1267914887336012,1.1681553768450297,1.2105322814049755,1.2518915357515668,1.2936830263179924,1.2927054311999637,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,g wind,0.0,2.6377680692987458E-5,1.5196616027886081E-5,0.01023549105353194,0.03168488531963056,0.0637577056618547,0.12488595073692568,0.19738559799103356,0.29524721334727655,0.3921247998639963,0.480906908082304,0.5960403203342725,0.7267443067798697,0.8503680224362175,1.0774937524197805,1.2891149039735534,1.4732673848896707,1.722987125198447,1.9034582827685982,2.0276622860011257,2.1643179412565776,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,h solar,0.0,0.0,0.0,9.4040041626752E-4,0.004025096849702272,0.011740272512772062,0.03062304714986273,0.05709141613438882,0.09632386006927661,0.14126131800864006,0.18863650703284382,0.25003343977291365,0.32392997691223585,0.3951227143690754,0.5286255120589302,0.6573140700382906,0.772129261799368,0.9311023358645011,1.0570783080468318,1.149872980911915,1.2517878925361015,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,i geothermal,1.0503278870308836E-4,0.00154141355865048,0.00191526138386625,0.012843126789020949,0.030795030409829078,0.052534750550968345,0.08376959349622869,0.11265141384189517,0.14138789003385238,0.15927590442766126,0.16873831452549684,0.18079029163557547,0.1906292337500017,0.19595476431768136,0.19557400899033717,0.1954607576169621,0.19540143241976993,0.19551130760935972,0.19544918210227316,0.19545114117392995,0.19530088453511363,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,a oil,0.7715063845368526,1.0300200922231282,0.9760254188266086,1.0711316942151874,1.1724613136040487,1.3384458229694507,1.4940725148236007,1.639331195146876,1.761311051298852,1.841310472529773,1.8897192952267792,1.9526447841883403,1.9927166829419347,2.0229827259397255,2.0227714609736656,1.988193813242584,1.8374075235838014,1.72568994349895,1.6362961749337568,1.538813389210572,1.3679506930238614,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,a oil CCS,0.0,0.0,0.0,0.0,0.0,3.9002299841404E-4,6.23577241217E-4,8.298554573892801E-4,0.00109933759405299,0.0013267708645585,0.0015524536845882,0.00201490079223268,0.0023691016401144404,0.00259499921442348,0.00307887962990801,0.00330725356856663,0.0026020500552882703,0.0029299777308065423,0.0024838229778340096,0.0021002650701302033,0.0016526593007677366,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,b natural gas,0.06340162767253642,0.11697330087360758,0.12463327013347834,0.496235213186953,0.5651443359981109,0.6499980794134272,0.7226628616115283,0.7907780956432106,0.8650172662562087,0.9471832981071152,1.0592455147503974,1.1479817665147802,1.218866097237513,1.2780435595572124,1.3299357209136817,1.3746772396246199,1.4313587746211918,1.412080784912553,1.4001157530361215,1.3940424574079084,1.3294486037183197,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,b natural gas CCS,0.0,0.0,0.0,0.0,8.310029850215E-5,0.0015500138379610099,0.0038594893785776,0.00688743302169402,0.010809481186327609,0.01537353095000042,0.02009050066427816,0.027021092830737874,0.03589544698179298,0.045288778619690155,0.05986257439454911,0.07832933739119274,0.10073453204682647,0.14475842594749733,0.17739915133766057,0.2039802327056643,0.23523262218904964,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,c coal,2.8927040061502223,3.6416418800505155,3.8815003958839016,3.629877485530064,3.628292183198865,3.8460207991878517,3.9863268798934093,4.011587113472703,3.8838646047396166,3.703336726344605,3.5238494831775444,3.2770539393643148,3.0465553796303073,2.811462025852807,2.290646113328904,1.7762425966609383,1.254815661787961,0.505013143977159,0.23436153119519262,0.13520440063414949,0.07636293444281453,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,c coal CCS,0.0,0.0,0.0,0.0,8.710228066182E-5,0.005198792814996727,0.013812076956997,0.026581215520687734,0.047559534146166635,0.07694325766412843,0.11158033912145199,0.1703971970066758,0.24983452041214763,0.33017415661136784,0.4475984567712418,0.5749588887701218,0.6997206964672497,0.8753763484072487,0.9712331333838997,1.0320354777693157,1.0735081948230276,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,d biomass,0.20193241,0.26179245454836836,0.2772379581649171,0.24799046764413235,0.31062831666716695,0.37344014980564605,0.4346971179166689,0.493886121183479,0.560201093993035,0.6207190012519833,0.66257795987379,0.7151895878179567,0.7452417872809569,0.7622639584877625,0.7800782199463191,0.7366041097071143,0.6373378764787372,0.4476844832073041,0.2117937580554354,0.11792821541165842,0.0646641564097486,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,d biomass CCS,0.0,0.0,0.0,0.0,8.72001067977989E-4,0.006740070849204693,0.015499902438092118,0.029905112359083264,0.05516517093106529,0.09239744034891413,0.1338932872610342,0.1873913791682974,0.2534736557470709,0.3293619694621879,0.4645424477962012,0.6349780966432881,0.8211050113191198,1.0624701099782328,1.25649199287703,1.3514449378946483,1.5238801038411547,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,e nuclear,0.030416406437838432,0.040654541817377134,0.04355274763513808,0.04040868649246898,0.0389176194957067,0.04181588187593213,0.05107321443752139,0.06625266270442834,0.08534881301521241,0.10796067079745267,0.13163478672303405,0.1641420258434718,0.2057456823026355,0.24896270444179835,0.3083832187000553,0.3841893250276911,0.474339047486291,0.6091860380820325,0.6894891815667686,0.735986597330038,0.7808803514950463,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,f hydro,0.0036360007695841897,0.00476635797113454,0.007640899128154399,0.00784772725499858,0.008033210125377159,0.00823090202236498,0.00842707288407297,0.00862272062896456,0.00900633558615891,0.00938846736720218,0.00976912110244677,0.01014944394891004,0.010529123546542101,0.010909244667950969,0.01129354291895072,0.01168076415224332,0.01206780056216395,0.0124575184667834,0.01284917873322426,0.013239909950270532,0.01323264661222797,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,g wind,0.0,1.1519883513354492E-4,1.1519086898231887E-4,0.0013156798091600401,0.006808525609990301,0.024372917938399477,0.05341463619236193,0.09130266040189566,0.1389887228098753,0.19380758167102724,0.246274380138187,0.30940902410235227,0.38635476417068815,0.4571521282266741,0.5236161658177033,0.5709248215016315,0.6226305824517451,0.709348010331993,0.7190884788655499,0.7017145013613024,0.7131190908860224,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,h solar,0.0,7.559959180587706E-5,7.559370779342983E-5,9.6714554043385E-4,0.005331221456349398,0.02017344486723379,0.04641922751367243,0.08361149061630246,0.13582707142164513,0.20059941865332903,0.24793967278233978,0.2629781331799238,0.27243681793511065,0.283019951181545,0.32001828613887556,0.37012768025474535,0.4439054512375576,0.5642591513694323,0.6354645258994265,0.6724264525901628,0.689424438911237,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,i geothermal,0.0,0.0,0.0,0.00134046186460207,0.00526790295295295,0.012040499269330101,0.015482903101929759,0.015493938541784298,0.015505496655994211,0.015513829069297689,0.01551917608682836,0.015523476418023591,0.01552664776177631,0.01553009508453942,0.015539196647384781,0.01555146118521549,0.015562836633153259,0.01557686617456343,0.01559234172499647,0.01560596223325723,0.015597388847513171,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,j traditional biomass,0.233914,0.305578,0.323662,0.325136,0.338574,0.351426,0.36252300000000004,0.373532,0.3859796,0.39734479999999994,0.4087008,0.42006010000000005,0.4294378,0.437199,0.4453363,0.450522,0.4521872,0.4510725,0.4469061,0.4392919,0.4347433,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,a oil,0.9761874185405249,1.473347404553573,1.948421464733007,1.9771235228276374,1.7380382703304822,1.824616982639414,1.8638489556746591,1.8702553793478405,1.8425316307813457,1.809567236352121,1.78323240429588,1.778421915965248,1.7473135746001922,1.7173827251150482,1.6025945713136367,1.4510506805893852,1.2188397508596724,0.8613081005105799,0.48338421584668867,0.21554915360893195,0.043571226523126026,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,a oil CCS,0.0,0.0,0.0,0.0,0.0,0.017827618355530508,0.04398957760322946,0.064803198973973,0.08187215172267433,0.09581726702974964,0.10683268436487046,0.12525026661780594,0.14857788634852223,0.16292023560003807,0.1785811169208246,0.17825115613552578,0.14970942622324301,0.12201650634403746,0.0705407776020018,0.030972466795706328,0.006485740031843544,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,b natural gas,0.8302300087934155,1.1554285909599147,1.3100134741490888,1.1135310826379998,0.9873364371624358,1.0631340195108587,1.127781408213233,1.1898727065064647,1.216910224421359,1.2674912565666396,1.3728181446267458,1.4290723037110247,1.4563554922445585,1.5133100001660598,1.486881023262349,1.4755479900880215,2.0099990303189736,2.081361273393417,1.8725977919221453,1.7066391737264708,1.4970933796467527,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,b natural gas CCS,0.0,0.0,0.0,0.0,4.7047557675208E-4,0.011800380693655077,0.032722546278113634,0.05479280206982185,0.07665115166462745,0.09892039460502777,0.11844917567720956,0.14382784262231058,0.1772384374616191,0.2081254388175825,0.24480875633432556,0.27389578114866336,0.30026653321804386,0.33024250183036824,0.3615982575679193,0.3850002305583298,0.40918771690090516,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,c coal,0.01939828,0.0015823199,0.00838015,0.01195227161649521,0.010067709702658191,0.01376579167407891,0.0195856755208676,0.026242753055998887,0.03158795782980062,0.03631989698853921,0.03981206841632913,0.0404554960581092,0.04068633236800532,0.03944725560631176,0.02718560081264112,0.01663422915625383,0.009951910777689817,0.003103951266893189,0.001370215475093655,8.203940896270951E-4,5.078160501176923E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,c coal CCS,0.0,0.0,0.0,0.0,3.5239268298148E-4,0.001091823658352622,0.0027810556654805025,0.00585045116325968,0.01184414581031865,0.019882661006935816,0.02856832652781597,0.03761076873031635,0.0486212195934703,0.060621588452337324,0.07507357163355485,0.09044457024008334,0.10985905347040957,0.13103650499571276,0.15457920807432513,0.1711431507565086,0.17790259597108968,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,d biomass,0.02514174474505075,0.03209316485399212,0.029285819982187614,0.035728510877628294,0.030249888625747328,0.0460502961598499,0.0733486750700788,0.10660197770468793,0.14556048351959128,0.18231189237771814,0.20630706028297072,0.22420607517334418,0.23695306709364658,0.2438859740435372,0.2368325224120352,0.21664318031248675,0.19897298435277386,0.1356990734919972,0.08576343871417742,0.0706472628376442,0.04203344259559249,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,d biomass CCS,0.0,0.0,0.0,0.0,1.6388685256457E-4,0.004224952209423664,0.014430941643135232,0.032017558941984374,0.06381172501215553,0.10327621270566106,0.13870884521196508,0.1814096149440496,0.24309580888461355,0.3312691487327559,0.5310659809233923,0.8531697392304596,1.2618748899340775,2.056277151972159,2.801497888141462,3.2942724219732056,3.633301040237037,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,e nuclear,0.0,0.0,0.0,0.0,2.2087480129723E-4,4.3235641637597E-4,7.0380462359651E-4,0.00103062821035284,0.010077661649458908,0.027806369690893337,0.04980000755011633,0.07828652045225706,0.11458104881445265,0.14863116078789557,0.18774134749035568,0.22550407584061494,0.262091608795978,0.29881443985258693,0.3359030649574831,0.3659345783928441,0.38795055325863825,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,f hydro,0.13536035173228195,0.28053777217130244,0.27939733465435307,0.28288063395501767,0.26841305666018295,0.2905751989964266,0.29437782325887474,0.29817300107095457,0.3045780547824552,0.31103406987728255,0.3176614379764121,0.32412683233587986,0.3307636105478194,0.33750152109229337,0.344675381726941,0.3524118481071651,0.3599383489131091,0.3685349872041566,0.37529210520569156,0.3823473255136454,0.3815128143688362,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,g wind,0.0,0.0,0.0,0.00345982458702925,0.00336090236316631,0.01196133024076554,0.030873955673492385,0.05493166891149391,0.08276969398235998,0.11120782061732842,0.1409459753561482,0.1729132405814497,0.20885976323882643,0.23637844492284674,0.2773990524452929,0.31519012747895386,0.35395818355973346,0.38274550261253937,0.3976368358542266,0.4007433694339644,0.40258325852141363,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,h solar,0.0,0.0,0.0,0.00246703066243294,0.0030439366203399657,0.009820536671279452,0.025064899402327742,0.04651077921400665,0.07386717720404054,0.10495341428195298,0.12954718389695072,0.15114485482857393,0.17495381820871458,0.19743630562027353,0.22614484866441723,0.2531371854390238,0.2837742645501425,0.3151118892939899,0.342619581256185,0.36156257572216877,0.3797970504928431,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,i geothermal,0.0,0.0,0.0,0.005134407598889839,0.004813510932399829,0.01454528498812902,0.030274930619473162,0.04546338516704018,0.05921511512065332,0.06770798503746087,0.06877623281997684,0.06884365857626643,0.06894771975586121,0.06906296542074494,0.06926561104587585,0.06957123956373937,0.06982890972807414,0.07027910710410974,0.07037124508591085,0.07053206313411524,0.07036248809859655,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,j traditional biomass,0.017020091199999997,0.0220903096,0.0231320917,0.0220926234,0.0237500032,0.023711831,0.0235467798,0.0232500702,0.022497609300000002,0.0213021067,0.020226639,0.0192353214,0.0179198146,0.0163853068,0.0149378053,0.0132696155,0.0117468833,0.0101881221,0.0087990641,0.007531786699999999,0.006365063,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,a oil,0.8934533853200942,1.4945099370647346,1.9371614291320025,2.258049610262665,2.46458215287441,2.7227296433653843,2.9085186646575285,3.029116475075694,3.10763666026353,3.1422389124723455,3.138255373375801,3.121536960311259,3.048844517574083,2.981139781552844,2.819780298542346,2.5936944377644253,2.198060077463868,1.4755704729419326,0.7154561877032013,0.2656292807886628,0.042259806410132834,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,a oil CCS,0.0,0.0,0.0,0.0,0.0,0.06995746954129038,0.1316683014086172,0.17288205647522714,0.20156180752263708,0.22572198039840788,0.24343239489169594,0.27019804282744325,0.3072245422444616,0.32793870802535047,0.3487647413981247,0.33241904085924173,0.24839827836301348,0.18187505964792103,0.07927673556182616,0.024850923636464434,0.00376279207479988,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,b natural gas,0.10200850797023177,0.4439043630591537,0.5534298525785837,0.7874576303070544,0.9713719294471573,1.1901315732786197,1.442706025124352,1.7152871308105393,1.9672448871013075,2.22771876288036,2.5142982032087944,2.6648182468287174,2.688852806684746,2.7200184409395805,2.6423220091958153,2.5562882312871458,2.8695899440353174,2.7375707711244095,2.5184510669483613,2.3881387600892,2.223910605908469,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,b natural gas CCS,0.0,0.0,0.0,0.0,0.00237631646156852,0.05796529956672116,0.14609371980132543,0.24557674395826332,0.3446779068722961,0.4465888431275698,0.5453698616763168,0.6556745936965082,0.7992253934537565,0.9452697520642913,1.1082755612740107,1.2527442753148108,1.3765308205055462,1.4843483666812642,1.5878009353297466,1.6422560486261244,1.7037882836532974,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,c coal,0.11513443424820587,0.15273406948861334,0.23103571064403614,0.32970616334052244,0.37742754617488045,0.44855477771729235,0.5298746021207631,0.6006912317401488,0.6380273093015388,0.6613882566549806,0.6745059308148698,0.6558682661640403,0.6202091933333138,0.5541395852967909,0.34312890119581524,0.15516159846581193,0.07128688067551141,0.018821654652714643,0.007612616097441077,0.004271149633243905,0.0024851977301513953,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,c coal CCS,0.0,0.0,0.0,0.0,0.00187264391570725,0.0060807710009943205,0.013649823725950597,0.025286388888464167,0.045690236273314214,0.07457963216370707,0.10885044417946653,0.14736550162101025,0.19761617223277375,0.2492451150881327,0.319513201637478,0.392594430376858,0.470695420018617,0.5379802582078669,0.6045731654761967,0.6428832737614477,0.6629354368163782,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,d biomass,0.15283509493791622,0.1959518642335034,0.2646476204951636,0.3178794862049386,0.3898397014061165,0.47798331551789447,0.5486136899862352,0.6131838501476463,0.6744068538250061,0.7277661388676568,0.7453083503301666,0.7479338896074254,0.7309255640772481,0.6989210326631511,0.6303780102281342,0.5381635184154857,0.4693622893194662,0.3164086854894077,0.20407694288159045,0.16812572043363597,0.13909639735649063,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,d biomass CCS,0.0,0.0,0.0,0.0,0.0035926572312332894,0.01464048425703463,0.032726128816662585,0.061382401051428205,0.10993718196841319,0.17800628429856863,0.24749375772210022,0.33188316470526813,0.4436104061104859,0.5783125905950715,0.9124082721662266,1.4520968089259227,2.159095258214276,3.828046137632564,5.256051835255168,5.976264868547155,6.288526791200267,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,e nuclear,0.0,0.0,0.0,0.0,0.0011155630333868,0.00298677979684517,0.006645610199378819,0.01198066458290253,0.020695674629644962,0.03300522387623981,0.04881612384698455,0.07093381301008492,0.10171229545175121,0.14086427334064808,0.17430437707118693,0.20791549594886563,0.24347085032026342,0.2764738031320417,0.31194808918273853,0.33988802044514355,0.3625649869008797,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,f hydro,0.21793360967303488,0.40518639838277964,0.4241362807044356,0.45524970190549485,0.48970598408410193,0.5232726280073313,0.5542905148684824,0.5854707105673465,0.6418608437807853,0.6985632548143156,0.7551626687707571,0.8115999514755039,0.8685183841781838,0.9257253537808793,0.9841019081280765,1.0442083548572223,1.1034707954469585,1.166836928426581,1.2230604211779357,1.2797739303485123,1.276889423171659,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,g wind,0.0,2.9123891562203952E-5,0.001484265441297874,0.00417524146937864,0.009008284427274943,0.01918138278441018,0.03796036269311626,0.06292896538127643,0.09018103579439542,0.12230724451100873,0.15853733193064956,0.19907839896655957,0.2527699790519059,0.30844790293403535,0.3938419561434541,0.4830017401843802,0.5683392454101612,0.6337347174373027,0.6844240390148489,0.7061818561389746,0.7216310243736745,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,h solar,0.0,0.0,1.1021752871315593E-5,0.0010053240076504267,0.004047342325767865,0.009780521665613363,0.019350382743132902,0.03234774796177865,0.049028218652790535,0.06932964314807796,0.0935239005622198,0.12344570775655073,0.16178329168700653,0.20162839432164947,0.26004505840827197,0.3175814146622819,0.36390323559100757,0.38740367166274275,0.40291834185151354,0.4134974822499943,0.4210902061485389,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,i geothermal,0.0,0.0,0.0,0.00223139389788331,0.005792193832362351,0.013899975160112769,0.02762437072880944,0.043684758712097364,0.05970450657618914,0.07468586051070364,0.08900262115624293,0.10162171864420132,0.11526693762525549,0.12744556499575366,0.14698044698324134,0.16473884625282076,0.17921468412261302,0.18749642794068017,0.19070292659537058,0.1885037082085243,0.18673403828682428,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,j traditional biomass,0.2725087,0.2679878,0.3247083,0.3087841,0.3047936,0.2828474,0.2589216,0.2361927,0.2166169,0.1967645,0.176867,0.1622295,0.1462829,0.1295812,0.1172996,0.10322999999999999,0.0913624,0.07979800000000001,0.0688768,0.05815877,0.04990274,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,a oil,0.23250753670449403,0.567667484543897,0.6391337996654843,0.8427078885914198,1.0846200487320201,1.2948026728366038,1.4882862500334955,1.663163836694612,1.8477091729786104,2.0315767091454235,2.219291896396407,2.426281799665047,2.629751915815344,2.836581501097155,2.9971497504626936,3.1213679228404225,2.967714607321994,2.9653773877932657,2.936901045064596,2.880458174858538,2.6903318754237517,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,a oil CCS,0.0,0.0,0.0,0.0,0.0,0.055358038286078604,0.09020100984356036,0.11200334180143094,0.13341253988389243,0.14672386845381022,0.15255696028433924,0.16557635051852726,0.18203540476973148,0.1873585750730768,0.19567204902745258,0.19288128581090008,0.13626036161188038,0.14948101496730853,0.12435079734523319,0.09134869710261449,0.0701793500905931,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,b natural gas,0.16151927000089172,0.4580893523326938,0.6993258990470141,1.063219352276232,1.4932901099001274,1.8682690448135526,2.284628861335353,2.726180777195961,3.159639611303454,3.634131535387633,4.174100437012695,4.6210342060533405,4.967822546674881,5.297935111984805,5.451764669978494,5.612109199559298,5.9466596855422065,5.498379480752326,5.055484559484164,4.801498515266149,4.54072378181595,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,b natural gas CCS,0.0,0.0,0.0,0.0,0.00130117747204351,0.11583508236712799,0.27553571588940867,0.45363407961937635,0.648574781001244,0.8437832562107487,1.0229291099656475,1.2158823925264641,1.4272146030705346,1.63140217214069,1.805364062389457,1.9955178343495403,2.254076746188002,2.746436467868877,3.262407603891008,3.6738041296295205,4.0046356733980355,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,c coal,0.018663211,0.040049285092600306,0.05994034135299568,0.09580293951745278,0.1233607601459397,0.16433316983866939,0.2075284196924678,0.2529623480289938,0.2891086912980373,0.3259887216721764,0.36310461268655314,0.36112083656441246,0.35687799015469784,0.34812369802663595,0.27706605029898246,0.22336045434365556,0.19115801271845306,0.12597684644063553,0.09632229657839818,0.07925204256412983,0.06254148247444069,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,c coal CCS,0.0,0.0,0.0,0.0,0.0010469258011555401,0.002493383615775847,0.005680366977309816,0.010912675452825558,0.02139058924354244,0.0352612939969963,0.04850929300524713,0.06365444578455219,0.07669380326685515,0.08407689333222226,0.10085808092662281,0.12002093882481242,0.14432782264089525,0.1915092411912214,0.23786998673019555,0.27677972717918037,0.30194658299203053,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,d biomass,0.03912939137598493,0.08988844426073689,0.10029485819111529,0.13075609230625307,0.20269364005403215,0.2896478222256628,0.3860308849279873,0.4900774242706258,0.6063474516704392,0.7319883337154501,0.8423628668253327,0.9584420634724337,1.0753753792239666,1.1762874566078703,1.2108424123786532,1.139515356864725,0.9787602091022175,0.6590255396339011,0.2864269819346367,0.14857237139798957,0.08168363649808558,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,d biomass CCS,0.0,0.0,0.0,0.0,0.0034586527418591405,0.011793239199220328,0.02549556719463706,0.04699733786292983,0.08503300822234162,0.14028129353943816,0.2029593755251232,0.2888875109309076,0.39272831378099265,0.5030065081996016,0.6939139094451661,0.9159211342239321,1.1173153659986585,1.586039277907794,2.0712575815732666,2.4526383804112797,3.0264042195558294,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,e nuclear,0.0,0.0,0.0,0.002428486296854066,0.006042520125240459,0.014102641819613982,0.02920895931447845,0.05118016653017173,0.08016628358566492,0.117129446985952,0.16358770531162536,0.22874720998571055,0.3216008250340993,0.4553258548858584,0.6060122802881928,0.7883111402894223,1.0241058775788077,1.3065806979673973,1.5826959928999254,1.8214705265469164,2.0118046471938755,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,f hydro,0.026807899133668517,0.04630894726013607,0.07103793602356338,0.07486324590332007,0.0789181544073922,0.08293474756892436,0.08693737230025986,0.0909431355700703,0.10286168320401932,0.11483530474727206,0.1268313507294725,0.13875425955499943,0.15086463428678815,0.16313319016976693,0.17548037789206578,0.18833452325673333,0.20166170829276364,0.21511627033707525,0.22823004840864375,0.24110800009726965,0.2404993097033928,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,g wind,0.0,4.920005021062543E-5,1.3119932777518002E-4,0.004131243532051888,0.015255632367717674,0.03638145588721481,0.07388140127046543,0.12668391763025527,0.19883599766720886,0.28991379423071845,0.40039070358297224,0.5444321017904733,0.7369763106554582,0.9744937941382931,1.278651795163311,1.5666468876527428,1.8456307603085862,2.1431383662678667,2.39205086956178,2.574633675638539,2.7424310540921977,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,h solar,0.0,5.012005114952E-4,5.4759719428116E-4,0.0028221875251120752,0.009093978252761386,0.02053382673357161,0.040030227623763605,0.0676255747420673,0.10656610561559474,0.15843713149114017,0.224731384523644,0.30600676091286827,0.3657162291440657,0.429807291362445,0.5446495742944288,0.6961026771786205,0.9063783795394019,1.191891380053304,1.5056909019974045,1.785591803723132,2.033912987892428,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,i geothermal,0.0,0.0,0.0,0.004475887389975651,0.01381854296271278,0.02744142054929822,0.04508710555673287,0.06352160487759562,0.08224233738362953,0.09711548362653642,0.10066821666664894,0.10072313162706231,0.1008940807225377,0.10113742937541849,0.10139067641617076,0.10188405371184246,0.10255629528680625,0.1032127286776655,0.1036439398778747,0.1039298210278788,0.1036634579616866,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,j traditional biomass,0.7144003,0.8983964,0.9657846,0.9093043,0.8663953,0.8018878,0.7308076,0.6658622,0.6125275,0.5590419,0.5056018,0.4667343,0.426852,0.38340060000000004,0.35851910000000003,0.3340472,0.3149119,0.2947905,0.2684896,0.24050670000000002,0.228576,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,a oil,2.1343345036311185,4.389448509696788,4.482800573425345,4.620801579512763,4.812063575371393,4.923208640328003,4.936326042482281,4.851483704493715,4.69723183314103,4.4741777990801195,4.22767892434835,4.0090535863935655,3.7736054706196636,3.545816209969635,3.272455244349151,2.9707485390533837,2.565741490971266,2.2862367993286554,2.080802405106442,1.8960434317715444,1.651185439953915,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,a oil CCS,0.0,0.0,0.0,0.0,0.0,0.00261568364160945,0.00365631779184498,0.00406352558388956,0.004904871301009239,0.00509338753203258,0.00509072228546663,0.00623000058154562,0.00782485968332285,0.00898663317342758,0.01531118716488644,0.01915934847381824,0.01406727315282243,0.01525415109453425,0.012051083120346692,0.009418869559445242,0.009233173875499184,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,b natural gas,0.11908457698371783,1.1700425644437953,1.6448477714684255,1.7674814355785358,1.987095157589872,2.1665313486889866,2.30456270209721,2.405174758703448,2.4680867760350895,2.500950583934747,2.50261151199033,2.430436940624554,2.2358765803356575,2.011775460094465,1.7633231769795545,1.5640361496663557,1.4125464773334921,1.1696922587128122,1.0002094006225282,0.8950589782901598,0.7983295219596591,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,b natural gas CCS,0.0,0.0,0.0,0.0,1.1652195160394E-4,7.714837081481724E-4,0.0017358622984742801,0.00304598524962259,0.005283678350337689,0.008251149408077769,0.011869647215339571,0.01849153006211032,0.028061132723304707,0.03953240010171198,0.0721492387321245,0.1123171474896879,0.15002992858579486,0.1945565256081848,0.2237423458687703,0.24259761564593665,0.26643970530540245,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,c coal,1.113322818593687,2.3021928625107093,3.155535912684488,3.375648756208161,3.3467090579661716,3.382825223814953,3.342816254298351,3.2347764539736477,3.024768988354583,2.7900333959411863,2.5578003023445475,2.262090784628721,2.0028544824319603,1.7448400901342271,1.163826688479854,0.636713468312582,0.33236958730830174,0.11457967892743452,0.055746135680860745,0.03423137014598382,0.020522978293770148,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,c coal CCS,0.0,0.0,0.0,0.0,2.2093378527629997E-5,1.2406194266572157E-4,3.370644364030345E-4,8.731645253645749E-4,0.00209469278304992,0.0038538928342876197,0.0057206523337717,0.00849434997041842,0.01338725357293625,0.02037514543180598,0.045309290528325406,0.08031782740890882,0.11415757421415791,0.14711834794182152,0.16728564926842865,0.17927901014912717,0.19005289542167322,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,d biomass,0.030860647909687667,0.09106146722329536,0.14818332733250017,0.15530128115468175,0.19441037875371847,0.2230064600885685,0.260891600295386,0.3127570468536547,0.3880083366282505,0.46367493774611673,0.5042567659090664,0.5265441733917147,0.5308090302899285,0.5120699532418503,0.4790878427780596,0.4122078600063902,0.3409172288546403,0.2529404351478417,0.08017940134768119,0.03404559200222933,0.024226699379075442,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,d biomass CCS,0.0,0.0,0.0,0.0,0.00143275646624378,0.0034251468961308943,0.007861693933112668,0.01939465237860739,0.04359996208111048,0.07614829767195323,0.10515900922160595,0.1291469255132917,0.15068598969598168,0.17029723056938154,0.23423619079796332,0.33330728669918297,0.4617153920830668,0.5932629074839727,0.697515783930915,0.7077692384941342,0.8134325717799676,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,e nuclear,0.20166795901864112,0.5615476766134995,0.56353171086608,0.6215752753467088,0.6972342430384281,0.7568153788745857,0.8210141974928898,0.8794428603692049,0.9382619802471587,0.9852027637186475,1.0196108998819589,1.07715768048956,1.172205227579965,1.2866066590627272,1.4893657395248703,1.6508979599441191,1.7557466573432041,1.8543192286450052,1.87532440443315,1.8522083303259043,1.8387108266685621,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,f hydro,0.024254808793819707,0.01405178961832368,0.01470087438908199,0.0159858031613104,0.017748256158555412,0.0197122622533129,0.021630531208521462,0.023552178749293204,0.026748014522578023,0.02995632767029118,0.03317567031563323,0.03630306023078897,0.03947909897061724,0.04272232843752727,0.0458626955262509,0.04909074791809318,0.05234214783733162,0.055653975852136245,0.05903569698308718,0.062493330554212835,0.062491845896264275,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,g wind,0.0,4.9735458561276E-4,0.0030963066615410503,0.0044743427622700995,0.00790805383883161,0.011741044158275931,0.017195023762125113,0.0237432275598342,0.02936329650519115,0.037286236588045404,0.043276610285747474,0.05032464389867763,0.05867180958664364,0.06638650006770662,0.08843624225594347,0.11309258498472663,0.13311270865538655,0.14973310420215927,0.15559558692459743,0.15586398315403852,0.14706606833860247,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,h solar,3.813176746962321E-6,5.73870675707116E-5,0.0029257628751247996,0.00403607538355694,0.008019292053979681,0.012758290430941507,0.020306328250465293,0.03064885878127725,0.042842857946340886,0.059591904187242514,0.07606885318313657,0.09624670206773121,0.12054991814392152,0.14373612278673772,0.20329722084774585,0.2708047364228144,0.32967352594501004,0.38438504113984595,0.4134634165389716,0.427778882655461,0.42024814443894576,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,a oil,3.3036032883790374,6.800540899540874,8.690537541771908,9.823335563441118,11.259801119683083,12.677833065608311,13.873468808110115,14.847028135640763,15.660297678010345,16.26808809517953,16.707851585372048,17.096566690715672,17.30123321249374,17.39393105351741,16.852609778300145,15.809725644802308,13.573010130436154,11.658364464725237,9.71813606542121,7.934675812203763,4.88563169011623,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,a oil CCS,0.0,0.0,0.0,0.0,0.0,0.051865643129641925,0.08411379343674781,0.10272402793568645,0.1269334452515085,0.14715148654758423,0.16629617836041882,0.199080680960518,0.24929508718955465,0.2844155277367228,0.33390348888388394,0.3405783862327327,0.26006781118985506,0.2463522191311506,0.18291369030414603,0.12704351343546952,0.06954554696889485,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,b natural gas,0.5677300567290967,2.984787806963366,3.484174855104847,4.3579792605686904,5.391185863115768,6.2306791722190775,7.131645179153946,8.033292972270264,8.888134286491306,9.736490540242405,10.634135985045342,11.231547447485186,11.134541812340842,10.991666463364362,10.60414370917116,10.119302150451075,10.245891436952341,9.353797074089115,8.546472767733707,8.138197955423898,7.800250926111681,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,b natural gas CCS,0.0,0.0,0.0,0.0,0.00114345060842049,0.19551012533674764,0.4925660767539981,0.8320607870994311,1.2269646853334388,1.6433242551914062,2.061913334333666,2.5557339778956423,3.2956710532022955,4.096729292730774,5.150319437935232,6.236427774152067,7.192479410768975,8.343188668071006,9.244079891746257,9.792694957543631,10.350667051341663,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,c coal,1.5567922712748745,2.143589410713746,2.910963446513182,3.695792797233193,3.9987617900292896,4.426987263160246,4.835583764494032,5.167536120152121,5.284497743416415,5.3180638618866585,5.304203027054298,4.983037542178026,4.635933357955576,4.192447541135948,2.9269180265042363,1.8137793903497774,1.2269250733594943,0.6768342879268959,0.4674156913400443,0.35364285270950063,0.24787684394838239,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,c coal CCS,0.0,0.0,0.0,0.0,0.00145404876124146,0.009656163370310814,0.025053688440130496,0.05088737045053958,0.0999958256732949,0.17438519073845085,0.2709656425977916,0.40303017204208075,0.6121388561337366,0.8596884048378356,1.2339638779294781,1.6293073686514532,1.9961835221882664,2.366918454401761,2.650127242341326,2.8194045128964857,2.945062981306123,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,d biomass,0.9761603908639388,1.137315849844836,1.3847439033989564,1.4808071924018726,1.9464381754246658,2.409179639964957,2.9128162210229886,3.4146178168512806,3.9572887268064876,4.4840128756431215,4.834210085503138,5.17547240472052,5.459856378583043,5.651672738247621,5.742606396737984,5.673571805459078,5.929565916262952,5.538226015039397,5.189386686106955,5.61388896156089,6.335521424179608,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,d biomass CCS,0.0,0.0,0.0,0.0,0.008747300647417341,0.03211629427729003,0.07311645860644386,0.14844566040924134,0.2926989658085075,0.510509767548603,0.764857152468568,1.090173480807676,1.5541520641851392,2.1402829367789096,3.3353587013683947,5.058476760377088,7.086663076493286,9.31848565313132,10.925073155582133,11.619156727002988,13.46561215485899,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,e nuclear,0.0,0.0,0.0,0.007879103637251741,0.01791501375188455,0.03570465473408568,0.07094818974108141,0.12080612520421262,0.18575742941810636,0.2640663515271376,0.3550984467198118,0.4620250014272922,0.618678864641807,0.792661450776651,1.024431572077119,1.2715610917493216,1.5168472900325063,1.8191789234433984,2.094162949827815,2.3204687620089355,2.572872831863063,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,f hydro,0.14079621290643857,0.19966650408558648,0.2543345552348322,0.2651541544180901,0.2760575295220702,0.28700308868965313,0.2978712132810935,0.30873976050239915,0.3392169087139862,0.3697454369574825,0.4003319441435773,0.430953575609596,0.46170002150421374,0.49256354207543723,0.5237296312416608,0.5550950860703469,0.5862812273958012,0.6180013507500148,0.6493094074103751,0.6811438947687796,0.6814911635714469,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,g wind,0.0,8.334018050648595E-5,2.8472675996848003E-4,0.0063391587853128695,0.018343788814814826,0.03616389330060728,0.06742608735510278,0.1076359290852599,0.15770026126790962,0.21067705234842696,0.2656216523885401,0.3292038445000256,0.42212838069998504,0.5191766902287288,0.6650925433604787,0.8228352271376422,0.9710174237617715,1.1519543012029287,1.2723243446513006,1.341196651932934,1.4063850767565484,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,h solar,0.0,2.510213252246064E-4,3.3366573558344E-4,0.004215201472965529,0.013717239820358869,0.02974262751533103,0.06017096722752925,0.10428151293514379,0.16815362682617108,0.24954601183330324,0.34910877837072196,0.48756526150062757,0.7021502628806817,0.950808112929671,1.3335456897368185,1.7747543332774027,2.2442714026487396,2.774303192035199,3.1668901899381123,3.451573038564175,3.7447670291951796,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,i geothermal,0.01964829560280077,0.03567154099623554,0.03578009571771217,0.05601984499090673,0.08033977161361858,0.10733661172945821,0.1437044974591644,0.18036663349835758,0.1900065044607948,0.2149296363492138,0.23430441779708186,0.2344047946998625,0.23455526130249504,0.23474280264698777,0.23504290069695427,0.23539296159965095,0.2356321522313606,0.2360478232214886,0.23627187201197478,0.23665650414069284,0.23676587104001107,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,j traditional biomass,1.20571901,1.2835728,1.3275854,1.3035938999999999,1.2864323,1.24845289,1.18150544,1.11271154,1.05734982,0.99556445,0.9303442599999999,0.8849939800000001,0.82938355,0.76402548,0.71098492,0.65036153,0.59832264,0.5485669999999999,0.5005338,0.4533385,0.4112929,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,a oil,1.1710065279604263,2.0437577512522362,2.0113620183352694,2.0251389714044086,2.0675760178798197,2.084692966415413,2.070191134332174,2.0378959443660656,1.9981164513238965,1.9362066528027138,1.8579364444626816,1.8009094105773635,1.7372179381116022,1.6848279992168609,1.6075314421979974,1.496809868141749,1.3000054152318745,1.1644338757754231,1.0684258645635811,0.9770186186239573,0.8421128200045603,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,a oil CCS,0.0,0.0,0.0,0.0,0.0,0.00696448746979518,0.009706566094424331,0.01139840204314746,0.0132210008754277,0.01323015939533712,0.012186611952905959,0.01313453441889318,0.0186385145810152,0.02242926047385287,0.035232837426407856,0.050872894830565,0.044116216670036595,0.052363525136449054,0.046157655502332216,0.03877813342602576,0.03398794066743284,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,b natural gas,0.06150068496606045,0.4239759677192195,0.6138548961256376,0.8257700440753019,0.9697729788272192,1.0631042711686067,1.1424283438621452,1.2200608015635914,1.2973788323091213,1.36549879437547,1.428714771580551,1.456125928472323,1.2820636337234252,1.2148611150591857,1.174238066516388,1.1357820613998313,1.0755769612573942,0.91685007761868,0.7804322703585018,0.6876384904192087,0.5992696899219162,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,b natural gas CCS,0.0,0.0,0.0,0.0,2.909848023296E-5,0.00402051572495904,0.009540796173887678,0.01567505615535179,0.022321488371000547,0.02801261237174856,0.03199513299269469,0.03656264727407079,0.04896659328079365,0.06330787571823245,0.09871728231615426,0.1679881577416484,0.24192260517934475,0.3411185094724131,0.41419760630257185,0.46372947963512146,0.5215764176169968,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,c coal,0.48447641661066637,1.7647548241130668,1.8373184617856804,2.0613278796954164,2.163702394349661,2.241864052965555,2.2616570685136197,2.2505293214065465,2.187759547878858,2.103601911736339,2.009707645441465,1.858920301871567,1.773331593802261,1.6602472250598639,1.3015150456325986,0.7461017601588658,0.4427562803612672,0.1530299481767297,0.06975551794839766,0.04225430884287477,0.025954492643274873,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,c coal CCS,0.0,0.0,0.0,0.0,3.9587544952469996E-5,0.00147523023876264,0.0037196403381868303,0.0066282966455120905,0.01028838058326714,0.0133636347948351,0.015079146148254317,0.01647763923722904,0.01967692475488176,0.02549296995132017,0.047574877472035634,0.09690686388082946,0.15332662795936852,0.22157270010263466,0.2678672033833062,0.29632571242495526,0.3242648476086948,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,d biomass,0.0,0.05773583348798079,0.06305263941387082,0.05198416889645756,0.060965010266432904,0.07126835140871532,0.08883760419636477,0.11438111304068982,0.15246025641659178,0.1919212522293444,0.21525982264316587,0.23327450935630845,0.2669975909884043,0.2843252241754813,0.2952934239052056,0.26706676837369003,0.21410596572349014,0.13956063503791502,0.02999162787129522,0.005871901822021056,0.0023466558112112544,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,d biomass CCS,0.0,0.0,0.0,0.0,7.706235082496099E-4,0.0030690933964901525,0.007883009213524368,0.02030017464971678,0.04451357762599669,0.07209596625822148,0.08984923102911263,0.10201107137469587,0.11546252591468009,0.12850527887881488,0.16899548654991065,0.2453030781067295,0.3311429778463255,0.44530380791013907,0.5381809944252048,0.5715322420628116,0.6757028015436576,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,e nuclear,0.1243953996015746,0.17179636711714139,0.1737611121505269,0.15238798982190369,0.14576598310666886,0.13869992156302996,0.12900721229526765,0.11768584134027105,0.10607305329867364,0.09572089590669379,0.0878336432485157,0.08465084388325417,0.10133247377433266,0.11854906834436701,0.14737124262716522,0.20161197890606916,0.2511264812790864,0.301892871163322,0.3352267833864504,0.35502946218424075,0.3762630845503709,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,f hydro,0.02415133124424252,0.01712926214638983,0.01750585377301916,0.016635692038876517,0.01683350889592905,0.017257177971184652,0.01759165135268806,0.01792128716623946,0.01896815776517138,0.01999918712594739,0.02101896793560244,0.02193626274301728,0.022872855566600358,0.02382257549936879,0.024671069010743993,0.02558859657772317,0.026538344281535522,0.027509936936066577,0.028534430808498618,0.02957896580325209,0.029562966982284375,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,g wind,0.0,3.9110955762999003E-4,0.00407385834760092,0.00797167565648546,0.011716860792207,0.015408693035807849,0.020576898680799323,0.0270798184157646,0.03188793986065493,0.03742789874286657,0.04326523989585961,0.05106279896907025,0.07284924104479737,0.08944756314914064,0.11435629159533313,0.13994198367026384,0.15364633258155996,0.16032205781153724,0.15308863750655596,0.14697369459367626,0.1381554605970241,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,h solar,0.0,4.297905390223898E-6,9.600276807984333E-5,0.0011821654190223802,0.00262237700954325,0.00459950273704207,0.0082048586376549,0.01386930470151389,0.022436075707443402,0.03251093996594191,0.04372638741772747,0.05922699651948493,0.10266167366868399,0.14559278129989203,0.22897766295194796,0.35600450397423217,0.47048336692386955,0.5982012955229605,0.6689871466098937,0.7081430896630531,0.7263714634900875,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,i geothermal,1.10790355255E-5,0.0,0.0,0.00232099174487744,0.0036310766594889,0.0036434467699072402,0.0036369825791948,0.00363004118102712,0.0036175090622594603,0.00360352777321252,0.0035884550581761,0.0035577789952125002,0.00353264235901761,0.00351096968972815,0.00347698306082881,0.0034543421944484,0.0034355764730322202,0.0034192763640961497,0.00340739700684993,0.0033981247698555697,0.00338920274034263,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,a oil,34.03557005992737,40.656549971078,35.77888723585012,36.882881319362205,37.92344911433262,38.40443999238436,38.46860467731097,38.0174612024493,37.474966694773144,36.47916192331979,35.3018220607232,34.62143355707786,33.94696900145291,33.3562742724122,31.74947650885332,29.010181106516274,24.561862165284587,18.792850467595557,11.834857016799656,5.475997587928618,1.0068890289191748,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,a oil CCS,0.0,0.0,0.0,0.0,0.0,0.02608019494863729,0.04262926299454711,0.05719842916044084,0.08513584635969224,0.10311404937962891,0.1204616409801836,0.14793701162691195,0.19146962292831773,0.22081022462854655,0.29147414812478933,0.31375585437781167,0.24772217309825137,0.23406160676479165,0.1464448740329349,0.06623238546981071,0.013264281756424004,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,b natural gas,18.38422210596133,21.597895085212823,23.233626074327336,23.992726847408207,25.64296616407797,27.53180922956305,29.00177123558041,30.24419961267498,31.15813266480699,31.758235087360646,32.40513725325586,32.07467685449287,30.066556546322836,28.808236381948355,26.47811181157803,24.571775013529997,23.875289225819454,21.404275151579487,19.504142302414024,18.18122970577834,16.26887794549574,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,b natural gas CCS,0.0,0.0,0.0,0.0,0.00276168330313407,0.06386208940443043,0.16706542302789099,0.3086384690606297,0.5393951947256564,0.8034528947075213,1.0933142003249263,1.4848996985204184,2.1066287839659372,2.7453567874175806,3.92450733248055,5.12789389593357,6.078060167751711,7.19542832585608,8.150093944618416,8.836342322621098,9.63781067938202,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,c coal,20.57203368586485,23.428325123719336,21.607654489873156,24.066829599770394,24.621977609871053,24.942654982604378,24.90377666935309,24.366747106401764,23.438553023558633,22.059975381864334,20.592981764017598,18.64096327978492,16.64366080284725,14.23754286710738,8.471754975690331,3.6886836298142542,1.733541308071345,0.49434676095421803,0.2160897751758272,0.1272266480573047,0.07290101087038867,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,c coal CCS,0.0,0.0,0.0,0.0,0.00267229080158973,0.033926524522562757,0.09627696014099915,0.20598396650850184,0.4369691196556324,0.7524607056453217,1.1153070130325748,1.622937346521345,2.4855893266683085,3.4584716840033933,5.292435199717102,7.088810472135218,8.462709158615064,9.879910233539867,11.128280855684242,12.059969157141644,12.985531124876156,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,d biomass,2.6415798461035656,3.246786745695649,3.884007882537145,3.7583050067835555,4.383784794630701,4.913022637031006,5.526727932099666,6.248541966942582,7.242351675911913,8.191946011183878,8.702386595484729,9.10007393533393,9.290540954505403,9.258271532014987,8.869563435465933,7.872779364266671,6.869211064533294,5.150595229742653,3.844184448129877,3.7575539860342686,3.5450169315338367,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,d biomass CCS,0.0,0.0,0.0,0.0,0.013315343006472257,0.04773732433021758,0.1321806375050663,0.3411012526416587,0.7980314128178073,1.410766423020876,1.9540111946104748,2.5206369147322767,3.3500668344591977,4.389832824244849,7.336111165529535,12.322398957189654,18.87012858088825,29.142681373195735,40.395350842323815,49.63454826028049,56.140540224524315,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,e nuclear,2.3412649022978593,3.021242532968092,3.127522039090407,3.284680388607078,3.3803704887573383,3.4790029040460904,3.613104221277466,3.7522756232768004,4.002015901958221,4.233183993951194,4.487669054830084,4.904067419820936,5.698151567747346,6.507194609580304,7.775023421268372,8.74055016555103,9.53357355861694,10.36958098536449,10.980963425734656,11.365525514510123,11.830054558178137,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,f hydro,1.0456662937081656,1.0162230447503524,0.9789003161846981,0.9816690126604843,0.9958408866081948,1.0099491683615396,1.0214184752206543,1.032543118181564,1.037371752557356,1.0412494492963322,1.043729016500209,1.0446412351392422,1.044986753130324,1.0452186137083677,1.043683915813261,1.0435011908766234,1.0446453914619176,1.0463092281510362,1.0490969202022684,1.0529100627472512,1.0519857114947502,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,g wind,0.011734125768367699,0.06660686929653642,0.35465531062300004,0.4657566665338944,0.552594356040831,0.6881547163394888,0.9075136361926209,1.1982021026098222,1.3003625182125356,1.6968606000469262,2.1689795111107077,2.7422631536818938,3.627621785316765,4.452961019847295,5.926856394762297,7.290518613825541,8.190652967376266,9.187334084712655,9.66588269323126,9.93797786940093,9.939662576183661,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,h solar,0.00254889138968348,0.004172014268279091,0.014663608145750571,0.0291637848439048,0.044882890427198764,0.07218883748238544,0.11928599496114263,0.1870152038283358,0.2845453227859879,0.40611343279782863,0.5521563956424288,0.7454021139966605,1.0426178599407643,1.2569456946353443,1.5203749693742323,1.8695807087266452,2.1223167229150324,2.412585015027091,2.567642812403554,2.7000288008731284,2.8100048074654205,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,i geothermal,0.06128053925884113,0.062498159864326136,0.06551670486134839,0.11772277132098877,0.1622667442331512,0.22912414416149002,0.3237938971175507,0.4301263275633966,0.5104258636805993,0.5986426828657329,0.6878851845450178,0.7717027943861109,0.8176066801598566,0.814291128323965,0.8096399065499926,0.8060641294225671,0.8035365683581727,0.8014291153375559,0.8001947865321288,0.7997492796517957,0.7990472393170791,EJ, Electricity generation by aggregate technology scenario,region,technology,1990,2005,2010,2015,2020,2025,2030,2035,2040,2045,2050,2055,2060,2065,2070,2075,2080,2085,2090,2095,2100,Units, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,a Coal,0.00125085,0.00237117,0.00341518,0.0114956,0.014240429999999998,0.016669926,0.019637015,0.022941790999999996,0.026132467000000003,0.03011379799999999,0.034374999,0.038053032,0.040684451999999996,0.041525633,0.03426614399999999,0.021173562000000003,0.012776101399999998,0.0037384158999999987,0.0011465320800000001,4.0333512899999997E-4,9.921262159999999E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,b Coal w/CCS,0.0,0.0,0.0,0.0,0.0,3.61008E-5,1.0297410000000001E-4,2.2379049999999998E-4,4.6541599999999996E-4,0.0010021019000000003,0.0019737668000000003,0.004248999200000001,0.0088107107,0.0152241998,0.025992301199999995,0.04003764601,0.05420716989,0.07258628560000001,0.09016055889999999,0.10595373589999998,0.127200904,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,c Gas,0.0,1.85098E-4,2.1858430000000001E-4,0.0050514037,0.0072184438,0.008803541000000002,0.010979962700000002,0.013711130499999998,0.0167959795,0.021261618400000005,0.0269046232,0.033545671,0.037167395500000006,0.043453221929999994,0.048309027,0.050609628999999996,0.05025190289999999,0.0415820981,0.029371212600000002,0.0183190646,0.00776261775,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,d Gas w/CCS,0.0,0.0,0.0,0.0,0.0,6.20797E-4,0.001643168,0.003140639,0.005227443,0.008625538,0.013224803,0.020858071,0.033052635999999996,0.048516306,0.07261042999999999,0.10503117999999999,0.1403102,0.19418459000000002,0.25322019,0.31202178999999997,0.3966915,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,e Oil,0.00813916,0.0265001,0.0368684,0.0910189,0.1062018,0.11002354,0.11467769000000001,0.11983807000000002,0.12365372000000002,0.13368519,0.14573483999999998,0.15465461000000003,0.13551854,0.13239807,0.11658037,0.094055876,0.071452841,0.038417184,0.018319486000000003,0.008114216,0.0025245700399999997,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,f Oil w/CCS,0.0,0.0,0.0,0.0,0.0,0.0117334,0.02392434,0.03759218,0.05296976,0.07538627,0.10019506,0.13730274999999997,0.18852264,0.23860945,0.30864864000000003,0.37427521999999996,0.41733623000000003,0.4753327,0.4861823,0.439491,0.3349482,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,g Biomass,7.23596E-4,0.00113761,0.00113761,0.00433182,0.006653882,0.009334009,0.013641255000000001,0.019243332000000002,0.025370032,0.033715659999999995,0.042891575999999994,0.05177372500000001,0.05891332969999999,0.0625109503,0.053425677,0.03666100099999999,0.023362684600000003,0.0079297158,0.00244369347,8.302995299999999E-4,1.9272330299999999E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,h Biomass w/CCS,0.0,0.0,0.0,0.0,0.0,3.706626E-4,0.0011396768,0.0025379852999999996,0.0050763643,0.010234158200000001,0.018750507899999998,0.0369531763,0.0710499463,0.11763613510000001,0.1973958023,0.29528335769999997,0.3890244738000001,0.511887783,0.612290229,0.675236363,0.689090439,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,i Nuclear,0.0,0.0,0.0,0.00156495,0.002242416,0.007299506000000001,0.018952106000000003,0.038192406,0.063017005,0.10167390500000001,0.15289059500000002,0.22395689500000002,0.317780195,0.42274809500000005,0.561650894,0.7212678339999999,0.8811449700000001,1.0861268,1.2854738,1.4616843000000002,1.6886875,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,j Geothermal,0.00117361,0.0036108,0.0052956,0.01980392,0.028459830000000002,0.038489340000000004,0.051002580000000006,0.06443465,0.07361759000000001,0.07361689,0.07361698,0.07361725,0.07361536,0.07361685000000001,0.07361598999999999,0.07361706,0.07358375,0.07361705,0.073617,0.07361695,0.07361699,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,k Hydro,0.0219597,0.0353919,0.0539216,0.0712437,0.0885658,0.105888,0.12321,0.140532,0.174952,0.209372,0.243792,0.278212,0.312632,0.347051,0.381471,0.415891,0.450311,0.484731,0.519151,0.553571,0.553571,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,l Wind,0.0,1.11E-5,2.327E-4,0.0101431704,0.019296277,0.034012540300000005,0.0593645663,0.09615798129999999,0.1459295703,0.21697441190000002,0.3173134493,0.469604736,0.6853081999999999,0.9367127849999999,1.280407836,1.6642357840000002,2.02203681,2.4705035,2.8558691099999995,3.15137871,3.50487867,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,m Solar,0.0,3.6E-6,7.19999E-6,0.00825758119,0.01592008399,0.02583595379,0.04057249339,0.06277505139,0.09536335839999999,0.13753206219999997,0.19778565539999998,0.2839953126,0.401239135,0.556835427,0.7804244699999999,1.063635995,1.386405699,1.7894443720000002,2.18930225,2.57610402,3.02027265,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,n CHP,0.0,0.0,0.0,0.0,0.00101602,0.00195478,0.00317925,0.00492378,0.00730739,0.0111175,0.0165349,0.0225961,0.0328194,0.0469695,0.0654046,0.0896207,0.118248,0.162719,0.219834,0.293061,0.343599,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,a Coal,0.00796861,0.0473972,0.0399414,0.055137900000000004,0.0643533,0.069245449,0.074961811,0.07920287,0.08070774500000001,0.08094272500000001,0.08045928099999998,0.07789357599999999,0.07494717400000002,0.068942097,0.04719835399999999,0.023105089,0.010911254,0.0025212726999999996,6.5846786E-4,2.0153860400000002E-4,4.416986999999999E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,b Coal w/CCS,0.0,0.0,0.0,0.0,0.0,8.41999E-5,2.642336E-4,5.34092E-4,9.435366E-4,0.0015442686000000003,0.0023473175,0.003689261900000001,0.0066850489000000015,0.010193491499999999,0.0154923198,0.022310045299999998,0.029067234400000003,0.037701032499999995,0.0454408007,0.05129567100000001,0.05746424899999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,c Gas,0.1358135,0.482448,0.6361717,0.8045462,0.9366901000000001,0.9760922,1.0162200000000001,1.040216,1.0329030000000001,1.0207173,1.0082897800000001,0.98331829,0.8429467999999999,0.7462942900000001,0.66524185,0.5701249039999999,0.46093123799999997,0.2933829617,0.16044725789999995,0.08028698279,0.028003133282,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,d Gas w/CCS,0.0,0.0,0.0,0.0,0.0,0.0446864,0.114254,0.1895983,0.2613398,0.3310209,0.393815,0.4626384,0.5761635,0.6808968,0.7684735,0.8535612,0.9257604,1.0506507,1.1653763000000001,1.2505004,1.3430047999999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,e Oil,0.11773,0.126766,0.200053,0.2520789,0.2686895,0.2595526,0.24877439,0.23336417,0.21520810000000007,0.20215426999999997,0.19029594,0.17609667999999998,0.14329418100000002,0.112024337,0.081640748,0.056256024,0.036379567,0.016652615699999998,0.006938491,0.00275526641,7.92703331E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,f Oil w/CCS,0.0,0.0,0.0,0.0,0.0,0.0259303,0.04712036,0.06129872,0.07291486999999999,0.08559645,0.09663908,0.11352592,0.14740047,0.16658230000000002,0.18935269999999998,0.2012392,0.2008285,0.20978086,0.19372861,0.15288115,0.10144102,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,g Biomass,0.0,0.0,0.0,0.00118944,0.002994068,0.004715903,0.008005512,0.011757975,0.015091885999999999,0.018320496,0.021046900999999996,0.022994323999999997,0.025822695000000003,0.026068608999999996,0.020405409999999995,0.0124530785,0.0069783795,0.002045671,5.7424344E-4,1.8295018900000003E-4,4.03017051E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,h Biomass w/CCS,0.0,0.0,0.0,0.0,0.0,2.276639E-4,7.917699E-4,0.0017259920999999998,0.0031778868,0.0053396897000000006,0.0082328824,0.013165650800000001,0.024339190099999995,0.037844036100000006,0.05979470349999999,0.0876839967,0.11553058370000002,0.15450749900000002,0.186242087,0.20242687299999995,0.19471781700000004,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,i Nuclear,0.0,0.0,0.0,8.72257E-4,0.00156989,0.00567026,0.015882759,0.030967159,0.047265159,0.065795059,0.085783858,0.10872335699999999,0.14769454599999998,0.185643546,0.230324245,0.280213391,0.32896955,0.3890529,0.44216150000000004,0.4831952,0.5320802,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,j Geothermal,0.0,0.0,0.0,0.00727223,0.01663139,0.02581284,0.038392169999999996,0.050753030000000005,0.06167088999999999,0.06633717,0.06954025,0.07266709999999998,0.07266695,0.07266736,0.07266703,0.07266703000000001,0.07266881,0.07266703,0.07266706,0.07266700999999999,0.07266707,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,k Hydro,0.0408238,0.0516204,0.0603183,0.0632959,0.0662735,0.0692511,0.0722286,0.0752062,0.0811228,0.0870394,0.092956,0.0988726,0.104789,0.110706,0.116622,0.122539,0.128456,0.134372,0.140289,0.146205,0.146205,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,l Wind,0.0,0.0028801,0.0082198,0.0177257898,0.0311704218,0.04692853279999999,0.0747945968,0.1097755028,0.1407758618,0.177287383,0.214666798,0.26363996700000003,0.356510483,0.44914782699999994,0.5700887279999999,0.7174012069999999,0.86695824,1.0735936400000003,1.2316328700000003,1.36093726,1.5074604400000005,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,m Solar,0.0,0.0,0.0,0.00481831366,0.01397374606,0.027588830360000004,0.04904943056000001,0.07626591656000001,0.10524066755999997,0.1310145909,0.15912547449999997,0.20460033719999998,0.268020347,0.33718499599999996,0.430071907,0.519031419,0.592312503,0.6689178149999999,0.73658101,0.798592786,0.8725112740000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,n CHP,0.0,0.0,0.0,0.0,2.49196E-4,4.84073E-4,7.30432E-4,0.00101451,0.00135269,0.00181394,0.00235597,0.00286372,0.00361951,0.00466457,0.00578707,0.00687966,0.00797517,0.00970635,0.0117366,0.0142106,0.0156193,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,a Coal,0.0215065,0.0200021,0.0180461,0.0540384,0.0682358,0.07841115999999998,0.09230756999999999,0.10761681000000001,0.12115557,0.13760374000000003,0.15575525000000004,0.16895509000000003,0.181140562,0.18561392300000004,0.15820732199999998,0.099706806,0.06061433,0.017920347,0.0054789026,0.0018846545899999997,4.636363340000001E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,b Coal w/CCS,0.0,0.0,0.0,0.0,0.0,1.6207789999999998E-4,5.109983E-4,0.0010866611,0.0021746668,0.0045527546,0.0090124162,0.0183162805,0.0405490866,0.0760453994,0.1381142427,0.22246005719999998,0.30381459450000003,0.3985565458,0.48127839299999997,0.551053684,0.617349723,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,c Gas,0.0,0.004201269,0.00619505,0.02338897,0.0319828,0.036289749999999996,0.04287005,0.05138335,0.060393329999999995,0.07358047,0.091004795,0.10871357,0.118706737,0.13630704629999998,0.151600593,0.158604893,0.156038758,0.129316067,0.0927715898,0.05804060694,0.025569847080000003,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,d Gas w/CCS,0.0,0.0,0.0,0.0,0.0,0.00321546,0.008706460000000001,0.01579422,0.024368539999999998,0.03710412,0.053831119999999996,0.07725114999999999,0.11991967,0.17751097,0.26892574999999996,0.39543659000000003,0.5252075199999999,0.7000484,0.8722319000000001,1.0372775,1.2162206,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,e Oil,0.00267763,0.00666428,0.00933526,0.04938063,0.06225977,0.06585295999999999,0.07215992,0.07976996,0.087360148,0.101118444,0.119322749,0.135984999,0.135494682,0.1409388238,0.13523349,0.113338399,0.085605521,0.0447089,0.020589135999999997,0.0087975,0.00267255112,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,f Oil w/CCS,0.0,0.0,0.0,0.0,0.0,0.0094264,0.02036812,0.03180985,0.04512049,0.06604144,0.09255629000000001,0.13113087,0.19746135999999997,0.27506862,0.39299029,0.51625965,0.5979345,0.6759041,0.6572645,0.5526911999999999,0.38393810000000006,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,g Biomass,0.0,0.0,0.0,1.62852E-4,3.38893E-4,5.391659000000001E-4,9.537708999999999E-4,0.0015654589,0.0022868584000000003,0.0033786799999999994,0.0048102176,0.0063041513,0.0081885427,0.0096091827,0.0092250381,0.007103451599999999,0.004894074619999999,0.00178214434,5.858923E-4,2.1441858600000004E-4,5.2911613E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,h Biomass w/CCS,0.0,0.0,0.0,0.0,0.0,2.852995E-5,1.0645961000000002E-4,2.5673381E-4,5.510753700000001E-4,0.00121969126,0.0025206555699999996,0.005347253850000001,0.0125687767,0.025250787169999997,0.051580784330000004,0.09088752344,0.13286268772,0.19053483520000006,0.24312428389999996,0.2848129403,0.303924447,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,i Nuclear,0.0,0.0,0.0,1.19425E-4,1.845149E-4,6.240709E-4,0.0018646109,0.0041117809000000005,0.007150420900000001,0.0123301309,0.0202541609,0.0312218609,0.0505463508,0.0759758508,0.11595084979999999,0.1712047048,0.23127730500000002,0.31257313,0.39977389,0.4928574,0.60144686,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,j Geothermal,0.0,0.0,0.0,0.00116079,0.0023951600000000003,0.00403855,0.007121870000000001,0.01142977,0.01672627,0.023485100000000002,0.03242313,0.04327557,0.05847224000000001,0.07071778,0.07071998,0.07072002999999999,0.07072779,0.07072004000000001,0.07071996,0.07072002,0.07071996,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,k Hydro,0.0549063,0.1228,0.143803,0.152226,0.160649,0.169072,0.177496,0.185919,0.202656,0.219393,0.236131,0.252868,0.269606,0.286343,0.30308,0.319818,0.336555,0.353293,0.37003,0.386767,0.386767,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,l Wind,0.0,2.4E-6,3.54999E-5,5.209088900000001E-4,0.00107251989,0.00187871424,0.00360037718,0.006380437179999999,0.010365110579999998,0.017112445790000007,0.02802689599,0.04501229464,0.07815262070000001,0.1253448857,0.20476405239999998,0.3196679452,0.44882414400000004,0.6299267409999999,0.8174993919999999,1.0146939170000002,1.2273641970000002,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,m Solar,0.0,0.0,0.0,8.5881245E-4,0.00259833765,0.00557359051,0.010010680409999998,0.01666606731,0.027492282110000002,0.044651716759999995,0.07028787946,0.1096145616,0.1660460437,0.2401656888,0.35016659299999997,0.48820862889999994,0.651505835,0.8532957970000001,1.058647031,1.255372989,1.46723341,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,n CHP,0.0,0.0,0.0,0.0,3.4119E-4,6.6651E-4,0.00101406,0.00144379,0.00208751,0.00313578,0.00480516,0.0073273,0.011225,0.0169327,0.0242503,0.032243,0.0411233,0.0530396,0.0674011,0.0849941,0.0975869,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,a Coal,0.00130874,0.00250043,0.003599,0.005529259999999999,0.0069486,0.008615755,0.011059883999999999,0.013925304999999999,0.016429336,0.019164962,0.022282378999999995,0.024836406000000002,0.026802151000000003,0.027767514,0.022989935,0.015230130800000003,0.009153851000000001,0.0026837768,8.418993199999998E-4,2.975134029999999E-4,7.543007999999999E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,b Coal w/CCS,0.0,0.0,0.0,0.0,0.0,2.621763E-5,8.321815E-5,1.9033992000000002E-4,3.8818512999999995E-4,7.789648600000001E-4,0.00152489464,0.00323078347,0.00688644534,0.012851836060000002,0.024220551600000004,0.041539483870000005,0.06183774250999999,0.0907956153,0.1206296074,0.14947644039999997,0.18267649819999998,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,c Gas,0.026658050000000003,0.0645019,0.079883972,0.11073977899999998,0.139310611,0.15945716899999995,0.19189178299999998,0.23335109400000004,0.27225528899999996,0.321972176,0.38733026000000004,0.454488755,0.5082168786,0.5718803765,0.6107822700000001,0.6163848100000001,0.58594938,0.443282036,0.28460558459999996,0.16123407599999998,0.06466846861999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,d Gas w/CCS,0.0,0.0,0.0,0.0,0.0,0.0183688,0.049447000000000005,0.0908677,0.1369141,0.19480389999999997,0.266841,0.3683399,0.519509,0.7128941,1.0018311,1.3956768,1.8281261999999998,2.4638789,3.105413,3.687596,4.295382,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,e Oil,0.0179558,0.0344399,0.0455212,0.0707453,0.08774775999999998,0.09430986999999999,0.10513463999999999,0.11790124,0.12736451,0.14436128999999998,0.16725525,0.18585178000000002,0.19340693,0.200300435,0.18455228,0.152407432,0.11643519799999999,0.062834453,0.029471773799999997,0.012641225300000001,0.00407023347,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,f Oil w/CCS,0.0,0.0,0.0,0.0,0.0,0.0191939,0.04029318,0.0624383,0.08373354999999999,0.11330061999999999,0.15053088,0.20761251000000003,0.2912834,0.38539994,0.5327175,0.6829059,0.7898213,0.9274275,0.9326661,0.8033054,0.5853360000000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,g Biomass,1.692E-4,6.11997E-4,8.28003E-4,0.001312679,0.002510014,0.004052654,0.006722677000000001,0.010161363999999999,0.0134792089,0.0174625766,0.022150926,0.026562772300000002,0.030459237530000002,0.033157874469999994,0.029012339999999994,0.020452686299999998,0.013487749100000002,0.0048166842,0.0015875028,5.723060499999999E-4,1.4414431240000001E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,h Biomass w/CCS,0.0,0.0,0.0,0.0,0.0,2.182269E-4,7.007995000000001E-4,0.0015778655,0.0030353440999999998,0.0056753472,0.010314058800000001,0.020169570600000006,0.04022397440000001,0.07255367680000001,0.13692941799999997,0.2314963403,0.3392463376999999,0.497800775,0.642809136,0.7488895170000001,0.77769677,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,i Nuclear,0.0,0.0,0.0,1.603E-4,3.10847E-4,0.001869847,0.006346977,0.014551497,0.024899287,0.040039687,0.062330686999999996,0.094076987,0.140892077,0.203034777,0.300411357,0.437555547,0.60224969,0.8478571800000001,1.12276587,1.40463,1.7404368,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,j Geothermal,0.0,0.0,0.0,0.00157438,0.00444611,0.010134839999999999,0.02046462,0.03424598,0.0493625,0.06661767,0.0867944,0.1101704,0.13700980000000001,0.144519,0.1445194,0.144519,0.1445206,0.144519,0.14451908,0.14451898,0.14451904,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,k Hydro,0.0814254,0.10931,0.113792,0.139788,0.165784,0.191781,0.217777,0.243773,0.295429,0.347085,0.398742,0.450398,0.502054,0.55371,0.605366,0.657022,0.708678,0.760334,0.81199,0.863646,0.863646,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,l Wind,0.0,1.17E-5,1.769E-4,0.00138079481,0.0037373550100000003,0.008942533510000001,0.02003757541,0.03782131441000001,0.06124492841,0.0959293816,0.1474952984,0.22688662789999997,0.35253502600000003,0.5292525770000001,0.8228590429999999,1.2488953250000001,1.768080348,2.5494711400000005,3.3938292,4.221206110000001,5.10810693,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,m Solar,0.0,1.44E-5,1.08E-5,0.0017619995,0.00553837174,0.01313232164,0.02528425954,0.043968753939999994,0.06953743493999999,0.10320108244,0.1535181112,0.2412005483,0.3737544744,0.561786612,0.847212191,1.200400264,1.601283833,2.1467019460000003,2.752172732,3.39623083,4.202972170000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,n CHP,0.0,0.0,0.0,0.0,8.78668E-4,0.00179026,0.00293481,0.00456716,0.00701796,0.0110799,0.0172104,0.0254273,0.0395298,0.0606221,0.0919404,0.132516,0.180741,0.264636,0.375561,0.513257,0.641614,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,a Coal,0.0016128,0.00567,0.00806399,0.01591662,0.01929105,0.021143368,0.024041903999999996,0.026626332000000003,0.028523066,0.029827394,0.030889744,0.030472841999999997,0.029247390000000005,0.025721544499999995,0.014862581699999999,0.005764445799999999,0.0022892658000000002,4.397287680000001E-4,1.0513787650000001E-4,3.08654032E-5,6.4140472250000004E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,b Coal w/CCS,0.0,0.0,0.0,0.0,0.0,3.6520700000000004E-5,1.329817E-4,2.8364570000000003E-4,5.504139E-4,9.482861E-4,0.0015345403000000004,0.0025434651,0.0049789831,0.0079876584,0.012847880799999996,0.019061094,0.025564011400000003,0.03352098419999999,0.0420150623,0.049619982800000004,0.06006923399999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,c Gas,0.0715427,0.1991953,0.2245892,0.3390009,0.3949811,0.4111356,0.436094,0.45470379999999994,0.4647211,0.47004682,0.47698842999999996,0.47020074,0.38628872,0.34041707,0.293981163,0.23101440800000003,0.16630424189999998,0.0809221695,0.03483347398,0.014440195177000001,0.004274923479599999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,d Gas w/CCS,0.0,0.0,0.0,0.0,0.0,0.0169463,0.0498338,0.0870858,0.1289125,0.1706674,0.21267840000000002,0.2595826,0.3404962,0.4175165,0.5072287000000001,0.5989736999999999,0.6837726999999999,0.7851889999999999,0.8856207,0.961178,1.0599598000000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,e Oil,0.0178164,0.0206892,0.0597456,0.0874514,0.09242666,0.08874646,0.08715486,0.0833638,0.07910788,0.07526131000000001,0.072707335,0.06607051800000001,0.053270210000000005,0.040361541,0.028945434,0.0183707411,0.011095431099999999,0.004751720499999999,0.00174197543,6.284754750000001E-4,1.642554009E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,f Oil w/CCS,0.0,0.0,0.0,0.0,0.0,0.00940911,0.02046433,0.02779293,0.0360641,0.04316473,0.050763800000000005,0.06083271999999999,0.08367896,0.09847144000000001,0.12711608,0.15200666000000002,0.17419364,0.22049634,0.23202963000000001,0.20973831999999998,0.15285706,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,g Biomass,3.85201E-4,0.0046368,0.007902,0.01019953,0.012758259999999999,0.014575897,0.017615669,0.020107926,0.021911578000000004,0.023125249,0.023976841000000006,0.023229777999999996,0.022066292,0.018669960000000003,0.011310232,0.0050339198,0.00220115,4.955382799999999E-4,1.187353096E-4,3.408780536E-5,6.728594237999999E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,h Biomass w/CCS,0.0,0.0,0.0,0.0,0.0,3.352619E-4,0.0011514576,0.0023222412,0.004171642999999999,0.0066624035000000005,0.010016956899999999,0.0154417181,0.027669756199999996,0.0422428598,0.0670709287,0.09807277480000001,0.1300949618,0.171881516,0.21255227600000004,0.24289426899999994,0.26859892999999996,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,i Nuclear,0.0262116,0.0247428,0.0258156,0.029423,0.03159237,0.032934769999999995,0.03644121,0.04049622,0.04596302000000001,0.052772469999999995,0.06178546,0.07281919,0.09294841,0.1118488,0.13468560999999998,0.15592474,0.17812877,0.2039706,0.22677333000000002,0.24473096,0.26804273999999995,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,j Geothermal,0.0,0.0,0.0,0.00421802,0.008935950000000002,0.013960779999999999,0.02379359,0.03505246,0.047675010000000004,0.05695391,0.0669299,0.07821513,0.0938716,0.1055149,0.1197175,0.1334179,0.14000100000000001,0.14000110000000002,0.14000100000000001,0.1400009,0.1400009,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,k Hydro,0.0643536,0.122414,0.120913,0.123868,0.126823,0.129777,0.132732,0.135687,0.140903,0.14612,0.151337,0.156554,0.16177,0.166987,0.172204,0.177421,0.182637,0.187854,0.193071,0.198288,0.198288,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,l Wind,0.0,2.7E-4,9.0E-5,0.0039907434,0.009031788,0.015178823600000002,0.029667179,0.04960963400000001,0.07655980200000001,0.1060610366,0.14266910700000002,0.18983307240000002,0.2745876649999999,0.356561441,0.46764712999999997,0.597147842,0.724353507,0.875826736,0.992309188,1.089096937,1.21865471,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,m Solar,0.0,0.0,0.0,0.0011693912899999998,0.0028352118900000006,0.005068126590000001,0.009501932989999998,0.015480186190000002,0.023681077590000002,0.0316531693,0.0394074327,0.049329697,0.0644498016,0.0788751274,0.097963581,0.119202463,0.141858716,0.168420949,0.190062118,0.208747012,0.23341796099999995,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,n CHP,0.0,0.0,0.0,0.0,1.26538E-4,2.36774E-4,3.50559E-4,4.77795E-4,6.35437E-4,8.40566E-4,0.00108874,0.0012965,0.00162829,0.00203505,0.00256857,0.00310926,0.00372046,0.0047451,0.00543438,0.00589749,0.00553676,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,a Coal,0.439003,0.672518,0.655517,0.722737,0.7249512,0.7253912,0.7338837100000001,0.7279286100000001,0.7142162400000001,0.6788164500000001,0.6362836000000001,0.5774785299999998,0.5081555600000001,0.42302800999999995,0.23338690999999998,0.09220761399999997,0.03778711,0.00729600838,0.001725773896,4.89322809E-4,8.942846076899999E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,b Coal w/CCS,0.0,0.0,0.0,0.0,0.0,6.499240000000001E-4,0.002413873,0.00529834,0.011456626000000001,0.019384848,0.028985298999999996,0.045741378,0.072812214,0.10485969599999999,0.166980456,0.222603414,0.25934442100000005,0.2990552209999999,0.332177687,0.35806111000000007,0.39247267999999996,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,c Gas,0.0721299,0.1183401,0.1620722,0.15122375000000002,0.15206804,0.15300678999999998,0.15256988,0.15004420000000002,0.14857224,0.14403094,0.13930435999999996,0.13314956700000002,0.114382124,0.106973656,0.09344403199999998,0.07451254369999999,0.05378340820000001,0.0259391047,0.011070696753,0.0045699506102999995,0.0012786793371799999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,d Gas w/CCS,0.0,0.0,0.0,0.0,0.0,0.00563817,0.0170321,0.0308313,0.05003075,0.06706373,0.08170511,0.09919789,0.12098880999999999,0.14282679,0.1779189,0.2039702,0.21639059999999996,0.22948839999999998,0.2419888,0.2531309,0.27408509999999997,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,e Oil,0.012816,0.0102421,0.0113868,0.006578379,0.006387080000000001,0.006661373,0.006951855,0.007120738,0.007766155000000001,0.00787156,0.007835392,0.0075246055,0.0063387683,0.0053527489,0.0043534891,0.0026559088,0.00151859996,6.736061300000001E-4,2.4493234600000003E-4,9.204093600000002E-5,2.3970993239999995E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,f Oil w/CCS,0.0,0.0,0.0,0.0,0.0,0.00100288,0.002268637,0.003291732,0.005167365,0.006304818,0.007373617,0.00923386,0.011559179,0.013521484,0.019409111,0.022809311,0.02458287,0.03071363,0.031234779999999997,0.02899109,0.022042075,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,g Biomass,0.0,0.00150481,0.0014688,0.0011457928,0.0013442341,0.002315539,0.0043531839999999995,0.0067184376,0.0098556972,0.0122359554,0.013955076700000001,0.014819051559999998,0.014536362369999998,0.012816008790000003,0.008368645299999998,0.003898289499999999,0.0017254694299999999,4.0147777600000006E-4,9.827062570000002E-5,2.85431701E-5,5.428582636000001E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,h Biomass w/CCS,0.0,0.0,0.0,0.0,0.0,1.498189E-4,5.977545E-4,0.0013914914,0.0031390278000000002,0.005429756399999999,0.0082876229,0.01354272,0.0225466219,0.034188003099999996,0.0609470606,0.0873342761,0.10676554379999999,0.1325414086,0.15542762599999999,0.17303915200000003,0.189910473,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,i Nuclear,0.0,0.0,0.0,0.0,0.0,3.73856E-4,0.001673556,0.0038587960000000003,0.009697976,0.017590006,0.027029116000000002,0.038447775000000003,0.052351545,0.065912015,0.087714074,0.10569730299999999,0.11753718099999999,0.13038089,0.14080805000000002,0.14908281,0.15883586,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,j Geothermal,0.00746642,0.0111493,0.0209844,0.02741602,0.030772900000000002,0.03759423,0.05097006,0.06702097,0.07050565,0.08673391,0.103947,0.12132840000000002,0.13745780000000002,0.1503884,0.17065,0.1845437,0.1892004,0.19442539999999997,0.19298430000000003,0.19063929999999998,0.1880152,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,k Hydro,0.134392,0.138895,0.133859,0.139576,0.145294,0.151011,0.156728,0.162446,0.169607,0.176768,0.18393,0.191091,0.198253,0.205414,0.212575,0.219737,0.226898,0.23406,0.241221,0.248382,0.248382,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,l Wind,0.0,0.00539644,0.0231552,0.0303495899,0.03456467220000001,0.04419315690000001,0.0661168709,0.09663232890000001,0.12287142090000001,0.168111273,0.21804289770000002,0.280389626,0.356211657,0.43036255199999995,0.56115656,0.6685792880000001,0.7282754899999999,0.791822087,0.8212195019999999,0.835881407,0.8412106369999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,m Solar,0.0,2.8440203000000005E-4,9.972009999999999E-4,0.0027660666799999996,0.00457152505,0.008821514950000001,0.01795858765,0.03044253405,0.04449396404999999,0.055486709870000005,0.068406235,0.08445141610000001,0.0998484844,0.11274837499999998,0.133172517,0.1498510865,0.160612959,0.172377927,0.180787343,0.188080064,0.19417668100000002,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,n CHP,0.005325666,0.01770448,0.02102566,0.02409593,0.032450032,0.039664571,0.042668248,0.044095545,0.044740177,0.04400307999999999,0.04208536,0.038209661,0.03295433,0.027900716,0.020818833,0.015350032,0.0123871049,0.0099933568,0.0088759349,0.00829663448,0.0068000818,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,a Coal,0.0171142,0.0386711,0.0408167,0.0951128,0.125432,0.15194696,0.17990584000000004,0.20350808,0.22324276,0.23943644,0.25544861,0.26125333000000006,0.26344808999999997,0.25018438,0.17658090999999995,0.08300541400000001,0.03586422799999999,0.006970960700000001,0.001656188416,4.8781752479999993E-4,1.0415853665E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,b Coal w/CCS,0.0,0.0,0.0,0.0,0.0,4.44038E-4,0.0012747090000000002,0.002471925,0.004610599,0.007935329,0.013452297000000002,0.022538077,0.045733577000000004,0.078379156,0.13777495099999998,0.211714512,0.28351423700000006,0.36484991,0.44321719499999995,0.5095979539999999,0.6007019499999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,c Gas,0.00117362,0.067723,0.1313097,0.32307909,0.45047133000000006,0.56945515,0.69781965,0.80772593,0.90569084,0.9900257299999999,1.0761634,1.1335305500000001,1.0205378,0.94662374,0.8261836899999999,0.661398681,0.493882685,0.26438630500000004,0.12171668600000002,0.05197094534399999,0.016318884704999998,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,d Gas w/CCS,0.0,0.0,0.0,0.0,0.0,0.00718001,0.0191354,0.03434359,0.056145930000000004,0.08488151000000001,0.12561335,0.17994308999999997,0.29841891,0.44676827,0.6964976999999999,1.0029668,1.300187,1.6430666,1.9630359,2.2148544,2.546929,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,e Oil,0.017773,0.0420406,0.0578339,0.139985,0.1830229,0.19086440000000002,0.2048047,0.21453189,0.22514767000000002,0.23570631000000003,0.25072379,0.24668405,0.22025820000000002,0.18644945,0.14733567600000003,0.09918539299999998,0.062165274999999985,0.027583608600000004,0.010459616799999998,0.0038582586699999998,0.001031568293,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,f Oil w/CCS,0.0,0.0,0.0,0.0,0.0,0.037041,0.0659127,0.0901353,0.1220942,0.1546524,0.1943342,0.23720809999999998,0.3304143,0.41673489999999996,0.5642384,0.706552,0.8258724000000001,1.0170103,1.0707335,0.9861358,0.7588676,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,g Biomass,0.0138923,0.0489274,0.113382,0.168815,0.20503169999999998,0.23524575999999997,0.26956551,0.29387061999999997,0.31046571999999995,0.32007189999999996,0.32734279,0.31766470999999996,0.30283541,0.26549006,0.16972000000000004,0.07976885,0.035383723,0.0078159197,0.0018049551579999998,4.997212815E-4,9.440138526000003E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,h Biomass w/CCS,0.0,0.0,0.0,0.0,0.0,0.00601937,0.0156259,0.027616039999999998,0.0452606,0.06820877,0.1005531,0.14683925,0.25023256,0.38111968000000007,0.6138396899999999,0.8752036700000001,1.1037993799999999,1.3478927199999997,1.53279007,1.6379675699999998,1.6903520499999998,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,i Nuclear,0.00805313,0.0354779,0.0522827,0.048937503,0.049806262999999996,0.051121163,0.05354160299999999,0.056132103,0.060565593,0.067711993,0.080926793,0.097786372,0.134080312,0.175913622,0.237648431,0.311242,0.37867481,0.45393568,0.52431499,0.5850701999999999,0.6705481,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,j Geothermal,0.0,0.0,0.0,0.00407581,0.010135700000000001,0.01982877,0.03451146,0.05158043,0.07279923,0.09381439999999999,0.12014355999999998,0.1473658,0.1965766,0.24551700000000004,0.3106062,0.3721037,0.4164922,0.42690200000000006,0.426902,0.426902,0.4269021,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,k Hydro,0.744149,1.21485,1.45184,1.4758,1.49977,1.52373,1.5477,1.57166,1.61397,1.65628,1.69859,1.7409,1.78321,1.82552,1.86783,1.91014,1.95245,1.99476,2.03707,2.07938,2.07938,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,l Wind,0.0,3.34799E-4,0.00783718,0.019465782499999997,0.030988169999999995,0.046844612900000006,0.0699201399,0.09682031190000001,0.12396940990000001,0.1560794224,0.2050342669,0.26343087,0.38820349299999996,0.535941621,0.770351163,1.042577768,1.296695696,1.59075271,1.81149819,1.97779763,2.1954645900000003,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,m Solar,0.0,0.0,0.0,0.0020796347999999997,0.0063976363000000005,0.0138690371,0.025525169900000005,0.041544759,0.06687040699999999,0.0994682002,0.1450075487,0.2068685069,0.30201055209999994,0.404908703,0.5534338750000001,0.7218008899999999,0.8904034970000001,1.079767398,1.25070773,1.4021908500000002,1.61344792,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,n CHP,0.0,0.0,0.0,0.0,9.11482E-4,0.00163983,0.00251761,0.0035496,0.00494958,0.00676961,0.00890277,0.0107497,0.0137019,0.0171333,0.0213172,0.0253685,0.029571,0.0360138,0.0391033,0.0402867,0.0358994,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,a Coal,0.295991,0.395942,0.316566,0.3523066,0.3563362,0.3512133200000001,0.34969814,0.34204329000000006,0.3319149000000001,0.31264278000000006,0.29048291000000004,0.26144663,0.22515311999999998,0.18105489999999996,0.091231531,0.03347917200000001,0.013255116,0.00256195496,6.14430234E-4,1.7468190342000004E-4,3.161828971300001E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,b Coal w/CCS,0.0,0.0,0.0,0.0,0.0,2.2555600000000002E-4,8.859244000000001E-4,0.0019341398,0.0040265753,0.006764478,0.010177547299999999,0.016363783,0.025509879500000002,0.0358529789,0.05462313889999999,0.07328026540000002,0.08697842430000001,0.104034181,0.11884349299999998,0.13006729999999994,0.14424395,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,c Gas,0.03483713,0.1262951,0.189925,0.1977874,0.19915476,0.19497568999999998,0.19121669999999996,0.18505876999999998,0.17910166999999996,0.16982972,0.16069949,0.14930332999999998,0.12160673,0.10872948699999999,0.09127341900000001,0.0699824375,0.048184073699999996,0.021148470890000003,0.008414975782999998,0.0032686872079,8.5572725788E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,d Gas w/CCS,0.0,0.0,0.0,0.0,0.0,0.00517976,0.01669069,0.030654300000000002,0.04968393,0.06652213,0.0809628,0.09817642000000001,0.1170457,0.1344812,0.15887300000000001,0.1766878,0.1847932,0.1958608,0.20650190000000002,0.21429370000000003,0.22786230000000002,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,e Oil,0.0592847,0.0551952,0.0266292,0.02254248,0.022036880000000002,0.021306875,0.02054953,0.019497221000000002,0.018881080999999997,0.0175278,0.016110488,0.014179497999999999,0.0105635864,0.008129878299999999,0.0059779408,0.0036602125,0.00208019349,9.052408300000001E-4,3.23398244E-4,1.1540217139999999E-4,3.122705384E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,f Oil w/CCS,0.0,0.0,0.0,0.0,0.0,0.0014703,0.0037866149999999997,0.005756879,0.008803019,0.010537897000000001,0.011995421999999999,0.014510229,0.017070336999999998,0.019027935,0.025258807,0.0290712,0.03077306,0.03890889,0.038786100000000004,0.032589820000000005,0.022626926,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,g Biomass,0.0137844,0.0300024,0.0279072,0.02758696,0.02824208,0.028515601999999998,0.030096761000000003,0.031409414999999996,0.03331978,0.033571972,0.032738236999999996,0.030395013,0.026243897,0.020901362000000003,0.011651908600000004,0.005106434399999999,0.002206781,5.089704030000001E-4,1.244317397E-4,3.5710722000000004E-5,6.718889973E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,h Biomass w/CCS,0.0,0.0,0.0,0.0,0.0,2.67443E-4,0.001069094,0.0023540912,0.0048713294999999995,0.008048731,0.011911322799999997,0.018908040200000004,0.029339783100000006,0.0416899669,0.06728560950000001,0.09423168090000002,0.11549259390000001,0.14658048899999998,0.17382217200000002,0.192577655,0.203475233,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,i Nuclear,0.262681,0.331344,0.326372,0.3504635,0.35614019999999996,0.3594406,0.3844842,0.4184025,0.4729212,0.5175455,0.5569713000000001,0.6147739000000001,0.6844397000000001,0.7505107,0.8433509000000001,0.8994057999999999,0.9543237,1.0234647999999997,1.054313,1.0572617999999998,1.065463,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,j Geothermal,0.0,0.0,0.0,0.00373612,0.0060514,0.00869001,0.01295707,0.01323098,0.01323094,0.013231,0.013231010000000001,0.01323096,0.013231389999999999,0.01323093,0.013231007,0.013231001,0.01322893,0.013231003,0.013231007,0.013231,0.013231001999999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,k Hydro,1.06835,1.30916,1.26543,1.30693,1.34854,1.39015,1.43175,1.47336,1.49957,1.52578,1.55199,1.5782,1.60441,1.63062,1.65683,1.68304,1.70925,1.73547,1.76168,1.78789,1.78789,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,l Wind,0.0,0.00529559,0.0344051,0.046134412300000004,0.0537016873,0.0645325344,0.09181442639999998,0.1305772994,0.1601668534,0.2157968151,0.27670898909999997,0.35501971,0.432882045,0.497804524,0.5991398099999998,0.6926969559999998,0.750132575,0.8306832569999999,0.89035885,0.938706448,1.0032353680000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,m Solar,0.0,6.11999E-5,5.68799E-4,0.0011041706100000002,0.0016009282700000002,0.00343619816,0.009624768090000001,0.02027702559,0.03895402438,0.06032821783,0.08373163204,0.11509681889000001,0.15104901165999998,0.18399718456000005,0.23761340597,0.28853616044,0.32242866033999995,0.3689261235,0.40532100810000005,0.43487136020000006,0.47435475450000003,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,n CHP,4.21048E-4,4.20829E-4,4.24375E-4,4.54847E-4,9.60529E-4,0.001342088,0.001633331,0.0018724660000000001,0.002047221,0.002283101,0.002541236,0.002648607,0.002860275,0.003174876,0.00352892,0.003922,0.004368688700000001,0.0051888346,0.0055448803,0.0056300777000000005,0.00495368695,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,a Coal,1.548E-4,0.007992,0.0111816,0.0163244,0.02003476,0.022973352,0.027092235,0.031258305,0.03519255899999999,0.03858688300000001,0.041806253,0.04345311,0.044238392,0.043308323,0.034299206,0.020192347000000006,0.010544439400000001,0.00253853033,7.009402859999999E-4,2.311252692E-4,5.216283156999999E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,b Coal w/CCS,0.0,0.0,0.0,0.0,0.0,5.3474600000000005E-5,1.749919E-4,3.6412809999999995E-4,7.285627999999999E-4,0.0013383241000000001,0.0023469509,0.0041470188,0.007780638099999999,0.013219537899999998,0.0227771015,0.035228261399999995,0.04905699670000001,0.0648467766,0.08144818399999999,0.097293828,0.12008577100000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,c Gas,0.0129143,0.042021,0.0577774,0.0720123,0.08491043,0.08991584999999999,0.09730136,0.10483613,0.11209694,0.11885221000000001,0.12671594,0.13096468,0.12128203799999998,0.114422575,0.107026234,0.095164021,0.0801354172,0.05399692909999999,0.031822487950000006,0.016709257438,0.0061505571259,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,d Gas w/CCS,0.0,0.0,0.0,0.0,0.0,0.00593816,0.015645899999999997,0.02658251,0.03935476,0.05267563,0.06683017000000001,0.08238516,0.10441525000000001,0.13011963999999998,0.16305818,0.2009533,0.24181199999999997,0.2900841,0.3419505,0.391178,0.46757709999999997,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,e Oil,0.119832,0.219264,0.220659,0.2424285,0.26525449999999995,0.26251061000000003,0.26016697,0.25334421000000007,0.24266277,0.23114300999999998,0.22308263,0.20679192000000002,0.17311179999999998,0.143812866,0.107271143,0.076693505,0.052217279000000005,0.024550494499999995,0.0101009581,0.0040099258,0.001112092562,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,f Oil w/CCS,0.0,0.0,0.0,0.0,0.0,0.018911,0.043033100000000005,0.06596969999999999,0.0915497,0.11605080000000001,0.14191024,0.17018694999999998,0.21193153,0.25687611,0.3227946,0.38869900000000007,0.45427949999999995,0.5373374,0.5734368,0.5503591000000001,0.44344780000000006,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,g Biomass,0.00762288,0.008862,0.0143049,0.01489271,0.025495789999999997,0.03435734,0.04754842,0.06137479,0.07495086000000001,0.08695333000000002,0.097603189,0.102369053,0.10313658999999999,0.09758362049999998,0.07270896099999999,0.041220859000000006,0.021565205,0.0057545187,0.00154972656,4.8447256570000003E-4,9.88631449E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,h Biomass w/CCS,0.0,0.0,0.0,0.0,0.0,0.001278539,0.003989938,0.007816487,0.01397304,0.022638967000000003,0.034825271,0.05356319100000001,0.08706200600000001,0.13296475000000002,0.21318601600000003,0.310269805,0.411685185,0.5283845370000001,0.6353476300000002,0.71745865,0.7914761099999998,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,i Nuclear,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0113205,0.0339334,0.0692262,0.1057475,0.1522897,0.2010345,0.26265,0.3270915,0.3899101,0.4561093,0.5215189,0.5831088,0.6571293,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,j Geothermal,0.002898,0.0094176,0.0117864,0.01908155,0.026925860000000003,0.03379201,0.033792,0.03379191,0.03379257,0.03379199,0.03379206,0.03379197,0.03379203,0.03379144,0.033792329999999995,0.03379201,0.03379277,0.03379199,0.03379206,0.03379204,0.033792020000000006,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,k Hydro,0.0486099,0.0767999,0.0855111,0.0891228,0.0927345,0.0963461,0.0999578,0.103569,0.109946,0.116323,0.1227,0.129076,0.135453,0.14183,0.148206,0.154583,0.16096,0.167337,0.173713,0.18009,0.18009,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,l Wind,0.0,9.144E-4,0.00207,0.012250642799999998,0.0295523958,0.05409752079999999,0.09813298480000002,0.15363083779999998,0.22201879179999998,0.292033941,0.367577318,0.445343163,0.5413086989999999,0.640756686,0.7718736920000001,0.9086172400000001,1.0344598999999999,1.16754052,1.2652765400000001,1.33954697,1.4556156400000002,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,m Solar,0.0,0.0,4.32E-5,0.0050435453000000005,0.014267162299999999,0.0251114143,0.0402863403,0.062322056300000005,0.0941129113,0.130923131,0.177195989,0.237064618,0.32104730200000003,0.41575010600000006,0.5398276609999999,0.6781505959999999,0.823957151,0.98365718,1.14028846,1.2862405,1.47769433,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,n CHP,0.0,0.0,0.0,0.0,5.47591E-4,0.0010428,0.00163859,0.0022981,0.00303849,0.00404932,0.00536407,0.00655289,0.00849753,0.0111014,0.0141556,0.0176916,0.0217599,0.0267476,0.0312084,0.0360909,0.0367064,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,a Coal,0.257637,0.202024,0.264001,0.365612,0.39950810000000003,0.40400386,0.40884381,0.40329133,0.39129955,0.37362761000000005,0.35397895999999995,0.32208591000000003,0.28511696,0.23705698,0.12817420400000004,0.043250895,0.016530830100000005,0.0032714284799999997,7.93757405E-4,2.3753808889999997E-4,4.7914406840000005E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,b Coal w/CCS,0.0,0.0,0.0,0.0,0.0,3.293547E-4,0.0010775919,0.0020974912,0.0040863735000000005,0.006955013399999999,0.010553996299999998,0.0169553449,0.029430970700000007,0.043267849399999996,0.06917903870000001,0.10078302219999999,0.1259908169,0.159677257,0.19242257799999998,0.22080421099999997,0.25664752900000004,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,c Gas,0.270924,0.259231,0.289064,0.3733701,0.43244099999999996,0.44820970000000004,0.4653579999999999,0.475122,0.4812047,0.48827027999999995,0.4938604700000001,0.48260463000000003,0.37591611,0.32393542999999997,0.286619046,0.227411271,0.1649498867,0.08029929179999999,0.034773960480000005,0.014809402362,0.0043603508385,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,d Gas w/CCS,0.0,0.0,0.0,0.0,0.0,0.0252759,0.067661,0.1100672,0.16336699999999998,0.21581609999999998,0.2618861,0.3166492,0.39533450000000003,0.4651317,0.5587536,0.6558256,0.7225897,0.8190632,0.9090186,0.9828518,1.0693279,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,e Oil,0.162338,0.0429694,0.00578517,0.00822561,0.007923063,0.007316817999999999,0.007403964,0.007303654,0.007356252000000001,0.007400214000000002,0.0073686319,0.007081902700000001,0.0052855597,0.0040126069,0.0033635951,0.0023283574000000002,0.0014299782000000002,6.8421301E-4,2.64189394E-4,1.024982033E-4,2.8048197760000002E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,f Oil w/CCS,0.0,0.0,0.0,0.0,0.0,9.20935E-4,0.001810379,0.002312412,0.003295085,0.004104834,0.004805457,0.006125583,0.00844258,0.010107106000000001,0.014822518,0.019710299,0.023306523,0.032855,0.037880155,0.03818805,0.031474103,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,g Biomass,0.0,0.0,0.0,0.00133329,0.002350036,0.003049087,0.0048189420000000005,0.006593684,0.008752075999999998,0.010739072,0.012285311,0.013167063,0.013425914999999998,0.0119448017,0.0079096323,0.0038932264999999994,0.0017940683999999997,4.4152392E-4,1.1317194539999998E-4,3.4788342929999996E-5,7.218803709E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,h Biomass w/CCS,0.0,0.0,0.0,0.0,0.0,1.42078E-4,5.270601E-4,0.0011216095,0.0023602893999999995,0.0042298594,0.0066864851,0.011341014200000003,0.0208998956,0.032406818799999994,0.0578775666,0.0918999505,0.1218780274,0.17011076769999997,0.218620159,0.25870118400000003,0.2975132970000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,i Nuclear,0.0,0.00977756,0.00896395,0.08455984999999999,0.12345701,0.15414899,0.21204597,0.27852399,0.36072917000000004,0.44482755,0.5242214700000001,0.61896805,0.75034252,0.8648742849999999,1.0387426,1.1535119,1.2615417000000002,1.4249390000000002,1.5545266,1.6564728,1.7891491,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,j Geothermal,0.0,0.0,0.0,0.00790414,0.01474361,0.019910280000000002,0.0282155,0.036360489999999995,0.0460826,0.049207589999999996,0.053294259999999996,0.06067992,0.06731799,0.06731799000000001,0.06731806000000001,0.06731806,0.06731904999999999,0.06731802,0.06731811,0.06731804000000001,0.06731802,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,k Hydro,0.183715,0.211439,0.217472,0.23678,0.256088,0.275396,0.294704,0.314012,0.33546,0.356908,0.378356,0.399804,0.421252,0.4427,0.464148,0.485596,0.507045,0.528493,0.549941,0.571389,0.571389,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,l Wind,0.0,0.0,2.87998E-5,0.0074609053,0.0157672768,0.0234082171,0.03926240680000001,0.05884793280000001,0.08896915799999998,0.11895444249999998,0.152218552,0.2019077997,0.27620113100000004,0.34469945700000004,0.461251702,0.5997052719999999,0.7074979309999999,0.863984653,0.9963755519999999,1.12337768,1.2692659899999998,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,m Solar,0.0,0.0,0.0,0.0017448933,0.0038134842,0.0059585435,0.010407573600000001,0.0163342371,0.0258826424,0.036601719799999995,0.04935139819999999,0.0684945899,0.0952685408,0.12116168629999999,0.16498748,0.2169341883,0.259973759,0.32344175399999997,0.382830557,0.442139656,0.5133980969999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,n CHP,0.0,6.27014E-4,0.001578479,0.0013431277,0.0018703802,0.002485948,0.0028580473000000004,0.0032400496,0.0036486413000000003,0.0042262892,0.0049536371,0.0055097026,0.0064894144999999995,0.0077157857,0.009361947899999999,0.0110854957,0.0130840071,0.0167708302,0.0192005016,0.02103718907,0.01946888754,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,a Coal,1.69735,7.20575,11.8677,13.98244,15.31883,16.370212,17.541436000000004,18.316342,18.558911000000002,18.425244,18.090390999999997,17.428791000000004,16.412209999999998,14.880513000000002,10.077280299999996,4.924591,2.261040140000001,0.47491815100000007,0.11603130900000001,0.03376716685999999,0.006550286682200002,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,b Coal w/CCS,0.0,0.0,0.0,0.0,0.0,0.02654521,0.08097227,0.16034819,0.28587209,0.46286535,0.69952657,1.13809549,1.8274346099999998,2.74520884,4.6839894300000005,6.704511780000002,8.036604399999998,9.379778100000001,10.228950900000001,10.6812485,11.440155699999998,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,c Gas,0.00994681,0.0835439,0.3003612,0.2783672,0.3313574,0.3591745,0.3896937,0.4167000999999999,0.43939690000000003,0.45971554000000003,0.47802846,0.49097084,0.45762557,0.43686849000000005,0.419983182,0.37802871,0.31531276,0.2045838879,0.11507655650000001,0.05902054665,0.019850493961999997,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,d Gas w/CCS,0.0,0.0,0.0,0.0,0.0,0.0353099,0.0898571,0.151129,0.21695540000000002,0.2820763,0.343525,0.4207127,0.5153377,0.6277176,0.845038,1.1040911,1.3007862000000001,1.5910452,1.8143292,1.9552885999999998,2.2722566000000004,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,e Oil,0.177202,0.221325,0.0483861,0.03647921,0.04538698,0.04769572999999999,0.05175286,0.05491903,0.058377750000000006,0.06149697,0.063400189,0.063372125,0.05437435399999999,0.046115188999999994,0.038573304,0.026852507999999997,0.0170111178,0.0081296699,0.00317945381,0.001212234986,3.069568739E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,f Oil w/CCS,0.0,0.0,0.0,0.0,0.0,0.0085397,0.01600097,0.022721289999999998,0.031306360000000005,0.040416240000000006,0.049544750000000005,0.06346916,0.07917052,0.09647173,0.13834446,0.17511493,0.19618916,0.23752549,0.24227020999999996,0.21870273999999998,0.16440738,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,g Biomass,1.49641E-6,0.00866158,0.0410615,0.0363795,0.0673688,0.10544947,0.17094115,0.24548688999999999,0.32329584,0.39718137,0.45836281,0.50149939,0.5092738,0.479663639,0.3539296500000001,0.19615438999999998,0.099560727,0.025622151699999998,0.006592609809999999,0.0019855758770000002,3.8625163571999997E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,h Biomass w/CCS,0.0,0.0,0.0,0.0,0.0,0.00575542,0.019126,0.04108585000000001,0.07752779,0.1305698,0.2029176,0.34116450000000004,0.56979415,0.9009906699999999,1.7289249199999999,2.6803863900000007,3.3793523599999995,4.241770079999999,4.82568586,5.141520219999999,5.5207096,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,i Nuclear,0.0,0.191116,0.265967,0.42946,0.647438,0.9940709999999999,1.589703,2.338407,3.298455,4.429473000000001,5.6812496,7.178019200000001,8.874991,10.679702800000001,13.813673,16.633981000000002,18.362572000000004,20.024169999999998,20.763868,20.858703999999996,21.410444000000002,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,j Geothermal,0.0,4.13999E-4,5.83199E-4,0.048443425000000005,0.093926064,0.115798999,0.11579900000000001,0.115798967,0.1157991,0.115799,0.11579906000000001,0.115799,0.11583568999999999,0.11586433000000002,0.11579858,0.11579903,0.11568865,0.11579902,0.11579903,0.11579905,0.115799,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,k Hydro,0.45643,1.4296,2.60038,2.6427,2.68502,2.72734,2.76966,2.81198,2.90904,3.00611,3.10317,3.20023,3.29729,3.39435,3.49142,3.58848,3.68554,3.7826,3.87966,3.97673,3.97673,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,l Wind,7.19999E-6,0.00730149,0.160644,0.269650639,0.427003899,0.689949789,1.1460183290000001,1.7202599889999999,2.2671370889999998,2.96193717,3.6657814099999997,4.529302720000001,5.462347580000001,6.472291120000001,8.585698919999999,10.576231,11.6665416,12.688424999999999,12.8513511,12.355468400000003,11.6405343,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,m Solar,7.19999E-6,2.74E-4,0.00338849,0.02933248,0.079385837,0.17532113700000002,0.357219027,0.610730127,0.9426773770000001,1.2711769940000002,1.6283453200000002,2.1258434600000005,2.67538306,3.26060454,4.307532500000001,5.44259179,6.309727279999999,7.164249069999999,7.660310859999999,7.8691011500000005,7.96065806,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,n CHP,0.0,0.0,0.0,0.0,0.0021679,0.00450617,0.00760615,0.0114798,0.0168962,0.0241556,0.0326807,0.0423935,0.0550383,0.0704738,0.0918306,0.113348,0.136849,0.172584,0.191243,0.198128,0.17036,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,a Coal,0.0133489,0.00888839,0.0135144,0.0335918,0.04202875,0.045411645,0.053016121,0.060628494,0.06690929200000002,0.07213559100000001,0.077216612,0.07844457400000002,0.07829769000000002,0.073358856,0.050462188,0.023393057000000002,0.010732712600000003,0.00231712663,5.980316060000001E-4,1.9370159570000002E-4,4.327727904E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,b Coal w/CCS,0.0,0.0,0.0,0.0,0.0,6.48667E-5,2.960303E-4,6.811312E-4,0.0013636660000000001,0.0024308576,0.004149062,0.007087894600000002,0.0146456848,0.024949954999999992,0.0431755505,0.0679548409,0.0932577461,0.12332503539999998,0.151643272,0.174320619,0.20447374100000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,c Gas,0.016196409999999998,0.0266363,0.041749400000000006,0.0920338,0.1151131,0.12213817,0.1387838,0.15570976,0.17134923999999996,0.18697069,0.20606682999999998,0.21873655,0.19752509999999998,0.191891945,0.187472453,0.166185196,0.137183822,0.0842361374,0.04473748121,0.022334457098,0.0077931110796,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,d Gas w/CCS,0.0,0.0,0.0,0.0,0.0,0.00441523,0.01643156,0.031575809999999996,0.04951746,0.06941931,0.0927386,0.11989343999999999,0.17270346,0.23243893000000002,0.3247626,0.4423545,0.5614484,0.7107045999999999,0.8515686,0.9601395000000001,1.1085918000000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,e Oil,0.00136439,4.10394E-4,0.00180719,0.006556835,0.006737521999999999,0.006121419000000001,0.007215661,0.008127289,0.009203981,0.010543287,0.012456953,0.013346820899999999,0.014226566000000001,0.0137856355,0.0126526551,0.0097449668,0.006824131,0.0032972122999999996,0.00135024292,5.583745999999999E-4,1.648414791E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,f Oil w/CCS,0.0,0.0,0.0,0.0,0.0,0.00101141,0.002914901,0.004310851,0.0060756560000000005,0.008158805000000002,0.011080556,0.014994088,0.024269856,0.033490879,0.05213806,0.07548413,0.10009455,0.14205266,0.16835851,0.17350158999999998,0.15013264,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,g Biomass,9.86411E-4,0.00181081,0.00179639,0.00314446,0.0037146,0.004131334,0.0054756974,0.006736939799999999,0.0079022233,0.009017684099999998,0.0102554755,0.0108367015,0.011518336600000002,0.0110026792,0.007944953800000001,0.0042419756000000005,0.0021328029000000004,5.349944599999999E-4,1.38720218E-4,4.406673541E-5,9.377899418999998E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,h Biomass w/CCS,0.0,0.0,0.0,0.0,0.0,9.10175E-5,3.969389E-4,8.767021000000001E-4,0.0016735213,0.0028505771,0.0046676812,0.0076959218,0.015352975399999998,0.026042574,0.0472514792,0.07745243490000003,0.11015047399999998,0.15486683060000003,0.19674952499999998,0.22768037899999996,0.259009587,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,i Nuclear,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00159673,0.00515262,0.011664299999999999,0.01909442,0.0327265,0.04743759,0.06873667,0.09502294,0.12133801999999999,0.15254874000000002,0.18220059,0.20732564000000003,0.23986868,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,j Geothermal,0.0,0.0,0.0,0.00153437,0.00324063,0.00465041,0.0085088,0.013360339999999998,0.018975480000000003,0.02387135,0.029897669999999998,0.03676535,0.04641002,0.05471003,0.058849,0.05884897,0.058850490000000005,0.05884896,0.058848960000000006,0.05884895,0.05884903,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,k Hydro,0.0989892,0.143291,0.145444,0.15207,0.158696,0.165322,0.171948,0.178574,0.190273,0.201972,0.213671,0.22537,0.237068,0.248767,0.260466,0.272165,0.283864,0.295563,0.307262,0.318961,0.318961,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,l Wind,0.0,1.764E-4,1.404E-4,8.974301199999999E-4,0.00169451398,0.00236620745,0.00432880675,0.0070360026499999995,0.01041862095,0.014124506430000001,0.01932589137,0.025934862899999998,0.0378931426,0.050787188700000006,0.0701069724,0.09414627879999998,0.11740222399999997,0.145289617,0.165571127,0.179879413,0.19843098099999998,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,m Solar,0.0,0.0,0.0,3.0673097E-4,7.3647186E-4,0.00127471459,0.0029325389899999997,0.005704626589999999,0.01003404649,0.016008761019999998,0.02520291223,0.038396092,0.0637581286,0.094222523,0.1422148971,0.20427349709999998,0.27164027469999996,0.355665477,0.430798658,0.495555607,0.5796607579999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,n CHP,0.0,0.0,0.0,0.0,3.42518E-5,7.02842E-5,1.17916E-4,1.81532E-4,2.81006E-4,4.28203E-4,6.36419E-4,8.91775E-4,0.00131132,0.00189025,0.00278232,0.00379688,0.00505127,0.0070662,0.00879642,0.0105307,0.0106163,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,a Coal,0.859385,0.892792,0.885689,1.04794,1.12419,1.1670053,1.2264171,1.2596283000000001,1.2851417,1.2823229999999999,1.2723247100000004,1.2221218700000005,1.15244881,1.04354275,0.70785037,0.35102147000000006,0.16527182999999995,0.0369505806,0.009403051689999999,0.0028157816739999997,5.541443740999999E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,b Coal w/CCS,0.0,0.0,0.0,0.0,0.0,0.0012062330000000001,0.003923681,0.008118553,0.016914215,0.029533899000000002,0.04731612299999999,0.072137195,0.109580906,0.147168875,0.23229208399999998,0.3188691739999999,0.372972484,0.423980372,0.45517229000000003,0.47224117000000004,0.48213570000000006,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,c Gas,0.140306,0.12755,0.123565,0.15096346,0.16743095000000002,0.1731567,0.18430513999999998,0.19401951,0.20735691,0.21820712000000003,0.22996197000000002,0.23146550000000002,0.20952922,0.194368976,0.178939654,0.157872579,0.12856362570000002,0.077867041,0.04008380171,0.018267687385,0.005868091663,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,d Gas w/CCS,0.0,0.0,0.0,0.0,0.0,0.00992204,0.02710384,0.04668084,0.07318387,0.09916422999999999,0.12502458,0.14908549999999998,0.17725723999999998,0.20131595999999996,0.24306250000000001,0.2798931,0.2969806,0.3139828,0.3249111,0.33345089999999994,0.35387690000000005,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,e Oil,0.0841881,0.0370123,0.0384476,0.04327934,0.04827529,0.04793194,0.05002591,0.05092727,0.05384064,0.055319419999999994,0.056969553,0.053868970999999995,0.044099664,0.035204719,0.028030518000000004,0.0189068223,0.011306823399999999,0.004772754,0.0018706674699999998,7.12630573E-4,2.00273544E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,f Oil w/CCS,0.0,0.0,0.0,0.0,0.0,0.00581831,0.01174449,0.01654961,0.02504835,0.03197361,0.03934986,0.04642464,0.05438279,0.05844922,0.07211092,0.07699291,0.07190563,0.06798496000000001,0.057549569999999994,0.043592530000000004,0.028154739999999998,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,g Biomass,1.65607E-4,0.009839,0.0341529,0.03613682,0.04023962,0.043410360999999995,0.049420988,0.054604279,0.060983754,0.065695565,0.069735078,0.06933230700000001,0.066411098,0.05946825,0.042184291,0.023362628,0.011897471,0.0031879815,8.358241199999999E-4,2.5467841089999994E-4,5.133862991E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,h Biomass w/CCS,0.0,0.0,0.0,0.0,0.0,6.726480000000001E-4,0.0021297729999999997,0.004332624,0.008683646,0.014563413,0.022544922,0.033486886,0.050160451999999994,0.06772074500000001,0.11214697800000002,0.15899068499999996,0.19005241399999998,0.225099243,0.246268059,0.25191754999999993,0.22637636300000002,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,i Nuclear,0.268826,0.348192,0.3271,0.3744935,0.409447,0.44086309999999995,0.4931848,0.5442492000000001,0.6177961000000001,0.6916848999999999,0.7756796,0.8574151999999999,0.9664558,1.0660497,1.2616542,1.4076035999999998,1.507102,1.6192808999999997,1.6819425999999997,1.73589,1.809693,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,j Geothermal,0.0,0.0,0.0,0.00605472,0.01280914,0.02117207,0.033485999999999995,0.04550802,0.057236949999999995,0.05723704000000001,0.057237039999999996,0.05723703000000001,0.05723466,0.05723696,0.057236999999999996,0.05723698000000001,0.05723809,0.05723701,0.05723701,0.05723698,0.05723702,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,k Hydro,0.092826,0.14841,0.159804,0.159292,0.158992,0.158692,0.158392,0.158092,0.163653,0.169214,0.174776,0.180337,0.185898,0.191459,0.19702,0.202581,0.208143,0.213704,0.219265,0.224826,0.224826,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,l Wind,0.0,0.00100802,0.0147851,0.023213571000000002,0.0330554263,0.0478879833,0.07757327630000001,0.11640818330000001,0.16244724230000002,0.22482160430000003,0.29902193500000007,0.371231173,0.45568770999999997,0.527078673,0.692692034,0.8608418910000001,0.9536471350000001,1.0757050400000001,1.15623776,1.2487814500000003,1.30960231,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,m Solar,0.0,3.60007E-6,0.00240838,0.0034646862000000003,0.004716874199999999,0.006985739599999999,0.0122145169,0.0200837781,0.031152943699999998,0.0471386343,0.06774129640000001,0.08993791310000002,0.11862294279999999,0.1451406666,0.20524283799999998,0.2691771471,0.3097767213,0.362088974,0.401403141,0.4444295259999999,0.48104993099999993,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,n CHP,0.084278781,0.08694983,0.07559249,0.07370941,0.0813940617,0.091586973,0.09001552799999998,0.085673992,0.08052816000000002,0.073635211,0.067181906,0.05646809999999999,0.046631075999999994,0.03786116,0.02691813,0.019149875,0.014365073,0.009163743,0.0065931901,0.0052989855,0.0039030251,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,a Coal,2.83949,2.63263,2.14461,2.255947,2.269625,2.2321164,2.2097204,2.1471937,2.0936923999999992,1.95335427,1.7990403500000003,1.62424071,1.4349368799999997,1.2117193899999998,0.69926241,0.30645556000000007,0.132549372,0.027700982399999997,0.00688676346,0.002012641884,3.667089405999999E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,b Coal w/CCS,0.0,0.0,0.0,0.0,0.0,0.0011356410000000002,0.004383921,0.009834189,0.023142661,0.037242854000000006,0.053025515999999995,0.07690000999999999,0.10976999300000001,0.142863856,0.20674556800000005,0.26530635199999997,0.30550715500000003,0.34607709500000006,0.37189936000000007,0.38446342,0.39334695,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,c Gas,0.463445,1.9254419999999999,2.2807700000000004,2.302063,2.3139503,2.2677362999999997,2.2192271999999997,2.1294459000000003,2.0538987,1.9014575,1.7524206,1.60544889,1.2898303899999999,1.1207461300000001,0.9181093900000001,0.7385400480000001,0.548389099,0.2781720515,0.12848764229999998,0.05605493989999999,0.016627789494000005,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,d Gas w/CCS,0.0,0.0,0.0,0.0,0.0,0.0345185,0.1096191,0.2045309,0.3583051,0.4711344,0.561173,0.6549822,0.753836,0.8345220999999999,0.9491430999999999,1.0170996,1.0348685,1.0464993,1.0925108,1.1453552,1.2411757000000003,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,e Oil,0.625719,0.358867,0.20094,0.1621176,0.16100924,0.15593001999999997,0.15217726,0.14702939999999998,0.15056338,0.14017343999999998,0.13125161,0.11879125000000001,0.096105787,0.077139391,0.058885253,0.037001689,0.021650128499999997,0.009071320800000001,0.00364530194,0.001450156998,4.40838092E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,f Oil w/CCS,0.0,0.0,0.0,0.0,0.0,0.0111672,0.02754778,0.04232473,0.07177231,0.08080723,0.08940554,0.10077433,0.11184048,0.11491511,0.13433647,0.1316393,0.11792162,0.11392006999999998,0.10224991,0.08109827,0.05936063,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,g Biomass,0.028465,0.159297,0.259185,0.1683142,0.2005827,0.22237918,0.25521486,0.2824172,0.32273498,0.33385246999999996,0.3354337,0.32309622,0.29789567000000006,0.25627745,0.16924867999999996,0.08368441799999998,0.039436271999999994,0.0099577403,0.0025468548499999995,7.565158669999999E-4,1.4834302710000003E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,h Biomass w/CCS,0.0,0.0,0.0,0.0,0.0,0.00282403,0.010504275,0.0228491,0.050896806,0.07837407899999999,0.107922413,0.15249320500000002,0.21333252100000005,0.27567545600000004,0.40694576400000004,0.5238605080000001,0.604605368,0.70659877,0.75553835,0.7388499199999998,0.6118341700000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,i Nuclear,2.59272,3.24344,2.97257,3.0495859999999997,3.0812069999999996,3.070297,3.1371779999999996,3.187614,3.446751,3.5865620000000007,3.7223870000000003,3.970634,4.34037,4.700323,5.238568000000001,5.592236000000001,5.923606,6.3366169999999995,6.578069,6.733554000000001,6.800371000000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,j Geothermal,0.0116137,0.0194286,0.0201663,0.0490891,0.0742527,0.10771220000000001,0.1657846,0.2251201,0.254926,0.25492590000000004,0.2549259,0.2549266,0.2549233,0.2549257,0.2549259,0.254926,0.25493299999999997,0.254926,0.2549261,0.254926,0.2549256,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,k Hydro,0.939621,0.95855,1.17152,1.14714,1.13525,1.12336,1.11147,1.09957,1.10415,1.10873,1.11331,1.11789,1.12247,1.12705,1.13163,1.13621,1.14078,1.14536,1.14994,1.15452,1.15452,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,l Wind,0.00280083,0.25258,0.521819,0.6176291230000001,0.689927288,0.794915049,1.034680159,1.3639476690000003,1.447092499,1.869653186,2.2911970710000005,2.7885940900000006,3.2809568700000002,3.6533023100000004,4.220599979999999,4.78176677,5.16321219,5.67854231,6.080969720000001,6.499092369999999,6.8651285699999995,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,m Solar,4.32005E-5,0.00524505,0.08066889000000001,0.09395806100000001,0.10408657200000002,0.12063509700000001,0.160866184,0.22417954099999995,0.26562454,0.36986226299999997,0.48115227,0.6211099800000001,0.7782157230000001,0.9097056960000001,1.122648737,1.323698158,1.467502275,1.6605531699999998,1.82554841,1.99522322,2.16771112,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,n CHP,0.2110975,0.5644442,0.617119,0.6466759000000001,0.6778392,0.7347959,0.7109975,0.6700423999999999,0.59963954,0.53884805,0.48603931000000006,0.41673738,0.36445207,0.328248572,0.275865112,0.24225460299999999,0.223102276,0.20877055749999998,0.2121171173,0.22641362369999998,0.21684562386,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,a Coal,0.428483,0.180041,0.245558,0.2979123,0.3085208,0.30467421,0.30472712999999996,0.29874389999999995,0.28895817,0.27503106000000005,0.26029745000000004,0.23972213999999997,0.21435773999999996,0.18197538,0.104912323,0.04069597800000001,0.017371815000000002,0.003659070509999999,9.132334580000001E-4,2.7044024839999994E-4,5.301328087E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,b Coal w/CCS,0.0,0.0,0.0,0.0,0.0,1.609779E-4,6.086989000000001E-4,0.0012984850999999999,0.0027186527,0.0048681182,0.0078163821,0.012865315300000001,0.0206419749,0.028975733099999998,0.043502232599999996,0.058799964,0.0695922887,0.08208099699999999,0.09279424500000001,0.10096022600000003,0.10776286299999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,c Gas,0.24918880000000002,0.224147,0.177037,0.2164799,0.2256136,0.2223516,0.22308179,0.2206865,0.21712004999999995,0.21215137,0.20743027,0.19725299000000002,0.15740251600000002,0.139443074,0.11772031799999999,0.09543968389999999,0.0706804438,0.03561616955,0.015645969564999997,0.006431209355,0.0017977931998000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,d Gas w/CCS,0.0,0.0,0.0,0.0,0.0,0.00608126,0.01956784,0.03496062,0.05497638,0.07519853000000001,0.09425565,0.11545472,0.13943534999999999,0.16007265999999998,0.1864625,0.2063623,0.21451949999999997,0.2240767,0.23107370000000005,0.23502640000000002,0.2374298,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,e Oil,0.255453,0.00542502,0.0047411,0.006121827,0.0060746540000000005,0.005833215,0.005805750699999999,0.005621897599999999,0.00546261,0.0052680965000000005,0.0050760054,0.004645687900000001,0.0034447183,0.0026726415000000005,0.0019100189000000002,0.0012543212600000001,7.435353400000001E-4,3.25704215E-4,1.27227308E-4,4.949476360000001E-5,1.399674179E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,f Oil w/CCS,0.0,0.0,0.0,0.0,0.0,3.25865E-4,8.49473E-4,0.001251676,0.001886102,0.0024508110000000002,0.0030014324,0.0037354581,0.0045868987,0.0051896373,0.00657345,0.007395748000000001,0.0074081239999999994,0.008109887999999999,0.007620768000000001,0.006225092,0.004098109,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,g Biomass,0.0,0.0,2.62796E-4,0.001741327,0.0025085610000000003,0.003262938,0.00552477,0.008191289,0.011534344,0.014729857800000003,0.017488134000000002,0.0189728342,0.018948973699999996,0.017018261800000004,0.011572738300000001,0.0059514907,0.0028757030000000003,7.353904899999998E-4,1.9320637E-4,5.9748268E-5,1.2416350680000002E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,h Biomass w/CCS,0.0,0.0,0.0,0.0,0.0,1.166771E-4,5.139182000000001E-4,0.0011955497,0.0026470687999999997,0.0048919882,0.008045353699999999,0.013621666400000001,0.0225974921,0.03293546370000001,0.053830885599999996,0.07738875469999999,0.09539872870000002,0.1201440619,0.141823507,0.156120071,0.152840111,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,i Nuclear,0.274249,0.319511,0.32094,0.3651025,0.3791688,0.3848284,0.4238124999999999,0.47654030000000003,0.5474901999999999,0.6216269999999999,0.6988549,0.7939204,0.9094675000000001,1.0111001000000002,1.154672,1.2516415,1.343034,1.4641358999999998,1.5405574,1.5906840000000002,1.6495959999999998,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,j Geothermal,0.0,0.0,0.0,0.00419121,0.00659056,0.00840968,0.009836000000000001,0.009836000000000001,0.009835896,0.009836002,0.009836008,0.009835995,0.009835427,0.009835785,0.009835996999999999,0.009836003,0.009835091,0.009836005,0.009836009,0.009836003,0.009836001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,k Hydro,0.0388476,0.0448632,0.0479592,0.0480941,0.0483945,0.048695,0.0489954,0.0492959,0.0496296,0.0499634,0.0502971,0.0506309,0.0509646,0.0512984,0.0516321,0.0519659,0.0522996,0.0526334,0.0529671,0.0533009,0.0533009,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,l Wind,0.0,1.40396E-4,1.87196E-4,0.0049735746,0.0091605369,0.0135865733,0.025888866200000003,0.0428975932,0.06899927820000001,0.0966460066,0.12979902529999998,0.17237890389999996,0.219040732,0.2581734150000001,0.3213266920000001,0.38562840600000003,0.42534988900000004,0.48167328400000003,0.5312371229999999,0.587256543,0.6450912750000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,m Solar,0.0,0.0,0.0,6.4436076E-4,0.0012773167100000001,0.00271696233,0.00799826003,0.01675745453,0.03164144793,0.050738880459999997,0.07443215062,0.10547418789999999,0.14383923219999997,0.1787543693,0.2368932218,0.29835380300000003,0.3398221209,0.39731037529999996,0.449498921,0.5060536313999999,0.5664600795,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,n CHP,0.029517662,0.0204605978,0.020627372999999997,0.020244483,0.021480832800000002,0.024917116,0.024189149,0.022436198999999997,0.019699808000000003,0.017301987,0.015325481999999998,0.012567363,0.010390063000000001,0.008682277,0.006517943,0.0051413989,0.0043590299,0.0035675903999999995,0.00322829685,0.0031351298900000003,0.00278004097,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,a Coal,0.231522,0.307824,0.36616,0.669815,0.7472197,0.80058118,0.84629172,0.8738417200000002,0.87399624,0.8660359199999998,0.8512041599999999,0.8129707300000001,0.7750531900000001,0.6933902200000002,0.4482268700000001,0.17766602000000006,0.08085669899999999,0.017718120599999995,0.0045410007300000005,0.0013845677889999996,2.977941813E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,b Coal w/CCS,0.0,0.0,0.0,0.0,0.0,9.10459E-4,0.0024749399999999997,0.004698377,0.007918804,0.012957808999999999,0.019517863,0.031870569999999994,0.073207357,0.10643724400000001,0.171607228,0.24629278500000001,0.2868612019999999,0.32822429999999997,0.36036932399999994,0.37621040800000005,0.38421537999999994,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,c Gas,0.04737570000000001,0.258627,0.352203,0.6482076,0.73687927,0.8112153900000001,0.8799961700000001,0.9283672000000001,0.9483178400000002,0.9600492300000001,0.9623707500000002,0.95826027,0.6860137799999999,0.588897435,0.482789584,0.38374724400000004,0.286514001,0.17394752380000003,0.09232618322,0.046329453,0.015962929739,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,d Gas w/CCS,0.0,0.0,0.0,0.0,0.0,0.00456744,0.01155915,0.02036478,0.03064836,0.044330339999999996,0.05953373,0.08276217,0.15066041,0.20102127999999997,0.29370956,0.40241896,0.4606571,0.5325952,0.5972325,0.6407571,0.6849581,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,e Oil,0.0262079,0.0251024,0.00900702,0.01522869,0.012586021999999999,0.011929056,0.012279428,0.012544889,0.012801733000000001,0.013360291,0.013631594,0.013595930800000001,0.0126682744,0.010150926400000001,0.0089725767,0.006732231900000001,0.0040108396,0.0018960473700000001,8.329640800000001E-4,3.51964845E-4,1.069589751E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,f Oil w/CCS,0.0,0.0,0.0,0.0,0.0,0.00202677,0.002980529,0.003716385,0.0045266130000000005,0.005904716000000001,0.007194215,0.009577991999999999,0.016879258,0.019389653,0.02732329,0.033784747,0.033195382,0.035391569,0.033556986999999996,0.026901266000000004,0.017598468,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,g Biomass,0.0,3.23995E-4,5.00385E-4,0.002005778,0.002489504,0.0036688470000000003,0.005659045,0.007803139000000001,0.009678917999999998,0.011743043000000003,0.0134454106,0.0147081544,0.017799553599999997,0.017252436,0.013695583999999997,0.008276374599999999,0.004380152299999999,0.0012400987000000003,3.4757382999999994E-4,1.116756593E-4,2.459323374E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,h Biomass w/CCS,0.0,0.0,0.0,0.0,0.0,1.8256579999999999E-4,5.206873E-4,0.0010875649,0.0019836257,0.0034529908000000002,0.0054305496,0.0093415383,0.023162436700000004,0.03540402830000001,0.0635985073,0.09868829750000001,0.1197549768,0.1462621839,0.16804304600000008,0.17684382099999998,0.164050413,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,i Nuclear,0.0,0.0,0.0,0.0877664,0.12183730000000001,0.15550250000000002,0.1934075,0.23018670000000002,0.2654764,0.3061072,0.34733970000000003,0.39815150000000005,0.5241183,0.6121970000000001,0.7610814000000001,0.8396699000000001,0.9035211000000001,0.9844484000000001,1.059944,1.1176908,1.1977682,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,j Geothermal,2.87998E-4,3.38395E-4,0.00240475,0.01206867,0.01812234,0.02559318,0.03481069,0.04409365,0.050555300000000004,0.0519584,0.0569444,0.06331529,0.08007888,0.0800803,0.08008013,0.08007992,0.08008205999999998,0.08008007,0.08008003999999999,0.08008004,0.08008008999999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,k Hydro,0.154156,0.263261,0.335171,0.322883,0.311124,0.299366,0.287607,0.275848,0.291875,0.307902,0.323929,0.339956,0.355983,0.37201,0.388037,0.404064,0.420091,0.436118,0.452145,0.468172,0.468172,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,l Wind,0.0,2.48396E-4,0.0110014,0.026016442,0.0348899493,0.0467871317,0.06383940169999998,0.08390224469999999,0.0944796167,0.1068206167,0.12765189840000002,0.15654864799999998,0.246230178,0.30642908899999993,0.42528166699999986,0.5611161750000001,0.6344257860000001,0.721302894,0.749697814,0.78909832,0.80423657,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,m Solar,0.0,0.0,0.0,0.0020583925,0.004001879,0.0072288165000000005,0.012571465799999997,0.019949702,0.029667206499999998,0.0412757724,0.056507507500000005,0.079505832,0.1309056387,0.17068928649999998,0.24254159000000003,0.3272705294,0.383905509,0.45234103000000003,0.497868419,0.549052279,0.587581098,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,n CHP,0.013083621,0.020719841000000003,0.01769673,0.030325169,0.0356011755,0.0414740507,0.04432553,0.046381474,0.04819547,0.048107358,0.046575254999999996,0.042119449,0.037669258000000004,0.032529625,0.024638157999999997,0.0190593,0.015254964999999999,0.0105568035,0.0081576245,0.0069846174,0.0054992183,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,a Coal,3.38404E-4,4.7522E-4,3.81602E-4,8.41123E-4,0.002017705,0.0035190570000000003,0.005426022,0.007359611,0.008063296999999999,0.008567747999999998,0.008967833199999999,0.009110692100000001,0.00865394544,0.00745575224,0.0039909508,0.0016343424000000001,6.201610199999999E-4,1.1152471E-4,2.4290561599999997E-5,5.869510373E-6,1.1657519100000002E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,b Coal w/CCS,0.0,0.0,0.0,0.0,0.0,2.140514E-5,6.515787E-5,1.3080512000000001E-4,1.8311311E-4,2.5684928E-4,3.6829571E-4,6.608209199999999E-4,0.00115042692,0.0018395709299999998,0.0026844678600000003,0.0034461809599999997,0.00409487186,0.0049598595,0.005815482,0.006638555399999999,0.0073731911,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,c Gas,2.69998E-4,0.0018504629999999999,0.0181046859,0.02013290309,0.02823210184,0.03775736116,0.0485507206,0.057854326260000005,0.05943343494000001,0.05967740521,0.05939874876,0.058691202383999996,0.05395589178,0.04412633174,0.0301125007,0.0176311669,0.00865787261,0.003710597434,0.0014801068296000004,5.737732034999999E-4,1.3984114005E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,d Gas w/CCS,0.0,0.0,0.0,0.0,0.0,5.71292E-4,0.0015345860000000001,0.002728923,0.003404292,0.0041284450000000006,0.0049666400000000005,0.006579317,0.008699721,0.011194304,0.013434398,0.014977223999999999,0.015965232,0.018490188999999997,0.021119914,0.023724089999999996,0.025607480000000002,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,e Oil,0.0010152,2.62807E-4,1.83584E-4,1.7813477999999999E-4,2.1606902E-4,2.1827366E-4,2.2498503000000002E-4,2.2079733E-4,1.8894331E-4,1.6218271E-4,1.3834901900000002E-4,1.1345741E-4,8.605102E-5,5.789550800000001E-5,2.9047242999999993E-5,1.46194153E-5,7.022796E-6,2.8988228499999998E-6,1.0537326360000002E-6,3.89408631E-7,9.142075200000001E-8,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,f Oil w/CCS,0.0,0.0,0.0,0.0,0.0,3.43881E-5,6.11193E-5,7.886279999999999E-5,7.16269E-5,7.407875999999999E-5,7.710192E-5,8.730869999999999E-5,9.584829999999999E-5,1.0373179999999999E-4,1.0804795999999999E-4,9.812935999999999E-5,8.543918E-5,9.146854E-5,8.01969E-5,6.12084E-5,3.441871E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,g Biomass,0.00161282,0.00203766,0.00243364,0.001644735,0.004822175,0.008318375,0.013291226,0.018171179000000003,0.01909903,0.01950072,0.019379068,0.018125638799999996,0.015484599099999998,0.012196487780000003,0.0065870763,0.0027452334999999994,0.0011249129200000003,2.4100393600000002E-4,5.305712770000001E-5,1.303983616E-5,2.3882542540000004E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,h Biomass w/CCS,0.0,0.0,0.0,0.0,0.0,5.27737E-4,0.0015073399999999998,0.0028404370000000003,0.003723136,0.004809865,0.006205083000000001,0.009415634,0.014117336999999997,0.020153492,0.027531561999999996,0.03360853500000001,0.038437866,0.04475537699999999,0.049560284,0.05201203999999999,0.047291169,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,i Nuclear,0.0850906,0.0840297,0.094822,0.0876289,0.0835189,0.077524,0.0693204,0.0590228,0.05509073,0.05616962,0.06372472,0.08152530999999999,0.10249380000000001,0.12440557000000001,0.13955677,0.15580864,0.16805520000000002,0.18325083999999997,0.19767697999999997,0.21181129000000004,0.2178693,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,j Geothermal,0.00108001,0.00596895,0.0160743,0.01908162,0.0266405,0.03491262,0.03547397,0.03547396,0.03547204,0.035474,0.035474,0.03547401,0.03547401,0.0354742,0.03547392,0.035474,0.03547526,0.03547401,0.035474,0.035474,0.035474,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,k Hydro,0.558752,0.626339,0.598385,0.583929,0.569578,0.555226,0.540875,0.526524,0.53205,0.537576,0.543103,0.548629,0.554155,0.559681,0.565207,0.570734,0.57626,0.581786,0.587312,0.592839,0.592839,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,l Wind,0.0,0.00182525,0.00335526,0.0053613483,0.0160564131,0.0376218641,0.0731829811,0.1170310071,0.1365901921,0.15748397580000004,0.17212750700000004,0.19319427300000003,0.20837688900000004,0.21979863100000002,0.249206757,0.268398342,0.278215113,0.283400439,0.28195904800000005,0.278960817,0.281124405,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,m Solar,3.60004E-6,6.84017E-5,2.98805E-4,3.8677245600000004E-4,7.889550400000001E-4,0.0015567849899999996,0.00277491401,0.00375277808,0.00392820928,0.00429782139,0.004392179099999999,0.004438128499999998,0.0041708649,0.004210639699999999,0.004684534799999999,0.004977498499999998,0.0051005108,0.005103475299999999,0.004972945099999999,0.004801782,0.0047034526,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,n CHP,0.0035947909999999995,0.010181541,0.011491956,0.008615129999999999,0.012200823,0.013879061,0.014451462800000002,0.0141117541,0.013998399399999998,0.013793183099999998,0.013714815000000002,0.0126698352,0.0122569854,0.012323650399999999,0.0121623776,0.0119418321,0.0118577361,0.012214920090000001,0.012165606959999999,0.01208121271,0.01062154705,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,a Coal,0.68977,1.69899,2.35082,3.5071000000000003,4.4748,5.59846,7.002867,8.496316,9.7548,10.824361999999999,11.766657,12.265338,12.584793999999999,12.6483686,11.321033000000003,8.224997199999997,5.2129252,1.5305997,0.41423562999999997,0.12622036279999999,0.026466059490000002,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,b Coal w/CCS,0.0,0.0,0.0,0.0,0.0,0.01436129,0.04534099,0.09802406999999999,0.18741305,0.31605602,0.465906,0.65505255,0.9104041199999999,1.19830462,1.75726931,2.6219874599999997,3.51010781,4.719275990000001,5.519796900000001,6.0712936,6.618248200000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,c Gas,0.0358488,0.2716811,0.4240401,0.5554259,0.731046,0.8754945,1.0733664,1.3163532999999998,1.5687740000000001,1.8376265999999999,2.1319407999999997,2.36766044,2.44837257,2.52198007,2.6036495000000004,2.6366001599999995,2.49627101,2.01786274,1.390352201,0.8333295765000001,0.34627152724,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,d Gas w/CCS,0.0,0.0,0.0,0.0,0.0,0.0904466,0.23932689999999998,0.4334167,0.6555496000000001,0.8881167999999999,1.1035396,1.3044774,1.5274507999999998,1.7529621999999998,2.057255,2.513916,2.975786,3.770005,4.318839,4.742659,5.319451,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,e Oil,0.0361728,0.0836639,0.0951875,0.25536619000000005,0.4316757499999999,0.51575309,0.6638490100000001,0.83218686,1.0088511900000001,1.2009222899999998,1.3916314,1.5159877800000001,1.483781,1.3994700800000004,1.2681517700000002,1.06181221,0.77426296,0.37003518999999996,0.14956684799999997,0.057220227199999994,0.014805715210000002,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,f Oil w/CCS,0.0,0.0,0.0,0.0,0.0,0.169002,0.321948,0.48831410000000003,0.6818055000000001,0.8819434000000002,1.0415924,1.2131759,1.3729126,1.4775298,1.618919,1.7380760000000002,1.755859,1.8059630000000002,1.649314,1.3389281999999998,0.8871271000000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,g Biomass,0.0,0.00692279,0.00740519,0.014516683,0.034426078,0.066225888,0.12157388400000001,0.196087381,0.2791720059999999,0.369578629,0.46609690400000003,0.547118854,0.6240964185,0.6847408578999999,0.6786906500000002,0.56705431,0.40222767,0.14499512999999997,0.040129901,0.0122855341,0.0024812896360000003,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,h Biomass w/CCS,0.0,0.0,0.0,0.0,0.0,0.003857417,0.012972801999999999,0.030003718999999998,0.05954191599999999,0.10353084700000001,0.158225448,0.232129568,0.33837934500000005,0.469223045,0.7522845500000002,1.203148517,1.6924667519999999,2.4538832200000003,2.9653079399999998,3.2858080499999995,3.4043902000000004,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,i Nuclear,0.0221076,0.0623663,0.0945575,0.15144459999999998,0.21725640000000002,0.31159319999999996,0.44392539999999997,0.6029956,0.7997021,1.0362087,1.3123868,1.5997351,1.9499568999999999,2.3435523499999995,3.0018184000000003,3.9232834,4.849323,5.996130000000001,6.683002,7.151979,7.681642999999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,j Geothermal,0.0,0.0,0.0,0.022071,0.0475766,0.056582,0.056581980000000004,0.05658185,0.05658537,0.05658196,0.056582049999999995,0.05658198,0.056581980000000004,0.05656318,0.056581948,0.05659077,0.05659674,0.056581998,0.056581808,0.056582015,0.056581967,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,k Hydro,0.257962,0.366228,0.411926,0.447853,0.48378,0.519707,0.555634,0.591561,0.654843,0.718125,0.781406,0.844688,0.90797,0.971252,1.03453,1.09782,1.1611,1.22438,1.28766,1.35094,1.35094,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,l Wind,1.152E-4,0.0237708,0.0716795,0.118466983,0.188308731,0.311507631,0.5113624509999999,0.7797145309999999,1.0384004809999998,1.380192138,1.7515777799999999,2.1019935800000003,2.5061952599999997,2.9414607799999994,3.78360503,5.082301390000001,6.327339400000001,7.903323100000001,8.6710256,9.0511808,9.1693774,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,m Solar,0.0,6.83999E-5,8.27999E-5,0.013445386899999998,0.0496028729,0.1349398539,0.30158378389999996,0.5716347539,0.979901814,1.502176087,2.186731681,3.22759985,4.55396886,6.0512226899999995,8.34811073,11.20460774,13.94859842,17.215929539999998,19.2601031,20.7333894,21.9640368,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,n CHP,0.0,0.0,0.0,0.0,5.03314E-4,0.00120779,0.00227874,0.00383242,0.00625721,0.00977749,0.0138511,0.0182346,0.0238233,0.0319023,0.0401274,0.0488005,0.0579165,0.0694891,0.0836229,0.099971,0.10158,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,a Coal,0.0351648,0.186455,0.24521,0.46773200000000004,0.6171059999999999,0.772713,0.9584013000000001,1.1417092,1.3010723999999998,1.4422909000000002,1.5657314999999998,1.6397918000000002,1.7027217,1.7235381,1.5291099000000004,1.0635821300000001,0.63203521,0.16890078,0.043566045,0.012997820889999998,0.0028435853659999994,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,b Coal w/CCS,0.0,0.0,0.0,0.0,0.0,0.0018843890000000002,0.005638743000000001,0.011300748999999999,0.019703792,0.029453922999999996,0.039375502,0.051520422,0.069081734,0.08884262600000001,0.134018878,0.21912209800000004,0.33252381900000005,0.512329317,0.6421581,0.73154216,0.82509984,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,c Gas,0.0026423999999999996,0.0687097,0.1441369,0.2509643,0.3424414,0.4076701,0.490932,0.5830496000000001,0.6787595,0.78350323,0.89275679,0.97920843,0.9905475800000001,1.01141007,1.03011254,1.0233298599999998,0.9294088299999999,0.658394985,0.3755927417,0.1877222736,0.06712356044,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,d Gas w/CCS,0.0,0.0,0.0,0.0,0.0,0.0444506,0.1118723,0.19034230000000002,0.2730166,0.3490322,0.41122899999999996,0.46585,0.5282366000000001,0.5862731,0.6469661999999999,0.7499107,0.8742947,1.1062067,1.2621335,1.3594761,1.4632083999999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,e Oil,0.0551952,0.140904,0.124218,0.2101313,0.2820646,0.31200259999999996,0.3515656,0.38998600000000005,0.4318427,0.48066580999999997,0.5276229100000001,0.55855479,0.5345149,0.49778573000000004,0.44033915999999995,0.36156215999999997,0.24675597,0.109164538,0.0419062087,0.015312541260000003,0.004047577829999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,f Oil w/CCS,0.0,0.0,0.0,0.0,0.0,0.0618509,0.1163623,0.1662555,0.2168895,0.2544869,0.2766283,0.3052112,0.33771300000000004,0.35353110000000004,0.3867655,0.41689129999999996,0.4347799,0.46567309999999995,0.4136701,0.3171151,0.2071482,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,g Biomass,0.0,7.91916E-5,3.42008E-4,0.0016047729999999999,0.003855012,0.007324018000000001,0.013367307,0.021273089000000002,0.030603486700000005,0.0414871704,0.053317105100000005,0.0644069447,0.07797694740000001,0.08953186508000001,0.09160237200000002,0.078361799,0.053080965,0.0176296742,0.004664379800000001,0.0013810071699999998,2.8820441169999996E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,h Biomass w/CCS,0.0,0.0,0.0,0.0,0.0,4.0380179999999997E-4,0.0013563353999999999,0.0030028051,0.0056474121000000006,0.0090302625,0.0128026367,0.017961880399999998,0.0259138697,0.035572968499999996,0.0596939921,0.10480793439999998,0.1670730619,0.278278955,0.360332892,0.41171932,0.4351909460000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,i Nuclear,0.0,0.0,0.0,0.00385367,0.007324300000000001,0.01630153,0.034313830000000003,0.061235830000000005,0.09613203000000001,0.13938422,0.18970331,0.24276091,0.31451611,0.39400361,0.5206505100000001,0.71211684,0.90869601,1.1565811,1.3282794,1.4448859,1.5722275000000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,j Geothermal,0.00405,0.0237744,0.0336852,0.059615,0.0806917,0.1046074,0.13171100000000002,0.15489379999999997,0.1548961,0.154894,0.15489389999999997,0.1549072,0.154894,0.1548985,0.1548938,0.1548939,0.1549035,0.15489409999999998,0.1548941,0.154894,0.154894,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,k Hydro,0.0205488,0.03861,0.0636336,0.0643101,0.0649865,0.065663,0.0663395,0.0670159,0.0690624,0.071109,0.0731555,0.075202,0.0772485,0.079295,0.0813415,0.083388,0.0854345,0.0874811,0.0895276,0.0915741,0.0915741,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,l Wind,0.0,0.0,0.0,0.0027076923,0.007278857499999999,0.015531690499999999,0.029209587500000002,0.0471093335,0.0695428245,0.0938640902,0.11981172999999999,0.145821137,0.18110901999999995,0.21963306399999993,0.286234043,0.389929025,0.4886894,0.6092058500000002,0.67260527,0.70264776,0.7146579599999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,m Solar,0.0,0.0,0.0,0.0019068107,0.0062377705,0.016419111400000002,0.0364138074,0.0685924964,0.11912767939999999,0.1895815407,0.2819200849,0.417031374,0.6132039790000001,0.8480555399999999,1.241565327,1.806452481,2.376913801,3.143310561,3.67607946,4.04975211,4.42236075,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,n CHP,0.0,0.0,0.0,0.0,5.64109E-4,0.00126425,0.00217303,0.00328819,0.00471863,0.00650822,0.00844209,0.010197,0.0130074,0.0178887,0.0232383,0.0299348,0.036904,0.0490125,0.0632539,0.0790425,0.090495,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,a Coal,0.420141,1.09279,1.09618,1.366932,1.4176989000000002,1.3871378300000001,1.3647792100000002,1.32694631,1.2830145699999997,1.2207821499999998,1.1522694300000003,1.06322855,0.98052173,0.8499133400000003,0.5059855999999999,0.19916541000000001,0.088306419,0.019487600100000002,0.00509786957,0.001590907545,3.2530464280000013E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,b Coal w/CCS,0.0,0.0,0.0,0.0,0.0,5.72042E-4,0.002337554,0.005172135999999999,0.011530728000000002,0.021113294999999997,0.033612799000000006,0.053771694,0.11150190099999999,0.15901979900000002,0.246240996,0.322790833,0.37184641699999993,0.4301375520000001,0.47883207499999997,0.51125389,0.53908214,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,c Gas,0.6015012,0.8605389999999999,1.096252,1.4313468999999999,1.53600028,1.5474348500000001,1.58922524,1.6211213199999999,1.65947631,1.6706012300000004,1.66242503,1.63428928,1.2086914,1.04392545,0.904298116,0.7341124720000001,0.54857883,0.2942173234,0.13731221774,0.061000199039999994,0.019252704413,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,d Gas w/CCS,0.0,0.0,0.0,0.0,0.0,0.00360276,0.01371709,0.02885438,0.05653587,0.09176257,0.13082746,0.18175662999999997,0.3083592,0.40232122000000003,0.5675601100000001,0.710209,0.7983602,0.9103498999999999,1.0061909999999998,1.0705132,1.141065,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,e Oil,0.892385,0.495089,0.350827,0.3521906,0.30857564,0.29108330000000004,0.27472441999999997,0.25138531,0.22651080000000004,0.19959908999999998,0.17390816000000006,0.14782270800000002,0.111928898,0.08021646500000001,0.05191698100000001,0.033699522,0.020444316599999998,0.0091228596,0.0035210325400000003,0.0013412952920000003,3.643873018E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,f Oil w/CCS,0.0,0.0,0.0,0.0,0.0,0.00672818,0.01685337,0.02503686,0.0402263,0.05251752,0.06394891999999999,0.08028409,0.1231449,0.13813921,0.18362994,0.20158781,0.2009186,0.21642260000000002,0.19916716,0.15897714000000002,0.10059231000000002,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,g Biomass,0.037872,0.0795455,0.0844343,0.08792699999999999,0.08574011999999999,0.083350481,0.082882196,0.08033768999999999,0.077360397,0.072961435,0.067792147,0.061293377,0.05714447300000001,0.04764832199999999,0.028135895,0.013599710499999999,0.006544394199999999,0.0016781181299999998,4.38247128E-4,1.3367795049999998E-4,2.6348861169999998E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,h Biomass w/CCS,0.0,0.0,0.0,0.0,0.0,3.625078E-4,0.0013907457,0.0029738343,0.0062973424,0.0108771793,0.0164534558,0.025096954100000003,0.0491723556,0.0693257198,0.11041281410000002,0.1478365166,0.17318071670000001,0.20791343699999998,0.236680084,0.252801886,0.248771861,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,i Nuclear,0.728178,1.09712,1.03763,0.958912,0.913937,0.8598513,0.8177315000000001,0.7937445,0.7932533,0.7969233,0.8081913000000001,0.8476132,1.051129,1.1845942,1.3770428,1.6048857,1.7573424,1.9415017,2.0797448,2.1476879999999996,2.2142589999999998,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,j Geothermal,0.00626759,0.0116136,0.00947519,0.01764907,0.02219298,0.025019189999999997,0.031361270000000004,0.03917945,0.04223009,0.0472237,0.05436586,0.05658201,0.05657989000000001,0.056581980000000004,0.05658199,0.05658208,0.0565832,0.05658201,0.05658198,0.05658201,0.05658204,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,k Hydro,0.321498,0.275292,0.295963,0.294981,0.293999,0.293016,0.292034,0.291052,0.294216,0.29738,0.300544,0.303708,0.306872,0.310036,0.3132,0.316365,0.319529,0.322693,0.325857,0.329021,0.329021,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,l Wind,0.0,0.00631439,0.0142632,0.0259274054,0.033384236600000006,0.0385584423,0.0524815273,0.07343107329999998,0.09444592029999999,0.1243208259,0.16052658569999997,0.20509022,0.2979914350000001,0.35252384900000006,0.435377752,0.498212441,0.52988367,0.5818785900000001,0.5799632400000001,0.59862991,0.60477601,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,m Solar,3.6E-6,0.00537479,0.0136764,0.019068778899999996,0.021938294299999998,0.024481654499999998,0.0318869318,0.0442308851,0.05220940639999999,0.07387591019999999,0.1015060876,0.1362588625,0.2122846632,0.2621027939,0.3425404346,0.4108187854,0.4526926301,0.517795974,0.53748938,0.5695169489999999,0.5890576550000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,n CHP,0.0,0.0,0.0,0.0,1.38099E-4,2.57207E-4,4.10178E-4,5.93435E-4,8.21252E-4,0.00112597,0.00148302,0.00183468,0.00230193,0.00281768,0.00338254,0.00377284,0.00413049,0.0047059,0.00511751,0.00561868,0.0054313,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,a Coal,0.0279864,0.118998,0.117129,0.1189286,0.1314083,0.14058325000000002,0.14944834,0.15579600999999998,0.16057247,0.16142086,0.16283082,0.15887644999999997,0.15342984999999998,0.14337453000000006,0.09984370299999999,0.05332045399999998,0.024462504000000003,0.005074479699999999,0.0013094600459999997,4.2702186669999994E-4,9.650935839999998E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,b Coal w/CCS,0.0,0.0,0.0,0.0,0.0,2.509402E-4,7.395774000000001E-4,0.0015089733,0.0029988709,0.0050441242,0.0084691501,0.014380323300000001,0.027066129399999996,0.04900902099999999,0.08815815070000001,0.1374186702,0.18842039749999998,0.24928049299999994,0.30767536700000003,0.35808460599999997,0.4207693390000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,c Gas,0.052056,0.3425255,0.507894,0.50538377,0.59229269,0.6712346200000001,0.756311,0.83105633,0.90529481,0.9556390300000001,1.0095442700000001,1.0415266200000002,1.0306493200000002,0.96947712,0.84973596,0.702467116,0.54251191,0.3072616781,0.15468906319999998,0.07395784232000001,0.025836966630999995,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,d Gas w/CCS,0.0,0.0,0.0,0.0,0.0,0.00596492,0.0163628,0.031027069999999997,0.05438819,0.08210138,0.12105278,0.17459499,0.27256294999999997,0.42442077999999994,0.6785073,0.9968638000000001,1.3294962,1.7424032,2.1414354,2.4811631,2.9052672000000004,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,e Oil,0.223423,0.240426,0.157964,0.13573303,0.14706842,0.13438944,0.13428226999999998,0.13357699,0.13678158999999998,0.13793012,0.14487214,0.14279547,0.13886987,0.126388392,0.102163809,0.071845417,0.047595636999999996,0.0216983748,0.0085167518,0.00336156446,9.601323379999999E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,f Oil w/CCS,0.0,0.0,0.0,0.0,0.0,0.0217458,0.03607055,0.04954117,0.07115083999999999,0.08818556,0.11484876000000001,0.14802731,0.20259481000000001,0.27217463,0.3869987,0.5001447,0.6069092,0.7712512,0.8276867,0.7717991,0.5907647,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,g Biomass,0.0,0.0109656,0.00929879,0.0032140299999999997,0.006788536,0.00934656,0.013130398000000001,0.016957246000000002,0.021227929,0.024845408,0.028682295,0.030669854,0.031812586999999996,0.031031366799999995,0.022730990000000003,0.012379972,0.006179928699999999,0.0015241404699999996,3.96791475E-4,1.278654238E-4,2.8072204830000002E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,h Biomass w/CCS,0.0,0.0,0.0,0.0,0.0,4.69936E-4,0.0013071762999999998,0.0026079750000000002,0.0049832574,0.008060501500000001,0.012932019999999997,0.020980282000000003,0.037882031,0.067687805,0.12692730700000002,0.20447000399999996,0.28895452,0.40387169299999987,0.512424666,0.597783029,0.6751404620000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,i Nuclear,0.0105732,0.038898,0.0211644,0.02093048,0.02307167,0.0259435,0.030348270000000004,0.03597862,0.045133099999999995,0.05597599,0.07158486,0.08971280000000001,0.11887102000000001,0.15960125000000003,0.21854536000000002,0.28611805,0.35290823,0.43200196999999996,0.5070226499999999,0.5751816,0.6635689,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,j Geothermal,0.0184464,0.0262764,0.0238248,0.02651748,0.03305847,0.04082691000000001,0.05055003,0.060954259999999996,0.05390381999999999,0.06639525,0.07689688,0.08689795,0.09696379999999999,0.096966,0.0969662,0.096966,0.0969677,0.09696600000000001,0.09696603000000001,0.0969659,0.096966,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,k Hydro,0.0845208,0.0995724,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,l Wind,3.6E-6,6.83999E-5,0.00446039,0.005720968470000001,0.01068654557,0.018889380969999998,0.032481535969999996,0.05099192897,0.07429366696999999,0.1049441735,0.14230794339999997,0.18530253099999996,0.25563506599999997,0.3567868129999999,0.5060976349999999,0.68020726,0.853279673,1.0635627300000001,1.23999646,1.37125633,1.5300602100000003,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,m Solar,3.6E-6,3.24E-5,1.116E-4,7.8570343E-4,0.00346765093,0.00836081673,0.01693303863,0.029698042630000004,0.050890065629999995,0.0780106862,0.1107865737,0.15089691189999999,0.207122847,0.27943149899999997,0.379073244,0.49066666600000003,0.6181684299999999,0.769583472,0.927817735,1.090621959,1.2941762410000002,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,n CHP,0.0,0.0,0.0,0.0,1.89611E-4,3.57137E-4,5.91478E-4,8.98625E-4,0.00133413,0.00195723,0.00284971,0.00386426,0.00532638,0.00715271,0.00947691,0.0117718,0.0144374,0.0183464,0.0212667,0.0240085,0.0239682,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,a Coal,0.0379187,0.132671,0.124711,0.1422198,0.1558899,0.1630427,0.17295616,0.18068451,0.18428425,0.18419871000000002,0.18266,0.17739218000000004,0.17176824,0.16036694,0.11459957299999997,0.060915910000000004,0.029331611000000007,0.006488512599999999,0.00166903982,5.15982977E-4,1.1506852830000001E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,b Coal w/CCS,0.0,0.0,0.0,0.0,0.0,2.066352E-4,6.31746E-4,0.0013326483,0.0026086459,0.004516721699999999,0.0072028531,0.0117890135,0.0223737543,0.036819720199999996,0.061404444200000005,0.09390098179999999,0.1283562801,0.173279004,0.220406814,0.26502931,0.320078089,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,c Gas,0.38072,1.3344,1.95927,2.1807185000000002,2.4306639,2.4844618000000005,2.5729846000000003,2.6456932,2.6773228000000002,2.6848882,2.6993908999999996,2.6608752,2.4145491000000003,2.20552215,1.9893428299999998,1.71929965,1.391909053,0.868338333,0.46726891719999997,0.2311881159,0.08377276784,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,d Gas w/CCS,0.0,0.0,0.0,0.0,0.0,0.122577,0.321477,0.556141,0.8176140000000001,1.069613,1.303522,1.553393,1.9603469999999998,2.3893260000000005,2.883571,3.4351220000000002,3.958156,4.677559,5.418146,6.086315000000001,6.89443,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,e Oil,0.402346,0.720668,1.02737,1.267913,1.48762,1.5042432000000003,1.5248594999999998,1.5343795999999998,1.5317753,1.5315357,1.5364525000000002,1.4703173600000004,1.21819637,0.96826046,0.73507363,0.49018080999999997,0.306531544,0.132372195,0.0501628963,0.01880847797,0.00521874929,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,f Oil w/CCS,0.0,0.0,0.0,0.0,0.0,0.188709,0.395818,0.5771562,0.7609037000000001,0.9161111999999999,1.0622267,1.2460008999999999,1.5620228999999999,1.8249469,2.182569,2.426966,2.5651390000000003,2.8075479999999997,2.6866760000000003,2.262229,1.5728460000000002,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,g Biomass,0.0,0.0,4.32068E-5,0.0021639385,0.0063650673,0.0109546599,0.0202056127,0.03205430577,0.04478637144,0.05667779277,0.06721975342,0.07389238641000001,0.08022902786500001,0.079254292819,0.06091219100000001,0.035893232,0.019245138,0.005151072100000001,0.0013861449999999999,4.41287113E-4,9.8693278E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,h Biomass w/CCS,0.0,0.0,0.0,0.0,0.0,6.33626E-4,0.002251968,0.005180842000000001,0.01047144,0.018302243,0.029154239000000002,0.047375495000000004,0.089184391,0.147251749,0.25509072,0.39932807699999995,0.55475819,0.7753964680000002,0.993306065,1.17129771,1.3082998399999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,i Nuclear,0.0,0.0,0.0,0.00781418,0.02243178,0.04515268,0.09194468,0.15810098,0.23705198,0.32171987999999996,0.41100407,0.50494647,0.65230027,0.80286787,0.99847766,1.2162689,1.4277288000000001,1.6899267999999998,1.9369204000000002,2.1560360000000003,2.4297414,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,j Geothermal,0.0,0.0,0.0,0.0110436,0.025027300000000002,0.0388179,0.056530500000000004,0.056581719999999995,0.05658319,0.05658197,0.056581980000000004,0.056581950000000006,0.056581990000000006,0.05658226,0.05658216,0.05658204,0.05658495,0.05658203,0.05658199999999999,0.056581969999999995,0.05658204,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,k Hydro,0.04293,0.0992016,0.064242,0.0855464,0.106966,0.128386,0.149805,0.171225,0.202866,0.234507,0.266148,0.297789,0.329429,0.36107,0.392711,0.424352,0.455993,0.487634,0.519275,0.550916,0.550916,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,l Wind,3.59999E-6,3.05999E-4,6.26399E-4,0.0098857528,0.027469331799999996,0.052482109799999996,0.1017062158,0.16919106279999996,0.25544427979999995,0.34563629599999995,0.438386147,0.5430321690000002,0.7178977530000001,0.8994150060000001,1.1569073900000002,1.4787863000000003,1.8172740600000001,2.27874235,2.6895862599999996,3.08227826,3.55572236,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,m Solar,0.0,0.0,2.52E-4,0.0157188094,0.046374762,0.09436688300000001,0.16256183399999996,0.253862504,0.380581117,0.5185535046,0.660851509,0.842329537,1.058774236,1.2652391760000001,1.492551813,1.7245655060000002,1.990918269,2.29168059,2.59284444,2.9072212200000003,3.3076539599999997,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,n CHP,0.0,0.0,0.0,0.0,0.00199527,0.00366716,0.00532045,0.00714426,0.00940418,0.0126506,0.016922,0.0213305,0.0278249,0.0359631,0.0457159,0.054297,0.0632574,0.0765602,0.0889921,0.103974,0.113641,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,a Coal,1.36804E-4,4.64397E-4,3.16794E-4,0.0114731,0.016648255,0.022097075,0.030391434000000002,0.041432828000000005,0.053423281999999996,0.0672613894,0.08204349339999997,0.09553137543000002,0.11022808753,0.12178518348200001,0.11869803300000001,0.09462493799999998,0.06595570499999999,0.022077212999999995,0.006750998900000001,0.0023038666599999994,5.48703674E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,b Coal w/CCS,0.0,0.0,0.0,0.0,0.0,6.0444599999999994E-5,2.123786E-4,5.122363999999999E-4,0.0010404452,0.0017932445,0.0026771199000000002,0.0039890477,0.0060365295,0.0084907326,0.014039282299999997,0.0248180921,0.041481837300000005,0.0705131274,0.1019529807,0.132471769,0.17101238600000002,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,c Gas,0.045608369999999995,0.1486296,0.0931644,0.19416299999999997,0.242613,0.2714139,0.3140177,0.37066190000000004,0.43370309999999995,0.5130692,0.6023904,0.6844759599999999,0.69733698,0.74419307,0.7752698,0.7704738099999999,0.7157620499999999,0.559136481,0.37110771970000006,0.2141155184,0.08404290113000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,d Gas w/CCS,0.0,0.0,0.0,0.0,0.0,0.0220785,0.0587098,0.1070749,0.1598149,0.2125035,0.2569261,0.29922940000000003,0.3461143,0.38765099999999997,0.4291423,0.485014,0.5529712,0.6838200999999999,0.8202081,0.9473339000000001,1.1023999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,e Oil,0.0278928,0.0686556,0.119718,0.2500215,0.2896828,0.3055246,0.32834610000000003,0.35548009999999997,0.3825575399999999,0.4214152,0.4627964499999999,0.48867706,0.43507774000000005,0.41203621,0.35883153999999995,0.28926280000000004,0.20809071299999998,0.100684717,0.0440742633,0.0175899525,0.0046103581899999985,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,f Oil w/CCS,0.0,0.0,0.0,0.0,0.0,0.0336937,0.0735139,0.1187598,0.1619982,0.1986304,0.2212478,0.2407203,0.25993679999999997,0.2668851,0.2829874,0.300776,0.3176153,0.3404372,0.3362626,0.2935621,0.2140244,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,g Biomass,0.0,0.0,0.0,0.00562305,0.01176994,0.020299340000000003,0.03676635,0.06154915,0.09176679000000001,0.13039102,0.17416693,0.2194246,0.27388158,0.31732664000000005,0.3174000699999999,0.25816811,0.17698515799999998,0.06338043,0.018751038399999996,0.005992279719999999,0.001262102901,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,h Biomass w/CCS,0.0,0.0,0.0,0.0,0.0,9.66325E-4,0.003555913,0.008637251,0.016933122,0.028271158999999997,0.040912669,0.058423555000000016,0.083328709,0.11048927500000001,0.16802527299999998,0.261230456,0.389515848,0.601408293,0.7985889499999996,0.9508963500000002,1.05341296,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,i Nuclear,0.0010548,0.0089424,0.012312,0.0319959,0.042563,0.0558583,0.07783589,0.10888911999999999,0.1480811,0.19864438,0.25710021,0.32782962,0.42177263000000004,0.518670865,0.6436956,0.7759886,0.9175237,1.0926857,1.2455277,1.3696882,1.5107161999999998,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,j Geothermal,0.0,0.0,0.0,0.0244259,0.0430174,0.0641288,0.08072589999999999,0.0807259,0.080725,0.0807261,0.08072591,0.08072406,0.08072595,0.08072186,0.08072601000000001,0.08072601,0.08068447000000001,0.08072603,0.08072602,0.08072602999999999,0.08072597,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,k Hydro,0.06093,0.111103,0.11452,0.117706,0.120892,0.124078,0.127264,0.13045,0.140089,0.149728,0.159367,0.169006,0.178645,0.188284,0.197923,0.207562,0.217201,0.22684,0.23648,0.246118,0.246118,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,l Wind,0.0,0.0,0.0,0.022277436,0.046374794,0.08502514100000001,0.15609570899999997,0.26150724900000005,0.39772260900000006,0.5529677829999998,0.7333529049999999,0.9415374179999999,1.2103338399999999,1.46679367,1.8015121100000002,2.1934177,2.5573634199999997,3.00021166,3.2970922700000003,3.5013383000000005,3.6827099000000003,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,m Solar,0.0,0.0,0.0,0.014572189999999999,0.032787196,0.054069667999999994,0.088453227,0.14702521000000002,0.23865326000000003,0.36339834000000004,0.536603114,0.792525892,1.146462643,1.5353548199999998,2.04635736,2.6563131899999997,3.27700019,4.05001351,4.70064071,5.24703392,5.80577904,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,n CHP,0.0,0.0,0.0,0.0,2.91778E-4,6.72638E-4,0.00125798,0.00208738,0.00324463,0.00489398,0.00695318,0.00854918,0.0110733,0.0154684,0.0195173,0.02539,0.0323622,0.0423659,0.0547866,0.0695657,0.0762217,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,a Coal,0.54613,0.551288,0.556386,0.5870021,0.621376,0.61281414,0.60423025,0.57875626,0.5446594300000002,0.5022404300000001,0.4600612500000001,0.41260396,0.3603582900000001,0.29794747999999993,0.148715763,0.059638331,0.023096037500000006,0.00463319953,0.0011265586399999998,3.334880648E-4,6.563433493E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,b Coal w/CCS,0.0,0.0,0.0,0.0,0.0,4.0010400000000003E-4,0.001393568,0.002735806,0.0051676280000000005,0.008694104,0.013527816,0.021658813,0.034889965999999994,0.050425782,0.078163116,0.10785346099999998,0.134500365,0.168104247,0.20048525199999997,0.22965746699999995,0.26540594000000006,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,c Gas,1.69041,1.4949,1.7391,1.7849744000000003,1.9556301,1.9067686,1.8744956000000002,1.7993134000000002,1.7036461,1.5934943,1.495126,1.3651807499999997,1.1402149700000002,0.93373864,0.736889334,0.553343363,0.3806763687,0.1697378434,0.06882119888000002,0.027307932355,0.0076222512489999995,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,d Gas w/CCS,0.0,0.0,0.0,0.0,0.0,0.0699931,0.19892490000000002,0.32873430000000003,0.4840485,0.6304312,0.7635852000000001,0.9038483,1.0654593,1.2112802,1.3705589999999999,1.4685930000000003,1.531617,1.609478,1.669263,1.701885,1.7223680000000003,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,e Oil,0.463118,0.0644098,0.025717,0.02821475,0.0319807,0.029098420000000003,0.028909936000000004,0.027883506,0.027366969000000005,0.026437827,0.025563610999999993,0.023342834,0.018612054,0.0137878855,0.010344446399999999,0.006680973999999999,0.0041630383,0.00190783431,7.18765742E-4,2.67673073E-4,7.078030269999999E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,f Oil w/CCS,0.0,0.0,0.0,0.0,0.0,0.00298651,0.006493267,0.008494539,0.011822202,0.014470082,0.017185805,0.021134542,0.026460279,0.030940433999999996,0.04221152,0.05075368000000001,0.05835102,0.07682584,0.08373085,0.07896592999999999,0.059278779999999996,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,g Biomass,0.0,0.0,0.0,0.00191305,0.00586344,0.007876444,0.013786755999999999,0.02010557,0.027960275,0.03474492,0.04022346,0.04231933599999999,0.041283061,0.036311965,0.023548677,0.011406621799999999,0.005274436099999998,0.00129280941,3.3041282999999997E-4,1.0085504149999998E-4,2.0398954030000003E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,h Biomass w/CCS,0.0,0.0,0.0,0.0,0.0,4.116166E-4,0.0016429176,0.0035223746,0.0071833939,0.0126498524,0.020291671400000003,0.0335506244,0.05586346959999999,0.08375720729999998,0.14120879230000002,0.2067947468,0.27005163029999996,0.36328414700000006,0.453341103,0.5275124729999999,0.58845257,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,i Nuclear,0.425914,0.537994,0.613461,0.679158,0.7740199999999999,0.8288202,0.9720190999999999,1.1386110999999999,1.348203,1.549957,1.74979,1.9768229000000002,2.2569029,2.5196765,2.8829796000000005,3.1561384,3.3620019999999995,3.6689679999999996,3.8509339999999996,3.971706,4.12968,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,j Geothermal,1.00804E-4,0.00147597,0.0018179,0.0143041,0.03633956,0.05223414999999999,0.07983891,0.10700672,0.13691330000000002,0.1558271,0.1663991,0.1842953,0.19384,0.19384010000000002,0.1938395,0.19384,0.1938444,0.19384,0.19384,0.19383999999999998,0.1938399,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,k Hydro,0.597301,0.621637,0.599339,0.636624,0.673909,0.711195,0.74848,0.785765,0.827183,0.868601,0.910019,0.951437,0.992855,1.03427,1.07569,1.11711,1.15853,1.19994,1.24136,1.28278,1.28278,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,l Wind,0.0,2.51994E-5,1.43992E-5,0.011738963199999999,0.0384221182,0.0617654902,0.1145246382,0.1804580292,0.278892524,0.3815083939999999,0.48298819899999995,0.6140884470000001,0.7601003390000001,0.8951621980000002,1.106829594,1.31103982,1.47960696,1.71702031,1.91506764,2.1114059000000003,2.32969091,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,m Solar,0.0,0.0,0.0,0.00108438427,0.00414913054,0.00957370894,0.02564061443,0.04945991702,0.08860930012,0.13639563166000002,0.19156017108,0.25955583538,0.34234321689,0.4237649452,0.5592793294999999,0.6970322826,0.8164884746,0.9853152792,1.1371429394,1.2872251115,1.4596687148,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,n CHP,0.172756752,0.15242304,0.19416211000000003,0.19423366,0.17790843,0.18925174,0.174965,0.15995098000000002,0.14019964000000001,0.12391412,0.11154444000000001,0.09511859999999998,0.08315125999999999,0.07371693,0.061997708,0.055290346000000004,0.052903065,0.053356682,0.0539933209,0.053996583099999995,0.0469396107,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,a Coal,0.561333,0.824519,0.870765,0.716006,0.75103,0.74494889,0.7279447,0.6978472800000001,0.6448649200000001,0.58698028,0.53042121,0.47396743,0.42331502000000004,0.37722656,0.26968727000000003,0.17224848000000006,0.095446669,0.024109989499999995,0.006363074539999999,0.001872068601,3.768063391000001E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,b Coal w/CCS,0.0,0.0,0.0,0.0,0.0,4.6758400000000006E-4,0.001645632,0.00375191,0.007352338,0.013217764,0.021036218,0.034995475,0.054161419999999995,0.076058292,0.11703207700000001,0.15364428800000002,0.178885313,0.20236026199999999,0.21231743,0.215855957,0.21703168999999997,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,c Gas,0.0,0.0,0.0,0.0,0.0,2.51359E-4,8.126850000000001E-4,0.001665462,0.00270931,0.004072587,0.00559221,0.007235674000000001,0.0088791982,0.0104278129,0.0117959568,0.0119381234,0.0111594922,0.00848420196,0.00534881923,0.0029340518099999994,0.0010645793365,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,d Gas w/CCS,0.0,0.0,0.0,0.0,0.0,1.73594E-4,5.95909E-4,0.0012622990000000001,0.00213959,0.003305824,0.004607503000000001,0.006467191999999999,0.00884053,0.011619294999999998,0.017100688000000003,0.022684887,0.027320944,0.033711689999999996,0.03842932,0.042787780000000004,0.0506732,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,e Oil,0.0,0.0,7.09205E-4,2.75049E-4,2.89484E-4,3.51423E-4,3.7453272000000006E-4,3.8950333999999997E-4,4.0573435E-4,4.3507433999999997E-4,4.5370021E-4,4.7014862E-4,4.7155067000000003E-4,4.5572154E-4,3.9142241E-4,2.7970372E-4,1.86128811E-4,8.9437068E-5,3.66717499E-5,1.45040327E-5,4.1550214599999995E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,f Oil w/CCS,0.0,0.0,0.0,0.0,0.0,4.13085E-5,9.579280000000001E-5,1.527105E-4,2.209547E-4,3.1200879999999996E-4,3.9577730000000004E-4,5.21398E-4,6.378186E-4,7.362259E-4,9.423184000000001E-4,0.001015075,9.932443999999998E-4,0.0010023047,8.731489E-4,6.876518E-4,4.6127220000000005E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,g Biomass,0.0,9.54006E-4,0.00101159,2.29819E-4,3.91413E-4,0.001202225,0.00280586,0.005030562,0.0074691029999999995,0.010300359,0.012890372999999998,0.015129626400000006,0.0164553511,0.01668686,0.0140791235,0.009030298499999997,0.0052491142,0.001623385,4.449476199999999E-4,1.3578383940000003E-4,2.8563446829999996E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,h Biomass w/CCS,0.0,0.0,0.0,0.0,0.0,9.102840000000001E-5,3.6793940000000004E-4,9.321132E-4,0.0019461435000000002,0.0036681468000000004,0.006048944600000001,0.010492005700000003,0.017060396100000003,0.0253853024,0.0435106466,0.0609352086,0.07413871330000002,0.0895524265,0.096861706,0.09809989599999999,0.088522222,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,i Nuclear,0.0304164,0.0406546,0.0435562,0.0358408,0.0376813,0.03698217,0.03789834,0.04157918,0.04672528000000001,0.055016380000000004,0.06548306999999999,0.08005662999999999,0.09757247999999999,0.11668605,0.14832345,0.18007995000000002,0.20530223000000003,0.23270913,0.24891707999999996,0.25866730000000004,0.27588900000000005,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,j Geothermal,0.0,0.0,0.0,0.0,0.0,0.00371366,0.00905247,0.014153699999999998,0.01553899,0.015538999999999999,0.015539,0.01553901,0.015539349999999999,0.015538940000000001,0.015539,0.015538989999999999,0.015538989999999999,0.015538999999999999,0.015538989999999999,0.015539,0.015539009999999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,k Hydro,0.003636,0.0047952,0.0076968,0.00702266,0.00793343,0.0082674,0.0084576,0.0086478,0.0090258,0.0094037,0.0097816,0.0101596,0.0105375,0.0109155,0.0112934,0.0116714,0.0120493,0.0124272,0.0128052,0.0131831,0.0131831,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,l Wind,0.0,1.15199E-4,1.152E-4,1.02575E-4,1.13149E-4,0.004866749300000001,0.016388899999999998,0.033984846,0.056467214999999994,0.08651099199999998,0.12052125699999998,0.16106771770000003,0.205143189,0.25051906700000004,0.3383579279999999,0.4146716709999999,0.47009887599999994,0.529590236,0.554056004,0.56481171,0.57350793,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,m Solar,0.0,7.55997E-5,7.55997E-5,1.493989E-4,4.983521E-4,0.00403450043,0.012372330229999999,0.025629737930000007,0.04042813373,0.053521016229999996,0.06897654772999999,0.089038219,0.1078225882,0.1231111705,0.143740865,0.16603734250000002,0.188134423,0.215342239,0.23184801,0.24241598800000003,0.250350352,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,n CHP,0.0,0.0,0.0,0.0,6.25412E-5,1.28693E-4,2.11293E-4,3.12523E-4,4.58253E-4,6.58673E-4,8.70038E-4,0.00109872,0.00133591,0.00160913,0.0018651,0.00208524,0.00229815,0.00273738,0.00317819,0.00361227,0.00356339,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,a Coal,0.0,0.0,0.0,0.00423969,0.00610072,0.007683499999999999,0.009833528,0.011939597,0.014133370000000001,0.016405066,0.018416086999999998,0.019596052000000003,0.020460522,0.020173722,0.01607103,0.008910503499999998,0.004598264700000001,0.0010594882799999999,2.82947225E-4,9.351861540000001E-5,2.1537407639999996E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,b Coal w/CCS,0.0,0.0,0.0,0.0,0.0,2.384711E-5,7.867798E-5,1.6276206E-4,3.3107377000000005E-4,6.277117E-4,0.00109810616,0.0019425672899999998,0.00396600548,0.006531890780000001,0.01108446879,0.01706317056,0.02350514114,0.0316044111,0.0405669089,0.0482475028,0.0605030634,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,c Gas,0.0559019,0.0568119,0.0896734,0.12688651,0.14321119000000002,0.14802679000000002,0.15360680999999998,0.15677777,0.15842990999999998,0.16077993,0.16295733,0.160935497,0.12662057699999998,0.11132030899999999,0.09935974,0.085473254,0.07045182280000001,0.0456867598,0.025037557449999998,0.012429014444000002,0.0043980266504000005,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,d Gas w/CCS,0.0,0.0,0.0,0.0,0.0,0.00743355,0.01858157,0.02972734,0.04255043,0.0564331,0.06973722,0.08362073,0.10573359000000002,0.12644227,0.1492414,0.17364909999999997,0.19816629999999996,0.2288511,0.2608785,0.285355,0.3287058,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,e Oil,0.0549622,0.0959904,0.110144,0.15556009999999998,0.17009839999999998,0.16917855999999998,0.16863025000000004,0.16533251999999996,0.15945147,0.15443349000000003,0.14916095000000001,0.138537543,0.103414849,0.081726579,0.060668748,0.042762361,0.028907062700000003,0.0137909663,0.0055203890000000005,0.0021491028299999997,5.80060295E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,f Oil w/CCS,0.0,0.0,0.0,0.0,0.0,0.0130139,0.027312660000000002,0.03958214,0.054306349999999996,0.06943550000000001,0.08376436000000001,0.09986215,0.12840082000000003,0.15170092,0.1865623,0.22081309999999998,0.2549246,0.3101591,0.3432095,0.3427707,0.3048118,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,g Biomass,1.28437E-4,1.46781E-4,1.53303E-4,0.0024993178,0.0049088936,0.0074604867,0.011818638,0.016520503699999998,0.021798137199999998,0.027519608400000003,0.03245473077,0.0352443652,0.03743845479999999,0.03615925447400001,0.027694494999999993,0.016148625999999996,0.008517872,0.0022079307800000002,5.8067881E-4,1.821680261E-4,3.787569197E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,h Biomass w/CCS,0.0,0.0,0.0,0.0,0.0,3.754085E-4,0.0012800034,0.0026234815,0.0050074296,0.008765107900000001,0.0139745926,0.022200304199999996,0.039954222100000006,0.0608630928,0.09836798979999999,0.1447826287,0.192416897,0.254075725,0.31468654399999996,0.35736762499999997,0.4046679139999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,i Nuclear,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00970766,0.03095946,0.061507049999999994,0.09172654999999999,0.13581045,0.17363945,0.22067554,0.26884823,0.31272532000000003,0.3604053,0.40649949,0.44280727000000003,0.4847188,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,j Geothermal,0.0,0.0,0.0,0.0123549,0.02217442,0.03242452,0.04561882,0.05755463,0.06838256,0.06837503,0.06837492,0.0683811,0.06837499,0.06837679,0.06837528,0.06837491999999999,0.06837759,0.06837503,0.06837499999999999,0.06837493,0.06837498,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,k Hydro,0.135365,0.280561,0.279418,0.282905,0.286392,0.289879,0.293366,0.296853,0.303009,0.309166,0.315323,0.321479,0.327636,0.333792,0.339949,0.346105,0.352262,0.358418,0.364575,0.370731,0.370731,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,l Wind,0.0,0.0,0.0,0.0090792768,0.018245931300000004,0.030272380300000002,0.05033248530000001,0.0729957693,0.1024004803,0.13048418750000002,0.16140747700000002,0.19271825699999998,0.240974262,0.28139023799999996,0.33454668700000006,0.38666285300000003,0.43282493899999996,0.4874458,0.5184323799999999,0.5374919799999999,0.57529563,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,m Solar,0.0,0.0,0.0,0.0052038466,0.011555729800000001,0.0208989491,0.0355794371,0.05103711009999999,0.0720995431,0.09576038849999999,0.1255711283,0.162223437,0.21764236599999998,0.273916373,0.343890107,0.415561859,0.484568518,0.557363,0.618918383,0.6711637400000001,0.7478075630000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,n CHP,0.0,0.0,0.0,0.0,0.00102193,0.00187458,0.00290118,0.00419114,0.00551458,0.00707682,0.00905016,0.0108992,0.0139115,0.01768,0.0221043,0.0269936,0.0327653,0.0413847,0.0487914,0.0559736,0.0549809,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,a Coal,0.0234905,0.0288587,0.0638058,0.1190174,0.1435371,0.16367316,0.19227069,0.21742995999999998,0.23557382000000002,0.2488661,0.26024627,0.26119592999999997,0.25558629,0.2353768,0.156238,0.06975081099999998,0.030173220999999997,0.005864641500000001,0.0013858036390000002,4.045960323E-4,8.638079339999998E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,b Coal w/CCS,0.0,0.0,0.0,0.0,0.0,3.67327E-4,0.0012562530000000001,0.002593459,0.004751948,0.00789903,0.012567835,0.020451514000000004,0.037920684999999996,0.061526436,0.101921739,0.152847341,0.20176720400000003,0.252435389,0.30042332899999996,0.3391313139999999,0.39320349000000004,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,c Gas,0.004762870000000001,0.0806357,0.1065002,0.1963274,0.2449724,0.27124484,0.31149497000000004,0.35044127999999997,0.38277057000000003,0.41225623,0.44517228,0.46192385,0.42052750999999994,0.403240655,0.37446657,0.319503236,0.252617295,0.1442577399,0.0703065792,0.031687249748999995,0.0103806704148,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,d Gas w/CCS,0.0,0.0,0.0,0.0,0.0,0.0212892,0.0601796,0.1039898,0.1504415,0.1977541,0.24815440000000002,0.3050284,0.39987449999999997,0.5060608,0.651724,0.8211611,0.9812715,1.1578194000000002,1.3285166,1.4601143999999997,1.6607568,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,e Oil,0.0240485,0.0371498,0.0619949,0.1293624,0.1552453,0.16083349000000002,0.17211702999999998,0.17871988,0.18180466,0.18490025000000002,0.19039549,0.18256930000000002,0.15300176,0.12717131699999998,0.098513011,0.065118191,0.040293401,0.0173849573,0.0064698043599999994,0.002360770712,6.232376792000001E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,f Oil w/CCS,0.0,0.0,0.0,0.0,0.0,0.0261885,0.056965600000000005,0.0801397,0.10301035,0.12459608999999999,0.14836948,0.17879938,0.23654719000000002,0.28795165,0.3768454,0.4576048,0.5228557,0.6215451,0.6361119000000001,0.5732485999999999,0.43324279999999993,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,g Biomass,7.38012E-4,0.00187927,0.00589348,0.01030537,0.01377744,0.017014417,0.022054358,0.026611148,0.03010769,0.032882510999999996,0.035336228000000004,0.035542943,0.034932455,0.03146618600000001,0.021132958,0.010374879,0.004841874899999999,0.0011067082500000002,2.65560486E-4,7.688116530000002E-5,1.5670209535E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,h Biomass w/CCS,0.0,0.0,0.0,0.0,0.0,5.33091E-4,0.001739895,0.0034239749999999997,0.005857215999999999,0.009122481000000002,0.013666053999999999,0.020978129999999998,0.036651095999999994,0.058001831000000004,0.098421185,0.15111423300000004,0.204205642,0.26690347000000003,0.325349273,0.36823816,0.41186871599999997,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,i Nuclear,0.0,0.0,0.0,0.0,0.0,6.33224E-4,0.0026195339999999998,0.0057435739999999996,0.011841003,0.021197213,0.035124903,0.050619293,0.07517518200000001,0.101510372,0.138513741,0.18099801000000001,0.221142869,0.26239306,0.30077859999999995,0.33253143999999996,0.3763847800000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,j Geothermal,0.0,0.0,0.0,0.00340536,0.0074727100000000005,0.013729310000000002,0.02554447,0.039337510000000006,0.0544125,0.06757371000000001,0.08261592,0.09751560000000001,0.11797260000000001,0.1373372,0.1643358,0.19112620000000002,0.198568,0.19856790000000002,0.1985679,0.1985679,0.1985679,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,k Hydro,0.215035,0.400529,0.415487,0.446642,0.478199,0.509757,0.541315,0.572873,0.628591,0.684309,0.740027,0.795745,0.851463,0.907181,0.962899,1.01862,1.07434,1.13005,1.18577,1.24149,1.24149,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,l Wind,0.0,2.88011E-5,0.00145447,0.005547615200000001,0.010082199600000001,0.017339832200000002,0.032586158999999996,0.05267186199999999,0.07628889,0.1031044008,0.13853170439999998,0.18059025179999996,0.2513295,0.33103429,0.45361186200000003,0.6008409360000001,0.7389317880000001,0.8840710580000002,0.993810013,1.07094127,1.18445722,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,m Solar,0.0,0.0,1.08005E-5,0.00122384647,0.0032339154700000003,0.006816049269999999,0.01318499837,0.02178418787,0.03382609737,0.04850102840000001,0.0683998684,0.0942347286,0.1265988105,0.157635804,0.19947916599999999,0.24433423999999998,0.287939776,0.32870598100000004,0.36607575000000003,0.402375892,0.457979262,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,n CHP,0.0036131,0.00638438,0.013636203999999999,0.017101759,0.026778784,0.035445383000000004,0.038867070000000004,0.04102989,0.044242515,0.048257460999999995,0.053442856999999996,0.05767465,0.065023494,0.073671294,0.0823548924,0.0911273413,0.10325138939999999,0.11960740580000001,0.12845554450000002,0.13416179842,0.12295217585,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,a Coal,0.0,0.00107293,0.00306897,0.01061151,0.01626408,0.021978141,0.029202833,0.037027913,0.044844340999999996,0.053263571999999995,0.06206882200000001,0.06952192499999998,0.07615774800000001,0.0794664122,0.06621548199999999,0.04344289,0.024567705000000002,0.006471291900000001,0.00180726639,5.933628360000001E-4,1.408153009E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,b Coal w/CCS,0.0,0.0,0.0,0.0,0.0,6.52232E-5,2.003669E-4,4.1636299999999994E-4,7.539975E-4,0.0012016239,0.0017150140999999998,0.0024928775,0.0036242417999999997,0.0050009919,0.0079856399,0.0138661977,0.0232292577,0.03969261720000001,0.057250683299999994,0.0734964109,0.092088965,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,c Gas,0.023454009999999997,0.08627879999999999,0.139214,0.3413285,0.5156664,0.6249662999999999,0.7665733,0.9274650999999999,1.1012905,1.3154247000000001,1.5610038,1.79295,1.9345047600000003,2.0574794799999996,2.0789024,1.97199694,1.73187262,1.1571442840000001,0.641241348,0.3171298251,0.10830352959000002,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,d Gas w/CCS,0.0,0.0,0.0,0.0,0.0,0.0836405,0.206925,0.3480901,0.4955596,0.6378523,0.7567923999999999,0.8742042,0.9948507,1.1007662,1.188966,1.31505,1.4891640000000002,1.825955,2.1517049999999998,2.410264,2.657507,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,e Oil,0.00879917,0.0428959,0.0412827,0.12070449999999999,0.16657709999999998,0.17801800000000004,0.1956333,0.21232979999999999,0.23047040999999996,0.2579713,0.28690970000000005,0.30678174,0.297003821,0.274445882,0.22429333,0.167300861,0.111685896,0.049692818,0.020121684900000002,0.007566203840000001,0.0019725972899999997,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,f Oil w/CCS,0.0,0.0,0.0,0.0,0.0,0.0400222,0.0703964,0.0941967,0.1151432,0.12997979999999998,0.13563246,0.14677755,0.15722882000000002,0.15932723,0.17482639,0.19217660000000003,0.2065939,0.2272439,0.2128735,0.16446898,0.1078065,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,g Biomass,5.77679E-5,7.19828E-6,0.0,0.00132102,0.0038326700000000003,0.007375906,0.013687119,0.02197097,0.031972991,0.044773252,0.059778448000000005,0.07628385100000001,0.09495304600000001,0.10865688500000001,0.10026344599999999,0.07192596700000001,0.0436552935,0.013404168499999999,0.0036752389,0.001143927516,2.4566860120000004E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,h Biomass w/CCS,0.0,0.0,0.0,0.0,0.0,4.30499E-4,0.0014358358,0.0031700580999999995,0.005926446199999999,0.0096152055,0.013745994299999996,0.0203494607,0.0294417622,0.0400124813,0.0641048619,0.10392032299999998,0.1624292376,0.26508010400000004,0.35899327200000003,0.42495125,0.445545188,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,i Nuclear,0.0,0.0,0.0,0.00484375,0.0094728,0.020231890000000002,0.04137649,0.07284478,0.11463398,0.17081417999999998,0.24100047999999996,0.32827127999999994,0.44104087,0.56284876,0.7133866600000001,0.8893766299999999,1.0735343,1.3016427,1.5032546999999998,1.6622860999999998,1.8216309000000002,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,j Geothermal,0.0,0.0,0.0,0.00832162,0.02110724,0.03805757,0.05953401,0.08133233,0.09971895,0.0997191,0.0997189,0.0997189,0.099719,0.0997188,0.09971906999999999,0.09971906999999999,0.09969691,0.09971896999999999,0.09971896,0.099719,0.09971893,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,k Hydro,0.0268079,0.0463089,0.0710383,0.0749133,0.0787882,0.0826631,0.0865381,0.090413,0.102136,0.113859,0.125581,0.137304,0.149027,0.16075,0.172473,0.184196,0.195918,0.207641,0.219364,0.231087,0.231087,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,l Wind,0.0,4.92E-5,1.312E-4,0.0079846868,0.0240742549,0.053608347900000006,0.10729482090000003,0.1838315219,0.2895069209,0.4276228621,0.595473254,0.8145377209999999,1.1073511380000003,1.4269695370000002,1.8258056180000002,2.2986065499999997,2.7743968999999997,3.35573734,3.78665865,4.06898978,4.295549200000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,m Solar,0.0,5.012E-4,5.476E-4,0.0043238122,0.0117067692,0.024919691200000003,0.0474087212,0.07410470920000001,0.1053621192,0.14774977800000003,0.20530379,0.29294827700000003,0.422676417,0.588082059,0.831671189,1.129123748,1.43851482,1.82854256,2.1742826400000004,2.46732582,2.77487399,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,n CHP,0.0,0.0,0.0,0.0,0.00235651,0.00545641,0.00962989,0.015227,0.0225729,0.0325469,0.0446717,0.054838,0.0703776,0.0959502,0.119663,0.149606,0.182105,0.225364,0.273714,0.325315,0.344502,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,a Coal,0.0423734,0.482673,0.721766,0.748941,0.7754491,0.7689887799999999,0.7610167700000001,0.7421112599999999,0.7149120000000001,0.6793175800000002,0.64200892,0.60194821,0.5619983399999999,0.51197545,0.36214490999999993,0.20047055,0.09883791299999997,0.023189972999999996,0.006084213799999999,0.0018855272399999998,3.99230979E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,b Coal w/CCS,0.0,0.0,0.0,0.0,0.0,1.0893049999999999E-5,3.6568819999999996E-5,8.435748E-5,1.984381E-4,3.9709265E-4,6.8542057E-4,0.00138430555,0.00280725764,0.00497436909,0.01318598482,0.026847673859999997,0.03937611283,0.05614357757000001,0.06804356369999999,0.0775116495,0.08871462499999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,c Gas,0.0345756,0.2130648,0.365475,0.37453028,0.39894319,0.40819900000000003,0.42238678,0.43342807999999994,0.44350582,0.44789483999999996,0.44769375,0.44808765799999994,0.403847589,0.3650656909999999,0.32255351500000007,0.276302635,0.217497658,0.13129570430000004,0.06732173744999999,0.031671628885,0.010075427298000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,d Gas w/CCS,0.0,0.0,0.0,0.0,0.0,1.41938E-4,4.47118E-4,9.38434E-4,0.001823281,0.003080391,0.004582552,0.007157028,0.011142504,0.015938963,0.029037305,0.047815631,0.064529703,0.08902396000000001,0.10856436,0.1253887,0.1473092,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,e Oil,0.0678875,0.0757497,0.0538667,0.04230316,0.043526898,0.042570957,0.04268490500000001,0.042558855,0.043105926999999995,0.043112631000000005,0.042486285,0.041544281,0.038075445000000006,0.033038868,0.026970754,0.0194689333,0.012049089700000001,0.005136245700000001,0.0019950638299999998,7.680687460000001E-4,2.061287064E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,f Oil w/CCS,0.0,0.0,0.0,0.0,0.0,6.48728E-4,0.0012850154,0.0017845862,0.0025361274,0.0030162222,0.0033597417999999997,0.0044741951999999995,0.0058730881,0.0070233909999999995,0.011728081,0.015916039,0.017451646,0.021397288,0.021195875000000003,0.01862201,0.01422203,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,g Biomass,0.0,1.62005E-4,0.0012456,0.001380582,0.002097897,0.0027904509999999998,0.004501352,0.006932842,0.010350136,0.014057948,0.017515515,0.020964444999999998,0.023691752,0.024414840500000003,0.021613427900000003,0.0141468191,0.0077753610999999985,0.0022013581,5.794362099999999E-4,1.780479354E-4,3.6671660889999995E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,h Biomass w/CCS,0.0,0.0,0.0,0.0,0.0,5.48149E-6,1.8077291E-5,4.0542541E-5,9.7653998E-5,1.93848554E-4,3.36078105E-4,7.33943011E-4,0.0015075951170000002,0.00267026562,0.007157774509999999,0.014262063249999997,0.02099513027,0.03151609553,0.0388063976,0.0435876219,0.044736261299999996,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,i Nuclear,0.1904,0.528419,0.534944,0.5665015,0.6003699,0.6152812999999999,0.6479151,0.6895461,0.7455369000000001,0.8016159,0.8530738,0.9306301,1.0349673,1.1400392000000001,1.3271134,1.4947838,1.6109152,1.7504784999999998,1.8092621000000002,1.824702,1.848573,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,k Hydro,0.0228996,0.0132228,0.0139644,0.0151472,0.0170392,0.0189311,0.0208231,0.0227151,0.0258792,0.0290433,0.0322074,0.0353714,0.0385355,0.0416996,0.0448637,0.0480278,0.0511919,0.054356,0.0575201,0.0606842,0.0606842,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,l Wind,0.0,4.68013E-4,0.00294119,0.0039335998200000005,0.005592090920000001,0.007495591120000001,0.01124426732,0.016652237420000004,0.021758493620000003,0.030238419800000003,0.03847468870000001,0.0489662955,0.06037491130000001,0.0702743202,0.09062505800000001,0.112545901,0.126934091,0.142525206,0.149235855,0.15350412400000002,0.15176549300000003,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,m Solar,3.60012E-6,5.40015E-5,0.00277919,0.0034897063500000003,0.00473128335,0.006582529649999999,0.010864672649999999,0.01815447025,0.02741909155,0.0425793535,0.0597864112,0.0833850456,0.11193039390000001,0.1394395929,0.1933057166,0.2533262488,0.2969269746,0.3465079858999999,0.3747419716,0.396273195,0.40564819500000004,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,n CHP,0.0211961,0.082367423,0.09065316600000001,0.09879469,0.07943552000000001,0.0814752,0.07922215,0.07729322000000001,0.0714975,0.06780872000000002,0.06529051,0.058190530000000004,0.05469231999999999,0.05547916,0.051565144,0.052061852,0.054561490000000004,0.05868786300000001,0.06581134779999999,0.0747819339,0.0747635499,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,a Coal,0.104596,0.279376,0.448595,0.66678,0.815113,0.9315685,1.0877253,1.2404944999999998,1.3639430000000001,1.4633113999999998,1.5437189999999998,1.5638280999999998,1.5500251,1.4757281,1.10767686,0.6275504700000001,0.33400141,0.08472328800000001,0.024049342,0.008023646459999997,0.0018061434189999997,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,b Coal w/CCS,0.0,0.0,0.0,0.0,0.0,0.00193323,0.00586099,0.012474914,0.024518556,0.043722771,0.071933897,0.12236306799999999,0.22099882999999998,0.33617218700000007,0.5194576949999999,0.74867798,0.9410649529999999,1.16924731,1.33447677,1.43088792,1.5257379899999994,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,c Gas,0.0896219,0.8081020000000001,1.060623,1.443689,1.800887,2.0209391,2.3111515999999996,2.6015707999999997,2.8613747000000003,3.1122799,3.3661844999999997,3.5587273,3.3725748,3.2198838,3.02260358,2.6976260999999995,2.27949993,1.568507427,0.9470743139999999,0.5218242272,0.19747050071000005,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,d Gas w/CCS,0.0,0.0,0.0,0.0,0.0,0.107753,0.287889,0.516713,0.791813,1.0972169999999999,1.416724,1.803762,2.380324,2.955386,3.685828,4.549143,5.236097,6.1846890000000005,6.886124,7.290974,7.791570999999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,e Oil,0.193341,0.11442,0.101648,0.11025829999999999,0.1305269,0.13173738,0.14356571,0.15343173,0.16395739000000004,0.17671766,0.18984382,0.19591395,0.18516711,0.1650417,0.136561747,0.10049597099999999,0.06777535,0.031922703,0.013578990099999999,0.005583790160000001,0.0015877028479999997,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,f Oil w/CCS,0.0,0.0,0.0,0.0,0.0,0.0268472,0.048830460000000006,0.06808331000000001,0.09179392,0.11790494,0.14641025,0.1897431,0.25492954,0.30503956,0.3769571,0.4297922,0.4446365,0.465054,0.42220070000000004,0.3350665,0.21800759999999997,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,g Biomass,0.00220873,0.00903599,0.0205776,0.026811777000000002,0.042918990000000004,0.06097401000000001,0.09210568,0.12414706999999998,0.15414478599999998,0.18200804999999998,0.206104812,0.220567026,0.2285710637,0.22230735329999998,0.17268600999999997,0.10434404,0.059410328,0.017766501999999997,0.005104745420000002,0.0016789873270000003,3.639410603E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,h Biomass w/CCS,0.0,0.0,0.0,0.0,0.0,0.0028670040000000003,0.008155134,0.01670141,0.030985867,0.051875321,0.08042488299999999,0.12919595,0.22160818699999998,0.331837162,0.523274403,0.7662626790000001,0.9774312690000002,1.25719175,1.4521622899999997,1.53632392,1.4952313199999996,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,i Nuclear,0.0,0.0,0.0,0.00961864,0.01955332,0.0377576,0.0764791,0.13429319,0.21110119,0.30835739,0.42681819,0.56712008,0.76968707,0.9759880700000001,1.25865787,1.5918211500000001,1.8895081000000002,2.2761896,2.5903011,2.8136322,3.1046555,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,j Geothermal,0.0196812,0.0356543,0.0357516,0.0604215,0.08595069999999999,0.1139699,0.1531995,0.19357829999999998,0.20796610000000001,0.2336731,0.23367309999999997,0.2336758,0.23367300000000002,0.2336728,0.233673,0.2336731,0.2336723,0.233673,0.23367300000000002,0.233673,0.23367290000000002,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,k Hydro,0.141032,0.19957,0.254132,0.26494,0.275747,0.286555,0.297363,0.30817,0.338521,0.368871,0.399221,0.429571,0.459921,0.490271,0.520621,0.550971,0.581321,0.611671,0.642021,0.672371,0.672371,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,l Wind,0.0,8.32999E-5,2.845E-4,0.0076514521,0.020220142100000005,0.0389394171,0.0735584691,0.1199683671,0.1786865971,0.243401745,0.315412505,0.40264955,0.5277009880000001,0.6505069600000001,0.82604628,1.0403667399999998,1.22000112,1.4635478000000002,1.61594601,1.7048758800000001,1.81693393,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,m Solar,0.0,2.509E-4,3.334E-4,0.004330148,0.012494863,0.026776295999999998,0.055982255999999994,0.101166197,0.169226821,0.262122729,0.385365614,0.5691873900000001,0.8462073900000002,1.147373079,1.569285015,2.085103677,2.6017748000000003,3.27992014,3.8460909400000003,4.34063067,4.92835585,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,n CHP,0.0,0.00126484,0.00152089,0.00225978,0.0039706459999999996,0.00648728,0.00865444,0.011154830000000001,0.014429939999999999,0.01880602,0.02434609,0.03087299,0.04061222,0.05357578,0.07039527,0.08768635,0.10736578,0.1381039,0.17571467999999998,0.227367758,0.262642643,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,a Coal,0.07806,0.333201,0.340766,0.441574,0.5465450000000001,0.5916716200000001,0.6282913800000001,0.6542634299999999,0.6674789799999999,0.6707436399999999,0.66797535,0.6558142599999998,0.6563746900000003,0.6491509099999999,0.5461678899999999,0.34269587,0.18148846,0.046064504,0.0123228354,0.003913870150000001,8.488008662E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,b Coal w/CCS,0.0,0.0,0.0,0.0,0.0,6.412200000000001E-4,0.0014064949999999998,0.001971954,0.002321087,0.002417221,0.0024844629999999997,0.0030553299999999998,0.0050152700000000005,0.00901005,0.021871764,0.049734020999999996,0.08008032799999999,0.11727243100000001,0.139945861,0.15594600660000002,0.17516657490000004,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,c Gas,0.0037260699999999997,0.13024360000000001,0.2046279,0.27063432,0.37119932,0.42420888,0.47355369999999997,0.51658713,0.55289831,0.58079117,0.60061256,0.6159780499999999,0.55918007,0.49350762000000004,0.45743733,0.417632507,0.35582315,0.25256933000000004,0.15693619079999999,0.08953456467999998,0.035026810027000005,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,d Gas w/CCS,0.0,0.0,0.0,0.0,0.0,0.00267275,0.0059355499999999995,0.00878485,0.011048780000000001,0.01266634,0.01403847,0.01654016,0.02322699,0.03420297,0.05745215,0.10194972,0.1492176,0.21387052,0.25840518,0.29241893999999996,0.33657169000000003,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,e Oil,0.0780744,0.0395547,0.0298225,0.028442079999999998,0.03467714,0.03137532,0.03260834,0.03453179000000001,0.038135459000000003,0.042095355,0.045246457999999996,0.048369454000000006,0.052202517,0.05289709199999999,0.052926020000000004,0.047129376,0.033663959,0.015431761000000002,0.006365286500000001,0.0026505770800000004,7.548948849999999E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,f Oil w/CCS,0.0,0.0,0.0,0.0,0.0,0.0045534,0.006103951,0.006537952,0.006487675,0.005895813,0.005679186,0.00737171,0.011806690000000002,0.016882657,0.027521679,0.042909141,0.053638434,0.067874348,0.068721619,0.062264814,0.047075723,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,g Biomass,0.0,0.0118311,0.0131472,0.00923329,0.01645437,0.01940569,0.024538777000000005,0.029421926999999997,0.034408934999999995,0.039108769999999994,0.04294551900000001,0.04642723599999999,0.05265726399999999,0.057532218999999996,0.05432109700000001,0.03955037100000001,0.023738455999999998,0.0071351627,0.00191589074,5.92966375E-4,1.190638175E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,h Biomass w/CCS,0.0,0.0,0.0,0.0,0.0,4.77563E-4,9.245958E-4,0.0011591977,0.0012043766999999999,0.0011160168,0.0011445602,0.0018267731,0.0036039015,0.006700316300000002,0.0157871185,0.033480408,0.05241130170000001,0.077664104,0.09235295700000001,0.1007426089,0.102971174,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,i Nuclear,0.118319,0.143918,0.149865,0.14052233,0.13663418,0.13066471999999998,0.12341272000000002,0.11498545000000002,0.10631934000000001,0.09874633000000001,0.09350073,0.09243723000000001,0.10577103,0.12822982,0.16151712,0.22033018999999998,0.26954992,0.31927225,0.34704274,0.36417074000000005,0.38648170000000004,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,j Geothermal,1.08002E-5,0.0,0.0,0.0017586,0.003461,0.003461008,0.003461,0.003460997,0.003460997,0.003460999,0.003461004,0.0034609899999999997,0.003461003,0.003461594,0.0034609981000000003,0.0034610009,0.0034578588,0.0034610025,0.0034610018,0.003461005,0.003460996,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,k Hydro,0.0229716,0.0143496,0.0150984,0.0154475,0.0157965,0.0161456,0.0164946,0.0168437,0.0178996,0.0189556,0.0200116,0.0210676,0.0221236,0.0231796,0.0242355,0.0252915,0.0263475,0.0274035,0.0284595,0.0295155,0.0295155,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,l Wind,0.0,3.27642E-4,0.00351361,0.0061802559,0.011415192,0.0161651943,0.022568670300000003,0.030272577800000006,0.0361797728,0.0437434769,0.04887449679999999,0.05599211049999999,0.07208057150000001,0.091197211,0.116510223,0.141109323,0.15334160700000002,0.159603341,0.153581401,0.144194411,0.136959664,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,m Solar,0.0,3.60046E-6,8.28002E-5,6.6945463E-4,0.00240071553,0.004843550229999999,0.009323691229999998,0.016258692229999996,0.026223106730000004,0.0384105519,0.0514395853,0.0689140004,0.1062601748,0.1587278178,0.2506275311,0.3914739612,0.5225900711,0.6666121664,0.7374776270000001,0.7684813010000001,0.786421626,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,n CHP,0.017070333,0.13125279,0.12124186,0.07823369000000001,0.0742490583,0.0828734315,0.0841475026,0.08433528300000001,0.080871993,0.076539393,0.07187024,0.060297283,0.050247987,0.041741944999999996,0.027862776,0.01861293,0.013176879999999998,0.007631583,0.005465964,0.004434851,0.0033068600000000004,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,a Coal,6.02909,7.68047,7.10527,8.2163,8.394077,8.490912,8.554486,8.506354700000001,8.414928,8.153625400000001,7.864185,7.3729057000000005,6.806484600000001,5.9570044000000015,3.6717665999999998,1.6012116,0.7138459599999997,0.14840091699999997,0.03773942587000001,0.011636987795000001,0.0023649460782,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,b Coal w/CCS,0.0,0.0,0.0,0.0,0.0,0.00841355,0.026475600000000002,0.0573283,0.12371081,0.2151845,0.33833012,0.5495171699999999,0.9851003999999999,1.47129081,2.43583362,3.4317916100000008,4.16376753,4.978209070000001,5.709320749999999,6.314891599999999,7.063076299999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,c Gas,1.0262950000000002,2.569423,3.38456,3.8804227000000004,4.1006701,4.368511,4.652843900000001,4.9030869,5.1849612,5.342268499999999,5.4556996,5.467588889999999,4.55857812,4.184202149999999,3.52055829,2.77639415,2.010083098,1.014625785,0.45242324349999996,0.19211886265999997,0.057396080477,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,d Gas w/CCS,0.0,0.0,0.0,0.0,0.0,0.0257806,0.0748465,0.14936899999999997,0.2798175,0.4344396,0.6144013,0.859425,1.2919081,1.7264880000000002,2.5519659,3.4155207,4.050098,4.793215999999999,5.468326,6.023253,6.736033,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,e Oil,0.450767,0.454965,0.144545,0.1111792,0.10511011999999999,0.10443512,0.10365323999999998,0.10288179000000003,0.10637509,0.10736863000000002,0.1097051,0.10661633000000001,0.097120936,0.083112459,0.06910981399999999,0.047059784,0.029361209,0.013721331100000001,0.0054051048,0.00211859301,5.750680550000001E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,f Oil w/CCS,0.0,0.0,0.0,0.0,0.0,0.011247,0.020752430000000002,0.031372910000000004,0.0508263,0.06636376,0.08396893,0.11008554000000001,0.15573539000000003,0.19020164,0.28129397,0.35737113,0.407901,0.5155583,0.5589436,0.5436388999999999,0.4327828,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,g Biomass,0.0791349,0.110634,0.115436,0.0636048,0.0760847,0.10085238,0.13424482,0.16909586,0.21245507,0.24877199000000003,0.28108659999999996,0.29490197,0.29932414,0.27011720999999994,0.18605237,0.09369422599999999,0.044779826999999994,0.0110708541,0.0028424465399999994,8.703656778E-4,1.7363040601999996E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,h Biomass w/CCS,0.0,0.0,0.0,0.0,0.0,0.0034672929999999998,0.010614553,0.023181526,0.049514323000000006,0.08493836200000002,0.132335561,0.21360277600000002,0.38333830999999996,0.583206552,1.0411310649999999,1.550724976,1.9598595730000001,2.50283209,3.0053032099999992,3.40368004,3.7736280100000004,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,i Nuclear,2.20139,2.91859,3.0201,3.213486,3.254765,3.316592,3.432335,3.585075,3.882325999999999,4.183492,4.547788,5.04559,5.976519,6.841260000000001,8.23596,9.343778,10.281037,11.279075,12.052944,12.606785,13.312513000000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,j Geothermal,0.0576456,0.0604004,0.0632762,0.1168401,0.15225090000000002,0.21265969999999998,0.3033226,0.4112845,0.4998686,0.5954888,0.703889,0.7947583,0.7947537,0.7947630000000001,0.7947580000000001,0.794758,0.794774,0.7947588,0.7947594,0.7947580000000001,0.7947594,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,k Hydro,0.983347,0.981803,0.945313,0.954109,0.96406,0.974012,0.983963,0.993915,0.998283,1.00265,1.00702,1.01139,1.01576,1.02013,1.02449,1.02886,1.03323,1.0376,1.04197,1.04634,1.04634,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,l Wind,0.0110381,0.0643712,0.342527,0.457575404,0.524110618,0.642158862,0.8461892320000001,1.1361277319999996,1.270678442,1.7038005079999998,2.2683850740000002,2.9153712800000005,3.9393978100000004,4.827882010000001,6.3734166000000005,7.84910553,8.799097650000002,9.931436399999999,10.5618798,11.1581281,11.630046999999998,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,m Solar,0.0023977004,0.00403198,0.01416215,0.02687545,0.03679570399999999,0.056520813999999996,0.09355880399999997,0.151624607,0.23980521300000002,0.35578197899999997,0.5006385200000001,0.6719842200000001,0.94293012,1.195938597,1.6377285910000001,2.0773908199999997,2.3997249999999997,2.80454195,3.1009654799999997,3.39097498,3.68189487,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,n CHP,0.6885946,0.5219592,0.5383006,0.48521410000000004,0.58142465,0.68574371,0.74820043,0.7978963,0.8321050600000001,0.8464577,0.8472918,0.7964593,0.7206661,0.6303144000000002,0.48442573,0.37250321999999997,0.30872713999999996,0.23752657,0.20284483500000003,0.18782047100000002,0.15409046999999998,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,a Coal,0.00125084,0.00237117,0.00341519,0.0078375,0.01173911,0.016378747000000003,0.02206399,0.029309198,0.038083764,0.048930524,0.06194949600000001,0.073247719,0.08265630499999999,0.09025299799999999,0.08747027499999999,0.072293312,0.05486024799999999,0.02055201,0.006864496500000001,0.00236652099,5.57191286E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,b Coal w/CCS,0.0,0.0,0.0,0.0,0.0,6.71E-5,1.914458E-4,4.4161600000000004E-4,0.0010530749,0.0024067295,0.0051204852,0.010990473,0.0212196508,0.035720521600000006,0.0598592089,0.09129757799999999,0.1312060674,0.18052207380000002,0.22814684499999996,0.27470973499999995,0.3350699,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,c Gas,0.0,1.850979E-4,2.185844E-4,0.0029570338000000002,0.0060663488,0.0090508781,0.013187870200000002,0.019188212700000002,0.0277112091,0.0402066843,0.058261049300000006,0.07909763,0.0999910214,0.12358854812999999,0.144759671,0.16172277699999998,0.177554919,0.16503976499999998,0.1340170554,0.09381566050000001,0.04561550672999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,d Gas w/CCS,0.0,0.0,0.0,0.0,0.0,0.00115979,0.003073,0.0062413,0.01168975,0.02064594,0.034315769999999995,0.05578529,0.08686673,0.12752512,0.19106751,0.27687512,0.39394296,0.55518428,0.7267728,0.8923049000000001,1.1164422,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,e Oil,0.00813914,0.0265001,0.0368684,0.0656872,0.09427663,0.10547514000000001,0.12183414000000001,0.14499926999999999,0.17601697,0.21947235,0.27732863999999996,0.32961193,0.35914490999999993,0.38360845,0.36412497,0.31608279,0.21327444,0.12524757900000003,0.05953482499999999,0.026718734999999997,0.00958750749,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,f Oil w/CCS,0.0,0.0,0.0,0.0,0.0,0.0222249,0.044568899999999995,0.0755002,0.1210543,0.181391,0.25805259999999997,0.3588286,0.47876280000000004,0.6038179,0.7553036000000001,0.8853451,0.8186372,0.9186816,0.8765801,0.8467884,0.8264265000000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,g Biomass,7.23594E-4,0.00113761,0.00113761,0.00288726,0.006126182,0.011119468,0.019217771999999998,0.031771858,0.050061614,0.07626065999999998,0.109990829,0.146215019,0.183202152,0.21946268630000001,0.23810892499999994,0.22749943799999994,0.18898307900000003,0.081704289,0.027055782,0.0091271482,0.0021871937299999997,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,h Biomass w/CCS,0.0,0.0,0.0,0.0,0.0,3.5710099999999997E-4,0.001105806,0.002686091,0.0063243430000000005,0.013946997000000001,0.028241249000000003,0.05769917100000001,0.10932649700000002,0.1861243,0.33829442600000004,0.555255139,0.821454456,1.158543361,1.4595127639999999,1.7285618300000003,2.0757223399999996,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,i Nuclear,0.0,0.0,0.0,8.87704E-4,0.001845105,0.011209435,0.032728125000000004,0.072768325,0.135899725,0.234068025,0.37903792399999997,0.566924924,0.797380924,1.069327923,1.4396958229999999,1.8930950100000001,2.48764051,3.1801702,3.8176024,4.3145452,4.8791219,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,j Geothermal,0.0011736,0.00361079,0.0052956,0.0145074,0.027060459999999998,0.043779860000000004,0.06251043,0.07361597,0.07361704,0.07361696,0.07361705,0.07361698,0.07361703,0.07361701000000001,0.07361703,0.07361705,0.07361703,0.07361695,0.07361704,0.07361699,0.07361702,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,k Hydro,0.0219597,0.0353919,0.0539216,0.0712437,0.0885658,0.105888,0.12321,0.140532,0.174952,0.209372,0.243792,0.278212,0.312632,0.347051,0.381471,0.415891,0.450311,0.484731,0.519151,0.553571,0.553571,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,l Wind,0.0,1.11E-5,2.327E-4,0.0059823643,0.0190136294,0.046008957399999995,0.0896461074,0.14998199540000004,0.22860577140000005,0.3313092871,0.466876802,0.6288143640000001,0.808228834,1.0090503460000002,1.2903875700000003,1.6377207900000001,2.0998525099999994,2.6464586199999998,3.1261082999999994,3.4540307999999995,3.7991285999999995,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,m Solar,0.0,3.59999E-6,7.2E-6,0.0058976346,0.0198758603,0.04924441739999999,0.0783942886,0.1056901286,0.1537694316,0.22980525,0.34499285329999996,0.5170469862,0.7733682350000001,1.1223881549999999,1.6210067219999997,2.259375079,3.1369811999999997,4.13398182,5.07415017,5.79385935,6.54010699,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,n CHP,0.0,0.0,0.0,0.0,8.2425E-4,0.00185558,0.00405542,0.0084448,0.0158191,0.0280243,0.0471673,0.0721746,0.11214,0.166217,0.231966,0.315975,0.430284,0.608354,0.859984,1.16712,1.33163,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,a Coal,0.00796861,0.0473972,0.0399414,0.04538135,0.056130179999999995,0.06676427,0.07989144999999999,0.09221606999999998,0.1018813,0.10908062,0.11432851999999999,0.11476521999999997,0.11199149,0.10646844,0.078944831,0.047310292999999996,0.026983879000000006,0.008058191800000001,0.0024597933200000005,8.249686240000001E-4,1.5685223659999998E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,b Coal w/CCS,0.0,0.0,0.0,0.0,0.0,1.486659E-4,4.6994660000000005E-4,9.814934E-4,0.0018660988,0.0031763078999999996,0.0048743406,0.0075140908000000005,0.0114041969,0.0168353991,0.0270255072,0.04046693540000001,0.055478316,0.0715367674,0.08865821700000001,0.102142608,0.12184173200000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,c Gas,0.1358135,0.482448,0.6361717,0.6712855999999999,0.8382722,0.946123,1.0803846,1.2168634,1.3351277,1.4443175,1.5495981,1.6168299,1.61664961,1.5687968300000001,1.48336807,1.33658172,1.15990471,0.8367328399999999,0.528982287,0.2991249578,0.10054645690000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,d Gas w/CCS,0.0,0.0,0.0,0.0,0.0,0.0793893,0.20522240000000003,0.3519021,0.5134744,0.6741607000000001,0.8196007,0.9717280000000001,1.1391554000000002,1.3279406999999999,1.543664,1.769077,1.997808,2.246045,2.5243089999999997,2.7460500000000003,3.055427,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,e Oil,0.11773,0.126766,0.200053,0.1973947,0.25086091,0.25668268000000005,0.26251502,0.25847380999999997,0.25258305,0.24474120000000002,0.23694841999999997,0.21973957000000002,0.20049471,0.17847886,0.144881225,0.10378448399999998,0.056692099,0.030821945599999998,0.014318450500000001,0.006533044909999999,0.0021174661500000004,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,f Oil w/CCS,0.0,0.0,0.0,0.0,0.0,0.0468151,0.0847267,0.11109039999999999,0.1376454,0.1571061,0.17041545000000002,0.18989553000000003,0.21762961,0.25028496,0.29837630000000004,0.3129326,0.23730420000000002,0.2605097,0.2388411,0.20012907000000002,0.18672221,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,g Biomass,0.0,0.0,0.0,5.56396E-4,0.002684539,0.005833632,0.011651100000000001,0.019049217000000004,0.027349969999999998,0.035967699000000006,0.04323693,0.04917674700000001,0.055163648,0.061409773999999986,0.060764455999999994,0.048976944,0.033141545,0.011943539000000003,0.0037557031,0.00133094666,2.772634899999999E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,h Biomass w/CCS,0.0,0.0,0.0,0.0,0.0,2.0999590000000002E-4,7.347346999999999E-4,0.001686753,0.003455482,0.0062136809999999995,0.009883124599999998,0.016054741900000002,0.0258613927,0.0410524145,0.076727256,0.131392666,0.19434397249999996,0.269095275,0.347005939,0.4099486249999999,0.5046612939999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,i Nuclear,0.0,0.0,0.0,4.0566E-4,0.001200763,0.008464012,0.026861202,0.055956702,0.09210460200000001,0.13389949099999998,0.17957979000000002,0.229647589,0.286480279,0.353670479,0.452630579,0.569828119,0.69992681,0.8328924,0.9687562,1.0825824,1.2245357000000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,j Geothermal,0.0,0.0,0.0,0.00369739,0.014821800000000001,0.029767179999999997,0.048370090000000004,0.06587228,0.07266707,0.07266705,0.0726671,0.07266707,0.0726671,0.07266701,0.07266701,0.07266704,0.072667,0.07266697,0.07266701,0.07266697999999999,0.07266696,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,k Hydro,0.0408238,0.0516204,0.0603183,0.0632959,0.0662735,0.0692511,0.0722286,0.0752062,0.0811228,0.0870394,0.092956,0.0988726,0.104789,0.110706,0.116622,0.122539,0.128456,0.134372,0.140289,0.146205,0.146205,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,l Wind,0.0,0.0028801,0.0082198,0.012766904199999998,0.028321773699999997,0.0560480287,0.1050659907,0.17008210270000002,0.2443391457,0.3367362835,0.428553766,0.5307283500000001,0.645076908,0.789346196,1.031278583,1.332844771,1.637996449,1.86636051,2.0556807900000007,2.1721597900000007,2.3433293600000007,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,m Solar,0.0,0.0,0.0,0.00304727742,0.014441423420000002,0.03806421202,0.08005414902,0.13980104201999996,0.22327086702,0.3276559176,0.4473180576,0.599184394,0.7220944869999999,0.7831083310000001,0.815441455,0.851725077,0.944477461,1.070842656,1.2020748659999998,1.329614929,1.4407203700000002,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,n CHP,0.0,0.0,0.0,0.0,2.25754E-4,4.91077E-4,8.25877E-4,0.00124677,0.00178408,0.0025151,0.00338761,0.00414606,0.00547004,0.00752591,0.0102694,0.0132874,0.0174459,0.0255656,0.035217,0.0466159,0.047588,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,a Coal,0.0215065,0.0200021,0.0180461,0.0734835,0.1039436,0.14077290999999997,0.19179328999999998,0.25034289,0.31049300999999996,0.3788067,0.45551151,0.5158155600000001,0.562404284,0.587514852,0.53927476,0.41888835999999996,0.32183107,0.118646831,0.037619454000000004,0.0114491496,0.0026496863000000006,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,b Coal w/CCS,0.0,0.0,0.0,0.0,0.0,5.14882E-4,0.0015702110000000002,0.003544419,0.007661475,0.016066146,0.031906114,0.06470493399999999,0.12261278,0.191412745,0.305708286,0.468555967,0.67736068,0.9317535019999998,1.1708781449999999,1.39002581,1.5748829700000002,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,c Gas,0.0,0.004201269,0.00619505,0.03313005,0.05182213,0.06788117,0.09327400999999999,0.12689295,0.16810942,0.22452492999999998,0.301019072,0.382089837,0.45148631699999997,0.5219436159999999,0.58108682,0.62784638,0.67243904,0.61226833,0.48301353100000005,0.3129820257,0.14480071018,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,d Gas w/CCS,0.0,0.0,0.0,0.0,0.0,0.0105831,0.0284572,0.053384100000000004,0.0871934,0.13501269999999999,0.1996794,0.2919759,0.42252839999999997,0.5607603999999999,0.7638744000000001,1.0567868999999999,1.4569122,2.0006009,2.5645867000000004,3.074819,3.512906,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,e Oil,0.00267763,0.00666428,0.00933526,0.07362239000000001,0.10955134999999999,0.12881084,0.157227,0.18813237,0.2247613,0.27472316,0.338145784,0.38710076400000004,0.4028154328,0.4214741867,0.41292494999999996,0.37614791000000003,0.2693178,0.158168606,0.07144381999999999,0.0282319284,0.00968238858,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,f Oil w/CCS,0.0,0.0,0.0,0.0,0.0,0.0318876,0.0675109,0.1068599,0.1582945,0.2263386,0.3117195,0.4278877,0.5691896000000001,0.7041136,0.9039864,1.0958762,1.0446262000000002,1.1635384,1.050907,0.9048438000000001,0.7997920000000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,g Biomass,0.0,0.0,0.0,2.49038E-4,6.03124E-4,0.0012912700000000002,0.002708353,0.004911744000000001,0.008028104,0.012740597,0.019186523,0.026655050000000003,0.035552184,0.044169955999999996,0.050552566199999996,0.05204854979999999,0.04873576419999999,0.023089434599999997,0.0078721845,0.0024384077399999997,5.765007320000001E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,h Biomass w/CCS,0.0,0.0,0.0,0.0,0.0,4.76856E-5,1.74842E-4,4.5468510000000006E-4,0.0010847201,0.0024757048,0.0052742263000000005,0.011599721999999998,0.024493798700000003,0.0429412799,0.0849331645,0.1605255019,0.2688279168,0.4257674303000001,0.5861197248,0.742322039,0.8993160519999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,i Nuclear,0.0,0.0,0.0,1.8157E-4,3.1710600000000005E-4,0.0017862260000000001,0.005969646,0.013791276,0.025592766,0.044665066,0.074620166,0.116709666,0.17690245599999999,0.24425715599999998,0.347571056,0.5050604860000001,0.74468395,1.06790862,1.41244,1.7163992000000001,1.9867735999999998,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,j Geothermal,0.0,0.0,0.0,0.00173777,0.00418911,0.00901773,0.01712302,0.02739295,0.0396905,0.053431610000000004,0.06925853,0.07071998,0.07071993,0.07071998,0.07071997,0.07072003,0.07071996,0.07072001,0.07072001,0.07072002999999999,0.07072002,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,k Hydro,0.0549063,0.1228,0.143803,0.152226,0.160649,0.169072,0.177496,0.185919,0.202656,0.219393,0.236131,0.252868,0.269606,0.286343,0.30308,0.319818,0.336555,0.353293,0.37003,0.386767,0.386767,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,l Wind,0.0,2.4E-6,3.54999E-5,7.7447847E-4,0.00191819538,0.00457282041,0.010230861709999999,0.01956532281,0.03441573991,0.058767556340000006,0.09794948543000001,0.1579619874,0.24420592209999997,0.298984911,0.362360974,0.452268579,0.5846181630000001,0.7608899360000001,0.93254366,1.1122952099999999,1.25855513,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,m Solar,0.0,0.0,0.0,0.0013208151299999998,0.004237332159999999,0.010998669860000001,0.02352453676,0.044133134660000004,0.07994098666,0.13931045353,0.2356185005,0.3967799548,0.6422048919,0.903540563,1.1787635719999996,1.4991370659999999,1.885694096,2.3848473040000004,2.8713812,3.279542891,3.66570073,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,n CHP,0.0,0.0,0.0,0.0,4.53162E-4,0.00103592,0.00183557,0.00296623,0.00475528,0.00764835,0.0119899,0.0173942,0.0248768,0.0389338,0.06183,0.0912677,0.133882,0.18187,0.235173,0.276585,0.30861,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,a Coal,0.00130875,0.00250043,0.003599,0.00580396,0.00818375,0.012398817000000001,0.019126614,0.028009085,0.037939359,0.049493858,0.063088197,0.07467467700000001,0.08471046799999997,0.09299048699999998,0.08521422700000002,0.06810953,0.054298466,0.020037841799999997,0.0061693411,0.0020246555599999997,4.80989607E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,b Coal w/CCS,0.0,0.0,0.0,0.0,0.0,5.99215E-5,2.0089309999999998E-4,5.01848E-4,0.0011778777,0.0025779252000000005,0.0053055363,0.0112268554,0.021502124399999996,0.037120737,0.06426386210000001,0.1008501324,0.14703677850000002,0.2216364503,0.3233185678,0.425134186,0.539686109,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,c Gas,0.02665806,0.0645019,0.079883972,0.115793684,0.16550922199999998,0.22243279999999999,0.322277221,0.46721251899999994,0.6485915150000001,0.888993579,1.211161113,1.551689036,1.9069347995,2.3000604641,2.5861945,2.76538515,2.89674034,2.4976798099999997,1.766561389,1.054041265,0.4361805141,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,d Gas w/CCS,0.0,0.0,0.0,0.0,0.0,0.042827,0.1217936,0.2409719,0.4047899,0.6249876999999999,0.911867,1.3084954,1.8221254,2.4561079999999995,3.325772,4.361473,5.572247000000001,7.456021000000001,9.82095,11.875522,13.818406000000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,e Oil,0.0179558,0.0344399,0.0455212,0.0756361,0.11359495,0.14052322,0.18293905,0.23353994,0.29023526,0.36325973,0.45584944,0.5277976,0.6021844599999999,0.67079868,0.6439067,0.5686821799999999,0.39932805000000005,0.250036709,0.11332313499999999,0.047135497900000004,0.0166331697,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,f Oil w/CCS,0.0,0.0,0.0,0.0,0.0,0.046066,0.1018104,0.1667638,0.24737330000000002,0.3457093,0.4676112,0.6405304999999999,0.8518044,1.0796051,1.3885017,1.6201035,1.450444,1.7458171999999998,1.752885,1.5763588,1.4998,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,g Biomass,1.692E-4,6.11997E-4,8.28003E-4,0.001459749,0.003287097,0.006985163000000001,0.013877714,0.0241324764,0.03744193,0.0553228499,0.0774156154,0.10140842684999998,0.12977333760999998,0.16177355681,0.17974099400000004,0.174360137,0.15331426500000003,0.067030022,0.020633971999999997,0.0066171193,0.00157076715,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,h Biomass w/CCS,0.0,0.0,0.0,0.0,0.0,2.599074E-4,8.892159E-4,0.002221806,0.0050314249,0.0105778666,0.0208041966,0.0425264169,0.08148649470000001,0.1448217132,0.2776124902,0.4769935898,0.7248302762000001,1.141832505,1.6711235520000003,2.17150466,2.73992129,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,i Nuclear,0.0,0.0,0.0,1.80289E-4,4.22554E-4,0.004073324,0.015480714,0.038767214,0.074852013,0.13104011299999999,0.21735091299999998,0.33800471299999996,0.503517613,0.727151613,1.059007613,1.4982653240000001,2.07797406,2.9628631999999997,4.0310715,4.993746000000001,5.9800222000000005,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,j Geothermal,0.0,0.0,0.0,0.00176604,0.00627838,0.01829707,0.03931463,0.06658992,0.09823169000000001,0.13245718,0.144519,0.144519,0.1445189,0.144519,0.144519,0.14451901,0.14451898000000002,0.14451912,0.14451935999999999,0.14451876,0.14451932,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,k Hydro,0.0814254,0.10931,0.113792,0.139788,0.165784,0.191781,0.217777,0.243773,0.295429,0.347085,0.398742,0.450398,0.502054,0.55371,0.605366,0.657022,0.708678,0.760334,0.81199,0.863646,0.863646,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,l Wind,0.0,1.17E-5,1.769E-4,0.0015366967700000001,0.00531485327,0.017259158770000005,0.04451495877000001,0.09238198176999998,0.16866508577,0.288426828,0.4704743805,0.7381510250000001,1.1207788049999998,1.6484598419999998,2.416121408,3.296594469,4.01302426,5.006367310000001,6.198649030000001,7.167405270000001,8.0338927,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,m Solar,0.0,1.44E-5,1.08E-5,0.00203356582,0.007406650799999999,0.022734201800000003,0.0538014978,0.1092273978,0.2060504828,0.36687377497999996,0.6255999799999999,0.9727849659999999,1.2857452,1.60897751,2.0166802649999997,2.625760577,3.699676077,5.101558369999999,6.619266639999999,8.00709833,9.512910589999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,n CHP,0.0,0.0,0.0,0.0,9.82174E-4,0.00238731,0.00460418,0.00808634,0.0135799,0.0226021,0.0367117,0.0552866,0.0858288,0.131518,0.202798,0.313897,0.526124,0.862173,1.2501,1.68714,2.05153,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,a Coal,0.0016128,0.00567,0.00806399,0.01155799,0.012370270000000001,0.01445193,0.017404069,0.020082555000000002,0.021811017000000005,0.022905868,0.023558187,0.023116697999999998,0.021897538000000005,0.019173541399999997,0.011069312000000003,0.0045187358,0.0019350826499999999,3.9942009099999996E-4,9.69089193E-5,2.743393857E-5,5.232318569000001E-6,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,b Coal w/CCS,0.0,0.0,0.0,0.0,0.0,4.00692E-5,1.383653E-4,2.945841E-4,5.5163E-4,9.282482E-4,0.0014278995000000002,0.0023326784,0.0040183367,0.006014465599999999,0.009780996399999999,0.0142654859,0.018912930400000003,0.024123396100000003,0.029717156199999994,0.034281110399999995,0.040062832,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,c Gas,0.0715427,0.1991953,0.2245892,0.26642499999999997,0.2747765,0.2967857,0.3252445,0.34968689999999997,0.36311681999999995,0.37197746,0.37834827,0.37698261,0.33398147000000006,0.31551110000000004,0.26685658700000003,0.20479989700000004,0.14412027920000003,0.07139425751000002,0.03062443609,0.012532377706999998,0.0033951075595999997,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,d Gas w/CCS,0.0,0.0,0.0,0.0,0.0,0.0186567,0.052336099999999997,0.0913661,0.1322199,0.1725109,0.20922169999999998,0.253139,0.3131605,0.3693161,0.44237750000000003,0.5078831,0.5636202,0.6220625,0.6796143000000001,0.7167790999999999,0.7565495999999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,e Oil,0.0178164,0.0206892,0.0597456,0.06609016000000001,0.06243269,0.06486047,0.06458466,0.06164608,0.057618489999999994,0.05330477,0.048714182999999994,0.042645773,0.033749148,0.026022642999999998,0.0176187543,0.010225226,0.005149832,0.00227157564,8.513109989999999E-4,3.26888862E-4,1.0138190660000001E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,f Oil w/CCS,0.0,0.0,0.0,0.0,0.0,0.0108497,0.02165372,0.02853879,0.03463165,0.03935047,0.04266031,0.049257430000000005,0.05908308,0.06371038,0.07701991,0.08289893,0.07386818,0.09005642000000001,0.08533597,0.07559246,0.07399032,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,g Biomass,3.85201E-4,0.0046368,0.007902,0.00745499,0.00771596,0.009996404,0.012966104,0.015792587,0.017995625,0.019800911,0.020444282,0.020307466999999996,0.019815158,0.01801331,0.013394185000000001,0.0074351562,0.003360048999999999,7.631944800000001E-4,1.7866061850000005E-4,5.196101885E-5,1.0705121926E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,h Biomass w/CCS,0.0,0.0,0.0,0.0,0.0,1.89143E-4,6.143642E-4,0.0012553361000000002,0.0022404254,0.0035979933,0.0052633075,0.0082473692,0.013831372699999997,0.0207979156,0.037305840099999994,0.05984864499999999,0.0829810963,0.11068146300000001,0.13840152299999997,0.15964353599999997,0.18714354000000002,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,i Nuclear,0.0262116,0.0247428,0.0258156,0.026559810000000003,0.026497410000000002,0.028121689999999998,0.03170486,0.035928940000000006,0.040895650000000006,0.04682460000000001,0.05353924,0.06238082,0.07523815,0.08724532000000002,0.10426393,0.12065142000000001,0.13753505000000002,0.15288981,0.16560889,0.17335071,0.18283372,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,j Geothermal,0.0,0.0,0.0,0.00210656,0.00373143,0.00956199,0.02002392,0.032013879999999995,0.04439694000000001,0.05491558999999999,0.06536143,0.0738578,0.0825865,0.088623,0.10125920000000001,0.112894,0.12305340000000001,0.1317527,0.1363069,0.13812850000000002,0.138494,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,k Hydro,0.0643536,0.122414,0.120913,0.123868,0.126823,0.129777,0.132732,0.135687,0.140903,0.14612,0.151337,0.156554,0.16177,0.166987,0.172204,0.177421,0.182637,0.187854,0.193071,0.198288,0.198288,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,l Wind,0.0,2.7E-4,9.0E-5,0.00200883309,0.0036581495699999998,0.01047794407,0.025325545669999998,0.04597359727,0.07164302687,0.10053363478,0.13288205930000002,0.17127139179999998,0.2239589372,0.2719196136,0.354885922,0.44313985400000006,0.527249997,0.604546147,0.6631770760000001,0.700481211,0.729061794,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,m Solar,0.0,0.0,0.0,7.289945800000001E-4,0.0014724723399999998,0.00412504184,0.009323388040000002,0.01645693864,0.02562902174,0.036110218859999994,0.0481210195,0.063149931,0.08120427079999999,0.08760562820000002,0.0888942191,0.09554266839999999,0.102662373,0.10859867899999996,0.10980398000000001,0.113054108,0.11996428800000002,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,n CHP,0.0,0.0,0.0,0.0,1.05916E-4,2.04576E-4,3.09858E-4,4.29188E-4,5.733E-4,7.61041E-4,9.78602E-4,0.0011636,0.00142773,0.00177043,0.00242173,0.00337306,0.00424785,0.00620201,0.00690647,0.0075556,0.00741496,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,a Coal,0.439003,0.672518,0.655517,0.743751,0.7801795999999999,0.8093500000000001,0.84123617,0.85538831,0.85872712,0.83803385,0.8081005399999999,0.7529296599999998,0.6846525100000002,0.5913974299999999,0.38792684,0.19917188199999997,0.092292287,0.018537497099999998,0.003895730710000001,9.855039061E-4,1.6960913222E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,b Coal w/CCS,0.0,0.0,0.0,0.0,0.0,0.00109153,0.003483689,0.007262804000000001,0.015056243999999996,0.025757578000000003,0.039946986000000004,0.06448025600000001,0.107480409,0.16176707599999998,0.249921309,0.34880369499999997,0.4480023699999999,0.5566810640000001,0.64699615,0.7098817999999999,0.7660467099999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,c Gas,0.0721299,0.1183401,0.1620722,0.15442356999999998,0.16467828,0.17016307,0.17373224,0.17528532000000002,0.17707045999999996,0.17633809,0.17678608,0.17621552999999998,0.16109607399999998,0.15269334499999998,0.140672719,0.12423992899999997,0.1008874199,0.058464282900000004,0.02644954584,0.010635043026,0.0028938612623000005,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,d Gas w/CCS,0.0,0.0,0.0,0.0,0.0,0.0095981,0.02515693,0.04337534,0.06773952999999999,0.0907357,0.11251673000000001,0.13869657,0.17441744,0.21292975999999997,0.2634459,0.3174267,0.3738649,0.44089030000000007,0.4998142,0.5407252,0.5779065,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,e Oil,0.012816,0.0102421,0.0113868,0.00741026,0.008117576999999999,0.008165571,0.008509865,0.008720764,0.00949013,0.009571389,0.009499744000000001,0.009285592399999999,0.0084430919,0.007259247200000001,0.0059958475,0.0042457732,0.00233480987,0.00110148641,3.91090459E-4,1.432369066E-4,4.343311290000001E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,f Oil w/CCS,0.0,0.0,0.0,0.0,0.0,0.00168181,0.003119494,0.004311341,0.006507581,0.007889001,0.009206146,0.01168392,0.015440739000000002,0.0185758,0.025615107,0.03155674,0.03070076,0.03971456,0.03895232,0.03490315,0.03465326,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,g Biomass,0.0,0.00150481,0.0014688,0.0013501326999999998,0.0020230516,0.0034656542,0.0060868248,0.0092137188,0.013484943199999998,0.0172440357,0.020087914000000002,0.0224391206,0.024436264629999996,0.02447511994,0.022050837,0.015878288000000004,0.0083657062,0.0019877862999999997,4.19395064E-4,1.1226858769999998E-4,2.2180612426E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,h Biomass w/CCS,0.0,0.0,0.0,0.0,0.0,1.295473E-4,4.367177E-4,9.865317E-4,0.0022157025,0.004002813300000001,0.006485432,0.011238223900000004,0.020686347100000002,0.03485560700000001,0.0674243297,0.11463171840000001,0.16753388449999995,0.23797070440000004,0.300683648,0.348627207,0.40208320500000005,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,i Nuclear,0.0,0.0,0.0,0.0,0.0,6.27608E-4,0.002387407,0.005236297,0.012540645999999999,0.022974726,0.036507726000000004,0.052627415999999996,0.073871415,0.096269295,0.126930295,0.15858869399999997,0.19019586300000002,0.22503523,0.25395849000000004,0.27496189,0.29209179999999996,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,j Geothermal,0.00746642,0.0111493,0.0209844,0.02850728,0.03524572,0.04602399,0.06271225999999999,0.08166974000000002,0.08793163,0.10671937999999999,0.1256793,0.1445326,0.1658422,0.185619,0.2090109,0.2321142,0.24239699999999997,0.242397,0.242397,0.2423971,0.24239709999999998,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,k Hydro,0.134392,0.138895,0.133859,0.139576,0.145294,0.151011,0.156728,0.162446,0.169607,0.176768,0.18393,0.191091,0.198253,0.205414,0.212575,0.219737,0.226898,0.23406,0.241221,0.248382,0.248382,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,l Wind,0.0,0.00539644,0.0231552,0.031683196899999995,0.0404308419,0.0565324337,0.0860457137,0.1255586077,0.1636280627,0.2237034138,0.29165161079999996,0.37570073700000006,0.49191650899999995,0.6144374359999999,0.7424789509999998,0.8394311729999998,0.935336901,1.047745823,1.127133951,1.1730955500000002,1.2222266200000003,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,m Solar,0.0,2.8440203000000005E-4,9.972009999999999E-4,0.00343229837,0.007121262630000001,0.01476320473,0.029097714729999998,0.04945240952999999,0.08138743053,0.11831875916,0.1606515639,0.1914251046,0.19260276659999997,0.20049992679999998,0.2163588788,0.23291248279999996,0.2451387978,0.266369498,0.28956463,0.303368514,0.30793635,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,n CHP,0.005325666,0.01770448,0.02102566,0.02479675,0.033478754,0.041355931000000005,0.044991508,0.047708928,0.04999136,0.051234260000000004,0.05007972,0.050055459999999996,0.049168653,0.046825211000000005,0.047115352,0.045747404000000005,0.040682502999999995,0.0376236882,0.0320355341,0.0292998132,0.0257544393,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,a Coal,0.0171142,0.0386711,0.0408167,0.0741503,0.0923147,0.12830182,0.16542141,0.19859602,0.22270948999999995,0.24221384,0.25840902,0.26483162000000005,0.26410791,0.24855963000000006,0.17374885999999995,0.08297453800000004,0.036561232000000006,0.0070062337,0.0016078375719999999,4.324289902E-4,8.381773915E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,b Coal w/CCS,0.0,0.0,0.0,0.0,0.0,5.89153E-4,0.001664936,0.0032832409999999997,0.005841421000000001,0.009801974,0.015699894000000002,0.025910679,0.04595490799999999,0.071643821,0.11925801100000001,0.17678163299999997,0.233948917,0.28915712899999996,0.33827694,0.37357895900000015,0.41233252,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,c Gas,0.00117362,0.067723,0.1313097,0.24908451000000004,0.32646921,0.48927503,0.66146915,0.81919767,0.94320257,1.05045987,1.14612034,1.2161485099999998,1.1610436100000001,1.1187235,0.94243306,0.7229357089999999,0.5110965590000001,0.26122690919999997,0.11251219895999999,0.044193926871999994,0.012201424403400002,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,d Gas w/CCS,0.0,0.0,0.0,0.0,0.0,0.00955928,0.025130730000000004,0.04591895,0.07240047,0.10739546,0.15223824,0.21621041,0.32627969,0.45465058,0.6726945,0.9298043,1.1781981000000001,1.4112958,1.6022448,1.7180748999999997,1.822799,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,e Oil,0.017773,0.0420406,0.0578339,0.1174483,0.1477381,0.1768382,0.202289,0.22177080000000005,0.23595784,0.24878661000000002,0.25843335,0.25067622999999994,0.21722457,0.17649502,0.121087043,0.07106681999999999,0.03463857,0.014499780799999999,0.005244633340000001,0.001979142175,6.344692846E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,f Oil w/CCS,0.0,0.0,0.0,0.0,0.0,0.056832,0.0980399,0.1336531,0.1703847,0.20842899999999998,0.2454989,0.2911042,0.3568272,0.4023244,0.47396839999999996,0.5143975,0.4571949,0.5062138,0.44905569999999995,0.3795265,0.3549056,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,g Biomass,0.0138923,0.0489274,0.113382,0.1451885,0.16355550000000002,0.20962621000000004,0.25555855,0.29507862,0.32245386,0.34447139000000004,0.35552961000000005,0.35382555,0.34514269000000003,0.31739229,0.24001459,0.13895242999999996,0.063620572,0.0134389396,0.0029105641769999993,7.800951259000001E-4,1.5708337748999998E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,h Biomass w/CCS,0.0,0.0,0.0,0.0,0.0,0.004107690000000001,0.01050994,0.01913899,0.030849770000000006,0.04659699,0.06679699,0.098634,0.15743722,0.23146685000000003,0.39142903,0.5960122,0.77981836,0.94776399,1.06773427,1.1329977299999998,1.1888145000000003,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,i Nuclear,0.00805313,0.0354779,0.0522827,0.048710753,0.048393323,0.051207443000000005,0.055636113,0.061022213,0.06731871299999999,0.076497803,0.089954793,0.107852272,0.137346022,0.169369732,0.217406562,0.27395029,0.32728348,0.37472007,0.4137974,0.43970480000000006,0.46917,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,j Geothermal,0.0,0.0,0.0,0.00260392,0.00643324,0.01930484,0.03796553,0.06002471,0.08381857000000001,0.10846301,0.13557770000000002,0.1597302,0.1945467,0.2273698,0.2796593,0.3292982,0.36928799999999995,0.3994581,0.40928339999999996,0.4071664,0.3979449,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,k Hydro,0.744149,1.21485,1.45184,1.4758,1.49977,1.52373,1.5477,1.57166,1.61397,1.65628,1.69859,1.7409,1.78321,1.82552,1.86783,1.91014,1.95245,1.99476,2.03707,2.07938,2.07938,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,l Wind,0.0,3.34799E-4,0.00783718,0.0153241897,0.022622183499999997,0.0438417289,0.0737361849,0.1097452599,0.1428675359,0.1854849882,0.23925064940000002,0.29588149299999994,0.38976926100000003,0.492470893,0.6713571269999999,0.873389245,1.07004472,1.2529922210000002,1.373343477,1.43159524,1.4467158,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,m Solar,0.0,0.0,0.0,0.0018721081400000002,0.005577014240000001,0.01530045324,0.03054224504,0.05189505374,0.08245103484,0.1220149807,0.1720764106,0.2386740756,0.32900821280000003,0.4220824191,0.557916383,0.699324215,0.830111111,0.917511867,0.973089118,1.0058978610000002,1.0366755410000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,n CHP,0.0,0.0,0.0,0.0,8.79198E-4,0.00163435,0.00255255,0.00364211,0.00507185,0.00695888,0.00911688,0.0110126,0.0134358,0.0160525,0.0210136,0.0281667,0.0338269,0.0452187,0.0460428,0.0458792,0.0424691,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,a Coal,0.295991,0.395942,0.316566,0.36033230000000005,0.3865614,0.40003773,0.41858962000000005,0.42719000999999995,0.43208111000000005,0.42527312999999994,0.41348466,0.3877250099999999,0.34673620000000005,0.28884069,0.15424725,0.060946393999999994,0.024059894300000002,0.004615048850000001,0.001101867632,3.159497346000001E-4,5.905538499499999E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,b Coal w/CCS,0.0,0.0,0.0,0.0,0.0,5.0537E-4,0.001677089,0.003390048,0.006747904000000001,0.011159295000000003,0.017170259,0.027941513,0.04406181700000001,0.06324783099999999,0.09664244299999998,0.12977653700000003,0.157659989,0.188271612,0.21322887100000001,0.23017274999999998,0.24821783,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,c Gas,0.03483713,0.1262951,0.189925,0.202673,0.2211787,0.22581664999999998,0.23290081999999998,0.23713713000000003,0.24245050000000004,0.24453113,0.24702114,0.24311620000000003,0.21539618,0.19414594200000002,0.16630415499999998,0.1301184675,0.09252807419999999,0.042504747200000005,0.017406964210000004,0.006842610197899999,0.0018027342705,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,d Gas w/CCS,0.0,0.0,0.0,0.0,0.0,0.0116858,0.0322384,0.05512980000000001,0.0853198,0.1132184,0.13979790000000003,0.1716806,0.2076407,0.24316680000000002,0.2888236,0.3247807,0.35027939999999996,0.3762183,0.3960415,0.4047202,0.41579479999999996,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,e Oil,0.0592847,0.0551952,0.0266292,0.02402504,0.026434370000000002,0.02551318,0.025417512000000007,0.024842618000000007,0.025081339,0.024115695000000003,0.022934145000000003,0.020427748000000003,0.015992025,0.0120677396,0.0084582883,0.004925744,0.00243848301,0.00106219719,3.8871650000000006E-4,1.5126756479999997E-4,5.0271596230000003E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,f Oil w/CCS,0.0,0.0,0.0,0.0,0.0,0.00335007,0.00693924,0.00961693,0.014082227,0.016580133,0.01899144,0.022624567999999998,0.026326663,0.028969597,0.0356835,0.03798604,0.032224840000000005,0.03796067,0.03376233,0.02794783,0.026972250000000003,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,g Biomass,0.0137844,0.0300024,0.0279072,0.02822217,0.03069896,0.032704835,0.03693225,0.040906112999999994,0.046299312,0.050269161,0.052166042999999995,0.05188310499999998,0.04913394299999999,0.04392876399999999,0.031641465,0.017789397000000002,0.007792154799999999,0.0016814536600000003,3.919772399999999E-4,1.168612031E-4,2.4818246040999994E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,h Biomass w/CCS,0.0,0.0,0.0,0.0,0.0,3.086586E-4,0.001034644,0.0021424278,0.0043694193999999995,0.0073385766000000005,0.011368491199999997,0.0189175859,0.03109561,0.04755877020000001,0.0865313712,0.1347130284,0.1784562263,0.235000574,0.283162036,0.31892463699999996,0.366727688,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,i Nuclear,0.262681,0.331344,0.326372,0.3570214,0.38719289999999995,0.42015329999999995,0.48617959999999993,0.5618874,0.6651494,0.7602753,0.8549519000000001,0.9740634000000001,1.109695,1.2415661,1.4223799,1.5501242,1.6552455999999998,1.7664743,1.811549,1.8106159999999998,1.810145,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,j Geothermal,0.0,0.0,0.0,0.0040695,0.00817513,0.01222931,0.013231,0.013231030000000001,0.013231000000000001,0.013231,0.013231010000000001,0.013231001000000001,0.013231003,0.013230996999999998,0.013230999,0.013231,0.013231001000000001,0.013231001999999999,0.013231,0.013231,0.013231362,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,k Hydro,1.06835,1.30916,1.26543,1.30693,1.34854,1.39015,1.43175,1.47336,1.49957,1.52578,1.55199,1.5782,1.60441,1.63062,1.65683,1.68304,1.70925,1.73547,1.76168,1.78789,1.78789,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,l Wind,0.0,0.00529559,0.0344051,0.0477808209,0.0646684254,0.08869341139999999,0.1361845024,0.1970585594,0.2570633524,0.3479552095,0.446044224,0.5690422849999999,0.6960143290000002,0.8150516879999999,0.9946643249999999,1.1557949370000002,1.2775660280000003,1.4123628410000002,1.4941170760000002,1.53253689,1.56176359,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,m Solar,0.0,6.11999E-5,5.68799E-4,0.00116260719,0.0022121175300000005,0.00611003228,0.016810965560000002,0.03352854055,0.06165262016999999,0.0955499044,0.13558546575,0.18843033939999998,0.24819444981999997,0.30647964272999995,0.39667691910999997,0.48037937615,0.546454934,0.6199082643,0.6695112042,0.6972490209999999,0.7219449221,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,n CHP,4.21048E-4,4.20829E-4,4.24375E-4,4.67594E-4,9.68585E-4,0.0013768349999999999,0.001723657,0.002081797,0.002446657,0.002899184,0.003392695,0.003733373,0.004286412999999999,0.005022429,0.006330298,0.008372889,0.00980711,0.0126834416,0.013040015399999999,0.0128665181,0.01152859222,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,a Coal,1.548E-4,0.007992,0.0111816,0.01858878,0.02344143,0.028202455999999994,0.033990667,0.039492267000000005,0.04497583,0.049879124000000004,0.05408188399999999,0.056573678999999995,0.05768142,0.056444226999999986,0.04538897700000001,0.026589319,0.014210004499999998,0.00327672777,8.614104150000004E-4,2.6805157729999996E-4,5.5036021499999995E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,b Coal w/CCS,0.0,0.0,0.0,0.0,0.0,8.01904E-5,2.421698E-4,4.8275399999999995E-4,9.543684E-4,0.0017597033000000002,0.0030014955,0.0053760157,0.009842779900000001,0.0158011132,0.0256903333,0.0380663474,0.0520459375,0.06717497760000002,0.08308084589999999,0.096658276,0.112261972,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,c Gas,0.0129143,0.042021,0.0577774,0.07941088,0.09667788999999999,0.10612829,0.11773462000000001,0.12977331,0.14248464,0.15524363,0.16798446,0.1774679,0.16467523000000003,0.154761137,0.14253247300000002,0.125159583,0.10537088530000001,0.0700649247,0.03974192440999999,0.019745502535,0.006386592503800001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,d Gas w/CCS,0.0,0.0,0.0,0.0,0.0,0.00891993,0.021891590000000002,0.03582202,0.05267745,0.07081267,0.08901175,0.11086795999999999,0.14012881,0.17086201,0.20603490000000002,0.2447165,0.2868595,0.33011480000000004,0.37483110000000003,0.4110365,0.45254930000000004,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,e Oil,0.119832,0.219264,0.220659,0.2632993,0.29725900000000005,0.2999826,0.29967955999999996,0.29740613000000005,0.28955716,0.27897247999999997,0.26808971,0.24903938,0.19992305000000002,0.15745059999999997,0.10756683700000001,0.07042274600000001,0.039285562999999996,0.0176035031,0.006811743269999999,0.0027649490800000006,8.639328369999999E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,f Oil w/CCS,0.0,0.0,0.0,0.0,0.0,0.0287602,0.0587742,0.08602660000000001,0.11749409999999999,0.1469177,0.1737573,0.2067299,0.2492462,0.28591679999999997,0.32601290000000005,0.3582449,0.3502044,0.38708329999999996,0.3666154,0.3327953,0.3050477,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,g Biomass,0.00762288,0.008862,0.0143049,0.01886169,0.03081892,0.04375975,0.06104176000000001,0.07984425,0.09976386999999999,0.119058103,0.13444921699999998,0.14494279600000004,0.15163869800000002,0.15052169220000003,0.1299341,0.08913137,0.04982901400000001,0.012789673900000001,0.0031986801900000003,9.841954249999998E-4,2.1039531137999998E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,h Biomass w/CCS,0.0,0.0,0.0,0.0,0.0,9.86616E-4,0.002854175,0.00545462,0.009910505,0.016550239999999997,0.025433521000000004,0.040737971000000005,0.06793543199999999,0.10395174800000001,0.174938418,0.271872184,0.37541098999999994,0.48917997599999996,0.5957835980000001,0.6775514,0.76893401,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,i Nuclear,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0150031,0.045479,0.08962619999999999,0.1383241,0.1959599,0.24957900000000002,0.3134679,0.37743150000000003,0.4401044,0.5007695,0.5598973000000002,0.6092913,0.6493024999999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,j Geothermal,0.002898,0.0094176,0.0117864,0.02106448,0.02996394,0.033792050000000004,0.03379196,0.03379201,0.03379198,0.03379204,0.033791959999999996,0.033791959999999996,0.03379199,0.03379203,0.033791959999999996,0.03379199,0.03379198,0.03379195,0.033791989999999994,0.03379201,0.03379201,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,k Hydro,0.0486099,0.0767999,0.0855111,0.0891228,0.0927345,0.0963461,0.0999578,0.103569,0.109946,0.116323,0.1227,0.129076,0.135453,0.14183,0.148206,0.154583,0.16096,0.167337,0.173713,0.18009,0.18009,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,l Wind,0.0,9.144E-4,0.00207,0.0159217052,0.037552620200000005,0.07316545619999999,0.12947553920000002,0.19607932220000004,0.28052612419999995,0.365261292,0.448532857,0.535385491,0.6331324380000001,0.7166030150000001,0.812630003,0.90408734,0.99080354,1.0697029999999998,1.1265423399999999,1.16327867,1.1988591499999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,m Solar,0.0,0.0,4.32E-5,0.007784183900000001,0.021364209900000004,0.0455664469,0.08306202890000003,0.10233010690000002,0.13117704190000004,0.16632037500000002,0.20522748600000004,0.249932869,0.305156077,0.37558476900000004,0.46658237399999997,0.558644507,0.6547134,0.7400335000000001,0.8110213700000001,0.8604250699999999,0.90093668,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,n CHP,0.0,0.0,0.0,0.0,6.01725E-4,0.00115523,0.00179985,0.00285141,0.00384775,0.00521423,0.00690884,0.00854137,0.0110913,0.0144917,0.0200971,0.0285673,0.0370776,0.0485221,0.050048,0.0525992,0.0486668,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,a Coal,0.257637,0.202024,0.264001,0.35102,0.3844326,0.39391201000000003,0.40111361000000006,0.39668751,0.38390169,0.3646444999999999,0.34248380000000006,0.30894513,0.27088784,0.22326762,0.11849310099999998,0.040636695000000014,0.0156850504,0.0030698675099999997,7.317402469999999E-4,2.1269360599999996E-4,4.173524627300001E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,b Coal w/CCS,0.0,0.0,0.0,0.0,0.0,4.06463E-4,0.001222899,0.002308348,0.004296723,0.0070934150000000005,0.010388403,0.016797703,0.028569921000000005,0.041635265000000005,0.066996106,0.09583537800000001,0.119512843,0.150002995,0.17679792500000002,0.196196501,0.22232793900000003,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,c Gas,0.270924,0.259231,0.289064,0.3469151,0.40964999999999996,0.4343608,0.4570695,0.4725456,0.48124990000000006,0.48987982999999996,0.49412507,0.4863873799999999,0.38881252999999993,0.33551478,0.294664874,0.23222838299999998,0.1678682258,0.08082996569999999,0.03454062507,0.014766540100999998,0.0042751171799,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,d Gas w/CCS,0.0,0.0,0.0,0.0,0.0,0.0312931,0.07769519999999999,0.1232139,0.1770733,0.22901200000000002,0.2721366,0.3294818,0.4097311,0.48278860000000007,0.5808502,0.6748711000000001,0.7407615,0.8288082,0.8966059,0.9374461999999999,0.9864709000000002,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,e Oil,0.162338,0.0429694,0.00578517,0.007418650000000001,0.007885552,0.007322420999999999,0.007233621000000001,0.006877453,0.006713189000000001,0.006466110000000001,0.006109577200000001,0.005712922299999999,0.0042139662000000005,0.0030284867999999998,0.0023740100999999998,0.0015309437599999999,8.0273069E-4,3.93893055E-4,1.49375284E-4,6.0821978900000006E-5,2.1162170679999998E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,f Oil w/CCS,0.0,0.0,0.0,0.0,0.0,0.00115682,0.002009046,0.0024186340000000002,0.003209537,0.003769639,0.004130871,0.005209931000000001,0.006806652999999999,0.007701596,0.010551221,0.012890968,0.012379884,0.017260821000000003,0.017519592,0.016832806999999998,0.018886792,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,g Biomass,0.0,0.0,0.0,0.00118043,0.002121742,0.002989651,0.0048151620000000004,0.0066789530000000005,0.008950527,0.011112246,0.012412503,0.013645197,0.014704080999999999,0.014140106999999999,0.011352358199999999,0.006826200900000001,0.0031992518000000005,7.4506982E-4,1.8084530499999998E-4,5.601437269999999E-5,1.2684160548E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,h Biomass w/CCS,0.0,0.0,0.0,0.0,0.0,9.028040000000001E-5,3.038229E-4,6.367864E-4,0.0013218446,0.0023689056,0.0036781627000000003,0.006529524900000002,0.012480879799999997,0.0203023655,0.04169146829999999,0.072964409,0.10142581600000002,0.1456323927,0.18665962499999997,0.21842058600000003,0.267604557,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,i Nuclear,0.0,0.00977756,0.00896395,0.07606684999999999,0.11485991000000001,0.15307049,0.21636897,0.28666649,0.36711527,0.44587015,0.5140750700000001,0.6023125500000001,0.72274072,0.830103585,0.9989888,1.1041068,1.2019229,1.3380656,1.4272991000000002,1.4726506000000001,1.5495286,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,j Geothermal,0.0,0.0,0.0,0.00710471,0.01399969,0.02029949,0.029116620000000003,0.03745308,0.04675791,0.04980148,0.052471380000000005,0.05847798,0.06579733,0.06731805,0.06731786000000001,0.06731801,0.06731793999999999,0.06731793,0.06731801000000001,0.067318,0.067318,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,k Hydro,0.183715,0.211439,0.217472,0.23678,0.256088,0.275396,0.294704,0.314012,0.33546,0.356908,0.378356,0.399804,0.421252,0.4427,0.464148,0.485596,0.507045,0.528493,0.549941,0.571389,0.571389,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,l Wind,0.0,0.0,2.87998E-5,0.0066301863,0.014917292199999998,0.0243746261,0.0416419016,0.062289495699999996,0.09178441790000001,0.12035423440000001,0.14808982149999997,0.1925192776,0.25873531709999986,0.3214936139999999,0.4358549039999999,0.561629626,0.6661320049999999,0.8067716620000001,0.9074036169999999,0.9753935369999999,1.052391635,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,m Solar,0.0,0.0,0.0,0.0018878387,0.004356080900000001,0.007337256100000002,0.0127597271,0.0196017578,0.029765140399999994,0.0404994337,0.0517721518,0.07008238650000001,0.09727299750000001,0.1241842208,0.1717294232,0.21898036230000004,0.2456240829,0.27838295399999996,0.306199694,0.32542837599999996,0.34608840999999996,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,n CHP,0.0,6.27014E-4,0.001578479,0.0013072592,0.00185483,0.0025138364,0.0029178266,0.0033326052,0.0037598505,0.0043610638,0.0050851895,0.0057081846,0.0066729599999999995,0.0079543161,0.0105893575,0.014778900600000002,0.018373363,0.026077584100000002,0.028700039110000002,0.031524044169999994,0.03195978386,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,a Coal,1.69735,7.20575,11.8677,14.30142,15.94453,17.400160999999997,18.536475000000003,18.924542000000002,18.769309999999997,18.261624,17.553495999999996,16.611516999999992,15.304151999999998,13.4871807,8.9590602,4.120830599999999,1.7803536000000002,0.3430182890000001,0.076968181,0.020594806338,0.0034070749316999997,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,b Coal w/CCS,0.0,0.0,0.0,0.0,0.0,0.03278306,0.08754395000000001,0.15511794,0.26020443,0.39866601000000007,0.5550755800000001,0.8669953700000002,1.3351155199999998,1.9088232499999997,3.31027836,4.79335986,5.583203049999999,6.2914826,6.669026599999998,6.8565022,7.213616500000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,c Gas,0.00994681,0.0835439,0.3003612,0.23252029999999999,0.2795345,0.29756720000000003,0.31123740000000005,0.31478630999999996,0.31244487,0.30774342,0.30401348,0.30018004,0.25947266900000004,0.224795265,0.20699698,0.176809174,0.1445961109,0.09550052460000001,0.05717062225,0.030499917358999998,0.009368688203299998,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,d Gas w/CCS,0.0,0.0,0.0,0.0,0.0,0.044574,0.09564819999999999,0.1415056,0.18734779999999998,0.22768200000000002,0.2593602,0.30328,0.3505674,0.39906650000000005,0.49959410000000004,0.6205387,0.6976276,0.8272558,0.9251960000000001,0.9950981999999999,1.171959,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,e Oil,0.177202,0.221325,0.0483861,0.039863550000000005,0.050181920000000005,0.05231567999999999,0.05415437,0.053886720000000006,0.05482037,0.054085021999999996,0.05156484499999999,0.04811258299999999,0.036329606,0.026567264999999996,0.0212625383,0.0135215882,0.0062481561,0.00289438553,0.0010772987919999998,4.41964153E-4,1.3501678470000003E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,f Oil w/CCS,0.0,0.0,0.0,0.0,0.0,0.0105133,0.016230500000000002,0.01989187,0.02612523,0.03150575,0.03522279,0.043208189999999994,0.05051087,0.056906649999999996,0.07932574,0.09338505999999999,0.07975561,0.09156087,0.08180266,0.07193899,0.06759244,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,g Biomass,1.49641E-6,0.00866158,0.0410615,0.0394107,0.0704189,0.11515396,0.17652768000000002,0.23693770999999994,0.30196736,0.36318208999999996,0.40211041000000003,0.4369161999999999,0.44631249,0.430278527,0.38062556000000003,0.2547567700000001,0.12938368,0.031123508200000007,0.0073612750000000005,0.0021683235200000003,4.2060399641E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,h Biomass w/CCS,0.0,0.0,0.0,0.0,0.0,0.00365566,0.010438399999999999,0.020230360000000003,0.037021410000000005,0.060753360000000006,0.08893946,0.15001587000000002,0.25278251,0.40143564,0.91426721,1.61697213,2.03600203,2.5071953500000004,2.7944318500000005,2.9724287299999994,3.35464819,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,i Nuclear,0.0,0.191117,0.265967,0.45256,0.713691,1.149914,1.746607,2.361905,3.112984,3.9537190000000004,4.7746136,5.8324712,6.975842999999999,8.093010699999999,10.336405,12.312390999999998,13.183694000000001,13.805189,13.819857999999998,13.576744,13.546671,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,j Geothermal,0.0,4.13999E-4,5.83199E-4,0.051467608000000005,0.10041027999999999,0.11580051499999999,0.11580134,0.115804994,0.115799,0.11579899999999999,0.115799,0.1157991,0.11579899,0.11579903000000001,0.11579903,0.11579902,0.11579903000000001,0.11579894,0.11579899999999999,0.115799,0.11579901000000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,k Hydro,0.45643,1.4296,2.60038,2.6427,2.68502,2.72734,2.76966,2.81198,2.90904,3.00611,3.10317,3.20023,3.29729,3.39435,3.49142,3.58848,3.68554,3.7826,3.87966,3.97673,3.97673,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,l Wind,7.19999E-6,0.00730149,0.160644,0.281602645,0.46459029399999996,0.7839666639999999,1.232560664,1.706330644,2.108925324,2.604240769,3.0146889,3.53986688,4.095631830000001,4.686051570000001,6.3188544900000005,7.908381700000001,8.564460920000002,8.98641797,8.79765631,8.299813230000002,7.290060229999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,m Solar,7.19999E-6,2.74E-4,0.00338849,0.038174664999999997,0.10773314700000002,0.24718145700000002,0.462814567,0.7178387970000001,1.056951247,1.432903338,1.79830852,2.3005986499999995,2.84550752,3.36444033,3.60344139,3.8059338099999995,3.9334333700000004,3.9301203300000003,3.6970839300000002,3.49666111,3.6976243999999996,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,n CHP,0.0,0.0,0.0,0.0,0.00216442,0.00451424,0.00755792,0.0112463,0.0164152,0.0229181,0.0299299,0.0381756,0.0486954,0.0617232,0.0970743,0.142333,0.171031,0.222188,0.21881,0.216605,0.178868,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,a Coal,0.0133489,0.00888839,0.0135144,0.025373,0.03404092,0.040195623,0.04984744700000001,0.059797605000000004,0.067204748,0.07335643900000001,0.07834392500000001,0.07956350299999998,0.07813756200000001,0.072278503,0.048342919000000005,0.023154557000000003,0.010527584100000003,0.0022521996000000005,5.717853209999999E-4,1.745756201E-4,3.6231662631999996E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,b Coal w/CCS,0.0,0.0,0.0,0.0,0.0,1.071426E-4,3.9303870000000004E-4,8.809795E-4,0.0016737382000000002,0.0029250363,0.0047462851,0.0078759765,0.0140263404,0.0226065071,0.0366707358,0.054565807800000005,0.07260078100000003,0.09304275990000002,0.11155076500000001,0.12519623400000002,0.140814517,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,c Gas,0.016196409999999998,0.0266363,0.041749400000000006,0.0698122,0.0957703,0.109367,0.13135488,0.15534821000000001,0.1754777,0.19599554,0.21714106,0.23319526,0.22426994,0.21412065,0.19924420799999998,0.16993244799999999,0.1345753187,0.0797646892,0.040317483189999996,0.01899382619,0.005963786882599998,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,d Gas w/CCS,0.0,0.0,0.0,0.0,0.0,0.00731862,0.0222395,0.04163848,0.06276835,0.08655768999999999,0.11187565,0.14255615,0.18921324,0.24386132,0.31888489999999997,0.4068128,0.49072950000000004,0.58888,0.6739459,0.7314499,0.796237,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,e Oil,0.00136439,4.10394E-4,0.00180719,0.004201339,0.0058297110000000004,0.005539049000000001,0.006718447999999998,0.007750880999999999,0.008641936999999999,0.009799657,0.0109771414,0.0115160377,0.0115298547,0.0104287836,0.0083021317,0.0058091392000000006,0.0033553625,0.00159781409,6.34615919E-4,2.68852192E-4,9.216587669999999E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,f Oil w/CCS,0.0,0.0,0.0,0.0,0.0,0.0016747,0.003650633,0.005269046,0.0068355180000000005,0.008834834,0.011057606000000001,0.014403051,0.020115545,0.025783797,0.035037854,0.04499732000000001,0.04718198,0.06222166,0.06428015,0.06285854,0.06577954,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,g Biomass,9.86411E-4,0.00181081,0.00179639,0.00236758,0.003142278,0.0038250009999999997,0.005349044999999999,0.007015751,0.008526602,0.010158770000000001,0.011467637,0.012438029000000001,0.013357058000000005,0.013376727900000001,0.011054704700000001,0.007072474300000001,0.0035765873999999993,8.6566098E-4,2.13635944E-4,6.748059420000002E-5,1.5194475232000002E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,h Biomass w/CCS,0.0,0.0,0.0,0.0,0.0,7.73378E-5,2.6742089999999997E-4,5.881871E-4,0.0011006174,0.0018967826,0.0030203628000000002,0.0050136335,0.0091452833,0.015548577000000001,0.029588718400000002,0.0515404475,0.075085575,0.10584159989999999,0.134045141,0.155392498,0.182553972,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,i Nuclear,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018155,0.005834300000000001,0.01235443,0.020024160000000003,0.030992730000000003,0.04308722,0.05929881,0.07798958,0.09639903,0.11723556999999998,0.1362612,0.15121715,0.16704019000000003,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,j Geothermal,0.0,0.0,0.0,9.54453E-4,0.002730792,0.00502835,0.009623735,0.015369145,0.021355871,0.02708326,0.032550739999999995,0.03846616,0.04510566,0.051174910000000004,0.05884906,0.058849059999999995,0.05884892,0.058849040000000005,0.05884901,0.058848979999999995,0.05884895,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,k Hydro,0.0989892,0.143291,0.145444,0.15207,0.158696,0.165322,0.171948,0.178574,0.190273,0.201972,0.213671,0.22537,0.237068,0.248767,0.260466,0.272165,0.283864,0.295563,0.307262,0.318961,0.318961,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,l Wind,0.0,1.764E-4,1.404E-4,6.2566236E-4,0.0014656109699999998,0.00257275537,0.00496611787,0.008306965169999998,0.01211426037,0.016584677010000003,0.0216954523,0.0280887226,0.0371298071,0.0470658878,0.0614179706,0.0781716686,0.0944183547,0.11272183699999998,0.12564257,0.13236876400000003,0.13858056800000002,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,m Solar,0.0,0.0,0.0,2.3414326000000002E-4,7.5252715E-4,0.00163046609,0.0037847821600000002,0.007376287959999999,0.012422550260000002,0.019401148,0.028682332509999995,0.04201255917,0.0625890285,0.0871518217,0.12335037539999999,0.1666326575,0.21276067290000003,0.2670007364,0.31251472,0.34495644100000006,0.37680971700000004,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,n CHP,0.0,0.0,0.0,0.0,3.13496E-5,6.72434E-5,1.15899E-4,1.82598E-4,2.84759E-4,4.37971E-4,6.45761E-4,8.96157E-4,0.00127987,0.00180738,0.00281166,0.00441645,0.00612531,0.0095444,0.0113755,0.0135182,0.0142873,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,a Coal,0.859385,0.892792,0.885689,1.014084,1.112831,1.1798039999999999,1.2526479,1.29856,1.3111432,1.2966834000000003,1.2690629999999998,1.2177658,1.1434249000000005,1.0319951300000003,0.68935204,0.34098646000000005,0.156706449,0.03396790190000001,0.008464577000000001,0.002447793267,4.8382656140000014E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,b Coal w/CCS,0.0,0.0,0.0,0.0,0.0,0.0015445609999999999,0.00454144,0.009189830999999999,0.017326723999999998,0.029065076000000002,0.044437073,0.07114124100000001,0.11313009099999999,0.164277474,0.268435268,0.37109382700000004,0.44280200900000005,0.5091088209999999,0.5471531300000001,0.56180389,0.5667662100000002,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,c Gas,0.140306,0.12755,0.123565,0.14433165,0.1658745,0.17403078,0.18639735,0.19791650999999996,0.20762897,0.21527306,0.22199875000000005,0.22507850999999998,0.20671753999999998,0.190107985,0.172274649,0.150047164,0.1213271756,0.07411638640000001,0.0387565132,0.018405905481,0.0059176716438999995,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,d Gas w/CCS,0.0,0.0,0.0,0.0,0.0,0.0127136,0.0318597,0.0537414,0.0782696,0.10234529999999999,0.12460560000000001,0.15078360000000002,0.18214809999999998,0.2146018,0.26473990000000003,0.3100007,0.33753740000000004,0.3682373,0.38556,0.39457149999999996,0.4113255,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,e Oil,0.0841881,0.0370123,0.0384476,0.04281439,0.05210688,0.05173503,0.05357938,0.05401614999999999,0.05499142999999999,0.054751169,0.05364943,0.05044662199999999,0.04026991,0.030771275,0.022963994,0.0144747864,0.006553335100000001,0.00291107213,0.00107977301,4.4086327000000006E-4,1.5839309800000001E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,f Oil w/CCS,0.0,0.0,0.0,0.0,0.0,0.00789014,0.01403232,0.01909549,0.02568231,0.031420290000000003,0.03645638,0.04381865,0.05139765,0.05697862,0.06941512999999999,0.07161467,0.050793920000000006,0.048512,0.0352547,0.025557040000000003,0.02136429,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,g Biomass,1.65607E-4,0.009839,0.0341529,0.03518969,0.039909780000000006,0.04383697,0.05023632,0.05649185,0.06260275,0.06781534,0.07071027999999999,0.07220743200000002,0.07160195000000001,0.068230689,0.056488825,0.037717510999999995,0.019676182999999996,0.005046128499999999,0.00126004068,3.871706090000001E-4,8.720667168E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,h Biomass w/CCS,0.0,0.0,0.0,0.0,0.0,4.4315800000000003E-4,0.001266987,0.00257254,0.00481562,0.007978518,0.012014999999999998,0.019209564999999998,0.031251242,0.047810242,0.09299734099999997,0.14801922700000003,0.18985681899999998,0.23646916299999998,0.26813775400000006,0.2888589960000001,0.3164966940000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,i Nuclear,0.268826,0.348192,0.3271,0.36372859999999996,0.40814439999999996,0.4524814,0.5133601,0.5739217,0.6378367,0.7008856,0.7638369,0.8467113000000001,0.9538030000000001,1.0687237,1.2725741,1.4322891999999998,1.5407110999999998,1.6542187999999998,1.7046045,1.7251495,1.7879051,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,j Geothermal,0.0,0.0,0.0,0.00528655,0.013252549999999998,0.023123829999999998,0.035865,0.04819082,0.05723691,0.05723699,0.05723705999999999,0.05723694,0.05723698,0.05723695,0.05723696,0.057237020000000007,0.057237039999999996,0.05723703000000001,0.05723695000000001,0.05723698,0.05723701,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,k Hydro,0.092826,0.14841,0.159804,0.159292,0.158992,0.158692,0.158392,0.158092,0.163653,0.169214,0.174776,0.180337,0.185898,0.191459,0.19702,0.202581,0.208143,0.213704,0.219265,0.224826,0.224826,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,l Wind,0.0,0.00100802,0.0147851,0.022059679000000002,0.033901402799999994,0.052391083299999995,0.08501261330000001,0.12761581629999996,0.16822848829999995,0.22502861629999996,0.28304161349999996,0.35330344799999996,0.434147075,0.5171489929999998,0.6967760409999998,0.8746900639999998,1.0021242329999998,1.1383289680000002,1.212942881,1.25588399,1.2788959100000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,m Solar,0.0,3.60007E-6,0.00240838,0.00343931437,0.00516030457,0.008204210670000002,0.014223244270000003,0.023113867570000005,0.03329122637,0.0479520591,0.06457439549999999,0.0862930768,0.1127171111,0.1389288831,0.1895359553,0.2501870039,0.2971817518,0.3518552352,0.38816329530000004,0.41443995899999997,0.437038498,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,n CHP,0.084278781,0.08694983,0.07559249,0.07511255,0.0842545833,0.095272441,0.09360228899999999,0.089948992,0.08509293300000001,0.07880380599999999,0.071530124,0.061934222,0.05262112,0.044338579999999995,0.03352921,0.024866222,0.017570998,0.011217312,0.007834011,0.006158392,0.0046348529999999995,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,a Coal,2.83949,2.63263,2.14461,2.248265,2.334499,2.3445312,2.3796505000000003,2.3761677,2.3864078999999996,2.2957616000000005,2.1839102,2.0301157999999995,1.8433145,1.6026255,0.9784793599999999,0.46310864,0.20855281,0.04584002500000001,0.011652816830000001,0.003435029771999999,6.502850627E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,b Coal w/CCS,0.0,0.0,0.0,0.0,0.0,0.001663426,0.006046226,0.013406396,0.031012561,0.051293486,0.07635524200000002,0.116661017,0.171994712,0.23221525800000004,0.337391116,0.433374407,0.510420276,0.57653175,0.6137497499999999,0.62488773,0.60908821,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,c Gas,0.463445,1.9254419999999999,2.2807700000000004,2.265734,2.3623086,2.3469956,2.3321515999999995,2.2790692000000004,2.2378715,2.1201689000000004,2.0166546,1.8984072399999996,1.61375504,1.3950079400000002,1.14943111,0.9313378420000001,0.728074372,0.40974709,0.20882629060000002,0.0965799976,0.030304591042999998,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,d Gas w/CCS,0.0,0.0,0.0,0.0,0.0,0.0526988,0.1559789,0.2848503,0.48449169999999997,0.6398687999999999,0.7755266000000001,0.9212245,1.0722701,1.2052966999999999,1.3682951,1.475556,1.554989,1.6253039999999999,1.7282730000000002,1.813109,1.956066,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,e Oil,0.625719,0.358867,0.20094,0.16898269999999999,0.18466906,0.17798092,0.17660651,0.17346796999999997,0.18322243000000002,0.17519979,0.16835518,0.15338826,0.12775026099999998,0.10244873900000001,0.07749067400000001,0.048163149,0.0226966523,0.010559837200000002,0.004333497719999999,0.00183981727,7.20721128E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,f Oil w/CCS,0.0,0.0,0.0,0.0,0.0,0.0176123,0.039763780000000006,0.05950684,0.09820295000000001,0.11228950000000001,0.1266608,0.14589563,0.16280865,0.17061886999999998,0.19579122999999998,0.18550155000000002,0.12005924999999999,0.11655534000000001,0.09232529,0.07292609,0.06966169,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,g Biomass,0.028465,0.159297,0.259185,0.1719638,0.20848260000000002,0.23459562,0.28007035,0.32802172999999996,0.40082012999999994,0.4427929199999999,0.46485439,0.4704079999999999,0.46361994000000006,0.4378030399999999,0.35530649,0.22674793000000001,0.114513775,0.028871794,0.0072181784,0.002199967997,4.857228358000001E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,h Biomass w/CCS,0.0,0.0,0.0,0.0,0.0,0.002161325,0.0075392340000000006,0.016474599,0.03718271200000001,0.060105812999999994,0.08764766200000002,0.133105847,0.19903265799999997,0.278452037,0.45654975200000014,0.6507781229999999,0.8191168339999999,1.0040315999999998,1.1391166099999999,1.22402649,1.31791582,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,i Nuclear,2.59272,3.24344,2.97257,3.0411,3.1805260000000004,3.254679,3.4346170000000003,3.612579,4.055899,4.3874319999999996,4.744789000000001,5.223960999999999,5.839181,6.4719549999999995,7.360394000000001,8.047258000000001,8.645357,9.307455000000001,9.729627,9.973019999999998,10.188448,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,j Geothermal,0.0116137,0.0194286,0.0201663,0.0484025,0.0871904,0.1305064,0.1966208,0.2548805,0.25492590000000004,0.254926,0.254926,0.254926,0.2549259,0.254926,0.2549265,0.254926,0.254926,0.2549256,0.254926,0.2549259,0.2549265,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,k Hydro,0.939621,0.95855,1.17152,1.14714,1.13525,1.12336,1.11147,1.09957,1.10415,1.10873,1.11331,1.11789,1.12247,1.12705,1.13163,1.13621,1.14078,1.14536,1.14994,1.15452,1.15452,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,l Wind,0.00280083,0.25258,0.521819,0.615625742,0.736696869,0.8916453569999999,1.2122216469999998,1.647656627,1.889838857,2.488757215,3.072925948,3.7584902099999997,4.441408590000001,5.0369229,5.868832640000001,6.65497617,7.31492634,7.96570989,8.40960412,8.702161829999998,9.025633959999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,m Solar,4.32005E-5,0.00524505,0.08066889000000001,0.09490347100000002,0.11365990600000002,0.139815713,0.19837206500000001,0.286321755,0.36758423800000006,0.49397988,0.6383651690000001,0.8224619710000001,1.029290549,1.2299047690000002,1.5492574360000002,1.874273745,2.168142982,2.49679772,2.7745603599999997,2.9928066700000002,3.2600517399999993,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,n CHP,0.2110975,0.5644442,0.617119,0.6557119,0.7017873,0.7664038999999999,0.7543602000000001,0.7333932000000001,0.68900065,0.65510608,0.6203737100000001,0.5655921599999999,0.52597368,0.50102507,0.4610478,0.438190455,0.41189206500000003,0.3999712173,0.405685788,0.4328783021,0.42334522210000003,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,a Coal,0.428483,0.180041,0.245558,0.2425703,0.2533605,0.25414419,0.25367493,0.24654005999999998,0.23422062000000002,0.21742472999999995,0.19990302000000001,0.17983280999999995,0.15803553999999997,0.133946414,0.07830279900000002,0.035969838999999997,0.015028769400000001,0.0030505170899999996,7.489576959999999E-4,2.1722258810000003E-4,4.196297920000001E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,b Coal w/CCS,0.0,0.0,0.0,0.0,0.0,2.284535E-4,6.857111E-4,0.0013399291,0.0025960008,0.0044010114,0.0067397787999999995,0.011058788900000002,0.0172712247,0.024873925700000004,0.0390248317,0.052067457500000004,0.06322126210000001,0.07624520100000001,0.08655062300000001,0.094062809,0.10173327299999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,c Gas,0.24918880000000002,0.224147,0.177037,0.16891973000000002,0.18338887999999998,0.18331565999999996,0.18426959999999998,0.18261109999999997,0.17932952000000002,0.17435623,0.16944307999999997,0.16334056000000002,0.149368194,0.130728304,0.10791409,0.08623724059999999,0.06314051870000001,0.031204759519999997,0.013503952043999998,0.005590716387999999,0.001544732678,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,d Gas w/CCS,0.0,0.0,0.0,0.0,0.0,0.00857598,0.02205974,0.03684526,0.05487558,0.07230491,0.08798017,0.10718133999999999,0.12773975999999998,0.14837525000000001,0.1744738,0.1916128,0.20274690000000004,0.21567560000000002,0.22299639999999998,0.22625150000000002,0.22794599999999998,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,e Oil,0.255453,0.00542502,0.0047411,0.0047764899999999996,0.0054109299999999996,0.004907147,0.0048423475,0.0045935626,0.004352428100000001,0.004022939499999999,0.003679423,0.003271282500000001,0.0026123336,0.0019217771000000002,0.00126089831,7.418114800000001E-4,3.6775542E-4,1.70199608E-4,6.37870198E-5,2.6153261600000002E-5,8.96190872E-6,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,f Oil w/CCS,0.0,0.0,0.0,0.0,0.0,4.48151E-4,8.646039999999999E-4,0.001176991,0.001649285,0.002008655,0.002316835,0.0028414729999999997,0.003329716,0.0037575942000000005,0.004715347,0.004983855000000001,0.004083987000000001,0.004644954,0.003919342,0.003225596,0.002959106,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,g Biomass,0.0,0.0,2.62796E-4,5.65917E-4,0.001603751,0.002613994,0.0047062729999999995,0.007248347999999999,0.010401799,0.0134301539,0.015746685700000002,0.0175565574,0.0181864465,0.017652129099999997,0.014351118099999997,0.008917220500000001,0.004341072200000001,0.00103808564,2.56539519E-4,7.970577010000001E-5,1.7831333260000006E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,h Biomass w/CCS,0.0,0.0,0.0,0.0,0.0,8.510189999999999E-5,2.899001E-4,6.337900000000001E-4,0.0013504424,0.0024413108,0.0039131137,0.0068527112,0.011558863400000001,0.018266221,0.0355204431,0.05564623690000001,0.074477938,0.10063924319999998,0.12264780400000001,0.140378722,0.16350381799999997,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,i Nuclear,0.274249,0.319511,0.32094,0.3117286,0.3259973,0.341842,0.3792348,0.42690160000000005,0.48381389999999996,0.5375923,0.5885556999999999,0.6611319999999999,0.7434547000000001,0.8283776,0.9520497,1.0598068,1.1370948,1.2295355,1.2744118000000002,1.2862666,1.3105091999999998,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,j Geothermal,0.0,0.0,0.0,0.00145061,0.00466325,0.00756651,0.009835960000000001,0.009836007,0.009836015,0.00983601,0.009836000000000001,0.009836000000000001,0.009835997999999999,0.009835996999999999,0.009835996,0.009836000000000001,0.009836007,0.009836003,0.009836003,0.009835996999999999,0.009836005,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,k Hydro,0.0388476,0.0448632,0.0479592,0.0480941,0.0483945,0.048695,0.0489954,0.0492959,0.0496296,0.0499634,0.0502971,0.0506309,0.0509646,0.0512984,0.0516321,0.0519659,0.0522996,0.0526334,0.0529671,0.0533009,0.0533009,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,l Wind,0.0,1.40396E-4,1.87196E-4,0.00130194394,0.00563795614,0.01188937624,0.024051215140000002,0.040290663440000006,0.06341252344000001,0.08935641349999998,0.1142311493,0.1473522072,0.1810099283,0.21415600999999998,0.271867204,0.31887215799999996,0.35978274899999996,0.41333291499999997,0.453449707,0.48366898199999997,0.511865829,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,m Solar,0.0,0.0,0.0,1.7204553E-4,8.9117905E-4,0.00286603864,0.00795512208,0.01609645258,0.02892076978,0.04474724340999999,0.062383220329999996,0.08611836583999999,0.1117937147,0.1375013814,0.1820136555,0.2206658538,0.2559347676,0.3032338975,0.34098277979999997,0.37097348560000004,0.4008205763,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,n CHP,0.029517662,0.0204605978,0.020627372999999997,0.017827426,0.0194657692,0.023217037,0.022843145,0.021550998000000002,0.019282177999999997,0.017252124,0.015404674,0.01304559,0.011172494,0.009631367,0.007685048999999999,0.0065351856,0.005635915399999999,0.004949976599999999,0.004381421430000001,0.00411747563,0.0036037609,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,a Coal,0.231522,0.307824,0.36616,0.42639459999999996,0.48250950000000004,0.53373479,0.5820913,0.6186527500000001,0.6329279,0.63547625,0.6331980199999998,0.6120948800000001,0.57956565,0.5234246199999999,0.3455715800000001,0.17519421000000002,0.08440255799999999,0.019078880099999997,0.00505100894,0.0015654441019999996,3.3590964879999985E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,b Coal w/CCS,0.0,0.0,0.0,0.0,0.0,9.183199999999999E-4,0.002538101,0.005068329,0.009220343,0.015499757,0.024518035999999997,0.041758864,0.07524022,0.12018611400000001,0.20027585800000003,0.28118441200000005,0.34820051700000004,0.41693256100000015,0.46143320899999996,0.48355332999999995,0.49555131,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,c Gas,0.04737570000000001,0.258627,0.352203,0.40286391,0.47301568,0.54522744,0.6185451,0.68102232,0.7223788300000001,0.75124308,0.77431893,0.7922369699999999,0.73185862,0.6643504800000001,0.5569556709999999,0.447354492,0.338983559,0.202246835,0.10626712707000001,0.051945019370000005,0.017229061992,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,d Gas w/CCS,0.0,0.0,0.0,0.0,0.0,0.00455551,0.011837819999999999,0.02196072,0.035394220000000004,0.05273182,0.07418464,0.10795245,0.16551196,0.23655004000000002,0.35712947,0.48161030000000005,0.5879736,0.7108221,0.7985232,0.8553751,0.9142599,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,e Oil,0.0262079,0.0251024,0.00900702,0.006918034000000001,0.008489807,0.008055702000000001,0.008386451000000001,0.008660324,0.009097832,0.009584071,0.010064264,0.010304982,0.0100154501,0.0088268097,0.0073950604,0.0051479499000000005,0.0027707905999999997,0.0014108876799999999,5.80636656E-4,2.61993806E-4,1.01150011E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,f Oil w/CCS,0.0,0.0,0.0,0.0,0.0,0.00197735,0.002980287,0.003864497,0.004963108,0.006288959,0.007823972,0.010516138000000001,0.014621827,0.018407856,0.025507269,0.029495900000000002,0.024302993000000002,0.026973525999999998,0.021928926,0.017384963,0.015385667,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,g Biomass,0.0,3.23995E-4,5.00385E-4,6.82732E-4,0.001459006,0.002563197,0.004455365,0.006883865,0.009574559,0.012573153000000002,0.0153159313,0.0179881014,0.020762824500000002,0.022007741000000004,0.0201433253,0.014533847499999997,0.008333038299999998,0.0023438722000000004,6.373310699999999E-4,2.1396430100000002E-4,5.2361488899999995E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,h Biomass w/CCS,0.0,0.0,0.0,0.0,0.0,9.46155E-5,2.746533E-4,6.184616E-4,0.0012616342999999999,0.0023169741,0.003910350900000001,0.0072504278,0.014554106999999998,0.0261584408,0.05521835280000001,0.0929720348,0.1280760979,0.17219695759999998,0.20531303799999992,0.22858883100000002,0.25660932399999997,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,i Nuclear,0.0,0.0,0.0,0.0234542,0.0498479,0.08264830000000001,0.12181920000000002,0.1633516,0.20804050000000002,0.2570929,0.3111342,0.3780779,0.4729621,0.5764485,0.7369854,0.8733557,0.9904044,1.1257063,1.2257272000000001,1.3005276,1.4038355,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,j Geothermal,2.87998E-4,3.38395E-4,0.00240475,0.0053888700000000005,0.01085289,0.0191405,0.02965656,0.040808769999999994,0.0497867,0.05849805,0.06543027000000001,0.0726676,0.0800799,0.08008009999999999,0.08008008,0.08007995,0.08008003,0.08008001000000001,0.08007990000000001,0.08008,0.08007994,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,k Hydro,0.154156,0.263261,0.335171,0.322883,0.311124,0.299366,0.287607,0.275848,0.291875,0.307902,0.323929,0.339956,0.355983,0.37201,0.388037,0.404064,0.420091,0.436118,0.452145,0.468172,0.468172,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,l Wind,0.0,2.48396E-4,0.0110014,0.0152040162,0.022385832300000002,0.0343987843,0.052515406,0.075616931,0.09226626200000002,0.1208617178,0.1520667707,0.1926994337,0.25548147499999996,0.326689085,0.45057751399999996,0.5757585919999999,0.6875637229999999,0.8190013279999999,0.8989298849999999,0.9474079299999999,0.98833979,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,m Solar,0.0,0.0,0.0,6.9848856E-4,0.00245959406,0.005963943060000001,0.011938495359999997,0.020602819759999995,0.032535497159999996,0.0478009448,0.066773604,0.09477921500000003,0.1377969977,0.1888338173,0.27552056789999996,0.34020945719999995,0.38206702000000003,0.44219452699999995,0.48981863400000003,0.523672256,0.557312778,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,n CHP,0.013083621,0.020719841000000003,0.01769673,0.024130878999999997,0.0299262409,0.036863738099999994,0.041663942999999995,0.046029816,0.05091521200000001,0.0542022,0.055634646,0.053673296,0.049583742,0.043946698,0.034735959999999996,0.02859337,0.023852141,0.017284211,0.0136067724,0.011775718899999999,0.0096576753,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,a Coal,3.38404E-4,4.7522E-4,3.81601E-4,0.00591749,0.008756953000000001,0.011997136,0.015314959999999999,0.018100563000000004,0.019503473999999996,0.020756528,0.021618968,0.021669296299999998,0.020389460550000002,0.01733042414,0.0095116889,0.0036583264999999997,0.0014438855299999998,2.4909618E-4,5.1274782300000005E-5,1.2906015119999997E-5,2.6138585220000006E-6,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,b Coal w/CCS,0.0,0.0,0.0,0.0,0.0,4.5234599999999995E-5,1.188637E-4,2.129953E-4,3.1486890000000003E-4,4.904349E-4,7.312382000000001E-4,0.0013023569,0.0023892171,0.0036398859,0.005250362200000001,0.00689768,0.008488720600000001,0.010344431999999999,0.012182578099999999,0.0132190128,0.013969633699999998,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,c Gas,2.69998E-4,0.0018504629999999999,0.0181046859,0.055561091369999996,0.07543024267,0.09648293162999999,0.11547580070999999,0.12900120296,0.13372188083,0.13702549037,0.13828106656,0.137300207193,0.100948577202,0.079720240695,0.05394281420000001,0.033325363180000005,0.01944646692,0.008781057704,0.0033338755529999996,0.0012530213832999998,3.1378592628E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,d Gas w/CCS,0.0,0.0,0.0,0.0,0.0,0.00122167,0.0028613700000000002,0.00457074,0.00588237,0.0075968,0.00939912,0.01254539,0.01727501,0.02177369,0.025864550000000004,0.0296153,0.03330867,0.03897027,0.04471581,0.04785241,0.050133250000000004,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,e Oil,0.0010152,2.62806E-4,1.83584E-4,3.649776E-4,4.2906690000000006E-4,4.3241999999999993E-4,4.279944E-4,4.064843E-4,3.6391123E-4,3.2615278999999995E-4,2.8380081999999994E-4,2.2994417999999998E-4,1.4299725299999998E-4,8.781352699999999E-5,4.5458517E-5,2.3911323699999997E-5,1.03760006E-5,4.31888388E-6,1.531347348E-6,5.388755150000001E-7,1.62874213E-7,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,f Oil w/CCS,0.0,0.0,0.0,0.0,0.0,7.43713E-5,1.080099E-4,1.215268E-4,1.195318E-4,1.3067839999999999E-4,1.342326E-4,1.488755E-4,1.6739309999999998E-4,1.6960849999999997E-4,1.689803E-4,1.5457678E-4,1.0687327999999998E-4,1.0550366E-4,7.945392000000001E-5,5.305268E-5,4.166294E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,g Biomass,0.00161282,0.00203765,0.00243364,0.010285459,0.015472504,0.022514682,0.030332071999999998,0.036946692,0.039453132,0.041938288000000004,0.04174997,0.039626151500000005,0.03630625929999999,0.031071934300000003,0.021860154999999996,0.011711276,0.0049766113,9.628934199999998E-4,1.9271970279999997E-4,4.964834426E-5,1.0395993186E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,h Biomass w/CCS,0.0,0.0,0.0,0.0,0.0,5.78582E-4,0.0014157310000000002,0.00242242,0.003408679,0.004926161,0.006701714000000002,0.010575775999999999,0.017474489000000003,0.025332404000000006,0.037326254,0.050614201,0.062756686,0.07709370500000001,0.089986784,0.097108766,0.10415855400000003,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,i Nuclear,0.0850906,0.0840297,0.094822,0.0876289,0.0835189,0.077524,0.0693204,0.0590228,0.062276399999999996,0.08049440000000001,0.1080166,0.1493742,0.2017364,0.24373188,0.2783114,0.3127079,0.3424092,0.37524250000000003,0.40713069999999996,0.42857439999999997,0.4362151000000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,j Geothermal,0.00108001,0.00596895,0.0160743,0.034984600000000005,0.03547396,0.035474030000000004,0.035473979999999995,0.03547404,0.03547401,0.035474,0.035474000000000006,0.03547399,0.035474000000000006,0.035474000000000006,0.035474000000000006,0.035474,0.03547399,0.035474,0.035474,0.035474,0.035474,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,k Hydro,0.558752,0.626339,0.598385,0.583929,0.569578,0.555226,0.540875,0.526524,0.53205,0.537576,0.543103,0.548629,0.554155,0.559681,0.565207,0.570734,0.57626,0.581786,0.587312,0.592839,0.592839,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,l Wind,0.0,0.00182524,0.00335526,0.025437843599999996,0.050153327399999996,0.09451436939999999,0.1534825134,0.21393370639999998,0.25306464739999995,0.2825102448,0.30903479300000003,0.34204813,0.386219532,0.41654376000000004,0.46082859600000003,0.48551350700000007,0.505590536,0.5169122509999999,0.512209924,0.495089312,0.49173344900000004,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,m Solar,3.60004E-6,6.84017E-5,2.98805E-4,0.001403860291,0.0024967055100000002,0.0035992594,0.0042663471599999996,0.004907171219999999,0.005037484129999999,0.00443267625,0.0038218986900000005,0.00342358143,0.0036680882300000003,0.00381134584,0.0041395995000000005,0.004304591020000001,0.004437222530000001,0.00443940406,0.0042353706400000005,0.0039450352299999995,0.00370763802,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,n CHP,0.0035947909999999995,0.010181541,0.011491956,0.010486509,0.013718271999999998,0.014596604000000001,0.014788531,0.015432324,0.0163396549,0.0172378482,0.0178870939,0.0172823708,0.0176634533,0.018758400300000002,0.0214927212,0.024992417700000002,0.0253960388,0.0255810416,0.0226149901,0.02111926191,0.018903313300000002,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,a Coal,0.68977,1.69899,2.35082,3.5033499999999997,4.92376,6.366298,8.064548,9.763867000000001,11.186546000000002,12.376685000000002,13.379018,13.92219,14.200699,14.214190799999995,12.699721,9.4039884,6.028457800000001,1.8052955999999993,0.4884589899999999,0.1503304987,0.0317105466,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,b Coal w/CCS,0.0,0.0,0.0,0.0,0.0,0.01803709,0.05507293,0.11537597999999999,0.21873030999999998,0.37345547000000007,0.57053055,0.84799474,1.22931626,1.66101226,2.5307329999999997,3.7784219500000003,5.16254103,6.666670859999999,7.6932806000000005,8.2522305,8.760737800000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,c Gas,0.0358488,0.2716811,0.4240401,0.5558314,0.8183180999999998,1.0047035,1.2495239000000002,1.5360406,1.8334532000000001,2.1466482,2.480543,2.7714714299999996,2.9047040400000004,2.96625533,3.1033149999999994,3.1987613999999995,3.13430481,2.58786695,1.8272912829999999,1.1386030805,0.48870859309,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,d Gas w/CCS,0.0,0.0,0.0,0.0,0.0,0.113851,0.292098,0.514653,0.771595,1.047798,1.317687,1.6008169999999997,1.9242640000000002,2.257761,2.768153,3.507629,4.368381,5.4528620000000005,6.200342,6.619136,7.145456,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,e Oil,0.0361728,0.0836639,0.0951875,0.27241458,0.58164443,0.6718345,0.83055738,0.9833786600000001,1.1483333500000001,1.3033523400000002,1.44286623,1.518030304,1.4470808400000001,1.3255795929999998,1.22920531,1.02294907,0.56225799,0.27683143,0.102831555,0.042370478999999996,0.01435705198,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,f Oil w/CCS,0.0,0.0,0.0,0.0,0.0,0.216093,0.3887919,0.5525613,0.7503633999999999,0.943536,1.1055015,1.2860205,1.4567656000000002,1.6122746000000001,1.8506080000000003,1.9618929999999999,1.4993027,1.4910069000000001,1.2036513,0.9506946,0.7765087,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,g Biomass,0.0,0.00692279,0.00740519,0.014547393,0.042195435,0.079737565,0.143289264,0.226951425,0.32499614300000007,0.43481420600000004,0.543621591,0.6467999875,0.7536544925,0.8614786830999998,0.96481155,0.9632418399999999,0.7727711100000001,0.30262553,0.08516186499999999,0.0274473708,0.00637529543,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,h Biomass w/CCS,0.0,0.0,0.0,0.0,0.0,0.0025220010000000003,0.008154349,0.018536923,0.037494596000000005,0.06758505499999999,0.10841516300000001,0.17217903299999998,0.27130585599999996,0.40316855900000004,0.7497536230000001,1.360443747,2.111020475,3.08879511,3.7998993800000007,4.25270471,4.8034697699999995,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,i Nuclear,0.0221076,0.0623663,0.0945575,0.15126620000000002,0.2464898,0.36594669999999996,0.5238969,0.702874,0.9220515,1.1835291,1.4847581,1.8238334,2.2347592,2.6927206499999996,3.5304937,4.7377901,6.131005999999999,7.600130999999999,8.477587999999999,8.952167,9.462675999999998,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,j Geothermal,0.0,0.0,0.0,0.0220306,0.053614300000000004,0.05658199999999999,0.05658271,0.056637030000000005,0.05658203,0.05658199,0.05658199999999999,0.056582030000000005,0.05658205,0.05658204,0.056582036,0.056582046,0.056582028,0.056581989,0.056582041,0.056581974,0.056582019,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,k Hydro,0.257962,0.366228,0.411926,0.447853,0.48378,0.519707,0.555634,0.591561,0.654843,0.718125,0.781406,0.844688,0.90797,0.971252,1.03453,1.09782,1.1611,1.22438,1.28766,1.35094,1.35094,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,l Wind,1.152E-4,0.0237708,0.0716795,0.11874648099999999,0.21665383299999996,0.3675772829999999,0.5987908129999999,0.893062693,1.1806734429999999,1.553963802,1.93004777,2.32764345,2.7907848200000003,3.2958786400000006,4.37246899,6.01949595,7.87321843,9.7066526,10.594158499999999,10.8398008,10.6308755,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,m Solar,0.0,6.83999E-5,8.27999E-5,0.0161253289,0.0744556699,0.1973164369,0.42474577690000004,0.7754751168999999,1.312501567,2.0382372980000003,2.9440041470000007,4.211459720000001,5.65714653,6.72367879,7.99056864,9.835390799999999,12.566209789999998,15.858131849999998,17.7046478,18.6561579,19.3750327,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,n CHP,0.0,0.0,0.0,0.0,5.49518E-4,0.00133979,0.00254583,0.00427966,0.00699999,0.0108812,0.0155596,0.0204711,0.0269073,0.0377919,0.0518591,0.0662156,0.0813614,0.0993756,0.120284,0.143808,0.145988,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,a Coal,0.0351648,0.186455,0.24521,0.367303,0.46831199999999995,0.5974634999999999,0.7497863000000001,0.8981857,1.0249422000000001,1.1235109000000003,1.2024432999999999,1.2384844,1.2574842000000002,1.2444971000000005,1.0644382999999997,0.7292248299999998,0.45394815000000005,0.12912991000000001,0.033152774999999995,0.00966267,0.002052229016,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,b Coal w/CCS,0.0,0.0,0.0,0.0,0.0,0.0016271599999999999,0.004944260000000001,0.010167045,0.019144349999999997,0.031425703000000006,0.04534183299999999,0.06351672400000001,0.09077560900000001,0.12257284699999998,0.184522284,0.27802216,0.39394051499999994,0.5351803279999999,0.66058003,0.74358098,0.8185227500000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,c Gas,0.0026423999999999996,0.0687097,0.1441369,0.1978072,0.2611033,0.3163555,0.38567260000000003,0.4627535,0.5416091000000001,0.61764216,0.69455525,0.75024369,0.7555750800000001,0.7566070100000001,0.74751402,0.7202306799999999,0.6653017,0.486753911,0.2853598773,0.1459408708,0.05371421135,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,d Gas w/CCS,0.0,0.0,0.0,0.0,0.0,0.0380731,0.0963045,0.16569440000000002,0.2444795,0.3209561,0.3877118,0.44946299999999995,0.5221939,0.5940964000000001,0.6761643999999999,0.7883811000000001,0.9289675,1.1158527,1.2739277999999998,1.3648736000000001,1.4433081999999997,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,e Oil,0.0551952,0.140904,0.124218,0.16089779999999998,0.21556099999999997,0.2413117,0.2691164,0.2911954,0.31531587000000005,0.33353228999999995,0.34974800000000006,0.35214694,0.323427,0.28535626999999997,0.24166874,0.190156864,0.117260278,0.05915564699999999,0.021443423399999998,0.008081878819999999,0.002697791898,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,f Oil w/CCS,0.0,0.0,0.0,0.0,0.0,0.0527053,0.0975038,0.13658990000000001,0.18184820000000002,0.2175032,0.24138110000000002,0.2703858,0.3026767,0.32114669999999995,0.352527,0.3678086,0.3189538,0.3278892,0.27521700000000004,0.2134541,0.17854432,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,g Biomass,0.0,7.91916E-5,3.42008E-4,9.85849E-4,0.0024781580000000003,0.0053830729999999995,0.010333564,0.016935209399999998,0.024984531400000003,0.033654400300000005,0.04216413,0.0497027817,0.05849521091,0.06644232409999998,0.07179660599999999,0.06810928200000001,0.053238259,0.020443921,0.0055286091999999995,0.0016896658799999999,3.9586704200000005E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,h Biomass w/CCS,0.0,0.0,0.0,0.0,0.0,1.807646E-4,6.145065E-4,0.0014123311,0.0029106489999999995,0.005147084600000001,0.007933270700000002,0.012032490399999998,0.018994348,0.028515902099999994,0.05266088,0.09746435419999999,0.15913960189999998,0.25014916,0.335867435,0.40014315200000006,0.472958135,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,i Nuclear,0.0,0.0,0.0,0.00224903,0.0046722199999999995,0.01226528,0.02739568,0.04992628,0.07931696999999999,0.11344557,0.15171587,0.19055647,0.24050806000000002,0.29585416000000003,0.38722196000000003,0.51892963,0.6872503400000001,0.895175,1.0615671,1.1711633,1.2764082,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,j Geothermal,0.00405,0.0237744,0.0336852,0.0502987,0.0670698,0.09017349999999999,0.1163938,0.1413637,0.139801,0.153431,0.15489400000000003,0.154894,0.15489389999999997,0.1548939,0.154894,0.1548941,0.154894,0.154894,0.15489389999999997,0.15489389999999997,0.1548941,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,k Hydro,0.0205488,0.03861,0.0636336,0.0643101,0.0649865,0.065663,0.0663395,0.0670159,0.0690624,0.071109,0.0731555,0.075202,0.0772485,0.079295,0.0813415,0.083388,0.0854345,0.0874811,0.0895276,0.0915741,0.0915741,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,l Wind,0.0,0.0,0.0,0.0016904217,0.0050943631,0.012441292699999999,0.0245051617,0.0402519447,0.0601451047,0.08101431800000002,0.10233176360000001,0.121969818,0.14708305300000002,0.17469541400000002,0.22652882400000005,0.306103749,0.405929102,0.525455708,0.6072908140000001,0.65082179,0.66999356,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,m Solar,0.0,0.0,0.0,0.0013938230999999998,0.0049925602,0.014471683900000004,0.032565853,0.060915145999999996,0.10473970600000002,0.1619801939,0.2338441368,0.33044189209999997,0.46437054199999994,0.622680156,0.8959113060000001,1.2505342979999998,1.611476575,2.104603986,2.548854667,2.8672282499999997,3.1637673299999998,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,n CHP,0.0,0.0,0.0,0.0,4.53452E-4,0.00104055,0.00183141,0.00283779,0.00421558,0.00603185,0.00804475,0.0100746,0.0129526,0.0171655,0.0228457,0.029929,0.0397453,0.0556178,0.0746696,0.095218,0.111507,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,a Coal,0.420141,1.09279,1.09618,1.35819,1.405148,1.38632279,1.36756897,1.32609903,1.2738662600000004,1.2049257999999998,1.12944651,1.03652493,0.9484510999999999,0.8135837900000001,0.47180333999999996,0.17800063900000004,0.07751275099999999,0.016804681499999998,0.004303198557,0.0013218674872,2.6726157551999996E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,b Coal w/CCS,0.0,0.0,0.0,0.0,0.0,7.417459999999999E-4,0.002593242,0.005460894,0.011325945,0.020305030999999998,0.031837924,0.051671954000000006,0.10949845299999998,0.156272409,0.24693661299999997,0.324275747,0.37699418,0.4304392739999999,0.473854508,0.49408528999999995,0.5120445499999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,c Gas,0.6015012,0.8605389999999999,1.096252,1.4195187,1.51913733,1.55177216,1.6015536099999998,1.63118541,1.66013571,1.66637105,1.6534022899999998,1.6287955200000002,1.2144718799999998,1.05418923,0.897273342,0.717496043,0.532976233,0.2839383566,0.13020915704000002,0.057502251268999986,0.017685847293599996,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,d Gas w/CCS,0.0,0.0,0.0,0.0,0.0,0.00470145,0.01538082,0.030545660000000002,0.05647568,0.09021383999999999,0.1273794,0.17993951,0.31450863,0.41373887,0.5979523,0.7516640000000001,0.8524536,0.9548306000000001,1.0351961,1.0633534,1.0938787,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,e Oil,0.892385,0.495089,0.350827,0.3500396,0.31650293,0.29633988000000006,0.27503767000000007,0.24588485000000002,0.21709900000000004,0.18625974,0.15701255000000003,0.12927364800000002,0.094716834,0.063266661,0.036732044000000005,0.021781022,0.010691803000000001,0.00487907042,0.0018516188299999997,7.378455929999999E-4,2.543481623E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,f Oil w/CCS,0.0,0.0,0.0,0.0,0.0,0.00892534,0.0181641,0.024707760000000002,0.03688362,0.0465456,0.05448745000000001,0.06777988,0.10362668,0.11063446,0.14156780000000002,0.14918817,0.12262317,0.13064576,0.10791033,0.08310117,0.07051484999999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,g Biomass,0.037872,0.0795455,0.0844343,0.08770800000000001,0.08376954,0.08163300799999999,0.080885822,0.07824128799999999,0.07551367499999999,0.072000235,0.06660044200000001,0.061313274999999993,0.060327411000000004,0.053298458999999986,0.037943499,0.021958256000000002,0.0106207954,0.00257611714,6.34392642E-4,1.9737623650000006E-4,4.391083669999999E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,h Biomass w/CCS,0.0,0.0,0.0,0.0,0.0,2.428132E-4,7.866603E-4,0.0016252825,0.0033326526000000004,0.0058280251,0.008858271899999999,0.0141070455,0.0299589871,0.044123745699999994,0.0805852734,0.1186722311,0.14637674010000004,0.17905613700000003,0.206847265,0.222020151,0.241697354,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,i Nuclear,0.728178,1.09712,1.03763,0.958912,0.913937,0.863363,0.8238212,0.7965161999999999,0.7853351000000001,0.7784071000000001,0.776354,0.8082899,0.9987959,1.1197838999999998,1.3062166,1.5145094000000001,1.6590070000000001,1.8016988,1.8949707999999998,1.8990009999999997,1.9027260000000004,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,j Geothermal,0.00626759,0.0116136,0.00947519,0.0175043,0.02192372,0.02555713,0.03211012,0.039554809999999996,0.04173012,0.04615585,0.05265347,0.056582030000000005,0.056582049999999995,0.056582,0.05658201,0.05658195,0.05658202,0.056581950000000006,0.05658198,0.05658196,0.056582,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,k Hydro,0.321498,0.275292,0.295963,0.294981,0.293999,0.293016,0.292034,0.291052,0.294216,0.29738,0.300544,0.303708,0.306872,0.310036,0.3132,0.316365,0.319529,0.322693,0.325857,0.329021,0.329021,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,l Wind,0.0,0.00631439,0.0142632,0.0257676544,0.033032042,0.0398082126,0.05453007359999999,0.07483059060000001,0.09329060060000002,0.12064943620000002,0.15326948059999998,0.19461576999999997,0.284381471,0.336308929,0.4220367689999999,0.4813109589999999,0.5148023650000001,0.5518876950000001,0.5327826790000001,0.518762576,0.486438585,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,m Solar,3.6E-6,0.00537479,0.0136764,0.019044418200000003,0.021869106400000005,0.024974017700000007,0.03232350330000001,0.04356741190000001,0.0487862131,0.0672533663,0.0906609517,0.12142897479999999,0.1912029907,0.23626849719999998,0.314725628,0.3746452353,0.4136547781,0.45775322520000006,0.4569063665,0.4530858155,0.4290808748,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,n CHP,0.0,0.0,0.0,0.0,1.40847E-4,2.64458E-4,4.23385E-4,6.16057E-4,8.48961E-4,0.00116787,0.00154041,0.00193336,0.00245973,0.00304245,0.00404068,0.00532649,0.00608051,0.00721988,0.00708307,0.00714284,0.00654092,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,a Coal,0.0279864,0.118998,0.117129,0.1484897,0.16620970000000002,0.18269016,0.19972802999999997,0.21445413,0.22401031,0.22940592,0.23283432,0.22805429999999996,0.21924939000000004,0.19801159000000002,0.13125462999999998,0.06334096299999999,0.029221937999999996,0.0060771386,0.0015071659489999994,4.493259559E-4,9.351273809999998E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,b Coal w/CCS,0.0,0.0,0.0,0.0,0.0,3.60564E-4,0.001060048,0.0021829289999999997,0.004131816,0.006986910999999999,0.011072988,0.01844409,0.035831422999999994,0.058531723,0.096172693,0.143048331,0.19303622039999999,0.245748039,0.296446804,0.33517904299999995,0.371910874,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,c Gas,0.052056,0.3425255,0.507894,0.6652789,0.7849441199999999,0.91392266,1.05639403,1.19236952,1.3065489,1.3980808299999998,1.4774842199999998,1.5301015099999997,1.4011824,1.30423212,1.12486715,0.910293996,0.684323511,0.3817418563,0.18187888856,0.08065418105000002,0.025084632815999996,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,d Gas w/CCS,0.0,0.0,0.0,0.0,0.0,0.00861979,0.02360487,0.045183970000000004,0.07588312,0.11493495,0.16339167999999998,0.23445467000000003,0.37952639,0.55048688,0.8154928000000001,1.1418652,1.4859219000000001,1.8499217,2.1917023999999996,2.4404858999999997,2.6584480000000004,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,e Oil,0.223423,0.240426,0.157964,0.166142,0.18389116,0.17522143,0.17434645000000001,0.17206950999999998,0.17268224000000001,0.17220277,0.17163902,0.16135236000000003,0.142350604,0.112709755,0.082072051,0.054465242,0.030253238199999997,0.013526404200000001,0.005132026269999999,0.002063938419,6.83033897E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,f Oil w/CCS,0.0,0.0,0.0,0.0,0.0,0.0316547,0.05118582,0.06849958,0.08998126000000001,0.10958059,0.13018389,0.16093921,0.21946119000000003,0.25895578,0.3288597,0.3894215,0.3847357,0.45499220000000007,0.42935090000000004,0.38214080000000006,0.34942949999999995,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,g Biomass,0.0,0.0109656,0.00929879,0.00698613,0.009528930000000001,0.013084184,0.018241691,0.024034344000000003,0.030037051999999998,0.035942232,0.040537497,0.043495984999999994,0.047166303,0.046487039800000005,0.039265117999999995,0.025574017,0.013133840999999999,0.0031424812000000004,7.59795209E-4,2.330915399E-4,5.2625126479999995E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,h Biomass w/CCS,0.0,0.0,0.0,0.0,0.0,3.4806400000000003E-4,9.584646E-4,0.0019612172,0.0036785348999999997,0.006147219,0.009566576,0.015810274000000003,0.031166096999999993,0.053343223999999995,0.102258665,0.17662043299999997,0.26042309900000005,0.361456229,0.4588545180000001,0.5343825449999999,0.6141738619999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,i Nuclear,0.0105732,0.038898,0.0211644,0.024730540000000002,0.027793609999999996,0.03253152,0.03963429,0.04877438,0.06098658,0.07615467,0.09506102,0.11785235999999999,0.15777939000000002,0.1993218,0.25501621,0.31426876,0.37724428,0.44170836999999996,0.5010353000000001,0.5452625,0.5874374,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,j Geothermal,0.0184464,0.0262764,0.0238248,0.0329436,0.04048136,0.05015167,0.061831950000000004,0.07401294,0.06775802,0.07611566,0.08612038999999999,0.0956795,0.09696590000000001,0.0969659,0.096966,0.0969661,0.096966,0.096966,0.0969659,0.0969661,0.09696590000000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,k Hydro,0.0845208,0.0995724,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,l Wind,3.6E-6,6.83999E-5,0.00446039,0.0090891424,0.0153989283,0.0269140578,0.0457815808,0.07155217779999999,0.10088460180000001,0.1371104334,0.1795118905,0.22945394600000002,0.32040430500000006,0.41415855800000007,0.546988364,0.69979062,0.859910557,1.0250903120000001,1.1425790000000002,1.2165249000000002,1.2567856800000003,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,m Solar,3.6E-6,3.24E-5,1.116E-4,0.00230274885,0.006371303849999999,0.01452360405,0.028768904149999996,0.05012796015,0.08201205714999998,0.12333811830000002,0.17663475430000003,0.2508507521,0.372527839,0.49927173199999997,0.5938155730000001,0.6443536670000001,0.6896966980000001,0.7428384,0.7816872330000002,0.811275238,0.863241856,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,n CHP,0.0,0.0,0.0,0.0,2.2706E-4,4.35111E-4,7.23636E-4,0.00110114,0.00162874,0.00236317,0.00325999,0.00421713,0.00551248,0.00704199,0.010348,0.0152108,0.0193685,0.0266457,0.0285159,0.0306407,0.0293896,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,a Coal,0.0379187,0.132671,0.124711,0.1415256,0.1553264,0.16513257,0.17853401000000002,0.19037124000000002,0.19702922,0.19996242000000003,0.20060585999999997,0.19639488,0.18879427000000001,0.17296366,0.11837074,0.06152313500000001,0.030648000999999994,0.006869625500000001,0.0017746633399999992,5.38420325E-4,1.1831284560000002E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,b Coal w/CCS,0.0,0.0,0.0,0.0,0.0,2.459847E-4,7.56493E-4,0.0015952735000000003,0.0030877602000000002,0.005405598,0.0086768808,0.0146406876,0.0267640938,0.043836642099999996,0.07247389249999998,0.11110357049999998,0.15994026179999998,0.21777509100000003,0.282688953,0.339194632,0.394270923,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,c Gas,0.38072,1.3344,1.95927,2.1715684,2.4249657,2.5153993,2.6572387999999996,2.8057865000000004,2.9057850000000003,2.9883195000000007,3.0664449,3.0881058,2.8759303000000003,2.6833768,2.43493675,2.09878786,1.7108536400000003,1.058058475,0.5562660942000001,0.26648374202999997,0.09127558939000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,d Gas w/CCS,0.0,0.0,0.0,0.0,0.0,0.145554,0.382431,0.666996,0.979023,1.29417,1.590564,1.9348450000000001,2.4349309999999997,2.9846589999999997,3.62348,4.350752,5.206485000000001,6.185756,7.242082999999999,8.086977000000001,8.812571,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,e Oil,0.402345,0.720668,1.02737,1.256038,1.528237,1.5649146000000003,1.5976218,1.6015013000000002,1.5841957000000004,1.5503222999999997,1.4981155,1.3716412000000002,1.08804853,0.81718379,0.57078385,0.36508057000000005,0.20019513700000002,0.088688206,0.0335288087,0.013166217790000004,0.004427274909999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,f Oil w/CCS,0.0,0.0,0.0,0.0,0.0,0.227929,0.47040099999999996,0.669504,0.8538025,0.9996185,1.1127513,1.2735147,1.5098842000000001,1.6820655000000002,1.9308039999999997,2.1191199999999997,1.961054,2.135306,1.8777654,1.5350584999999999,1.3286585,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,g Biomass,0.0,0.0,4.32068E-5,0.0021213281,0.006116020200000001,0.011528258,0.022242812600000002,0.03664490677999999,0.05250355589,0.0688149241,0.08250018527,0.093100077449,0.103144871661,0.10570815404100001,0.09237738000000001,0.064627814,0.0368918,0.009748637200000002,0.00253404045,8.11912632E-4,1.957915226E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,h Biomass w/CCS,0.0,0.0,0.0,0.0,0.0,3.8880399999999997E-4,0.001395912,0.0032750800000000005,0.006728967,0.012234968,0.020021869000000005,0.034648293,0.066163797,0.115117207,0.22222943299999998,0.3941346999999999,0.616618351,0.9050220870000001,1.215605839,1.4772660899999999,1.7448432699999998,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,i Nuclear,0.0,0.0,0.0,0.00761429,0.022335980000000002,0.04907298,0.10377478000000001,0.18259068,0.27410768,0.37538858,0.48164248000000004,0.60024937,0.7632410700000001,0.9343639600000001,1.15222176,1.3928463,1.6729942,1.9830218999999998,2.2982221000000003,2.5513307999999997,2.794796,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,j Geothermal,0.0,0.0,0.0,0.010829,0.0249431,0.0405268,0.056581900000000004,0.05658197,0.05658198,0.05658203,0.05658201,0.05658199999999999,0.05658201,0.05658200000000001,0.056581950000000006,0.056581950000000006,0.05658204,0.05658199,0.056582049999999995,0.05658201,0.05658201,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,k Hydro,0.04293,0.0992016,0.064242,0.0855464,0.106966,0.128386,0.149805,0.171225,0.202866,0.234507,0.266148,0.297789,0.329429,0.36107,0.392711,0.424352,0.455993,0.487634,0.519275,0.550916,0.550916,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,l Wind,3.59999E-6,3.05999E-4,6.26399E-4,0.0097274728,0.0275772957,0.0570586117,0.11448394869999999,0.19449489869999997,0.29402368169999993,0.40299610389999996,0.5152862680000002,0.6476417020000002,0.8357569650000001,1.035976525,1.315383933,1.6557646369999999,2.09808068,2.61592682,3.1423199699999995,3.5827772999999996,3.9605788,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,m Solar,0.0,0.0,2.52E-4,0.016785135,0.0496066202,0.1066211282,0.1933522622,0.31250466720000003,0.4742322462,0.6672591001999999,0.8868153020000001,1.180218064,1.57383702,1.9737607349999997,2.319997846,2.5360575169999997,2.6893195599999995,2.874915749999999,3.0183214599999992,3.11752463,3.25240415,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,n CHP,0.0,0.0,0.0,0.0,0.00198612,0.0037459,0.00556408,0.00759357,0.0101059,0.013569,0.0177682,0.0220277,0.0283102,0.0364151,0.0531043,0.0784047,0.100223,0.131735,0.143464,0.158121,0.167375,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,a Coal,1.36804E-4,4.64397E-4,3.16794E-4,0.004568493,0.008256854,0.011937449000000001,0.017028059,0.023222365999999998,0.030716666499999996,0.0394348168,0.049020432600000004,0.05762425725,0.06591148322999998,0.072939979072,0.072287536,0.061496493000000006,0.04724486800000001,0.0170694544,0.0052330565,0.0017483692199999996,4.013838910000001E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,b Coal w/CCS,0.0,0.0,0.0,0.0,0.0,4.15833E-5,1.39391E-4,3.250291E-4,7.524456E-4,0.001552791,0.0027053893,0.004678836699999999,0.007811509499999999,0.011777315599999998,0.018616011300000006,0.029290097700000003,0.04449719230000001,0.07298473979999999,0.10358653829999999,0.132064855,0.164705862,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,c Gas,0.045608369999999995,0.1486296,0.0931644,0.12571119,0.15982445999999997,0.17706146,0.19990817000000002,0.22866355999999996,0.26561918,0.31254875000000004,0.37008759,0.42658296999999995,0.45518142,0.48535666,0.51053697,0.52054998,0.51265901,0.42151338499999996,0.29402639999999997,0.17600287729999997,0.07075393182,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,d Gas w/CCS,0.0,0.0,0.0,0.0,0.0,0.0151168,0.0382477,0.0670055,0.1050382,0.1495742,0.19347029999999998,0.241209,0.2951395,0.348213,0.4027718,0.46994440000000004,0.5550124,0.7048021000000001,0.84951,0.9705669,1.0961900999999998,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,e Oil,0.0278928,0.0686556,0.119718,0.1586327,0.1941392,0.19906277999999997,0.20438515999999998,0.21184370000000002,0.22443873000000003,0.23863169,0.25684658,0.26788828,0.25106582,0.23383246,0.20668764,0.168350296,0.09690738300000001,0.049527622,0.0201049392,0.00839843622,0.0027566316999999996,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,f Oil w/CCS,0.0,0.0,0.0,0.0,0.0,0.0233748,0.045986700000000005,0.06933059999999999,0.1013337,0.1329034,0.1586882,0.1859779,0.21437620999999996,0.23404418,0.2512533,0.2557849,0.19887780000000002,0.21936350000000002,0.194272,0.16486829999999997,0.14261247,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,g Biomass,0.0,0.0,0.0,0.00216369,0.0064557899999999994,0.012018700000000002,0.021881398,0.03591634899999999,0.05587403700000001,0.08186815,0.11149508100000001,0.143219199,0.17979327,0.21624881100000004,0.24103077399999998,0.23744584700000002,0.19677293100000004,0.08066497199999999,0.024234694,0.0079022466,0.0018349939979999997,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,h Biomass w/CCS,0.0,0.0,0.0,0.0,0.0,3.45394E-4,0.001202534,0.002853538,0.006399921,0.012638683000000001,0.02120904,0.035253039,0.05700195900000001,0.084673335,0.136913117,0.221075539,0.33366697500000003,0.5426889880000001,0.746990088,0.92181331,1.1189186400000002,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,i Nuclear,0.0010548,0.0089424,0.012312,0.019265579999999997,0.026662400000000003,0.03542337,0.04856896,0.06552048,0.08994556000000001,0.12285732999999999,0.16313634999999999,0.21373696999999997,0.27673107999999996,0.346685115,0.4375601499999999,0.54607347,0.6825779499999999,0.8589813,1.0144061,1.1407194,1.2684312,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,j Geothermal,0.0,0.0,0.0,0.0120567,0.0292152,0.0480063,0.0703685,0.08072599999999999,0.08072598,0.08072599999999999,0.08072587,0.08072603,0.08072594999999999,0.08072601,0.08072598,0.08072603,0.08072599999999999,0.08072596,0.08072603,0.08072599999999999,0.08072594999999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,k Hydro,0.06093,0.111103,0.11452,0.117706,0.120892,0.124078,0.127264,0.13045,0.140089,0.149728,0.159367,0.169006,0.178645,0.188284,0.197923,0.207562,0.217201,0.22684,0.23648,0.246118,0.246118,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,l Wind,0.0,0.0,0.0,0.0093226716,0.027791875400000002,0.0558871244,0.10339714739999999,0.16890223139999996,0.26442812339999994,0.3823617218,0.514880908,0.666630819,0.832422936,0.9896022519999998,1.14747569,1.31184722,1.4896761299999999,1.74422697,1.9520788299999998,2.11455533,2.2996540000000008,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,m Solar,0.0,0.0,0.0,0.0070872866,0.022827674599999993,0.049155053600000005,0.0956171336,0.1455508066,0.18607814659999994,0.244874569,0.323393402,0.431781133,0.5791515129999999,0.77046656,1.0721203799999999,1.4708746100000003,1.9896264600000002,2.6488447,3.2185695599999997,3.66374599,4.067514780000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,n CHP,0.0,0.0,0.0,0.0,1.82942E-4,3.9682E-4,7.173E-4,0.00127405,0.00215109,0.00338564,0.00502631,0.0067023,0.00945764,0.0139519,0.0197923,0.0276191,0.0377206,0.0507901,0.0658308,0.0826924,0.0890629,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,a Coal,0.54613,0.551288,0.556386,0.5736498999999999,0.5926627,0.5917821100000001,0.5875985,0.56434477,0.52897138,0.48416985999999995,0.43844033,0.39035546999999987,0.33854515,0.27833,0.13736714300000002,0.056121024000000005,0.022608361700000006,0.0044785536,0.0010692471380000003,3.0621069960000007E-4,5.8946237290000015E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,b Coal w/CCS,0.0,0.0,0.0,0.0,0.0,5.160270000000001E-4,0.0016291440000000001,0.0030956209999999994,0.005598266000000001,0.008830995000000001,0.012887592,0.020515089,0.033121025000000005,0.04815566600000001,0.077124349,0.106706211,0.13303676,0.16691813500000002,0.19714197700000002,0.22063364800000002,0.25293394,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,c Gas,1.69041,1.4949,1.7391,1.7308613,1.8307314,1.8193769999999998,1.8081553000000001,1.7522931,1.6646632999999997,1.5608924000000002,1.4596471,1.3477533800000003,1.15218068,0.97988959,0.773520241,0.5809396459999999,0.39710405499999996,0.17617032330000001,0.0711551787,0.028726191858999998,0.0079660720347,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,d Gas w/CCS,0.0,0.0,0.0,0.0,0.0,0.0906121,0.235391,0.377389,0.5355532,0.6743644,0.7918121,0.9340795000000001,1.1032161999999999,1.2611223,1.4393829999999999,1.5456310000000002,1.610238,1.697624,1.753375,1.7682139999999997,1.7730389999999998,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,e Oil,0.463118,0.0644098,0.025717,0.026221809999999998,0.02920748,0.027798210000000004,0.027356425000000004,0.025650577999999997,0.024423063000000002,0.022630689,0.020725331000000003,0.018558177000000002,0.0145825549,0.0106666268,0.007544327,0.0045491418,0.00237015468,0.00113411003,4.26289465E-4,1.7202117939999997E-4,5.85410928E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,f Oil w/CCS,0.0,0.0,0.0,0.0,0.0,0.00392231,0.0074131,0.009104850000000001,0.011756135,0.013220727000000002,0.014536989,0.01765888,0.021418895,0.024038256,0.031278650000000005,0.035187750000000004,0.03268786,0.04346888,0.042705980000000004,0.04024409,0.043728069999999994,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,g Biomass,0.0,0.0,0.0,0.00157149,0.0042188519999999995,0.007248872999999999,0.013586148,0.020292925999999996,0.028299390000000004,0.035427229000000005,0.040057325000000005,0.043489206,0.044897821,0.042691546000000004,0.033938407,0.020384491999999997,0.0095377555,0.0022187053800000003,5.392524590000001E-4,1.657930063E-4,3.703865543000001E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,h Biomass w/CCS,0.0,0.0,0.0,0.0,0.0,2.7357499999999997E-4,9.773384999999999E-4,0.002057148,0.004126322899999999,0.0070219351000000005,0.0108104556,0.0185427344,0.032619015200000004,0.052006875699999996,0.10338020720000002,0.16916177910000002,0.2323471927,0.32761406900000006,0.41479021299999996,0.48470837100000014,0.590786671,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,i Nuclear,0.425914,0.537994,0.613461,0.6585849,0.7216096,0.8032376,0.9681034999999999,1.1494205,1.3494814,1.5259354,1.6799412,1.8850480999999997,2.1438819,2.3910225,2.7627944,3.045846,3.2708769999999996,3.5436579999999998,3.6693470000000006,3.6953810000000002,3.792067,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,j Geothermal,1.00804E-4,0.00147597,0.0018179,0.0122161,0.02950008,0.050299769999999994,0.08075333999999999,0.10918939,0.1378267,0.1558826,0.16563450000000002,0.1780674,0.1882238,0.19383999999999998,0.19384,0.19384,0.1938399,0.1938399,0.19383999999999998,0.19383989999999998,0.19384,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,k Hydro,0.597301,0.621637,0.599339,0.636624,0.673909,0.711195,0.74848,0.785765,0.827183,0.868601,0.910019,0.951437,0.992855,1.03427,1.07569,1.11711,1.15853,1.19994,1.24136,1.28278,1.28278,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,l Wind,0.0,2.51994E-5,1.43992E-5,0.009719250799999999,0.0297882544,0.0600999864,0.11902254239999999,0.18949893539999998,0.28540049519999994,0.38073130859999993,0.46834117,0.582925304,0.713106728,0.8364843350000001,1.0624372160000002,1.272104421,1.4539993159999998,1.69911626,1.8763755,1.9971102200000002,2.1323096600000007,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,m Solar,0.0,0.0,0.0,8.9323581E-4,0.0031481134199999997,0.009996535709999999,0.0276311316,0.052699307279999996,0.09023481692,0.13344980006999999,0.17912319256,0.23940306067,0.31229503718,0.3828065511,0.5140719892600001,0.6400292255700001,0.7513191426000001,0.9044486100999999,1.0241559272,1.1102134562000001,1.2075064864000002,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,n CHP,0.172756752,0.15242304,0.19416211000000003,0.19238892,0.17674388,0.19041451,0.17743652000000001,0.16402355000000002,0.14582301,0.13130761,0.11931051,0.10455498999999999,0.09375362,0.08533146999999999,0.076598219,0.07641212700000001,0.07719005599999999,0.088092528,0.0890554796,0.0919729907,0.0873098179,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,a Coal,0.561333,0.824519,0.870765,0.8535106,0.8957390999999999,0.9859408000000001,1.0730989,1.1314103000000002,1.1509953000000002,1.1436544000000002,1.1202994,1.086267,1.0452699,0.9893270000000002,0.8276482500000002,0.63759205,0.4307716400000001,0.13455047,0.037551731,0.010740723360000003,0.001922531396,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,b Coal w/CCS,0.0,0.0,0.0,0.0,0.0,0.001807125,0.005061453,0.010031138999999998,0.018411471000000002,0.030428484999999995,0.044963643,0.07182041600000001,0.11028247600000002,0.150560922,0.21146346499999996,0.27949851900000006,0.3474309240000001,0.44525561199999997,0.49985980999999996,0.5350169300000002,0.56386266,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,c Gas,0.0,0.0,0.0,3.05002E-4,0.0010599318,0.0022024959,0.0039438783,0.0061947605,0.008872154,0.011906409000000001,0.015080236,0.0187842117,0.022717728,0.026069791000000002,0.029015431,0.031001546999999997,0.032105271500000004,0.0291431938,0.0225146375,0.015087482009999997,0.006427538512,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,d Gas w/CCS,0.0,0.0,0.0,0.0,0.0,7.36889E-4,0.001966547,0.0036286310000000002,0.005794691,0.00834604,0.010972132,0.014949820999999999,0.020411315,0.026405179999999997,0.03556621,0.04752249,0.06234462,0.09124911,0.11244271,0.12954408,0.15109469,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,e Oil,0.0,0.0,7.09205E-4,4.083486E-4,5.809578000000001E-4,6.911644999999999E-4,7.909857E-4,8.668415000000001E-4,9.534605999999999E-4,0.00101597554,0.00109094062,0.0012080365600000002,0.00122848507,0.0011496250999999999,0.00108653276,9.543010499999999E-4,5.9689351E-4,3.6844206999999996E-4,1.4964083100000002E-4,6.246790189999999E-5,1.96241072E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,f Oil w/CCS,0.0,0.0,0.0,0.0,0.0,2.07694E-4,3.442168E-4,4.676748E-4,6.337569E-4,7.878112E-4,9.491389000000001E-4,0.0012695208,0.0015456458999999999,0.0017469376999999999,0.002169282,0.002450338,0.0020586669999999997,0.002456728,0.0021399579,0.0018742818,0.0015946684999999998,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,g Biomass,0.0,9.54006E-4,0.00101159,5.40137E-4,0.0016667160000000002,0.004372412,0.008569488,0.013857099000000001,0.019965457,0.026289717,0.031758595,0.0381278885,0.0439057734,0.048065798400000005,0.051003926,0.04827553800000001,0.038330999000000004,0.01611096,0.0048884441,0.00152523347,3.132123549E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,h Biomass w/CCS,0.0,0.0,0.0,0.0,0.0,1.86068E-4,5.71627E-4,0.0012787429000000001,0.00260207,0.004647868,0.007285353999999999,0.012650261800000001,0.0214799976,0.0325637294,0.0553656537,0.08739424740000001,0.1233874778,0.185743749,0.225365332,0.25422524699999993,0.28905310100000003,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,i Nuclear,0.0304164,0.0406546,0.0435562,0.040409771000000004,0.038875138,0.041735178,0.050943668,0.066061468,0.08506316800000001,0.107559868,0.131079667,0.16315732700000002,0.203998587,0.24571825700000002,0.303354267,0.37632729600000003,0.46259093,0.5912308000000001,0.6643837,0.7042995000000001,0.7464215000000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,j Geothermal,0.0,0.0,0.0,0.00134717,0.00529675,0.01209389,0.015538989999999999,0.015539003000000001,0.015539007,0.015538999999999999,0.015539,0.015539009999999999,0.015539,0.015539,0.015538999999999999,0.015538994,0.015538977999999998,0.015538956,0.015538974,0.015538999999999999,0.015538988,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,k Hydro,0.003636,0.0047952,0.0076968,0.007887,0.0080772,0.0082674,0.0084576,0.0086478,0.0090258,0.0094037,0.0097816,0.0101596,0.0105375,0.0109155,0.0112934,0.0116714,0.0120493,0.0124272,0.0128052,0.0131831,0.0131831,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,l Wind,0.0,1.15199E-4,1.152E-4,0.0013157151199999998,0.006782626219999999,0.024328248620000003,0.05334459062000001,0.09119787462000001,0.13882635362000004,0.19356783350000004,0.24592215440000004,0.30890684499999993,0.3856779149999999,0.456250743,0.522134864,0.568621509,0.6194046069999999,0.704664294,0.712979252,0.69442151,0.70582772,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,m Solar,0.0,7.55997E-5,7.55997E-5,9.6716835E-4,0.005291972230000001,0.020098273829999996,0.046295783029999996,0.08342416803,0.13553773233,0.20017823668,0.2473439043,0.2622040567,0.2714897815,0.2818817095,0.3182518615,0.3673771525,0.439754807,0.5576411250000001,0.62600057,0.660231301,0.6761798700000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,n CHP,0.0,0.0,0.0,0.0,6.90964E-5,1.45938E-4,2.48963E-4,3.82313E-4,5.74177E-4,8.22287E-4,0.00118949,0.00170094,0.00221256,0.0028674,0.00446899,0.00655509,0.00848113,0.0114713,0.0149534,0.0181501,0.0172707,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,a Coal,0.0,0.0,0.0,0.00146892,0.00137442,0.0024254043999999996,0.004268140900000001,0.0063461656,0.008280058,0.0100888995,0.011476010400000002,0.012585787299999998,0.013330096999999997,0.0132941923,0.010892431400000001,0.006583980999999999,0.0036828799999999995,8.712668500000001E-4,2.2940544599999994E-4,7.01110885E-5,1.4219452876E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,b Coal w/CCS,0.0,0.0,0.0,0.0,0.0,1.458694E-5,6.297787E-5,1.5078607000000002E-4,3.1399193E-4,5.8697129E-4,9.4312058E-4,0.00170934141,0.00325880381,0.0052374391199999995,0.008769965849999999,0.01303618215,0.017689769299999998,0.022735023500000003,0.028400424000000004,0.03289211580000001,0.0392413419,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,c Gas,0.0559019,0.0568119,0.0896734,0.09612514,0.0842121,0.09098077,0.09528191999999999,0.09899245000000001,0.10009824000000002,0.1012111,0.10216268,0.10370865599999998,0.09394885300000001,0.095513884,0.086518367,0.0738275674,0.059488612399999995,0.03821524864,0.020786285939,0.010239237726,0.0031379111716,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,d Gas w/CCS,0.0,0.0,0.0,0.0,0.0,0.00452537,0.01425532,0.025681139999999998,0.037762500000000004,0.05008025,0.0602261,0.07358453999999999,0.09190593999999999,0.10938639,0.13062941,0.1486748,0.16497989999999998,0.18111639999999998,0.1985773,0.21110450000000003,0.2281232,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,e Oil,0.0549622,0.0959904,0.110144,0.11811131,0.10066898,0.10659068999999999,0.10629123999999998,0.10314137000000001,0.09667777000000001,0.08981439999999999,0.08379530099999999,0.07799468,0.06324353399999999,0.055289185000000005,0.037412686,0.0241017229,0.0132741805,0.0060302694,0.00236410787,9.78066703E-4,3.052150996E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,f Oil w/CCS,0.0,0.0,0.0,0.0,0.0,0.00796456,0.020996840000000003,0.03279133,0.04420923,0.05471448,0.06327683,0.07660449,0.09390223,0.10653910999999999,0.12409285999999999,0.1358446,0.1323147,0.14789555,0.14621875,0.13833404,0.13638676,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,g Biomass,1.28437E-4,1.46781E-4,1.53303E-4,8.989592E-4,7.233681E-4,0.0024338912999999998,0.0062280855,0.011037966599999999,0.0160951663,0.021329128800000003,0.02534407898,0.029283390330000002,0.032628385499999996,0.033337540746,0.029611426,0.02116059800000001,0.012097863699999998,0.0031868952,8.042129630000001E-4,2.465706475E-4,5.2610549270000013E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,h Biomass w/CCS,0.0,0.0,0.0,0.0,0.0,1.1790069999999999E-4,5.303657999999999E-4,0.0012685668,0.0025222630000000003,0.0044538118000000005,0.006739887600000001,0.0113484992,0.0203405145,0.0319168022,0.056866586600000005,0.09020007789999998,0.124970139,0.16386757500000004,0.20330706900000003,0.231716983,0.27129369699999994,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,i Nuclear,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0086084,0.0257917,0.0470477,0.07365089999999999,0.10677349,0.13534189000000002,0.17107399,0.20466978,0.23553767000000003,0.26436425,0.29255474000000004,0.31312192,0.3303495,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,j Geothermal,0.0,0.0,0.0,0.0051516,0.00482121,0.01455296,0.03025247,0.04537106,0.05903204,0.06742018,0.06837499999999999,0.06837497,0.06837499,0.06837504,0.06837498,0.06837492,0.06837502,0.068375,0.06837507000000001,0.0683948,0.06837512,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,k Hydro,0.135365,0.280561,0.279418,0.282905,0.268025,0.289879,0.293366,0.296853,0.303009,0.309166,0.315323,0.321479,0.327636,0.333792,0.339949,0.346105,0.352262,0.358418,0.364575,0.370731,0.370731,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,l Wind,0.0,0.0,0.0,0.0034714097,0.0032487815,0.011776678899999999,0.030588247899999997,0.054475941900000005,0.0820694799,0.11017960419999999,0.13943155019999998,0.17096161399999998,0.20629288199999996,0.23314766899999997,0.2728231930000001,0.30861513300000004,0.34519739200000005,0.37066765100000004,0.38419838500000003,0.385941427,0.38819215500000004,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,m Solar,0.0,0.0,0.0,0.0024733078,0.0028358548,0.0094095383,0.024372307699999998,0.0454373477,0.07227847270000001,0.1027274529,0.12648418190000002,0.1474314034,0.170533592,0.192365446,0.21946579800000005,0.24429515000000002,0.27208762599999997,0.299234616,0.32314545399999994,0.338236195,0.354875366,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,n CHP,0.0,0.0,0.0,0.0,7.17792E-4,0.00135267,0.00221766,0.00326037,0.00434027,0.00574037,0.00778321,0.00961966,0.0123064,0.0155908,0.0214277,0.0303264,0.0388028,0.0536146,0.0589266,0.064767,0.0626094,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,a Coal,0.0234905,0.0288587,0.0638058,0.097061,0.1171209,0.14346739,0.17722883,0.20809633,0.22832688,0.24303356999999998,0.25326565,0.2538584,0.24507189999999998,0.22151688000000003,0.140307391,0.061901250000000005,0.02634728050000001,0.0050879666,0.0011680910510000002,3.1088909160000006E-4,5.9975520061E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,b Coal w/CCS,0.0,0.0,0.0,0.0,0.0,4.62495E-4,0.001490679,0.0030810800000000004,0.005459078000000001,0.008935446,0.013622066999999998,0.021431489,0.03551913899999999,0.053654916999999996,0.082674282,0.11488882399999999,0.145783538,0.17146568100000004,0.197465222,0.215889546,0.23711543000000002,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,c Gas,0.0047628589999999995,0.08063580000000001,0.1065002,0.1594747,0.2002779,0.23639925,0.28603771,0.33752532,0.37733826000000004,0.4146690800000001,0.44984095,0.47224267,0.44757694000000003,0.4253979769999999,0.377834909,0.307170934,0.2303340603,0.1240785523,0.05601130575999999,0.022873309052,0.006458362603900001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,d Gas w/CCS,0.0,0.0,0.0,0.0,0.0,0.0269152,0.072133,0.1247615,0.1765771,0.2297322,0.2814448,0.34136730000000004,0.4240243,0.513014,0.6174529,0.7159726,0.8018826000000001,0.8689344999999999,0.9398561999999999,0.9810745000000001,1.0320964,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,e Oil,0.0240485,0.0371498,0.0619949,0.1001176,0.1257607,0.1383506,0.15229412,0.16065287,0.16237755999999998,0.16303292000000003,0.16111585999999994,0.14969448,0.12109701999999999,0.092667112,0.060866104000000004,0.034772537,0.0169762075,0.007011804299999999,0.00254225684,9.362544870000001E-4,2.9057037790000006E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,f Oil w/CCS,0.0,0.0,0.0,0.0,0.0,0.0331733,0.0660375,0.0908533,0.1104927,0.1290007,0.14426859,0.16559527,0.19536061,0.2155845,0.2430519,0.2521907,0.2193899,0.2365856,0.2083368,0.1720818,0.15903145,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,g Biomass,7.38011E-4,0.00187928,0.00589348,0.00803125,0.010706589999999998,0.014852936,0.020610378000000002,0.026371031000000003,0.030796856,0.034806763000000004,0.03729280299999999,0.038302292999999994,0.038143191,0.03556969899999999,0.027304315999999995,0.015852417,0.007309036500000001,0.0015882132899999997,3.57758541E-4,9.967749909E-5,2.1026558549999995E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,h Biomass w/CCS,0.0,0.0,0.0,0.0,0.0,3.45308E-4,0.001062535,0.002126253,0.003612113,0.005691031,0.008355079000000001,0.012844670999999998,0.021235660000000003,0.033054729000000005,0.058009385000000004,0.09162747999999998,0.125574068,0.158024681,0.19119648100000003,0.21557493399999997,0.24727805399999997,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,i Nuclear,0.0,0.0,0.0,0.0,0.0,8.32629E-4,0.0032242390000000003,0.007068789000000001,0.013757699000000002,0.023794188,0.037041788,0.052141088,0.071770777,0.091801956,0.11809934500000001,0.144651424,0.169636171,0.18993739,0.20946466,0.22275825,0.236881,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,j Geothermal,0.0,0.0,0.0,0.00219054,0.00566064,0.013555339999999999,0.0270108,0.04280226,0.05855525,0.07327379,0.08735295000000001,0.0997828,0.11315510000000001,0.125044,0.14397300000000002,0.1608619,0.17463150000000002,0.18172879999999997,0.18502010000000002,0.182991,0.1816865,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,k Hydro,0.215035,0.400529,0.415487,0.446642,0.478199,0.509757,0.541315,0.572873,0.628591,0.684309,0.740027,0.795745,0.851463,0.907181,0.962899,1.01862,1.07434,1.13005,1.18577,1.24149,1.24149,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,l Wind,0.0,2.88011E-5,0.00145447,0.0040987982700000005,0.00796211397,0.01717455597,0.034826581669999995,0.05852382656999999,0.08418611257,0.1145366373,0.14882867260000002,0.1880316286,0.2403695639,0.29478711199999996,0.3771217169999999,0.4622479579999999,0.5431350729999999,0.602001946,0.649582381,0.6688827860000002,0.6839037750000002,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,m Solar,0.0,0.0,1.08005E-5,9.9193153E-4,0.00293613018,0.007602263879999999,0.01585780028,0.02730065858,0.04190415868,0.05986904765,0.081419588,0.1096437083,0.14659902589999999,0.1854177886,0.240490746,0.294096754,0.33536259300000004,0.35244140199999996,0.3621074410000001,0.367136519,0.371811928,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,n CHP,0.0036131,0.00638438,0.013636203999999999,0.015768798,0.022798876,0.030233258000000002,0.03343652,0.03641544,0.04037657199999999,0.045213984,0.049585388,0.053212161,0.058297717000000006,0.0642350671,0.0745711335,0.09056264350000001,0.1030540512,0.1290418089,0.12982992225,0.13038922292,0.12340905551999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,a Coal,0.0,0.00107293,0.00306896,0.00669796,0.0102421,0.013986196000000001,0.018583395000000003,0.023422955999999998,0.028022757,0.032517948,0.037088589000000005,0.040501213,0.043103341999999996,0.04413429099999999,0.035878679,0.024757527,0.0163237161,0.0047981562000000005,0.00134261751,4.16687901E-4,9.115624059999997E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,b Coal w/CCS,0.0,0.0,0.0,0.0,0.0,4.440560000000001E-5,1.3716089999999998E-4,2.899449E-4,5.70322E-4,0.0010014429,0.0015754693999999998,0.0025545061000000003,0.004094056699999999,0.006124213600000001,0.0096048643,0.014446108,0.021244345759999998,0.0334979181,0.04827339929999999,0.0625290275,0.07842806999999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,c Gas,0.02345402,0.08627889999999999,0.139214,0.2277764,0.3364258,0.4056052,0.4914061,0.5864592000000001,0.6803183,0.7847967000000001,0.9080054,1.02155284,1.09507722,1.1591476299999999,1.17498581,1.1394882,1.0700819400000001,0.779311213,0.46302647960000004,0.2341886213,0.07890304478000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,d Gas w/CCS,0.0,0.0,0.0,0.0,0.0,0.0564536,0.13866479999999998,0.2332651,0.3383336,0.44515089999999996,0.5448766,0.6545739,0.7778974,0.9010845000000001,1.0097585999999998,1.1223533,1.2690478,1.5383358999999999,1.8365202999999999,2.0820809999999996,2.301181,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,e Oil,0.00879918,0.0428959,0.0412827,0.0732274,0.10828821,0.11538575000000001,0.12334230999999998,0.12750942,0.13138447000000003,0.13620272,0.14284616000000003,0.14424827999999998,0.137241902,0.124825349,0.10257031600000001,0.07765815499999999,0.04289176,0.0220550826,0.0086553119,0.00334812869,0.0010733116189999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,f Oil w/CCS,0.0,0.0,0.0,0.0,0.0,0.0272466,0.04663374,0.06028829,0.07455574000000001,0.08498564,0.09138064,0.10253527,0.11615940999999999,0.12269509,0.13266965,0.13514011,0.09964059,0.11518138,0.09898143000000001,0.07604123,0.06415132,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,g Biomass,5.77679E-5,7.19828E-6,0.0,6.66619E-4,0.00221629,0.004542162,0.008527313,0.013715452999999999,0.019882867,0.027212642999999998,0.035052230000000004,0.043673213,0.05430656400000001,0.065049181,0.06912596699999998,0.06234168300000001,0.04714074,0.0164289816,0.0044960472000000005,0.0013789575199999998,3.0715811499999995E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,h Biomass w/CCS,0.0,0.0,0.0,0.0,0.0,1.533383E-4,5.100702999999999E-4,0.0011557457,0.0023789037,0.004302375600000001,0.006866024700000001,0.011471424599999999,0.018911627,0.029214362900000002,0.0500633156,0.0811104929,0.12295281300000004,0.200384538,0.28716006499999996,0.36687715099999996,0.45876282,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,i Nuclear,0.0,0.0,0.0,0.00243011,0.00540213,0.01264358,0.02651627,0.046728870000000006,0.07293737,0.10607195,0.14729215,0.19866514000000002,0.26407933,0.34185703,0.44328173,0.5556705300000001,0.69193722,0.8629545000000001,1.0321603,1.1755335000000002,1.3199141,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,j Geothermal,0.0,0.0,0.0,0.00447888,0.01379648,0.0273539,0.04488589,0.06316291,0.08168268000000001,0.09632189999999999,0.099719,0.099719,0.0997189,0.09971899999999999,0.099719,0.09971902000000002,0.09971895,0.09971898,0.09971899,0.09971906,0.09971901,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,k Hydro,0.0268079,0.0463089,0.0710383,0.0749133,0.0787882,0.0826631,0.0865381,0.090413,0.102136,0.113859,0.125581,0.137304,0.149027,0.16075,0.172473,0.184196,0.195918,0.207641,0.219364,0.231087,0.231087,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,l Wind,0.0,4.92E-5,1.312E-4,0.0041325019,0.014667716499999999,0.0350414001,0.0714184151,0.1226401811,0.1923592911,0.28011176120000003,0.38618488459999994,0.5259103409999999,0.7123786859999999,0.94201449,1.23243478,1.4997416479999999,1.7494374499999998,2.01369749,2.23426607,2.39385709,2.5569359499999997,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,m Solar,0.0,5.012E-4,5.476E-4,0.0028239776000000003,0.008477950599999999,0.019116294500000002,0.0373928945,0.06323305250000001,0.09936932949999999,0.1473091969,0.20815849190000005,0.28391539000000005,0.3367582900000001,0.39297144200000006,0.4908354750000001,0.616626713,0.788123629,1.0256994700000002,1.2903480999999999,1.5235702400000002,1.7482444400000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,n CHP,0.0,0.0,0.0,0.0,0.00156767,0.00361199,0.00632953,0.00991198,0.0147123,0.0212988,0.0291751,0.0364233,0.0488217,0.0668021,0.0890171,0.126919,0.181644,0.247524,0.305649,0.354589,0.360783,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,a Coal,0.0423734,0.482673,0.721766,0.774161,0.8468700000000001,0.8740707500000001,0.8867247799999999,0.8766715900000001,0.8500351699999998,0.80891227,0.7628234899999999,0.7112223,0.6591893200000003,0.5949603499999999,0.41268244,0.21771702999999998,0.10036610000000003,0.022112057000000004,0.0055441119300000015,0.0016570386390000003,3.432537401E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,b Coal w/CCS,0.0,0.0,0.0,0.0,0.0,2.016988E-5,5.372411E-5,1.0702801E-4,2.2159174E-4,4.0088906E-4,6.3648171E-4,0.00118412597,0.00235207898,0.00416510387,0.01234256417,0.026125705149999998,0.04018690422,0.054984275,0.0640189159,0.06917566289999999,0.0766511368,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,c Gas,0.0345756,0.2130648,0.365475,0.38953697000000004,0.44729333,0.48327592,0.51443599,0.53349989,0.54495377,0.54575351,0.5396294399999999,0.53343123,0.46970950100000003,0.396417756,0.32975266400000003,0.270187094,0.20721687600000002,0.12242701010000001,0.06261348643,0.030043309402,0.009919690097500001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,d Gas w/CCS,0.0,0.0,0.0,0.0,0.0,2.68047E-4,6.876E-4,0.001255196,0.002162764,0.003322238,0.0045815560000000005,0.006663601,0.010061219,0.014255443,0.027775318,0.047543262,0.067204401,0.08977408,0.10543959,0.11560923000000001,0.13173425,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,e Oil,0.0678875,0.0757497,0.0538667,0.045318920000000006,0.050690540000000006,0.050367169999999996,0.050495660000000005,0.04933218599999999,0.048978558000000005,0.046998056,0.044203207,0.041312304,0.035946644,0.028766815999999997,0.023050177099999996,0.015456897399999999,0.0065166609,0.0028184251699999996,0.00100307751,4.0241594699999994E-4,1.44729123E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,f Oil w/CCS,0.0,0.0,0.0,0.0,0.0,0.00121526,0.0018075958,0.0021156905,0.002687936,0.002914953,0.0030090860000000002,0.00379756,0.0049134569999999995,0.005761743999999999,0.010307316,0.013446069,0.010453637,0.011881572,0.009534114,0.007592039,0.007953248,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,g Biomass,0.0,1.62005E-4,0.0012456,0.001529754,0.00275628,0.0038994919999999996,0.0059424909999999985,0.008449988,0.01169792,0.014976559999999998,0.017500508,0.020118427,0.022800490000000003,0.0243220879,0.025479276000000006,0.020430742,0.0119197426,0.0032714994000000003,8.2075647E-4,2.5580004470000003E-4,5.9759600260000005E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,h Biomass w/CCS,0.0,0.0,0.0,0.0,0.0,6.4935199999999995E-6,1.6025879999999997E-5,3.0299492E-5,6.492836599999999E-5,1.17856965E-4,1.8894529000000002E-4,3.923653660000001E-4,8.20948156E-4,0.0015093969199999999,0.0049959059800000006,0.011739254389999999,0.01929901899,0.028898979200000004,0.03539563330000001,0.0397062422,0.047289003,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,i Nuclear,0.1904,0.528419,0.534944,0.5886668,0.6675667000000001,0.7239416000000001,0.7862015000000001,0.8425495000000002,0.8999705,0.9448525000000001,0.9767176000000001,1.0271787,1.1061628000000001,1.1898067,1.3741166,1.5200189,1.6095545,1.6870957000000002,1.6862432,1.641824,1.6219241,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,k Hydro,0.0228996,0.0132228,0.0139644,0.0151472,0.0170392,0.0189311,0.0208231,0.0227151,0.0258792,0.0290433,0.0322074,0.0353714,0.0385355,0.0416996,0.0448637,0.0480278,0.0511919,0.054356,0.0575201,0.0606842,0.0606842,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,l Wind,0.0,4.68013E-4,0.00294119,0.00423962212,0.0071560103199999996,0.01057284812,0.01556438422,0.02160440732,0.026640563120000006,0.033874764300000006,0.03915058520000001,0.04566032260000001,0.05349563850000001,0.0607543524,0.0818629606,0.10572610130000001,0.12492789220000002,0.14041964899999998,0.14511630499999997,0.14415926199999998,0.13499835999999998,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,m Solar,3.60012E-6,5.40015E-5,0.00277919,0.0038270713899999998,0.0063155352899999994,0.00986350439,0.015948958889999997,0.024553844390000003,0.03434925609,0.048233781899999995,0.0615504449,0.07894749329999999,0.10067871319999999,0.1218218364,0.17513073869999998,0.23696742510000002,0.2898513246,0.3367214571,0.3577830597,0.36396631170000004,0.3534206717,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,n CHP,0.0211961,0.082367423,0.09065316600000001,0.101855233,0.0862367,0.09095146,0.09032967000000001,0.08899838,0.08336774999999999,0.07915454999999999,0.07591941999999999,0.06732481,0.06270408000000001,0.06230923000000001,0.05770369,0.057655584,0.058667025000000005,0.062778638,0.06860040980000001,0.0757670581,0.0749735634,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,a Coal,0.104596,0.279376,0.448595,0.614718,0.748484,0.8527420000000001,0.9824625,1.0999407,1.1879751,1.2494108000000002,1.2914023000000001,1.2807898999999998,1.2391845,1.1388809999999998,0.7687147600000002,0.3834569099999999,0.18372666,0.043069008,0.01206511105,0.00400905343,8.992183562999998E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,b Coal w/CCS,0.0,0.0,0.0,0.0,0.0,0.001866938,0.005554306,0.011098595999999999,0.021073569,0.036426595,0.058300133000000004,0.096461695,0.17270781100000002,0.272807187,0.44368149200000007,0.635822715,0.8120460800000001,1.0059615499999999,1.1611030600000003,1.26077632,1.3528512400000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,c Gas,0.0896219,0.8081020000000001,1.060623,1.331007,1.6598410000000001,1.8568969999999998,2.0959612,2.3254768,2.5216465,2.6975871000000002,2.8675786,2.9814657000000007,2.7886036,2.5778057999999997,2.32331118,1.9737021700000001,1.58525006,0.992080872,0.5530618372999999,0.28933906417,0.10474567924,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,d Gas w/CCS,0.0,0.0,0.0,0.0,0.0,0.101556,0.264496,0.45749929999999994,0.687452,0.9347486,1.1872382,1.4900275,1.9547799000000001,2.4673926,3.166918,3.900831,4.5508109999999995,5.3169319999999995,5.9251130000000005,6.2950610000000005,6.688221,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,e Oil,0.193341,0.11442,0.101648,0.101752,0.12491672000000001,0.12322957,0.1281288,0.12887309,0.13146997000000002,0.13294469,0.13365688000000003,0.12935022,0.114682775,0.092577812,0.069236893,0.04576797400000001,0.024687082399999997,0.011677341099999999,0.00474090519,0.0020570118499999997,7.327434840000001E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,f Oil w/CCS,0.0,0.0,0.0,0.0,0.0,0.0253351,0.0435034,0.055649119999999996,0.07177816,0.08661112,0.10149153000000001,0.12576204,0.16421981,0.19464081,0.2437125,0.2708556,0.23888810000000002,0.2597851,0.22349806,0.18335232999999998,0.15433083,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,g Biomass,0.00220873,0.00903599,0.0205776,0.021556182,0.0353539,0.050236979999999994,0.07516972000000001,0.10108121,0.12717102700000002,0.151853773,0.16938991900000003,0.18128247799999997,0.1919094395,0.190140096,0.15883502,0.10446002,0.055664798,0.0150052134,0.0041164854300000005,0.0014105098630000001,3.460138728E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,h Biomass w/CCS,0.0,0.0,0.0,0.0,0.0,0.001406671,0.0038960259999999995,0.007626708,0.014217583,0.023856298,0.036781153999999996,0.059394472000000004,0.10588304300000002,0.17265179499999997,0.32191134099999996,0.5246583709999999,0.7203924780000001,0.9651120990000002,1.16466365,1.30125343,1.4570056800000002,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,i Nuclear,0.0,0.0,0.0,0.00787274,0.01735084,0.034570329999999996,0.06903262999999998,0.11786982999999998,0.18129372,0.25771351,0.34640591,0.44729171,0.5932975899999999,0.7475233899999999,0.96435017,1.19068516,1.4060753000000001,1.6578624000000002,1.8671209000000002,2.0133659,2.1901406,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,j Geothermal,0.0196812,0.0356543,0.0357516,0.0559746,0.0802503,0.107171,0.1434632,0.1800405,0.1896262,0.2144351,0.233673,0.233673,0.23367299999999996,0.2336731,0.23367300000000002,0.233673,0.23367299999999996,0.233673,0.23367300000000002,0.23367290000000002,0.2336731,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,k Hydro,0.141032,0.19957,0.254132,0.26494,0.275747,0.286555,0.297363,0.30817,0.338521,0.368871,0.399221,0.429571,0.459921,0.490271,0.520621,0.550971,0.581321,0.611671,0.642021,0.672371,0.672371,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,l Wind,0.0,8.32999E-5,2.845E-4,0.0063340389,0.0181489295,0.0358082505,0.0668793285,0.1068535265,0.15657587850000002,0.20912601460000002,0.26353709100000006,0.32661041,0.41883480199999995,0.514984134,0.659046852,0.814186077,0.9595638999999999,1.1357691199999997,1.2521190199999999,1.31610327,1.37777357,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,m Solar,0.0,2.509E-4,3.334E-4,0.0042119608,0.0131834025,0.028666322499999997,0.0583492495,0.10148031149999999,0.16386940249999998,0.2434111147,0.340661377,0.47712327499999996,0.689367878,0.9353736060000002,1.311365545,1.742608154,2.1986067140000003,2.7054251500000004,3.07096451,3.3220515199999996,3.5851052599999997,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,n CHP,0.0,0.00126484,0.00152089,0.00213067,0.003779246,0.006180990000000001,0.00820131,0.010478129999999999,0.013512490000000002,0.01757169,0.022721529999999997,0.028627479999999997,0.037152910000000004,0.04824345,0.06750186,0.09219261,0.11348075,0.15097454999999999,0.177653417,0.21305532300000002,0.23247256100000002,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,a Coal,0.07806,0.333201,0.340766,0.502993,0.5688076,0.5935410499999999,0.61146578,0.6208223,0.62179233,0.6158346299999999,0.60580843,0.5893757000000002,0.5954816000000002,0.5810398099999999,0.48090303,0.27766679000000005,0.15757276000000006,0.041473246,0.0112384188,0.00357351755,7.817626192000001E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,b Coal w/CCS,0.0,0.0,0.0,0.0,0.0,4.7583399999999996E-4,0.001229856,0.002086795,0.0030519519999999997,0.003841196,0.004323097,0.0049201159999999996,0.006873273999999999,0.009950486000000001,0.021545692,0.047781512,0.07810953399999998,0.11573599900000002,0.141389813,0.157159411,0.17367037899999996,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,c Gas,0.0037260699999999997,0.13024360000000001,0.2046279,0.31866699,0.38279304,0.41705838999999995,0.44855288,0.47577130999999995,0.5001049599999999,0.51920175,0.5328993399999999,0.54659627,0.45801839,0.42098618,0.404855713,0.386576749,0.34406837900000004,0.254169931,0.1632306867,0.09523872938000001,0.03769411608,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,d Gas w/CCS,0.0,0.0,0.0,0.0,0.0,0.00193621,0.00479144,0.008099140000000001,0.011798930000000001,0.015089920000000001,0.01751822,0.02040462,0.028087309999999997,0.03716161,0.06020161,0.10584731,0.15613882,0.2231232,0.27343446,0.30776249,0.34793286,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,e Oil,0.0780744,0.0395547,0.0298225,0.03444891,0.034313199999999995,0.03157822,0.031067472,0.030630181000000003,0.032116643,0.033627719,0.034825252,0.036854000000000005,0.040622927,0.038485209,0.0395902,0.035448004000000005,0.0186594519,0.0091663844,0.0036095327900000002,0.00157121237,5.67505747E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,f Oil w/CCS,0.0,0.0,0.0,0.0,0.0,0.00329632,0.004844075,0.0059295039999999995,0.007153889,0.007411411999999999,0.0070127950000000005,0.007778399,0.01155109,0.014270380000000001,0.023718401,0.036219650000000006,0.033301599,0.041656969,0.037285269,0.032138047,0.030468606,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,g Biomass,0.0,0.0118311,0.0131472,0.012087569999999999,0.014020420000000002,0.015993626,0.019359855999999998,0.022777476,0.026733493000000004,0.030624726,0.03314509,0.036447100999999996,0.04628294200000001,0.052208657000000006,0.056675393,0.04986507099999998,0.03389996700000001,0.010905953599999997,0.0029155955,9.276503310000001E-4,2.132076686E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,h Biomass w/CCS,0.0,0.0,0.0,0.0,0.0,1.819623E-4,4.1690250000000004E-4,6.971179E-4,0.001041318,0.0012990930999999997,0.0013834634,0.0017226962,0.0028209787,0.0045182955,0.0109732122,0.026299745900000004,0.04474220400000001,0.0707652265,0.089349805,0.101614571,0.11690343000000002,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,i Nuclear,0.118319,0.143918,0.149865,0.14150379000000002,0.13677019,0.12973802,0.12091964000000001,0.11054928,0.10000918999999998,0.09060242,0.08345697,0.08098575000000001,0.09742145,0.11419025000000001,0.14308715,0.19709444999999998,0.24660292,0.29739925,0.3302874,0.34936285,0.37023714,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,j Geothermal,1.08002E-5,0.0,0.0,0.0021916,0.003461,0.003461037,0.0034610250000000004,0.0034610609999999997,0.003461004,0.003461001,0.003460997,0.003461005,0.003461004,0.003461005,0.0034610017,0.0034609984,0.003461002,0.0034610025,0.0034610049,0.0034610020000000003,0.0034610019,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,k Hydro,0.0229716,0.0143496,0.0150984,0.0154475,0.0157965,0.0161456,0.0164946,0.0168437,0.0178996,0.0189556,0.0200116,0.0210676,0.0221236,0.0231796,0.0242355,0.0252915,0.0263475,0.0274035,0.0284595,0.0295155,0.0295155,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,l Wind,0.0,3.27642E-4,0.00351361,0.0074023045999999995,0.0109950571,0.0144161806,0.019293681200000003,0.0254515389,0.0300915553,0.03547485570000001,0.0411916835,0.04904074299999999,0.07046288839999999,0.0870333577,0.11233732529999998,0.1383171863,0.15254142099999998,0.159701766,0.15268663000000002,0.14665834200000005,0.13793363500000003,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,m Solar,0.0,3.60046E-6,8.28002E-5,0.0010985277600000002,0.00244892652,0.0042864305399999995,0.007672253979999999,0.013012254480000002,0.021148729680000002,0.030792226720000003,0.041607956560000006,0.05686820914000001,0.0992924047,0.1416571759,0.22477060649999997,0.35148581850000005,0.4663941368,0.5948684617000001,0.6659355687,0.705008896,0.723385022,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,n CHP,0.017070333,0.13125279,0.12124186,0.08028076,0.07737487650000001,0.0854423098,0.0863848941,0.08606426499999999,0.08273022399999999,0.07793223500000002,0.07228865300000001,0.060453366,0.05059934000000001,0.042722867,0.029320400000000003,0.02034305,0.013367809999999999,0.007915331,0.005724942,0.004891100000000001,0.003923741,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,a Coal,6.02909,7.68047,7.10527,8.13377,8.42015,8.558749500000001,8.6359915,8.5507776,8.382756099999998,8.0372588,7.646550200000001,7.1017577,6.4895698,5.644472199999999,3.4413522000000007,1.47065702,0.6366254900000001,0.12938462499999995,0.03205526295000001,0.009590149014000002,0.0018731318231,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,b Coal w/CCS,0.0,0.0,0.0,0.0,0.0,0.00908012,0.02768479,0.0577671,0.12151394000000001,0.21015340999999998,0.32632037999999997,0.5241358,0.90255942,1.35085217,2.25319146,3.16104689,3.8276417599999992,4.55041506,5.1574787099999995,5.610039100000001,6.159332499999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,c Gas,1.0262950000000002,2.569423,3.38456,3.7986952,4.1009776,4.3971541,4.6859548,4.9048967,5.1199683,5.2086708,5.246806,5.228180500000001,4.337011390000001,3.8882821199999995,3.21015102,2.48472044,1.78545522,0.8975673707000001,0.40132016600000003,0.17247015913999997,0.05035924861600001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,d Gas w/CCS,0.0,0.0,0.0,0.0,0.0,0.0282446,0.07918449999999999,0.1519622,0.2757118,0.42143759999999997,0.5860319,0.8172621,1.2054482,1.6203593,2.4083717,3.2093132,3.804458,4.486034,5.062987,5.484144000000001,6.009387,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,e Oil,0.450767,0.454965,0.144545,0.11249189999999999,0.11045672999999999,0.10591405000000002,0.10289292000000001,0.09927387000000001,0.10060936,0.09788759,0.09486744999999999,0.08913766499999999,0.077408187,0.063195788,0.049940468,0.031674871,0.0160279618,0.0073747512,0.00284811699,0.0012039032090000001,4.166423451E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,f Oil w/CCS,0.0,0.0,0.0,0.0,0.0,0.0125428,0.021644459999999997,0.03038145,0.04748436,0.060095350000000006,0.07292831,0.09275325,0.12512715,0.14932536000000002,0.21103347,0.24974588999999997,0.22939559,0.27886344,0.26781893,0.2522835,0.26272589999999996,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,g Biomass,0.0791349,0.110634,0.115436,0.0625796,0.0738202,0.09577087999999999,0.12735201,0.16191543,0.20731179,0.24659619999999996,0.27418338000000003,0.29370398,0.31283183999999997,0.30436254999999995,0.25212815,0.15568764000000002,0.075074524,0.0175745997,0.00425245379,0.0013183124580000002,2.903445091799999E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,h Biomass w/CCS,0.0,0.0,0.0,0.0,0.0,0.001923752,0.005660243,0.01210259,0.026026511000000002,0.045501445,0.071154699,0.11762850100000001,0.21515547100000001,0.3475789779999999,0.7147344040000002,1.1823080179999998,1.5588587889999994,2.04717835,2.47967757,2.827646609999999,3.329424369999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,i Nuclear,2.20139,2.91859,3.0201,3.19238,3.271158,3.3521379999999996,3.475328,3.603932,3.84002,4.061451,4.310934,4.715613,5.482894,6.252987,7.514469000000001,8.480133,9.258116,10.071756,10.622800999999999,10.929644000000001,11.322872,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,j Geothermal,0.0576456,0.0604004,0.0632762,0.1144269,0.15710000000000002,0.22098639999999997,0.3119397,0.4140579,0.49121780000000004,0.5764769,0.6637179,0.7471639999999999,0.7947584999999999,0.794759,0.794759,0.7947592,0.7947580000000001,0.7947590000000001,0.794759,0.794759,0.794759,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,k Hydro,0.983347,0.981803,0.945313,0.954109,0.96406,0.974012,0.983963,0.993915,0.998283,1.00265,1.00702,1.01139,1.01576,1.02013,1.02449,1.02886,1.03323,1.0376,1.04197,1.04634,1.04634,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,l Wind,0.0110381,0.0643712,0.342527,0.45271692900000005,0.534241451,0.6619391139999999,0.871265168,1.1489562279999999,1.2450999979999997,1.6258164089999998,2.0824744070000003,2.643001264,3.5127536399999997,4.3316906,5.80119173,7.169185290000001,8.077821550000005,9.082314730000006,9.562301000000003,9.8271665,9.8260187,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,m Solar,0.0023977004,0.00403198,0.01416215,0.02835777,0.042304967,0.06691322400000001,0.11021579799999999,0.17293587899999996,0.2639790429999999,0.3781483869999999,0.5162857840000001,0.702245689,0.9911563450000003,1.2014061040000001,1.45857052,1.802433476,2.0465613519999994,2.3254359599999996,2.4578935699999995,2.5611052100000005,2.6436148499999996,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,n CHP,0.6885946,0.5219592,0.5383006,0.4872648,0.58291787,0.6824868900000001,0.7403206099999999,0.7892579499999999,0.82694161,0.8452993,0.8337438,0.7902687,0.7307178999999999,0.6621806,0.5472803900000001,0.44613527999999997,0.36773114999999995,0.301754481,0.260839272,0.249346257,0.224750319,EJ, Hydrogen production by technology scenario,region,sector,subsector,output,technology,1990,2005,2020,2025,2030,2035,2040,2045,2050,2055,2060,2065,2070,2075,2080,2085,2090,2095,2100,Units, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,1.32911E-4,2.66801E-4,4.72342E-4,7.2698E-4,9.30092E-4,0.00110727,0.00126164,8.33553E-4,5.04264E-4,3.90966E-4,1.53657E-4,8.75213E-5,6.35217E-5,1.76135E-5,7.33596E-6,3.3225E-6,1.01108E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,H2 central production,biomass,H2 central production,biomass to H2 CCS,0.0,0.0,7.72228E-5,1.80379E-4,3.45949E-4,6.75074E-4,0.00148428,0.00305969,0.00576271,0.0110703,0.0188309,0.0268742,0.04488,0.0572878,0.065718,0.0811856,0.0818969,0.079832,0.0662475,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,6.65138E-4,0.00118103,0.00186642,0.00267952,0.00305416,0.00328361,0.00349096,0.00204885,0.00121834,9.76766E-4,4.51921E-4,2.85304E-4,2.22722E-4,7.69527E-5,3.2611E-5,1.37738E-5,3.27728E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,H2 central production,coal,H2 central production,coal chemical CCS,0.0,0.0,2.02696E-4,4.43806E-4,7.78175E-4,0.00149174,0.00320798,0.00641479,0.0115623,0.0187122,0.0276174,0.0342644,0.0434917,0.0523647,0.0579096,0.0634266,0.068774,0.0760878,0.0811644,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,2.81711E-6,6.11942E-6,1.19963E-5,2.21405E-5,4.01129E-5,7.03236E-5,1.1937E-4,1.76302E-4,2.57711E-4,3.75565E-4,5.70105E-4,8.58889E-4,0.00122894,0.00184931,0.00260442,0.00343425,0.00433699,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,0.00116114,0.00208061,0.0032661,0.00466629,0.00582867,0.00703392,0.0082876,0.00680934,0.00571017,0.0053244,0.00380838,0.00310715,0.0027254,0.00132449,6.84879E-4,3.48348E-4,1.06193E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,H2 central production,gas,H2 central production,natural gas steam reforming CCS,0.0,0.0,3.06809E-4,6.59021E-4,0.00115691,0.00207111,0.00387562,0.00683847,0.01119,0.0170066,0.0242165,0.0311146,0.044054,0.0589616,0.0737233,0.096755,0.11908,0.142494,0.163105,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,2.24582E-4,4.38514E-4,7.43617E-4,0.00120113,0.00195104,0.0030691,0.00469093,0.00918377,0.0186554,0.0405496,0.0641249,0.101738,0.153425,0.240975,0.355378,0.489051,0.615156,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,2.14434E-4,4.2046E-4,7.16292E-4,0.00116304,0.00190076,0.00301125,0.00464026,0.00635067,0.00861226,0.0116799,0.0188534,0.0306259,0.0474487,0.0767901,0.115886,0.163519,0.209386,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,1.65577E-4,3.11707E-4,5.07557E-4,7.88503E-4,0.00123582,0.00187582,0.00276292,0.00359675,0.00462908,0.00599999,0.00903241,0.0137182,0.0200737,0.0305537,0.0437215,0.0590835,0.0735171,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,7.36936E-5,1.47725E-4,2.62545E-4,4.4193E-4,7.24989E-4,0.00116604,0.00182249,0.00257435,0.00362268,0.00501011,0.00710454,0.00985041,0.0128802,0.0172421,0.0218231,0.0262406,0.0301044,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,0.00170832,0.00337728,0.00575106,0.00930497,0.0143159,0.0216805,0.0319737,0.0406343,0.0521074,0.0659292,0.0767204,0.0892358,0.0999223,0.0988672,0.0946362,0.0879085,0.0691525,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,6.83864E-5,1.39565E-4,2.1988E-4,3.08073E-4,3.53638E-4,3.77173E-4,3.86798E-4,2.69354E-4,1.78602E-4,1.24068E-4,4.10876E-5,1.73168E-5,8.98448E-6,1.72165E-6,5.90058E-7,2.6642E-7,8.79002E-8,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,H2 central production,biomass,H2 central production,biomass to H2 CCS,0.0,0.0,3.58348E-5,7.54247E-5,1.51108E-4,2.66258E-4,5.0248E-4,8.773E-4,0.00140561,0.00230927,0.00328273,0.00418252,0.00638928,0.00764037,0.00861692,0.010534,0.010627,0.0101732,0.00848802,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,3.42653E-4,6.19214E-4,8.69491E-4,0.00113714,0.00116601,0.00112708,0.00108176,6.69372E-4,4.31565E-4,3.04206E-4,1.15236E-4,5.45917E-5,3.12862E-5,7.76864E-6,2.75094E-6,1.1425E-6,2.86778E-7,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,H2 central production,coal,H2 central production,coal chemical CCS,0.0,0.0,9.05199E-5,1.72517E-4,3.33895E-4,5.77898E-4,0.0010611,0.00178971,0.00273759,0.00377217,0.00466314,0.00523673,0.00623828,0.00705112,0.00761058,0.00812384,0.00874957,0.00955907,0.0103708,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,2.63925E-6,5.25708E-6,9.4607E-6,1.56528E-5,2.40763E-5,3.54325E-5,5.05372E-5,6.45273E-5,8.09495E-5,1.00719E-4,1.29787E-4,1.70341E-4,2.21041E-4,3.00119E-4,4.04492E-4,5.33624E-4,6.98103E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,5.89388E-4,0.00105576,0.0015063,0.00195482,0.00216613,0.00230003,0.00238573,0.00189268,0.0015375,0.00126693,7.8027E-4,5.22263E-4,3.73914E-4,1.44592E-4,6.56063E-5,3.26926E-5,1.03554E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,H2 central production,gas,H2 central production,natural gas steam reforming CCS,0.0,0.0,1.44013E-4,2.83784E-4,5.10104E-4,8.26037E-4,0.00133506,0.00200835,0.00280996,0.00371269,0.00452046,0.00520517,0.006765,0.00828098,0.00976716,0.01203,0.0143957,0.0170099,0.0199072,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,1.12191E-4,2.14684E-4,3.39329E-4,4.96795E-4,7.08646E-4,9.67452E-4,0.00128295,0.00229779,0.00420574,0.00804018,0.0111151,0.0153073,0.0205848,0.0287131,0.0399437,0.0542307,0.0701582,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,1.07121E-4,2.05845E-4,3.2686E-4,4.8104E-4,6.9038E-4,9.49216E-4,0.00126909,0.00158894,0.00194158,0.00231589,0.00326796,0.00460795,0.00636612,0.00914982,0.0130253,0.0181326,0.0238804,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,6.01104E-5,1.11056E-4,1.68086E-4,2.37355E-4,3.32233E-4,4.467E-4,5.8633E-4,7.19581E-4,8.48889E-4,9.87036E-4,0.00132109,0.00176163,0.00231339,0.00314201,0.00427191,0.00571783,0.00737204,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,5.88249E-5,1.09077E-4,1.77625E-4,2.66794E-4,3.71836E-4,5.01865E-4,6.59135E-4,8.02939E-4,9.63543E-4,0.00114787,0.00140825,0.00172741,0.00207776,0.00254957,0.00311737,0.00375647,0.00450323,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,7.59437E-4,0.00148391,0.00236265,0.00346848,0.00468996,0.0061593,0.007874,0.00906215,0.0103308,0.011553,0.0118748,0.0121523,0.0123141,0.0109874,0.0100125,0.00918878,0.00748946,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,6.02151E-5,1.12857E-4,1.77897E-4,2.57451E-4,3.05064E-4,3.419E-4,3.74968E-4,2.42272E-4,1.38409E-4,8.23174E-5,2.73271E-5,1.39235E-5,9.38998E-6,2.48528E-6,1.21265E-6,6.85488E-7,2.48046E-7,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,H2 central production,biomass,H2 central production,biomass to H2 CCS,0.0,0.0,3.55742E-5,8.05716E-5,1.46907E-4,2.42026E-4,4.98343E-4,9.85684E-4,0.00183757,0.00361695,0.00625802,0.00973037,0.0168803,0.021685,0.0250658,0.0302043,0.0284419,0.0255305,0.0200904,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,3.0125E-4,4.98949E-4,7.01318E-4,9.48652E-4,0.00100081,0.00101173,0.00103353,5.93034E-4,3.33741E-4,2.07597E-4,8.49626E-5,4.89193E-5,3.59525E-5,1.21606E-5,5.80875E-6,2.93416E-6,8.06852E-7,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,H2 central production,coal,H2 central production,coal chemical CCS,0.0,0.0,9.39518E-5,2.01716E-4,3.41582E-4,5.36448E-4,0.00108205,0.00208016,0.00371946,0.00616474,0.00924307,0.012517,0.0161297,0.0193286,0.0213935,0.0225343,0.0231534,0.024008,0.0245777,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,1.79751E-6,3.47886E-6,6.08805E-6,1.00813E-5,1.64211E-5,2.6633E-5,4.25823E-5,5.89331E-5,8.26461E-5,1.15878E-4,1.70664E-4,2.51802E-4,3.56762E-4,5.25075E-4,7.39974E-4,9.93609E-4,0.00126596,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,5.27238E-4,8.8701E-4,0.00125272,0.00165583,0.00192079,0.0021946,0.00251321,0.00206372,0.00169143,0.00140318,9.33269E-4,7.10677E-4,5.92588E-4,2.74019E-4,1.48711E-4,8.33997E-5,2.77312E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,H2 central production,gas,H2 central production,natural gas steam reforming CCS,0.0,0.0,1.41081E-4,2.92355E-4,4.82862E-4,7.41131E-4,0.00129678,0.00219056,0.00353813,0.0054936,0.0079014,0.0106302,0.0150139,0.0197452,0.0245244,0.0309894,0.0370154,0.0428401,0.0481749,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,1.02244E-4,1.88658E-4,2.91134E-4,4.27162E-4,6.45962E-4,9.66394E-4,0.00144556,0.00286471,0.00580434,0.012314,0.0191642,0.029604,0.0439405,0.0669851,0.0987541,0.137119,0.175055,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,9.76242E-5,1.8089E-4,2.80436E-4,4.13616E-4,6.29312E-4,9.48178E-4,0.00142994,0.00198097,0.00267957,0.00354694,0.00563448,0.00891167,0.0135892,0.0213457,0.0322029,0.045847,0.0595851,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,8.49154E-5,1.53815E-4,2.31562E-4,3.31346E-4,4.89555E-4,7.1301E-4,0.00103503,0.00137726,0.00176536,0.0022196,0.00326536,0.00475922,0.00675009,0.0097968,0.0137656,0.0183551,0.0227719,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,4.40458E-5,7.96076E-5,1.26749E-4,1.91176E-4,2.84215E-4,4.25924E-4,6.34216E-4,8.60502E-4,0.00117972,0.00161368,0.00225063,0.00306006,0.00395952,0.00515634,0.00644203,0.00773895,0.00887159,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,7.50662E-4,0.00141618,0.00220535,0.00324348,0.00467281,0.00676667,0.00983811,0.0128214,0.0165501,0.0209612,0.0242709,0.0275509,0.030375,0.0290498,0.0274227,0.0252521,0.0199476,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,1.63669E-4,3.40889E-4,6.19532E-4,9.72976E-4,0.00126337,0.00151817,0.00174969,0.00117684,7.15794E-4,5.32522E-4,2.08727E-4,1.19955E-4,8.91019E-5,2.68551E-5,1.269E-5,6.25168E-6,2.17274E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,H2 central production,biomass,H2 central production,biomass to H2 CCS,0.0,0.0,9.60195E-5,2.3423E-4,4.58884E-4,9.0351E-4,0.00201668,0.00420924,0.00807186,0.0159905,0.0281023,0.0422288,0.0748413,0.100509,0.12005,0.15577,0.161,0.158639,0.13387,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,8.18924E-4,0.00150847,0.00244761,0.00358623,0.00414849,0.00450139,0.00483884,0.00289042,0.00172864,0.00133418,6.23311E-4,3.99368E-4,3.20033E-4,1.20438E-4,5.71246E-5,2.60188E-5,7.03549E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,H2 central production,coal,H2 central production,coal chemical CCS,0.0,0.0,2.52936E-4,5.79296E-4,0.00103545,0.00199652,0.00435889,0.00882951,0.0162158,0.0270735,0.0412934,0.0539867,0.0722829,0.0912636,0.104909,0.120428,0.134502,0.150951,0.164083,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,4.49922E-6,9.97295E-6,2.03285E-5,3.85344E-5,6.96913E-5,1.20793E-4,2.0319E-4,2.94933E-4,4.27487E-4,6.20548E-4,9.58811E-4,0.00149607,0.00222409,0.00354138,0.00525401,0.00719384,0.00941813,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,0.00143172,0.00266451,0.00429104,0.00624528,0.00791765,0.00965206,0.0115261,0.00969208,0.00826819,0.00769155,0.00564542,0.00471941,0.00425306,0.00220873,0.001241,6.67603E-4,2.24133E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,H2 central production,gas,H2 central production,natural gas steam reforming CCS,0.0,0.0,3.81086E-4,8.54012E-4,0.00153206,0.00277195,0.00526556,0.00940349,0.015655,0.0245101,0.0359668,0.0481658,0.0715744,0.100019,0.12981,0.179341,0.229758,0.281015,0.332109,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,2.77338E-4,5.63092E-4,9.78824E-4,0.00160757,0.00265044,0.00421453,0.00653875,0.0131452,0.0273611,0.0607961,0.100375,0.165572,0.258716,0.431465,0.672296,0.956032,1.26624,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,2.64806E-4,5.39908E-4,9.42857E-4,0.00155659,0.00258212,0.00413509,0.00646813,0.00909,0.0126312,0.0175117,0.0295115,0.0498419,0.0800112,0.137492,0.21923,0.319659,0.431,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,2.20421E-4,4.28823E-4,7.1055E-4,0.00111672,0.00177604,0.00272512,0.00407233,0.0054483,0.00716137,0.00938964,0.0144875,0.0222329,0.0325973,0.0505161,0.0733388,0.0986361,0.125646,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,1.11231E-4,2.278E-4,4.1794E-4,7.17717E-4,0.0011764,0.00187612,0.00291802,0.00409476,0.005766,0.00803755,0.0117016,0.0168093,0.0227664,0.0321006,0.0425301,0.0528118,0.0628993,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,0.00195446,0.00402083,0.00698921,0.0114542,0.0178625,0.0273314,0.0409112,0.0534341,0.070262,0.091282,0.110726,0.133225,0.153527,0.159448,0.159337,0.151562,0.124777,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,4.53305E-5,9.99081E-5,1.71021E-4,2.48418E-4,2.83711E-4,2.86169E-4,2.80662E-4,1.61675E-4,7.40908E-5,3.30517E-5,5.84189E-6,1.39859E-6,4.03089E-7,3.61273E-8,8.58387E-9,3.51433E-9,1.73111E-9,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,H2 central production,biomass,H2 central production,biomass to H2 CCS,0.0,0.0,2.72312E-5,7.72204E-5,1.73437E-4,3.25347E-4,6.31824E-4,0.00109163,0.00174255,0.00294207,0.00452316,0.00630256,0.0108117,0.0148514,0.0195737,0.0283566,0.0310435,0.0294651,0.021541,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,2.26709E-4,4.4067E-4,6.6965E-4,9.04308E-4,9.16063E-4,8.32499E-4,7.62014E-4,3.92545E-4,1.77841E-4,8.3838E-5,1.97351E-5,5.8822E-6,2.09948E-6,3.20588E-7,7.83486E-8,2.51336E-8,6.27785E-9,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,H2 central production,coal,H2 central production,coal chemical CCS,0.0,0.0,7.23601E-5,1.98235E-4,4.26138E-4,7.81039E-4,0.00145539,0.00240178,0.00362817,0.00508163,0.00674811,0.00815098,0.0100471,0.0123326,0.0147225,0.0164333,0.0191954,0.0222513,0.0251568,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,1.9002E-6,4.37595E-6,8.77341E-6,1.54657E-5,2.49792E-5,3.71879E-5,5.40467E-5,7.02125E-5,8.81953E-5,1.0868E-4,1.37437E-4,1.778E-4,2.25715E-4,2.87855E-4,3.80065E-4,4.94244E-4,6.75298E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,3.97808E-4,7.94487E-4,0.00124497,0.00169253,0.00190827,0.00197375,0.00201776,0.00148016,0.00102194,6.88586E-4,3.21782E-4,1.63917E-4,8.85427E-5,2.41297E-5,8.44886E-6,3.50185E-6,1.06826E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,H2 central production,gas,H2 central production,natural gas steam reforming CCS,0.0,0.0,1.07799E-4,2.77458E-4,5.54164E-4,9.49055E-4,0.00157486,0.00234188,0.00326619,0.00438564,0.00554624,0.00651923,0.00818722,0.00992682,0.0117537,0.0137903,0.0167946,0.0202473,0.0249147,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,7.73493E-5,1.71283E-4,3.00158E-4,4.6461E-4,6.84148E-4,9.24801E-4,0.00122626,0.00215863,0.00379151,0.00685667,0.00879958,0.0113737,0.0143487,0.0180024,0.0237702,0.0311563,0.0414445,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,7.38542E-5,1.64231E-4,2.89128E-4,4.49877E-4,6.66514E-4,9.07369E-4,0.00121301,0.00149271,0.00175035,0.00197499,0.00258717,0.00342381,0.00443753,0.0057367,0.00775125,0.0104174,0.0141069,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,6.87676E-5,1.50929E-4,2.60323E-4,3.97544E-4,5.78448E-4,7.76136E-4,0.00102263,0.00123986,0.00142232,0.00157909,0.00201528,0.00259574,0.00328305,0.0041361,0.00547245,0.00722248,0.00964096,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,4.31319E-5,9.28848E-5,1.6911E-4,2.71392E-4,3.9908E-4,5.46468E-4,7.31426E-4,9.11501E-4,0.00111186,0.00133317,0.00163909,0.00202207,0.00243789,0.00289752,0.0035351,0.0042491,0.00531837,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,5.35899E-4,0.00121773,0.00215988,0.00336804,0.00473941,0.00620832,0.00797289,0.00913546,0.0102434,0.0111382,0.0109646,0.0108429,0.010638,0.00886962,0.00785473,0.00706042,0.00592771,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,8.62563E-5,2.02044E-4,3.42002E-4,4.86053E-4,5.27814E-4,5.12719E-4,4.69086E-4,2.489E-4,1.14165E-4,5.14397E-5,8.40359E-6,1.85146E-6,4.89955E-7,4.04349E-8,8.9087E-9,3.4546E-9,1.61197E-9,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,H2 central production,biomass,H2 central production,biomass to H2 CCS,0.0,0.0,5.18632E-5,1.57108E-4,3.52985E-4,6.58981E-4,0.00124468,0.0021347,0.00329941,0.0053958,0.00771557,0.00997812,0.0159263,0.0202693,0.0247544,0.0335436,0.0344867,0.0312493,0.0215786,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,4.3138E-4,8.90986E-4,0.00133814,0.00176623,0.00169796,0.0014821,0.00126187,5.99329E-4,2.73512E-4,1.30503E-4,2.84414E-5,7.81077E-6,2.56396E-6,3.62152E-7,8.21802E-8,2.493E-8,5.85747E-9,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,H2 central production,coal,H2 central production,coal chemical CCS,0.0,0.0,1.37859E-4,4.04082E-4,8.71319E-4,0.00159475,0.00289732,0.00475531,0.00696716,0.00942332,0.0115471,0.0129065,0.01479,0.0168103,0.0185821,0.0193624,0.0212279,0.0235078,0.0251791,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,5.0396E-6,1.19908E-5,2.24891E-5,3.70354E-5,5.44952E-5,7.64088E-5,1.03472E-4,1.27121E-4,1.52933E-4,1.79161E-4,2.08798E-4,2.47092E-4,2.87385E-4,3.36361E-4,4.11664E-4,5.07279E-4,6.5737E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,7.57054E-4,0.00160815,0.00249703,0.00333293,0.00359632,0.00362073,0.00350449,0.00243171,0.00164113,0.00107943,4.67753E-4,2.19956E-4,1.0956E-4,2.77095E-5,9.04394E-6,3.55772E-6,1.023E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,H2 central production,gas,H2 central production,natural gas steam reforming CCS,0.0,0.0,2.05289E-4,5.64086E-4,0.00112522,0.00191308,0.00307941,0.00453277,0.00610279,0.00791444,0.00936577,0.0103003,0.0120159,0.0134769,0.0147568,0.0161365,0.018413,0.0211727,0.0246605,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,1.47222E-4,3.4706E-4,6.03976E-4,9.21112E-4,0.00130519,0.00173062,0.00219388,0.00370689,0.0062531,0.0107974,0.0128697,0.0153813,0.0179318,0.0209447,0.0258731,0.0322988,0.0406169,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,1.40569E-4,3.32771E-4,5.81783E-4,8.91902E-4,0.00127155,0.001698,0.00217019,0.00256335,0.00288674,0.00311008,0.00378384,0.00463021,0.00554564,0.00667431,0.008437,0.0107994,0.0138251,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,1.11581E-4,2.60859E-4,4.45455E-4,6.66509E-4,9.35971E-4,0.00122324,0.00153446,0.00177947,0.00196794,0.00209096,0.00245486,0.00291877,0.00342966,0.00404973,0.00504504,0.0063793,0.00815659,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,1.03844E-4,2.3225E-4,4.00653E-4,6.08118E-4,8.2764E-4,0.00108129,0.00136172,0.00161738,0.00187971,0.00213269,0.00242613,0.00275486,0.00305987,0.00336389,0.00381959,0.00435617,0.00516303,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,9.40939E-4,0.00228345,0.00404704,0.00625094,0.00851499,0.0109871,0.0135278,0.0149122,0.015959,0.0165059,0.0152364,0.014154,0.0130083,0.0102586,0.00856673,0.00735405,0.00583822,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,2.40496E-4,4.92472E-4,8.01009E-4,0.0011273,0.00126475,0.00127484,0.00124013,6.88968E-4,3.14625E-4,1.37981E-4,2.42121E-5,5.76368E-6,1.64997E-6,1.48477E-7,3.50717E-8,1.42665E-8,6.92194E-9,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,H2 central production,biomass,H2 central production,biomass to H2 CCS,0.0,0.0,1.44348E-4,3.80072E-4,8.12882E-4,0.00148476,0.00285109,0.00495686,0.00788316,0.0128499,0.0192232,0.0262948,0.044607,0.0605131,0.0784655,0.112665,0.121282,0.113384,0.0814834,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,0.0012028,0.00217228,0.00313634,0.00410253,0.00408057,0.00370367,0.00336138,0.00167096,7.55188E-4,3.49995E-4,8.17647E-5,2.42134E-5,8.57258E-6,1.31015E-6,3.17897E-7,1.01388E-7,2.50645E-8,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,H2 central production,coal,H2 central production,coal chemical CCS,0.0,0.0,3.83448E-4,9.75238E-4,0.00199764,0.00356905,0.00658214,0.0109358,0.0164579,0.0222301,0.0286798,0.0340064,0.0414579,0.0502736,0.0590801,0.0654501,0.075217,0.0858569,0.0952223,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,8.25931E-6,1.82377E-5,3.37423E-5,5.60678E-5,8.63877E-5,1.26259E-4,1.80673E-4,2.24903E-4,2.75511E-4,3.34494E-4,4.25061E-4,5.50726E-4,6.98073E-4,9.00107E-4,0.00118354,0.00153135,0.0020605,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,0.00211028,0.00391536,0.00583173,0.00768859,0.00853007,0.00883777,0.00897989,0.00636508,0.0043411,0.00287388,0.00133099,6.72119E-4,3.59049E-4,9.76268E-5,3.38261E-5,1.38903E-5,4.18182E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,H2 central production,gas,H2 central production,natural gas steam reforming CCS,0.0,0.0,5.71479E-4,0.00136587,0.00259708,0.00432771,0.00709517,0.0106098,0.0147383,0.0191111,0.0235693,0.0272008,0.0338027,0.0405269,0.047298,0.0551554,0.0661846,0.078689,0.0951054,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,4.10264E-4,8.4389E-4,0.00140619,0.00211289,0.0030661,0.0041589,0.00548783,0.00934035,0.0161093,0.0286122,0.0363552,0.0465011,0.0578816,0.0722556,0.0941222,0.121832,0.159404,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,3.91726E-4,8.09145E-4,0.00135451,0.00204588,0.00298707,0.00408051,0.00542856,0.00645894,0.00743687,0.00824145,0.0106888,0.0139982,0.0179006,0.0230253,0.0306925,0.0407357,0.0542579,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,3.19475E-4,6.41614E-4,0.0010423,0.00153271,0.00219067,0.00293224,0.00379699,0.00440388,0.00484309,0.0051499,0.0062387,0.0076423,0.00924115,0.0112304,0.0143162,0.0183274,0.0237498,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,1.94397E-4,3.98514E-4,6.75593E-4,0.00103222,0.00146438,0.00198656,0.002633,0.00316035,0.00376889,0.00446012,0.0054722,0.00671499,0.00802351,0.00953646,0.0114672,0.0135701,0.0165284,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,0.00282947,0.00593184,0.010026,0.0152072,0.0211399,0.027819,0.0355189,0.039307,0.0431233,0.0459212,0.044498,0.0432701,0.041611,0.0341602,0.0295276,0.0259355,0.0211256,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,1.25905E-4,2.89376E-4,4.91317E-4,7.26013E-4,8.46108E-4,8.35329E-4,7.53011E-4,3.89653E-4,1.6796E-4,7.15013E-5,1.21158E-5,2.81571E-6,8.01943E-7,7.37166E-8,1.87993E-8,8.64521E-9,4.39994E-9,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,H2 central production,biomass,H2 central production,biomass to H2 CCS,0.0,0.0,7.52191E-5,2.19552E-4,4.7378E-4,8.43256E-4,0.00145719,0.00251113,0.00395651,0.00656412,0.00938932,0.0120765,0.0187848,0.0235199,0.0283132,0.0375146,0.0375929,0.0328973,0.0226349,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,6.29752E-4,0.00127714,0.00192766,0.00265722,0.00276957,0.00246633,0.00206704,9.49229E-4,4.03763E-4,1.81134E-4,4.03743E-5,1.15632E-5,4.02398E-6,6.09194E-7,1.5682E-7,5.6484E-8,1.55924E-8,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,H2 central production,coal,H2 central production,coal chemical CCS,0.0,0.0,1.99473E-4,5.60343E-4,0.00114866,0.00196777,0.00319689,0.00533351,0.00807699,0.0112803,0.0139684,0.0156,0.0175434,0.0197235,0.0216345,0.0224129,0.0241587,0.0258243,0.026697,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,5.57095E-6,1.32746E-5,2.51421E-5,4.27785E-5,6.58766E-5,9.54995E-5,1.3178E-4,1.63904E-4,1.95676E-4,2.26744E-4,2.65978E-4,3.16818E-4,3.72588E-4,4.42842E-4,5.54016E-4,7.01109E-4,9.30752E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,0.00110408,0.00229481,0.00354677,0.00484038,0.00538517,0.00541779,0.00515034,0.00346781,0.00223552,0.0014154,6.17382E-4,2.96744E-4,1.52759E-4,4.03301E-5,1.41797E-5,6.14773E-6,1.9492E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,H2 central production,gas,H2 central production,natural gas steam reforming CCS,0.0,0.0,2.97945E-4,7.90662E-4,0.00152412,0.00250212,0.00376295,0.00554998,0.00755608,0.00985591,0.0116132,0.0126704,0.0146173,0.0163817,0.0180166,0.0198485,0.0227808,0.0261122,0.030171,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,2.14488E-4,4.93159E-4,8.47289E-4,0.00129844,0.00183043,0.00240757,0.00301032,0.00496052,0.00810551,0.0136484,0.016129,0.0193594,0.022839,0.0271227,0.0343846,0.0440883,0.0567627,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,2.04797E-4,4.72854E-4,8.16155E-4,0.00125727,0.00178325,0.00236219,0.0029778,0.00343025,0.00374191,0.00393129,0.00474211,0.00582772,0.00706325,0.00864301,0.0112125,0.0147414,0.0193208,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,1.62813E-4,3.72018E-4,6.27052E-4,9.40864E-4,0.00131479,0.00169986,0.00209754,0.00236318,0.00253293,0.00263109,0.00307845,0.0036787,0.00437041,0.0052234,0.00663779,0.00856668,0.011103,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,1.23039E-4,2.74211E-4,4.75303E-4,7.38571E-4,0.00102706,0.00136456,0.00173549,0.00206838,0.00238015,0.00266919,0.00302641,0.00343688,0.0038374,0.00425404,0.00490543,0.00569735,0.00690103,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,0.00141844,0.00334352,0.00582666,0.008978,0.0119602,0.0151545,0.0183435,0.0196801,0.0204248,0.0205919,0.0185796,0.0170499,0.0156211,0.0123011,0.0103975,0.00905698,0.00732198,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,8.36727E-5,1.71358E-4,2.89834E-4,4.35366E-4,5.19158E-4,5.41467E-4,5.34224E-4,2.96498E-4,1.42238E-4,6.84676E-5,1.34718E-5,3.63562E-6,1.25606E-6,1.67459E-7,5.5048E-8,2.87735E-8,1.46053E-8,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,H2 central production,biomass,H2 central production,biomass to H2 CCS,0.0,0.0,4.97395E-5,1.26313E-4,2.59179E-4,4.42759E-4,8.60536E-4,0.00160452,0.00275083,0.00484804,0.00759588,0.0107862,0.0186934,0.025838,0.0338996,0.0465765,0.0482372,0.0440299,0.0316964,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,4.18556E-4,7.56929E-4,0.00114009,0.00160087,0.00170216,0.00159994,0.00146825,7.23186E-4,3.42178E-4,1.73311E-4,4.45129E-5,1.4696E-5,6.11207E-6,1.25795E-6,4.07877E-7,1.70604E-7,5.06956E-8,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,H2 central production,coal,H2 central production,coal chemical CCS,0.0,0.0,1.31662E-4,3.19456E-4,6.15797E-4,0.00100055,0.00187383,0.00340046,0.00560191,0.00831461,0.0112834,0.0139231,0.0175109,0.0218079,0.0262405,0.0289852,0.0326132,0.0360304,0.0377177,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,2.03819E-6,4.45446E-6,8.51279E-6,1.48431E-5,2.48725E-5,3.92981E-5,5.98391E-5,7.88295E-5,1.0216E-4,1.29928E-4,1.71148E-4,2.27478E-4,2.98986E-4,4.07713E-4,5.53761E-4,7.30671E-4,9.74597E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,7.33244E-4,0.00135312,0.00206678,0.00283684,0.00327848,0.00349932,0.00363239,0.00261021,0.00185851,0.00131624,6.53885E-4,3.56846E-4,2.12419E-4,6.96983E-5,2.89311E-5,1.40467E-5,4.74194E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,H2 central production,gas,H2 central production,natural gas steam reforming CCS,0.0,0.0,1.97126E-4,4.56507E-4,8.4243E-4,0.00133973,0.00223451,0.00355293,0.00526582,0.00729979,0.00943706,0.011408,0.0147928,0.018495,0.0226345,0.0276504,0.0340878,0.0410364,0.0482569,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,1.42333E-4,2.89357E-4,4.87094E-4,7.4237E-4,0.00110579,0.00155017,0.00211321,0.00370609,0.0066588,0.0124606,0.0165983,0.0223257,0.0296415,0.0403662,0.0565123,0.0775531,0.102978,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,1.35902E-4,2.77443E-4,4.69195E-4,7.18828E-4,0.00107728,0.00152095,0.00209039,0.0025628,0.00307403,0.00358914,0.00488009,0.00672069,0.00916704,0.0128632,0.0184282,0.0259307,0.0350515,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,7.59396E-5,1.39676E-4,2.09904E-4,2.91129E-4,3.99335E-4,5.27142E-4,6.82649E-4,7.96832E-4,9.0636E-4,0.00101001,0.00125294,0.00157511,0.00198028,0.0025631,0.00343331,0.00456482,0.00589311,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,5.09997E-5,1.03321E-4,1.79495E-4,2.84008E-4,4.28339E-4,6.1959E-4,8.70055E-4,0.0011064,0.00139577,0.00173514,0.00220717,0.00278527,0.00344513,0.00425798,0.00521553,0.00620508,0.00734363,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,0.00104724,0.00216126,0.00366037,0.00556679,0.0078226,0.0105638,0.0139454,0.0160272,0.0184064,0.0207253,0.0211094,0.021623,0.0221052,0.0194576,0.0177762,0.016274,0.0131913,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,1.20401E-4,2.28199E-4,3.57221E-4,4.92835E-4,5.61006E-4,5.79052E-4,5.75577E-4,3.27324E-4,1.455E-4,6.39616E-5,1.11232E-5,2.60101E-6,7.35222E-7,6.6615E-8,1.58206E-8,6.56158E-9,3.17575E-9,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,H2 central production,biomass,H2 central production,biomass to H2 CCS,0.0,0.0,7.22601E-5,1.76017E-4,3.61171E-4,6.42738E-4,0.0012406,0.0021811,0.00350049,0.0058453,0.00885911,0.0121514,0.0204711,0.0274019,0.0353035,0.0513044,0.0557467,0.053262,0.0382214,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,6.02166E-4,0.0010066,0.00139891,0.00179443,0.0018122,0.00168601,0.00156499,7.95399E-4,3.49261E-4,1.62237E-4,3.75602E-5,1.09307E-5,3.82429E-6,5.89262E-7,1.43819E-7,4.67477E-8,1.15064E-8,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,H2 central production,coal,H2 central production,coal chemical CCS,0.0,0.0,1.91947E-4,4.51569E-4,8.86698E-4,0.00154146,0.00285398,0.0047901,0.00727099,0.0100838,0.0132158,0.0157147,0.0190265,0.022762,0.0265687,0.0297724,0.0345301,0.040288,0.0446544,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,5.23346E-6,1.01396E-5,1.77878E-5,2.86068E-5,4.48976E-5,6.66951E-5,9.57623E-5,1.20374E-4,1.4532E-4,1.72849E-4,2.10865E-4,2.59936E-4,3.15488E-4,3.93258E-4,5.0414E-4,6.47512E-4,8.56523E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,0.00105647,0.00181412,0.00259912,0.00335519,0.00376745,0.00398037,0.00411211,0.002976,0.00200474,0.00133046,6.11179E-4,3.03773E-4,1.60687E-4,4.41032E-5,1.53892E-5,6.44722E-6,1.9349E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,H2 central production,gas,H2 central production,natural gas steam reforming CCS,0.0,0.0,2.86083E-4,6.32601E-4,0.00115448,0.001876,0.00309515,0.00468621,0.00657604,0.00872871,0.0108658,0.0125747,0.0155153,0.0183408,0.0212429,0.0250431,0.0303112,0.0368197,0.0444497,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,2.05388E-4,3.90966E-4,6.2629E-4,9.20267E-4,0.00134868,0.00185968,0.00248693,0.00431965,0.00743264,0.0132352,0.0166895,0.0210352,0.0259669,0.0327567,0.0430198,0.0568686,0.0742765,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,1.96108E-4,3.74869E-4,6.03277E-4,8.91084E-4,0.00131392,0.00182463,0.00246006,0.00298708,0.00343128,0.00381226,0.00490689,0.00633221,0.00803061,0.0104384,0.0140284,0.0190146,0.0252822,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,1.65333E-4,3.10808E-4,4.88083E-4,7.05995E-4,0.00101679,0.00138883,0.00184515,0.00220096,0.00247464,0.00270913,0.00337234,0.00420531,0.00519659,0.00654793,0.00856612,0.0113229,0.0148062,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,1.16223E-4,2.11585E-4,3.40737E-4,5.04284E-4,7.25187E-4,9.97153E-4,0.00132687,0.00161089,0.00190495,0.00222307,0.00264929,0.00313323,0.00363213,0.00423822,0.00502372,0.00594715,0.0071376,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,0.00134132,0.00262325,0.0042693,0.00633761,0.00886797,0.0118356,0.0153048,0.0172686,0.0189638,0.0202796,0.0195516,0.0188076,0.0180176,0.0150096,0.0131131,0.0117711,0.00954677,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,7.95926E-4,0.00152558,0.00242727,0.00343355,0.00406557,0.00424331,0.00395868,0.00210528,9.30722E-4,4.07287E-4,7.21224E-5,1.71231E-5,4.95248E-6,4.68753E-7,1.10417E-7,4.69316E-8,2.1972E-8,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,H2 central production,biomass,H2 central production,biomass to H2 CCS,0.0,0.0,4.69453E-4,0.00112702,0.00226235,0.00391699,0.00728553,0.0128511,0.0211012,0.0362833,0.0537523,0.0717235,0.117984,0.152342,0.188496,0.26244,0.266655,0.227841,0.143353,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,0.00398205,0.00673846,0.00953498,0.0125758,0.0132838,0.0125234,0.0108571,0.00512371,0.00223618,0.00103225,2.41332E-4,7.07579E-5,2.50678E-5,3.93422E-6,9.47438E-7,3.15098E-7,7.83335E-8,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,H2 central production,coal,H2 central production,coal chemical CCS,0.0,0.0,0.00123908,0.00285229,0.00543541,0.00910126,0.0161071,0.0273261,0.0431518,0.0624464,0.0800515,0.0926884,0.110023,0.127427,0.143504,0.155759,0.169306,0.176779,0.168643,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,4.25824E-5,7.91255E-5,1.32079E-4,2.04046E-4,3.00863E-4,4.25215E-4,5.79844E-4,7.03802E-4,8.37017E-4,9.80077E-4,0.00118992,0.00143224,0.00168995,0.00207812,0.00253633,0.00302957,0.00365831,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,0.00696751,0.0120506,0.0174249,0.0228193,0.0260899,0.0275725,0.0271906,0.0188932,0.0125521,0.00820538,0.00376273,0.00185554,9.75486E-4,2.6791E-4,9.05966E-5,3.69915E-5,1.06274E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,H2 central production,gas,H2 central production,natural gas steam reforming CCS,0.0,0.0,0.0018621,0.00407204,0.00731165,0.0116529,0.0187073,0.0283755,0.040232,0.054362,0.0662715,0.0748856,0.0910591,0.104972,0.118327,0.136316,0.155899,0.173068,0.18403,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,0.00135082,0.00257791,0.00413716,0.00610058,0.0089399,0.0122726,0.0159456,0.0271802,0.0458994,0.0800019,0.0996738,0.123039,0.14866,0.184385,0.230475,0.283831,0.334756,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,0.00128978,0.00247177,0.00398514,0.00590712,0.00870947,0.0120413,0.0157734,0.0187954,0.0211895,0.0230438,0.0293052,0.0370383,0.0459751,0.0587569,0.0751561,0.0949018,0.113944,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,7.07856E-4,0.00126126,0.00186723,0.00256947,0.00359953,0.00472929,0.00594272,0.00679076,0.00737475,0.00775082,0.00891062,0.0103174,0.0121282,0.014741,0.0183345,0.0229552,0.0281553,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,8.52981E-4,0.00149753,0.00230884,0.00329517,0.00448234,0.00589761,0.00751939,0.00891859,0.0103893,0.0119433,0.0141703,0.0164841,0.0187226,0.0216819,0.0244737,0.0266863,0.0287409,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,0.00700523,0.0136218,0.0219431,0.0322293,0.0443944,0.0580965,0.0724137,0.0802546,0.0867452,0.0919747,0.0914503,0.0923999,0.092581,0.0823642,0.0716178,0.0605058,0.0440978,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,1.92333E-5,4.53001E-5,8.31356E-5,1.2773E-4,1.55932E-4,1.69055E-4,1.79663E-4,1.06466E-4,5.12568E-5,2.43152E-5,4.64677E-6,1.20122E-6,3.74456E-7,3.6891E-8,9.46626E-9,4.14168E-9,2.10627E-9,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,H2 central production,biomass,H2 central production,biomass to H2 CCS,0.0,0.0,1.1521E-5,3.48505E-5,8.37192E-5,1.65328E-4,3.39744E-4,6.1903E-4,0.00103795,0.00189231,0.00309324,0.00454683,0.00830229,0.0120394,0.0166167,0.0251648,0.0284484,0.0277928,0.0207379,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,9.61959E-5,1.99838E-4,3.25621E-4,4.65244E-4,5.04161E-4,4.93182E-4,4.90208E-4,2.58767E-4,1.23058E-4,6.16647E-5,1.5655E-5,5.02298E-6,1.9297E-6,3.1982E-7,8.39688E-8,2.88574E-8,7.59031E-9,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,H2 central production,coal,H2 central production,coal chemical CCS,0.0,0.0,3.05822E-5,8.93351E-5,2.05319E-4,3.95802E-4,7.79429E-4,0.00135396,0.00214307,0.00326343,0.00461313,0.00587926,0.00772291,0.0100214,0.0125548,0.0147298,0.0178074,0.0212244,0.0242844,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,1.01151E-6,2.37324E-6,4.86339E-6,8.67584E-6,1.41111E-5,2.12799E-5,3.14624E-5,4.08593E-5,5.18696E-5,6.50583E-5,8.50828E-5,1.1482E-4,1.51165E-4,2.03E-4,2.75892E-4,3.62487E-4,4.99107E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,1.68721E-4,3.59984E-4,6.04484E-4,8.68374E-4,0.00104371,0.00115341,0.00126387,9.66305E-4,7.03689E-4,5.02412E-4,2.52014E-4,1.37221E-4,7.89946E-5,2.30908E-5,8.5687E-6,3.74868E-6,1.18888E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,H2 central production,gas,H2 central production,natural gas steam reforming CCS,0.0,0.0,4.5622E-5,1.25292E-4,2.67751E-4,4.83064E-4,8.49285E-4,0.00133456,0.00196101,0.002827,0.00379722,0.00471399,0.00632131,0.00812787,0.0101439,0.0125787,0.0159503,0.0198995,0.0249193,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,3.27909E-5,7.75462E-5,1.45551E-4,2.3783E-4,3.72456E-4,5.35469E-4,7.55208E-4,0.00140093,0.00260288,0.00497698,0.00682945,0.00938162,0.0125149,0.016663,0.0230272,0.0314184,0.0428028,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,3.13092E-5,7.43535E-5,1.40203E-4,2.30288E-4,3.62856E-4,5.25376E-4,7.4705E-4,9.68755E-4,0.00120162,0.00143357,0.00200793,0.00282414,0.00387041,0.00530988,0.00750899,0.0105051,0.0145692,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,1.08024E-5,2.42776E-5,4.08734E-5,6.09664E-5,8.8703E-5,1.21026E-4,1.61132E-4,1.96562E-4,2.23436E-4,2.49475E-4,3.08903E-4,3.83729E-4,4.73833E-4,5.85793E-4,7.63886E-4,0.00100224,0.00133763,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,2.07149E-5,4.58528E-5,8.59627E-5,1.40653E-4,2.10679E-4,2.95487E-4,4.06274E-4,5.17583E-4,6.50645E-4,8.08049E-4,0.00103734,0.00133811,0.001675,0.00208367,0.00259371,0.00312107,0.00385012,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,2.1304E-4,5.20267E-4,9.92644E-4,0.00164044,0.00246695,0.00345173,0.00472709,0.00578512,0.0069374,0.00804996,0.00851816,0.00895722,0.00928479,0.00817385,0.0075011,0.00693129,0.00582402,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,3.4957E-5,9.23035E-5,1.73485E-4,2.64495E-4,3.21676E-4,3.51228E-4,3.67624E-4,2.2921E-4,1.3747E-4,8.57379E-5,2.57362E-5,1.05359E-5,5.39539E-6,9.92197E-7,3.44177E-7,1.61386E-7,5.43927E-8,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,H2 central production,biomass,H2 central production,biomass to H2 CCS,0.0,0.0,1.91398E-5,5.4402E-5,1.2232E-4,2.39523E-4,4.90551E-4,9.02774E-4,0.00151932,0.0026958,0.00393149,0.00488257,0.00715192,0.00810958,0.00866704,0.00983989,0.00917203,0.00812149,0.00620891,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,1.75085E-4,4.09383E-4,6.85846E-4,9.75418E-4,0.0010581,0.00104514,0.00102234,5.65523E-4,3.32627E-4,2.13315E-4,7.54128E-5,3.48233E-5,1.96957E-5,4.73772E-6,1.67073E-6,7.06641E-7,1.77971E-7,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,H2 central production,coal,H2 central production,coal chemical CCS,0.0,0.0,4.91457E-5,1.28032E-4,2.72237E-4,5.25987E-4,0.00105072,0.00187134,0.00300965,0.00451596,0.00570355,0.00620046,0.00693591,0.00738081,0.00753012,0.00741551,0.007425,0.00756434,0.00757696,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,1.47202E-6,3.75038E-6,7.45421E-6,1.28712E-5,2.03418E-5,3.04393E-5,4.4516E-5,5.75934E-5,7.35877E-5,8.99804E-5,1.14337E-4,1.46087E-4,1.84212E-4,2.36644E-4,3.0456E-4,3.87152E-4,4.85656E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,3.03E-4,7.06279E-4,0.0011929,0.00169085,0.00199772,0.00219261,0.00234818,0.00179398,0.00140166,0.00108114,6.2452E-4,4.00109E-4,2.76585E-4,1.00854E-4,4.42725E-5,2.17863E-5,6.73856E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,H2 central production,gas,H2 central production,natural gas steam reforming CCS,0.0,0.0,7.65419E-5,2.02327E-4,4.11355E-4,7.37706E-4,0.00128954,0.00203778,0.00298709,0.00419189,0.00518644,0.00576363,0.00706409,0.00816493,0.00913959,0.0104269,0.011705,0.013049,0.0142548,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,5.8065E-5,1.45581E-4,2.69873E-4,4.33284E-4,6.62694E-4,9.41963E-4,0.00129942,0.00234892,0.00427938,0.00784249,0.0103774,0.0137084,0.0177105,0.0231969,0.0306487,0.0398513,0.0488074,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,5.54412E-5,1.39587E-4,2.59957E-4,4.19544E-4,6.45613E-4,9.24208E-4,0.00128538,0.0016243,0.00197558,0.00225895,0.00305108,0.00412662,0.00547722,0.00739201,0.00999428,0.0133247,0.016613,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,3.59537E-5,8.73448E-5,1.54439E-4,2.3771E-4,3.51212E-4,4.82399E-4,6.45602E-4,7.9346E-4,9.39295E-4,0.0010557,0.00133508,0.00169919,0.00217045,0.0028054,0.00366239,0.00470635,0.00579558,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,3.22415E-5,7.69189E-5,1.40327E-4,2.22954E-4,3.23477E-4,4.4795E-4,6.07287E-4,7.59619E-4,9.30426E-4,0.00108692,0.00130283,0.00154432,0.00179458,0.00207518,0.00240972,0.00277866,0.00317346,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,3.74002E-4,9.59476E-4,0.00180035,0.00290881,0.00422941,0.00578717,0.00769102,0.00902179,0.0102772,0.0110379,0.0108781,0.0107187,0.0104661,0.00880327,0.00760503,0.00664711,0.00510211,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,0.00448765,0.00814396,0.0118653,0.0153972,0.016534,0.016567,0.0160566,0.0106802,0.00660456,0.00419102,0.00127112,4.81649E-4,2.21273E-4,3.60068E-5,1.00335E-5,3.72222E-6,1.00541E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,H2 central production,biomass,H2 central production,biomass to H2 CCS,0.0,0.0,0.00237389,0.00448715,0.00829579,0.0136339,0.0238651,0.0383112,0.05561,0.0793678,0.0995029,0.112224,0.148753,0.154487,0.153093,0.165404,0.149547,0.128991,0.094098,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,0.0224841,0.0361318,0.0469119,0.0568079,0.0544881,0.0495174,0.0449901,0.0265948,0.0159226,0.0101938,0.0034873,0.00147797,7.48213E-4,1.57252E-4,4.58946E-5,1.58476E-5,3.27846E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,H2 central production,coal,H2 central production,coal chemical CCS,0.0,0.0,0.00601776,0.0103291,0.0184196,0.0297722,0.0505567,0.0780819,0.107608,0.128064,0.139819,0.139411,0.145491,0.143535,0.136493,0.129242,0.124108,0.121572,0.114997,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,2.07317E-4,3.66764E-4,5.85768E-4,8.73684E-4,0.00125454,0.00173706,0.00232662,0.00279693,0.00328812,0.00379442,0.00447681,0.0052868,0.00618369,0.00744615,0.00885199,0.010371,0.0118243,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,0.038724,0.0617611,0.081487,0.0980767,0.101583,0.100892,0.0977794,0.0716083,0.05281,0.0390901,0.0214324,0.0127434,0.00808045,0.00270406,0.00104062,4.41823E-4,1.17345E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,H2 central production,gas,H2 central production,natural gas steam reforming CCS,0.0,0.0,0.00953008,0.0168388,0.027933,0.0421378,0.0632569,0.0877767,0.111888,0.129677,0.139791,0.142927,0.162636,0.174254,0.181258,0.197224,0.208394,0.218682,0.221567,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,0.00738177,0.0125965,0.0184092,0.0250322,0.033335,0.0423858,0.0520288,0.0840774,0.137644,0.234177,0.283231,0.341415,0.403895,0.491453,0.594974,0.707933,0.785105,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,0.00704822,0.0120779,0.0177328,0.0242384,0.0324757,0.0415869,0.0514668,0.0581403,0.0635434,0.0674524,0.083273,0.102776,0.12491,0.156608,0.194016,0.236705,0.267233,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,0.00505267,0.0085331,0.0121398,0.0159939,0.0213262,0.0263246,0.0315869,0.0345986,0.0368439,0.0385041,0.0455536,0.0539005,0.0634439,0.0765757,0.0917146,0.10813,0.119962,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,0.00443781,0.00731013,0.0106571,0.0145167,0.0188707,0.0237928,0.0290415,0.0325277,0.0358271,0.0389042,0.0431267,0.0474635,0.0514819,0.0565597,0.0617924,0.0670305,0.0713971,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,0.0462737,0.0803238,0.118113,0.160538,0.201117,0.242957,0.283385,0.287841,0.289945,0.287492,0.261601,0.241403,0.22137,0.179193,0.146336,0.120188,0.086048,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,2.96919E-5,6.32936E-5,1.13803E-4,1.70801E-4,2.0596E-4,2.21722E-4,2.26345E-4,1.37348E-4,7.02813E-5,3.55197E-5,8.58473E-6,2.99075E-6,1.31707E-6,2.04268E-7,7.02869E-8,3.7055E-8,1.6793E-8,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,H2 central production,biomass,H2 central production,biomass to H2 CCS,0.0,0.0,1.70515E-5,4.28447E-5,8.51432E-5,1.59079E-4,3.30502E-4,6.20815E-4,0.00106608,0.00195837,0.00306685,0.00423954,0.00677645,0.00846582,0.0100032,0.0126689,0.0125972,0.011338,0.00836907,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,1.48619E-4,2.80171E-4,4.49537E-4,6.29499E-4,6.76169E-4,6.57084E-4,6.25265E-4,3.36769E-4,1.69539E-4,8.95899E-5,2.71828E-5,1.10856E-5,5.59141E-6,1.23324E-6,4.23374E-7,1.88336E-7,5.64769E-8,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,H2 central production,coal,H2 central production,coal chemical CCS,0.0,0.0,4.45651E-5,1.05457E-4,1.92657E-4,3.51784E-4,7.15096E-4,0.00130424,0.00214724,0.0033271,0.00452397,0.0054544,0.00643917,0.00739602,0.00819467,0.00865317,0.00930535,0.00991051,0.0100944,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,1.16859E-6,2.44267E-6,4.57929E-6,7.83343E-6,1.28838E-5,1.99078E-5,2.98153E-5,4.06914E-5,5.31267E-5,6.67557E-5,8.72996E-5,1.15498E-4,1.50385E-4,2.00009E-4,2.69629E-4,3.59865E-4,4.82018E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,2.58992E-4,4.93672E-4,7.89411E-4,0.00109686,0.00129214,0.00141303,0.00149989,0.00115079,8.46759E-4,6.07921E-4,3.25941E-4,1.96872E-4,1.28692E-4,4.41577E-5,1.90168E-5,9.63022E-6,3.30724E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,H2 central production,gas,H2 central production,natural gas steam reforming CCS,0.0,0.0,6.78327E-5,1.5651E-4,2.8385E-4,4.87828E-4,8.62277E-4,0.00138508,0.00206243,0.0029877,0.00388548,0.00462664,0.00582398,0.0070379,0.00829832,0.00988438,0.0117907,0.0138194,0.0157751,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,5.00012E-5,1.04069E-4,1.80377E-4,2.82488E-4,4.32999E-4,6.18304E-4,8.54916E-4,0.00157941,0.00287926,0.00534865,0.00713968,0.00965033,0.012801,0.0172243,0.0237586,0.0323684,0.042277,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,4.77419E-5,9.97842E-5,1.73749E-4,2.7353E-4,4.21838E-4,6.06649E-4,8.45682E-4,0.00109217,0.00132921,0.00154063,0.00209915,0.00290503,0.00395888,0.00548877,0.00774749,0.0108227,0.0143902,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,3.03745E-5,6.19693E-5,1.03108E-4,1.56336E-4,2.32276E-4,3.25828E-4,4.44111E-4,5.61485E-4,6.71666E-4,7.71184E-4,0.00101281,0.00135272,0.00179617,0.00241827,0.00331804,0.00450242,0.00590669,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,2.60432E-5,5.12426E-5,8.80357E-5,1.38156E-4,2.06896E-4,2.94731E-4,4.08573E-4,5.36737E-4,6.78066E-4,8.26808E-4,0.00102775,0.00126935,0.00153479,0.00185076,0.00225946,0.00273395,0.00331675,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,3.21309E-4,6.8643E-4,0.00120291,0.00189304,0.00274887,0.00377976,0.0050456,0.00604721,0.00696706,0.00769687,0.00765589,0.00768006,0.00767909,0.00660168,0.00592857,0.0053987,0.00437647,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,4.85419E-5,1.35844E-4,2.58327E-4,3.93003E-4,4.69919E-4,4.84639E-4,4.70638E-4,2.77577E-4,1.42109E-4,8.41004E-5,2.32854E-5,9.14187E-6,4.51222E-6,8.01861E-7,2.84417E-7,1.4071E-7,5.14987E-8,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,H2 central production,biomass,H2 central production,biomass to H2 CCS,0.0,0.0,2.58234E-5,7.68804E-5,1.82076E-4,3.57634E-4,7.29173E-4,0.00129068,0.0020636,0.00357214,0.00522897,0.00647362,0.00943104,0.010729,0.011506,0.0130985,0.0119917,0.0102317,0.00751188,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,2.43194E-4,6.0264E-4,0.00102126,0.00144919,0.00154473,0.00143977,0.00130502,6.82981E-4,3.43389E-4,2.10587E-4,7.01666E-5,3.13341E-5,1.72013E-5,4.06817E-6,1.44986E-6,6.33945E-7,1.6923E-7,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,H2 central production,coal,H2 central production,coal chemical CCS,0.0,0.0,6.56E-5,1.78542E-4,4.05189E-4,7.86309E-4,0.00156723,0.00269042,0.00411902,0.00602418,0.00766442,0.00827163,0.00908879,0.0096474,0.00983669,0.00962648,0.00950939,0.00941513,0.00915033,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,2.65743E-6,7.17741E-6,1.43637E-5,2.42028E-5,3.65727E-5,5.04995E-5,6.75105E-5,8.21044E-5,9.62027E-5,1.12781E-4,1.371E-4,1.70986E-4,2.10853E-4,2.6612E-4,3.3742E-4,4.1977E-4,5.21448E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,4.19175E-4,0.00103383,0.0017762,0.00251434,0.00292842,0.00305128,0.00305613,0.00224237,0.00159981,0.00119991,6.63443E-4,4.14159E-4,2.79442E-4,9.9612E-5,4.35249E-5,2.1614E-5,6.87392E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,H2 central production,gas,H2 central production,natural gas steam reforming CCS,0.0,0.0,1.03603E-4,2.87472E-4,6.12341E-4,0.00110064,0.00191186,0.00289919,0.00402726,0.00550474,0.00673395,0.00740693,0.00887783,0.010181,0.0113355,0.0128124,0.0142446,0.0155731,0.0167092,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,7.99742E-5,2.11738E-4,4.01809E-4,6.44864E-4,9.7478E-4,0.00132084,0.00171387,0.00300106,0.00520696,0.00941113,0.0121835,0.0159566,0.0204505,0.02658,0.0349157,0.0449553,0.0548618,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,7.63605E-5,2.03021E-4,3.87045E-4,6.24414E-4,9.49654E-4,0.00129594,0.00169536,0.00207526,0.00240379,0.00271078,0.00358209,0.00480339,0.00632458,0.0084701,0.0113857,0.0150313,0.0186738,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,4.24131E-5,1.08723E-4,1.99049E-4,3.09317E-4,4.64705E-4,6.2645E-4,8.00542E-4,9.52896E-4,0.00102038,0.00111106,0.00134425,0.00165545,0.00207337,0.00263477,0.00343215,0.00437502,0.00540297,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,5.43392E-5,1.37037E-4,2.52593E-4,3.93725E-4,5.51879E-4,7.13263E-4,8.93279E-4,0.00106265,0.00121911,0.00138044,0.00159742,0.00185601,0.00211753,0.00240935,0.00275154,0.00309274,0.00346571,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,5.17596E-4,0.00140555,0.00271817,0.0044243,0.00642416,0.00847414,0.0107061,0.0122933,0.013564,0.0144659,0.0139797,0.0136068,0.0131473,0.0109372,0.00935837,0.00806008,0.00611535,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,3.96791E-4,6.57662E-4,9.33784E-4,0.00119917,0.00121117,0.00110816,9.57832E-4,4.62646E-4,1.93093E-4,8.1526E-5,1.40041E-5,3.6672E-6,1.24105E-6,1.44628E-7,3.8373E-8,1.60822E-8,6.18973E-9,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,H2 central production,biomass,H2 central production,biomass to H2 CCS,0.0,0.0,2.29469E-4,4.59339E-4,7.73552E-4,0.0011275,0.00197212,0.00316864,0.00464975,0.00691066,0.00906783,0.0108689,0.0155909,0.0172418,0.0181608,0.0209921,0.0185692,0.0148051,0.0091932,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,0.00198586,0.00290915,0.00368095,0.00441865,0.00397397,0.00328058,0.00264152,0.00113244,4.65374E-4,2.0594E-4,4.55037E-5,1.42481E-5,5.64451E-6,9.85166E-7,2.62306E-7,9.06183E-8,2.13012E-8,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,H2 central production,coal,H2 central production,coal chemical CCS,0.0,0.0,6.0128E-4,0.00114198,0.00180017,0.00249918,0.00427932,0.00667853,0.00940061,0.011779,0.013411,0.0140031,0.0146898,0.0147869,0.0144608,0.0136207,0.0129952,0.0123826,0.0109798,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,1.77086E-5,3.11077E-5,4.8917E-5,7.25057E-5,1.01574E-4,1.37683E-4,1.80528E-4,2.07382E-4,2.32677E-4,2.57717E-4,2.86907E-4,3.26244E-4,3.70025E-4,4.30278E-4,5.02967E-4,5.86521E-4,6.70468E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,0.00346431,0.00515261,0.0065788,0.00771276,0.00762097,0.00709871,0.00640236,0.00394167,0.00239582,0.00146134,6.1737E-4,3.00505E-4,1.60622E-4,4.51264E-5,1.5656E-5,6.40384E-6,1.76032E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,H2 central production,gas,H2 central production,natural gas steam reforming CCS,0.0,0.0,9.12153E-4,0.00167131,0.00254141,0.00345253,0.00513426,0.0070496,0.00896289,0.0104957,0.0114073,0.0117157,0.0127494,0.0132166,0.0134945,0.0140612,0.0146108,0.0150508,0.0148118,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,6.69556E-4,0.00109188,0.00152976,0.00198976,0.00256127,0.00312036,0.00367456,0.00547225,0.00830248,0.0132375,0.0147983,0.0168693,0.0190838,0.0221132,0.0259967,0.0303721,0.0334666,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,6.39302E-4,0.00104692,0.00147355,0.00192666,0.00249525,0.00306154,0.00363487,0.00378411,0.00383283,0.00381294,0.00435087,0.00507815,0.00590191,0.00704669,0.00847732,0.0101552,0.0113913,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,5.60423E-4,8.77047E-4,0.00118002,0.00148535,0.00190106,0.00230773,0.00272376,0.00281243,0.00283696,0.00281729,0.0031509,0.00362029,0.00416019,0.00492204,0.00587982,0.0069996,0.00783928,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,3.92086E-4,6.35633E-4,9.06381E-4,0.00121262,0.00153973,0.00190539,0.00228914,0.00249153,0.00267151,0.00284033,0.00304522,0.00326188,0.00346111,0.00370633,0.00398374,0.00428231,0.00453059,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,0.00448643,0.00742874,0.0104781,0.013594,0.0165902,0.019427,0.0220593,0.0212616,0.0204315,0.0194897,0.0167459,0.0146312,0.0128254,0.00986961,0.0077936,0.00625544,0.00441329,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,1.39822E-4,3.24064E-4,5.81662E-4,9.19314E-4,0.001229,0.00154233,0.00205197,0.00187198,0.00164699,0.00153049,8.03258E-4,4.4175E-4,2.22925E-4,3.31277E-5,5.98196E-6,1.68738E-6,3.89584E-7,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,H2 central production,biomass,H2 central production,biomass to H2 CCS,0.0,0.0,7.4097E-5,1.7426E-4,3.91883E-4,7.56703E-4,0.0015812,0.00289236,0.00423491,0.00667225,0.00893453,0.0105309,0.0154716,0.0175452,0.0199721,0.0259871,0.0306687,0.0326707,0.027937,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,7.00527E-4,0.00143779,0.0023005,0.00339586,0.00406358,0.00464185,0.0058241,0.00465553,0.00385898,0.00346973,0.00187852,0.00112289,6.26414E-4,1.19716E-4,2.46988E-5,6.88879E-6,1.26467E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,H2 central production,coal,H2 central production,coal chemical CCS,0.0,0.0,1.8796E-4,3.9792E-4,8.61096E-4,0.00162229,0.00327218,0.00569422,0.00760878,0.0100255,0.0117075,0.0122058,0.014798,0.0164683,0.018419,0.0217675,0.0265388,0.0313386,0.0342061,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,4.31975E-6,9.38401E-6,1.81551E-5,3.21359E-5,5.34065E-5,8.41531E-5,1.28462E-4,1.68397E-4,2.17328E-4,2.78644E-4,3.72532E-4,4.9676E-4,6.41687E-4,8.58361E-4,0.00111106,0.00142749,0.00178993,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,0.00120681,0.00244983,0.00397335,0.00578896,0.00738773,0.00896401,0.0110104,0.0100763,0.00930692,0.00873049,0.00655952,0.00507395,0.00366354,0.00127538,4.23257E-4,1.64596E-4,4.20163E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,H2 central production,gas,H2 central production,natural gas steam reforming CCS,0.0,0.0,2.97405E-4,6.56092E-4,0.00132683,0.00236574,0.00426625,0.0068368,0.00919974,0.0120052,0.0141441,0.0156172,0.0203822,0.0247062,0.0298222,0.039478,0.0497828,0.060078,0.0680167,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,2.30111E-4,4.97781E-4,8.92168E-4,0.00145868,0.00237099,0.00360676,0.00525207,0.0100428,0.0191625,0.0378919,0.0546775,0.0760599,0.0996925,0.131712,0.168157,0.213545,0.252483,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,2.19713E-4,4.77286E-4,8.59385E-4,0.00141242,0.00230988,0.00353877,0.00519534,0.00694466,0.00884635,0.0109144,0.0160758,0.0228962,0.0308312,0.041972,0.0548347,0.0714009,0.0859401,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,6.69137E-5,1.30218E-4,2.0904E-4,3.09685E-4,4.72639E-4,6.75277E-4,9.33759E-4,0.00119732,0.00146403,0.00174077,0.00227681,0.00279865,0.00332673,0.003966,0.00478296,0.00589028,0.00704155,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,9.92396E-5,2.02228E-4,3.58998E-4,5.83956E-4,8.90055E-4,0.00129248,0.00179484,0.00222164,0.00270291,0.0032623,0.00404047,0.00494335,0.00590509,0.00720305,0.00866094,0.0102545,0.0116716,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,0.00159319,0.00352593,0.00639648,0.0105159,0.0162354,0.0236555,0.0325516,0.0392694,0.045792,0.0518901,0.054365,0.0554124,0.0549687,0.0473528,0.0409658,0.035806,0.0266862,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,1.48428E-4,3.28083E-4,5.75452E-4,8.89262E-4,0.00123699,0.0017609,0.00247833,0.00263392,0.00268254,0.00262681,0.00142527,7.01574E-4,2.41255E-4,2.76219E-5,5.32755E-6,1.51847E-6,3.6582E-7,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,H2 central production,biomass,H2 central production,biomass to H2 CCS,0.0,0.0,7.2307E-5,1.71571E-4,3.5944E-4,6.3205E-4,0.00110713,0.00157742,0.00200131,0.00296758,0.00382379,0.0045844,0.00850227,0.0113185,0.0155671,0.0234599,0.0279627,0.0297092,0.0263747,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,7.43878E-4,0.00145556,0.00227677,0.00328885,0.00411003,0.00533013,0.0069852,0.00634248,0.00587794,0.00540554,0.00293903,0.00162031,6.56646E-4,1.00638E-4,2.20446E-5,6.20375E-6,1.18763E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,H2 central production,coal,H2 central production,coal chemical CCS,0.0,0.0,1.77716E-4,3.88179E-4,7.73032E-4,0.00130503,0.00212144,0.00271944,0.00308837,0.00391029,0.0044668,0.00482744,0.0077494,0.0104004,0.0143519,0.0195988,0.0241763,0.0284891,0.032292,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,5.56075E-6,1.17801E-5,2.23001E-5,3.82712E-5,6.23869E-5,9.78014E-5,1.47854E-4,1.97574E-4,2.5663E-4,3.25611E-4,4.33752E-4,5.74463E-4,7.2484E-4,9.85998E-4,0.00130242,0.00166255,0.00210191,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,0.00126746,0.00247134,0.00388921,0.0054775,0.00698124,0.00890018,0.0111199,0.0109059,0.0107568,0.0102905,0.00772234,0.00575755,0.00350002,0.00109507,3.80074E-4,1.48635E-4,3.95161E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,H2 central production,gas,H2 central production,natural gas steam reforming CCS,0.0,0.0,2.93014E-4,6.48424E-4,0.00123098,0.00202354,0.00317162,0.00423298,0.00517048,0.00656509,0.00760791,0.00853843,0.0128622,0.0173654,0.0239776,0.0352872,0.0452441,0.0545539,0.0641701,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,2.38641E-4,5.00012E-4,8.62604E-4,0.00134603,0.00209599,0.00311472,0.00445132,0.00866448,0.0168956,0.0335806,0.0489743,0.0681515,0.0865298,0.116066,0.152241,0.193579,0.237979,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,2.27858E-4,4.79425E-4,8.30907E-4,0.00130334,0.00204196,0.00305601,0.00440324,0.00599157,0.00779985,0.00967255,0.014399,0.0205156,0.0267605,0.036986,0.0496445,0.0647251,0.0810031,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,5.64676E-5,1.0006E-4,1.49E-4,2.07036E-4,2.92834E-4,4.05707E-4,5.47887E-4,7.09799E-4,8.70226E-4,0.00102144,0.00131441,0.00154853,0.00170363,0.00193477,0.00228417,0.00273957,0.00336339,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,1.18663E-4,2.34775E-4,4.04542E-4,6.32217E-4,9.28005E-4,0.00130921,0.00178077,0.00220101,0.00266143,0.00316307,0.00389656,0.00479502,0.00575902,0.00729488,0.0089646,0.0106428,0.012528,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,0.00142197,0.00303266,0.00525661,0.00817928,0.0118655,0.016471,0.0219467,0.0261948,0.0305273,0.0342885,0.0356782,0.0363965,0.0357135,0.031461,0.0276626,0.0241654,0.0189045,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,8.3859E-5,1.96054E-4,3.33108E-4,4.99759E-4,5.5215E-4,5.40132E-4,4.9548E-4,2.66874E-4,1.22318E-4,5.55264E-5,1.08025E-5,3.35345E-6,1.32087E-6,1.8045E-7,5.53011E-8,2.62214E-8,1.13061E-8,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,H2 central production,biomass,H2 central production,biomass to H2 CCS,0.0,0.0,4.92997E-5,1.43364E-4,3.01838E-4,4.96757E-4,9.05563E-4,0.00155412,0.00241519,0.00399612,0.00570195,0.00724886,0.0110335,0.0128882,0.014276,0.0171339,0.0161089,0.013789,0.00962013,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,4.19576E-4,8.66218E-4,0.00130977,0.00183886,0.00181112,0.00159848,0.00136612,6.53183E-4,2.94828E-4,1.40224E-4,3.48728E-5,1.27852E-5,5.81679E-6,1.15617E-6,3.53909E-7,1.40032E-7,3.84431E-8,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,H2 central production,coal,H2 central production,coal chemical CCS,0.0,0.0,1.29965E-4,3.61662E-4,7.19709E-4,0.00111631,0.00196778,0.00327876,0.00488538,0.0068124,0.00843083,0.00933677,0.0104186,0.0111364,0.0115205,0.011411,0.0115956,0.0118006,0.0115491,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,5.67602E-6,1.31441E-5,2.32897E-5,3.66766E-5,5.21374E-5,7.05976E-5,9.2435E-5,1.08168E-4,1.2382E-4,1.39828E-4,1.62837E-4,1.97422E-4,2.36404E-4,2.90919E-4,3.6271E-4,4.47796E-4,5.61127E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,7.33774E-4,0.00154631,0.00238042,0.00324398,0.00347932,0.00346534,0.00331581,0.00227573,0.00151319,9.86596E-4,4.58683E-4,2.5181E-4,1.50027E-4,4.68161E-5,1.8254E-5,8.38365E-6,2.65893E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,H2 central production,gas,H2 central production,natural gas steam reforming CCS,0.0,0.0,1.95619E-4,5.18648E-4,9.79296E-4,0.00150831,0.00235507,0.00345473,0.00465326,0.00606776,0.00717812,0.00783211,0.00913736,0.0102072,0.0111683,0.0123943,0.0138643,0.0153906,0.0168108,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,1.42186E-4,3.3022E-4,5.62331E-4,8.45367E-4,0.00117103,0.00152531,0.00190487,0.00316132,0.00523382,0.00888773,0.0107498,0.0133986,0.0164311,0.0205001,0.026262,0.0334623,0.0413913,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,1.35761E-4,3.16625E-4,5.41668E-4,8.18559E-4,0.00114085,0.00149656,0.00188429,0.00218609,0.00241619,0.00256002,0.00316056,0.00403336,0.00508154,0.00653264,0.00856382,0.0111884,0.0140887,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,7.48323E-5,1.71278E-4,2.78748E-4,3.96386E-4,5.27019E-4,6.54279E-4,7.79075E-4,8.54374E-4,8.52273E-4,8.63748E-4,9.6839E-4,0.00114467,0.00137401,0.00165595,0.00212357,0.00266799,0.00333954,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,1.10781E-4,2.41452E-4,3.95641E-4,5.73911E-4,7.49307E-4,9.4328E-4,0.00115083,0.00131361,0.0014674,0.00161699,0.0018196,0.00206762,0.002308,0.00258549,0.00293321,0.00330118,0.00375483,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,9.03774E-4,0.00216911,0.0037812,0.00575202,0.00762497,0.00965789,0.0117475,0.0128127,0.0135374,0.0138113,0.0127102,0.0118819,0.0110868,0.00895837,0.00755909,0.00649847,0.00502397,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,8.8298E-5,2.12972E-4,3.78398E-4,5.71162E-4,6.82015E-4,7.53904E-4,7.39912E-4,4.14531E-4,1.96035E-4,9.18336E-5,1.74371E-5,4.51955E-6,1.43517E-6,1.46434E-7,4.07875E-8,2.09209E-8,1.16205E-8,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,H2 central production,biomass,H2 central production,biomass to H2 CCS,0.0,0.0,5.2815E-5,1.61965E-4,3.69507E-4,6.93144E-4,0.00131058,0.00229225,0.00396053,0.00718084,0.0113866,0.0162489,0.0285759,0.0399815,0.0534032,0.0775191,0.0842381,0.0782208,0.0570662,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,4.41638E-4,9.39861E-4,0.00148392,0.00208662,0.00222073,0.00222453,0.00202876,0.00100864,4.70953E-4,2.3276E-4,5.83551E-5,1.86657E-5,7.2453E-6,1.21788E-6,3.41878E-7,1.36423E-7,4.11325E-8,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,H2 central production,coal,H2 central production,coal chemical CCS,0.0,0.0,1.40121E-4,4.13676E-4,8.98854E-4,0.00163443,0.00293657,0.00487707,0.00810335,0.012363,0.0169608,0.0209995,0.0266464,0.0334502,0.0407014,0.0461872,0.0540238,0.0614544,0.0673408,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,3.96055E-6,1.0103E-5,1.9692E-5,3.35553E-5,5.1621E-5,7.60381E-5,1.08383E-4,1.3607E-4,1.69513E-4,2.09846E-4,2.71176E-4,3.60464E-4,4.69856E-4,6.21736E-4,8.41851E-4,0.00111717,0.0015322,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,7.74425E-4,0.0016895,0.0027373,0.00383785,0.00444169,0.0049036,0.00508842,0.00372706,0.00264994,0.00185382,9.1043E-4,4.88529E-4,2.7985E-4,8.15723E-5,3.12095E-5,1.47675E-5,5.06086E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,H2 central production,gas,H2 central production,natural gas steam reforming CCS,0.0,0.0,2.09175E-4,5.83108E-4,0.00118666,0.00204379,0.00333244,0.00505872,0.0075476,0.0107536,0.0140308,0.0169559,0.0220486,0.0275761,0.033661,0.0407031,0.0507361,0.0622843,0.076623,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,1.50475E-4,3.63224E-4,6.55408E-4,0.00103814,0.00154397,0.00218449,0.00298694,0.00536871,0.00970454,0.0180974,0.0241282,0.0323463,0.0424038,0.0553861,0.0763066,0.105385,0.145116,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,1.43676E-4,3.48269E-4,6.31325E-4,0.00100522,0.00150418,0.00214332,0.00295468,0.00371252,0.00448009,0.00521277,0.00709395,0.00973718,0.0131139,0.0176495,0.0248829,0.0352365,0.0493945,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,8.77501E-5,1.9878E-4,3.35823E-4,5.01559E-4,7.0932E-4,9.57944E-4,0.00125608,0.00151157,0.00172148,0.0018784,0.00230591,0.00286577,0.00354202,0.004366,0.0057188,0.0076413,0.0103051,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,8.64947E-5,2.04768E-4,3.66548E-4,5.75233E-4,8.13421E-4,0.00111113,0.00148731,0.00183988,0.00226055,0.00275373,0.00346516,0.00437981,0.00539788,0.00657348,0.00809626,0.00972801,0.0118903,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,0.00102281,0.00252189,0.00463032,0.00741946,0.010554,0.01445,0.0193229,0.0229778,0.0267119,0.0300793,0.0308108,0.031548,0.0320371,0.0275396,0.0250353,0.0231521,0.0195134,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,4.50358E-4,0.00104678,0.00192745,0.00289333,0.00339639,0.00357373,0.00352874,0.00208346,0.0010347,5.04487E-4,1.05086E-4,3.35157E-5,1.35776E-5,1.9131E-6,6.18411E-7,3.09274E-7,1.44918E-7,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,H2 central production,biomass,H2 central production,biomass to H2 CCS,0.0,0.0,2.63399E-4,7.13004E-4,0.00141294,0.00268837,0.0054403,0.0100261,0.0167853,0.0304383,0.0472974,0.0649517,0.10823,0.138417,0.168118,0.219859,0.223356,0.203439,0.151922,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,0.00225351,0.004633,0.00761604,0.0106642,0.0111512,0.0105899,0.00974265,0.00510402,0.00249459,0.00127378,3.39455E-4,1.28641E-4,6.06588E-5,1.25966E-5,4.06836E-6,1.68692E-6,4.94939E-7,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,H2 central production,coal,H2 central production,coal chemical CCS,0.0,0.0,6.93062E-4,0.00175847,0.00317904,0.00594149,0.0117668,0.0210699,0.0338498,0.0518006,0.0698851,0.0836455,0.102177,0.119286,0.134864,0.144733,0.158892,0.172535,0.182038,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,1.25235E-5,3.06125E-5,6.32752E-5,1.16145E-4,1.93186E-4,2.97884E-4,4.34131E-4,5.70547E-4,7.20917E-4,8.83484E-4,0.00112879,0.00148514,0.00193112,0.00259221,0.00348791,0.00456648,0.00602106,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,0.00393794,0.00817182,0.0133295,0.0185733,0.0213003,0.0227862,0.0234496,0.0176096,0.0127001,0.00891186,0.00447824,0.00259623,0.00163497,5.3911E-4,2.23187E-4,1.07881E-4,3.65726E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,H2 central production,gas,H2 central production,natural gas steam reforming CCS,0.0,0.0,0.00104574,0.00260252,0.00472449,0.0082471,0.0141975,0.0223629,0.0324341,0.0463277,0.0596549,0.070287,0.0895214,0.10836,0.128533,0.153663,0.185112,0.218808,0.257593,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,7.62448E-4,0.00172444,0.00303527,0.0047814,0.0071352,0.00997491,0.0133961,0.0243138,0.0437051,0.079989,0.105181,0.140815,0.185754,0.248408,0.341382,0.461627,0.61398,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,7.27996E-4,0.00165345,0.00292374,0.00462978,0.00695129,0.00978689,0.0132514,0.0168133,0.0201764,0.02304,0.0309245,0.0423894,0.0574468,0.0791586,0.111322,0.15435,0.208986,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,3.6332E-4,7.67822E-4,0.00125489,0.00186403,0.00265454,0.00360381,0.00474377,0.00587837,0.00680869,0.00756788,0.0095241,0.0121921,0.0155168,0.0199659,0.0264331,0.0346902,0.0453948,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,3.02329E-4,6.83831E-4,0.00127114,0.00210904,0.00316513,0.00448169,0.0060546,0.00773527,0.00955181,0.011453,0.0141359,0.0174348,0.0210989,0.0255972,0.0310779,0.0367952,0.0435782,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,0.00545278,0.012521,0.022057,0.0346986,0.0490023,0.0660973,0.0861355,0.102593,0.117839,0.129566,0.129784,0.130428,0.130831,0.112725,0.101244,0.0916501,0.0751056,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,5.21155E-5,1.19836E-4,2.27655E-4,3.88284E-4,6.00246E-4,9.6066E-4,0.00151577,0.00177743,0.00201833,0.0021691,0.00126695,5.67259E-4,1.91893E-4,2.30903E-5,4.65443E-6,1.3948E-6,3.45427E-7,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,H2 central production,biomass,H2 central production,biomass to H2 CCS,0.0,0.0,2.51753E-5,6.29144E-5,1.43379E-4,2.77849E-4,5.33835E-4,8.17619E-4,0.00109018,0.00161995,0.00208954,0.00263398,0.00550649,0.00870623,0.0131157,0.0201014,0.024795,0.0275785,0.0250963,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,2.61187E-4,5.31668E-4,9.00696E-4,0.001436,0.0019944,0.00290605,0.00425809,0.00424118,0.00434086,0.0043482,0.00252306,0.00130275,5.25265E-4,8.43424E-5,1.92858E-5,5.70272E-6,1.12157E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,H2 central production,coal,H2 central production,coal chemical CCS,0.0,0.0,6.16796E-5,1.42529E-4,3.09087E-4,5.74696E-4,0.0010215,0.00139585,0.00164877,0.00207969,0.0023708,0.00270246,0.00494264,0.00798667,0.0120944,0.0167791,0.0214257,0.0264377,0.0307252,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,1.27512E-6,2.87721E-6,5.92118E-6,1.13565E-5,2.10593E-5,3.72978E-5,6.26929E-5,9.28341E-5,1.32631E-4,1.83801E-4,2.6207E-4,3.5972E-4,4.67189E-4,6.33759E-4,8.44887E-4,0.00110332,0.00142325,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,4.4456E-4,9.03142E-4,0.00154038,0.00239404,0.00338414,0.00481551,0.00668172,0.00709032,0.00761216,0.00788788,0.0062353,0.00457307,0.00284518,9.23811E-4,3.33788E-4,1.37009E-4,3.73977E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,H2 central production,gas,H2 central production,natural gas steam reforming CCS,0.0,0.0,1.02119E-4,2.37647E-4,4.90416E-4,8.88559E-4,0.00153097,0.00221553,0.00288594,0.00375104,0.00445452,0.00530083,0.00872406,0.013424,0.0200941,0.0301419,0.0400368,0.0505683,0.0610014,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,8.35992E-5,1.82836E-4,3.42103E-4,5.88973E-4,0.00101489,0.00167031,0.0026232,0.00542712,0.0112902,0.0240682,0.0369091,0.0534499,0.0715286,0.0987069,0.134393,0.179128,0.225923,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,7.98216E-5,1.75309E-4,3.29532E-4,5.70295E-4,9.88733E-4,0.00163882,0.00259486,0.0037529,0.00521213,0.0069326,0.0108517,0.01609,0.0221212,0.0314543,0.0438244,0.0598934,0.0768995,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,3.4274E-5,6.71079E-5,1.11052E-4,1.70579E-4,2.66755E-4,4.07203E-4,5.98546E-4,8.10167E-4,0.00104819,0.00132167,0.00186213,0.00246894,0.00307576,0.00393253,0.00505071,0.00647036,0.00806929,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,3.08371E-5,6.48923E-5,1.21935E-4,2.13099E-4,3.54481E-4,5.6348E-4,8.51711E-4,0.00115261,0.00151745,0.00195851,0.00256191,0.00332538,0.00417463,0.0053167,0.00662256,0.00803297,0.00949186,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,5.67169E-4,0.00126013,0.00236993,0.00406457,0.00652031,0.0100215,0.0146881,0.0185829,0.0230424,0.0277422,0.0304052,0.0330028,0.0346804,0.0317354,0.0291107,0.0266472,0.0211325,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,4.64028E-4,8.08217E-4,0.00120867,0.00164283,0.00190731,0.00188064,0.00173473,9.04218E-4,3.99653E-4,1.74742E-4,3.06649E-5,7.23801E-6,2.0812E-6,1.96382E-7,4.72172E-8,2.14968E-8,1.06778E-8,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,H2 central production,biomass,H2 central production,biomass to H2 CCS,0.0,0.0,2.77288E-4,6.1069E-4,0.00114795,0.0018652,0.00322981,0.00565505,0.00913218,0.0152979,0.0225084,0.0298465,0.0484788,0.0624523,0.0771912,0.107258,0.111577,0.0998015,0.0674687,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,0.00232096,0.00356745,0.00474483,0.00601815,0.0062478,0.00555255,0.00476133,0.00220236,9.6062E-4,4.42729E-4,1.0234E-4,2.98192E-5,1.05028E-5,1.6416E-6,4.03825E-7,1.43604E-7,3.8037E-8,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,H2 central production,coal,H2 central production,coal chemical CCS,0.0,0.0,7.35401E-4,0.0015566,0.00277191,0.0043289,0.00706248,0.0120116,0.0186472,0.0262967,0.0334937,0.0385591,0.0452506,0.0523031,0.0588409,0.0637679,0.0709419,0.0776023,0.0793996,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,2.13959E-5,3.85888E-5,6.44229E-5,1.00061E-4,1.52295E-4,2.19286E-4,3.04809E-4,3.71711E-4,4.43033E-4,5.17511E-4,6.20431E-4,7.49541E-4,8.91844E-4,0.00109303,0.00136822,0.00173353,0.0022248,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,0.00406926,0.00640542,0.00870351,0.0109091,0.0120973,0.0121983,0.0118716,0.0080599,0.00533536,0.00347546,0.001576,7.73799E-4,4.05237E-4,1.10972E-4,3.83665E-5,1.66257E-5,5.10353E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,H2 central production,gas,H2 central production,natural gas steam reforming CCS,0.0,0.0,0.00109832,0.00220036,0.00370052,0.00555275,0.00836075,0.0124981,0.0174367,0.0229603,0.0278192,0.0312735,0.0376116,0.0432585,0.0486837,0.0559794,0.0655038,0.0764256,0.0870558,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,7.9056E-4,0.00137557,0.00207348,0.00291383,0.00409788,0.00542104,0.00694192,0.0115416,0.0193824,0.0336127,0.0413806,0.0509062,0.0613521,0.0759197,0.0970687,0.126005,0.159074,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,7.54837E-4,0.00131893,0.00199729,0.00282143,0.00399225,0.00531886,0.00686694,0.00798116,0.00894787,0.0096818,0.0121663,0.0153242,0.0189739,0.0241929,0.0316533,0.0421309,0.0541456,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,5.46404E-4,9.22713E-4,0.0013292,0.00180397,0.00244852,0.00316651,0.00399695,0.00453893,0.00498486,0.0053157,0.00641394,0.00777955,0.00933357,0.011472,0.0145233,0.0187273,0.0236309,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,4.60533E-4,7.75364E-4,0.00118031,0.00167305,0.00229938,0.00304443,0.00391761,0.00461773,0.00535518,0.0060995,0.00710225,0.00819646,0.00927791,0.0106304,0.01234,0.0143935,0.0169102,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,0.00481867,0.0085684,0.0130433,0.0183769,0.0243133,0.0309282,0.0382693,0.0413373,0.0439932,0.0455198,0.0424125,0.0394921,0.0366605,0.0297391,0.0252499,0.0221456,0.0174394,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,2.3574E-5,4.40016E-5,6.8773E-5,9.13807E-5,1.00519E-4,1.03001E-4,9.96998E-5,5.87122E-5,3.49348E-5,2.32338E-5,8.02767E-6,3.85485E-6,2.32967E-6,5.09276E-7,1.68071E-7,6.52123E-8,1.92502E-8,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,H2 central production,biomass,H2 central production,biomass to H2 CCS,0.0,0.0,1.32956E-5,2.85122E-5,4.88126E-5,8.3185E-5,1.54047E-4,2.65754E-4,4.12885E-4,6.83524E-4,9.22935E-4,0.00109752,0.00153523,0.00165055,0.00166039,0.00184977,0.00174353,0.00159919,0.00122462,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,1.18029E-4,1.94931E-4,2.71862E-4,3.36961E-4,3.30583E-4,3.06444E-4,2.77232E-4,1.44901E-4,8.45389E-5,5.75367E-5,2.28723E-5,1.21217E-5,7.8985E-6,2.16642E-6,7.41813E-7,2.7074E-7,6.23664E-8,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,H2 central production,coal,H2 central production,coal chemical CCS,0.0,0.0,3.45173E-5,6.92001E-5,1.0884E-4,1.8291E-4,3.30277E-4,5.51205E-4,8.18106E-4,0.00114415,0.00133428,0.00138749,0.00149603,0.00152428,0.00147914,0.00146045,0.00146847,0.00152325,0.00150067,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,1.35138E-6,2.31991E-6,3.57044E-6,5.20205E-6,7.10282E-6,9.56153E-6,1.26999E-5,1.50997E-5,1.81815E-5,2.19485E-5,2.79264E-5,3.58047E-5,4.49654E-5,5.88005E-5,7.49737E-5,9.30539E-5,1.13713E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,2.05134E-4,3.41092E-4,4.73349E-4,5.84663E-4,6.24869E-4,6.43586E-4,6.37187E-4,4.57896E-4,3.45391E-4,2.7157E-4,1.6631E-4,1.14833E-4,8.60881E-5,3.49245E-5,1.52804E-5,6.88422E-6,2.00443E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,H2 central production,gas,H2 central production,natural gas steam reforming CCS,0.0,0.0,5.29965E-5,1.04737E-4,1.63993E-4,2.55994E-4,4.04654E-4,5.99556E-4,8.11549E-4,0.00106396,0.00122683,0.00132039,0.00158675,0.0017958,0.00195822,0.00228329,0.00256229,0.00284633,0.00302611,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,3.94916E-5,7.13887E-5,1.07205E-4,1.4996E-4,2.07487E-4,2.76714E-4,3.52764E-4,5.98059E-4,0.0010337,0.00187759,0.00250257,0.00333742,0.00434108,0.00589872,0.00773444,0.00973682,0.0114726,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,3.77071E-5,6.84495E-5,1.03266E-4,1.45205E-4,2.02139E-4,2.71498E-4,3.48954E-4,4.13563E-4,4.77205E-4,5.40822E-4,7.35782E-4,0.00100466,0.00134254,0.00187971,0.00252214,0.0032556,0.00390505,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,3.15405E-5,4.64948E-5,6.26698E-5,8.13828E-5,1.06713E-4,1.36008E-4,1.6756E-4,1.91377E-4,2.14173E-4,2.36855E-4,3.00855E-4,3.88468E-4,4.97715E-4,6.68653E-4,8.72139E-4,0.0011007,0.00131559,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,2.76231E-5,4.49595E-5,6.41068E-5,8.65861E-5,1.0996E-4,1.38689E-4,1.71736E-4,1.98683E-4,2.28916E-4,2.62567E-4,3.12595E-4,3.68374E-4,4.22821E-4,4.96641E-4,5.73507E-4,6.51123E-4,7.24704E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,2.35579E-4,4.52677E-4,7.04721E-4,0.00100868,0.00135198,0.00176365,0.00219093,0.00244392,0.00265312,0.00282052,0.00278048,0.00272852,0.00264705,0.00229169,0.00197151,0.00168755,0.00125296,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,1.7527E-4,3.27817E-4,5.14215E-4,7.19023E-4,8.18785E-4,8.60657E-4,8.03078E-4,4.18544E-4,1.87527E-4,8.36178E-5,1.49242E-5,3.61898E-6,1.06968E-6,1.0167E-7,2.50205E-8,1.05246E-8,5.05436E-9,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,H2 central production,biomass,H2 central production,biomass to H2 CCS,0.0,0.0,1.04988E-4,2.49553E-4,5.00786E-4,8.68777E-4,0.00158639,0.00263477,0.00431666,0.00730987,0.0110581,0.0151925,0.0257119,0.0348264,0.0454385,0.0661122,0.0718859,0.0679302,0.0480851,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,8.76619E-4,0.00144664,0.00201674,0.0026273,0.00266493,0.00253856,0.00220138,0.00101805,4.50398E-4,2.11996E-4,5.01385E-5,1.50717E-5,5.48422E-6,8.7448E-7,2.20418E-7,7.30011E-8,1.81977E-8,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,H2 central production,coal,H2 central production,coal chemical CCS,0.0,0.0,2.78687E-4,6.37585E-4,0.00121733,0.00204646,0.00356011,0.00561165,0.00883644,0.0125919,0.0164794,0.0196393,0.0239422,0.0290373,0.0344057,0.0388286,0.04513,0.0519761,0.0563305,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,4.17977E-6,8.30778E-6,1.47054E-5,2.36173E-5,3.68782E-5,5.51224E-5,7.90897E-5,9.81532E-5,1.20212E-4,1.45334E-4,1.83078E-4,2.33462E-4,2.93612E-4,3.83435E-4,5.00738E-4,6.3685E-4,8.23954E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,0.00153752,0.00260095,0.00371812,0.00482759,0.00534179,0.00560755,0.00552963,0.00377443,0.00255047,0.00170692,7.96547E-4,4.06028E-4,2.21286E-4,6.22478E-5,2.21938E-5,9.36802E-6,2.81609E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,H2 central production,gas,H2 central production,natural gas steam reforming CCS,0.0,0.0,4.15743E-4,8.98333E-4,0.00160884,0.00256326,0.00402915,0.00580946,0.00822232,0.0109385,0.0136057,0.0158044,0.0196871,0.0236766,0.0279605,0.033356,0.0406543,0.0489865,0.0581031,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,2.98818E-4,5.59271E-4,8.8982E-4,0.00130478,0.00186002,0.00250183,0.00324908,0.00544809,0.00937713,0.0167806,0.0213844,0.0274719,0.0346738,0.0444095,0.0589776,0.0776934,0.100275,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,2.85315E-4,5.36244E-4,8.57123E-4,0.0012634,0.00181207,0.00245467,0.00321399,0.00376741,0.00432895,0.00483349,0.00628724,0.00826983,0.0107233,0.0141517,0.0192321,0.0259776,0.0341314,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,1.20136E-4,2.05875E-4,2.97841E-4,4.06755E-4,5.42524E-4,6.99549E-4,8.75925E-4,9.91926E-4,0.00108509,0.00117513,0.00141772,0.00173537,0.0021128,0.00261064,0.00337465,0.00437541,0.00559886,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,1.03793E-4,1.92071E-4,3.11541E-4,4.61316E-4,6.55397E-4,8.97003E-4,0.00119472,0.00144412,0.00173727,0.00206954,0.0025331,0.0030819,0.00367488,0.00442219,0.00526946,0.00609744,0.00699527,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,0.00217792,0.00415014,0.00667914,0.00986969,0.0133559,0.0172477,0.0217615,0.024038,0.0265828,0.0287706,0.0282154,0.0277675,0.0272284,0.022995,0.0202168,0.017949,0.0141325,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,7.16242E-4,0.0013124,0.00197951,0.00263872,0.00292134,0.00294707,0.00289867,0.00149859,6.52334E-4,2.81766E-4,4.81098E-5,1.10234E-5,3.0691E-6,2.69269E-7,6.06849E-8,2.34938E-8,1.04938E-8,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,H2 central production,biomass,H2 central production,biomass to H2 CCS,0.0,0.0,4.29671E-4,0.00100834,0.00197834,0.00336408,0.00622362,0.0104897,0.0162485,0.0265986,0.0393533,0.0528053,0.0866463,0.112526,0.140966,0.195063,0.198772,0.176021,0.116835,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,0.0035822,0.00578981,0.00775566,0.00961831,0.00945801,0.00861362,0.00792463,0.00364256,0.00156614,7.14591E-4,1.62182E-4,4.61795E-5,1.58804E-5,2.35775E-6,5.45467E-7,1.65812E-7,3.7941E-8,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,H2 central production,coal,H2 central production,coal chemical CCS,0.0,0.0,0.00114117,0.0025837,0.0048421,0.00802519,0.0142186,0.0228489,0.0334289,0.0458671,0.0586892,0.0682812,0.0805814,0.093594,0.106324,0.113692,0.123719,0.133683,0.136623,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,2.70145E-5,5.27502E-5,9.37185E-5,1.51978E-4,2.36216E-4,3.47481E-4,4.97041E-4,6.00636E-4,7.15517E-4,8.45523E-4,0.00102353,0.00125666,0.00152125,0.00188546,0.00233539,0.00283364,0.00346825,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,0.00628436,0.0104271,0.0143749,0.0178896,0.0194564,0.0199578,0.0202084,0.0135945,0.00895442,0.00582741,0.00261839,0.00126953,6.57525E-4,1.73289E-4,5.71092E-5,2.22983E-5,6.20638E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,H2 central production,gas,H2 central production,natural gas steam reforming CCS,0.0,0.0,0.00170118,0.00362568,0.00633355,0.00985025,0.0156043,0.0226929,0.0308026,0.039742,0.0483112,0.0547325,0.0658906,0.0757278,0.0855149,0.0963641,0.109614,0.123498,0.137614,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,0.00122166,0.00224566,0.00345646,0.00488524,0.00691037,0.00920659,0.0119904,0.0197021,0.0331186,0.057761,0.0711033,0.087204,0.105077,0.126852,0.156791,0.192513,0.232415,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,0.00116645,0.0021532,0.00332945,0.00473032,0.00673226,0.00903305,0.0118609,0.0136242,0.0152892,0.0166375,0.0209051,0.0262509,0.0324964,0.0404233,0.0511282,0.0643687,0.0791092,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,9.28556E-4,0.00164793,0.00242165,0.00329005,0.00450621,0.00585302,0.00742331,0.00826579,0.0088827,0.00930565,0.0109258,0.0127988,0.0149358,0.0175668,0.021228,0.0257733,0.0307927,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,6.24281E-4,0.00113308,0.00182228,0.00268229,0.0037867,0.00510728,0.00670307,0.00783014,0.00910354,0.0104981,0.0123448,0.0144188,0.0165401,0.0189687,0.021581,0.0240826,0.0268498,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,0.00862761,0.0162007,0.0251658,0.0357372,0.0482013,0.0620513,0.0780001,0.0840561,0.0905373,0.0951452,0.0899404,0.0843964,0.0790495,0.0632689,0.0522655,0.0438292,0.0331812,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,5.73031E-4,0.00138803,0.00258508,0.0042443,0.00636606,0.00965117,0.0143668,0.0158395,0.0167012,0.0163936,0.00872393,0.00333506,0.00102976,1.11011E-4,1.99012E-5,5.30606E-6,1.1654E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,H2 central production,biomass,H2 central production,biomass to H2 CCS,0.0,0.0,3.04051E-4,7.27442E-4,0.00160072,0.00293652,0.00511366,0.00730207,0.00915081,0.0127506,0.0154798,0.0185529,0.0357535,0.0522952,0.0705742,0.0965896,0.105877,0.104759,0.0845543,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,0.00287094,0.00615812,0.010228,0.015698,0.0211495,0.0291404,0.0401983,0.0375781,0.0356816,0.032696,0.0172622,0.00767778,0.0028195,4.05468E-4,8.2451E-5,2.16919E-5,3.78387E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,H2 central production,coal,H2 central production,coal chemical CCS,0.0,0.0,7.71642E-4,0.00164702,0.00343408,0.00602096,0.0095681,0.0121861,0.0135462,0.0161175,0.0173852,0.0189394,0.0320014,0.0480079,0.0650791,0.080627,0.0914942,0.10043,0.10352,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,2.474E-5,5.9586E-5,1.25674E-4,2.36315E-4,4.20793E-4,7.10829E-4,0.00113856,0.00157024,0.0020807,0.00266036,0.00338739,0.00411838,0.00481618,0.00578834,0.00684185,0.00795747,0.00902313,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,0.00494665,0.0104585,0.0174503,0.0260414,0.0353187,0.0474997,0.0622281,0.0619171,0.0617797,0.0588298,0.0422105,0.0270926,0.0152839,0.0044405,0.00142653,5.2095E-4,1.26122E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,H2 central production,gas,H2 central production,natural gas steam reforming CCS,0.0,0.0,0.00122021,0.00274843,0.00548932,0.00944341,0.0149299,0.0202437,0.0248676,0.0303553,0.0338398,0.0379347,0.0571639,0.0804609,0.108097,0.144845,0.170992,0.192126,0.20556,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,9.43394E-4,0.0021167,0.00386498,0.00637065,0.010406,0.0161483,0.02395,0.0464027,0.0898979,0.177258,0.246748,0.318382,0.384544,0.474374,0.574098,0.680732,0.76149,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,9.00766E-4,0.00202955,0.00372296,0.00616862,0.0101378,0.0158439,0.0236913,0.0320879,0.0415013,0.0510575,0.0725468,0.0958421,0.118925,0.151166,0.187209,0.22761,0.259195,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,8.10457E-4,0.00174074,0.00301616,0.00471659,0.00729631,0.0107224,0.0150814,0.0191341,0.0229911,0.0264183,0.0340285,0.0403431,0.0451168,0.050894,0.0573353,0.0650095,0.0711422,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,5.46369E-4,0.00121288,0.00229637,0.00388487,0.0061486,0.00924653,0.0132228,0.0166065,0.0201906,0.0238884,0.0281057,0.0325365,0.0367713,0.0417263,0.0465263,0.0509927,0.0545801,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,0.00608715,0.0138416,0.025284,0.0414454,0.0629162,0.0911178,0.126135,0.149234,0.172157,0.191473,0.19101,0.186139,0.176658,0.145342,0.119631,0.0987259,0.0713727,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,0.00136382,0.00243201,0.00379386,0.00533588,0.0071079,0.00899721,0.0108009,0.0107192,0.0093102,0.00714211,0.00300061,9.09955E-4,2.74441E-4,2.85992E-5,5.0005E-6,1.31454E-6,2.82267E-7,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,H2 central production,biomass,H2 central production,biomass to H2 CCS,0.0,0.0,8.5491E-6,1.71823E-5,2.93639E-5,4.97518E-5,1.04211E-4,2.03358E-4,3.89967E-4,9.82531E-4,0.00215745,0.00415344,0.0106908,0.0161381,0.020049,0.025971,0.0274298,0.0265574,0.0208307,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,0.00586957,0.00929902,0.0129672,0.0170504,0.0204154,0.0236253,0.0265756,0.0226612,0.018245,0.0135771,0.00584809,0.00212397,7.56135E-4,1.04921E-4,2.07759E-5,5.38275E-6,9.16735E-7,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,H2 central production,coal,H2 central production,coal chemical CCS,0.0,0.0,5.17653E-6,1.12545E-5,2.06536E-5,3.67531E-5,8.42662E-5,1.77688E-4,3.57953E-4,9.51697E-4,0.00213267,0.00404283,0.00950466,0.0148744,0.0184907,0.0216475,0.0236768,0.0254427,0.0255,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,4.80255E-5,8.28842E-5,1.29063E-4,1.88683E-4,2.72986E-4,3.82815E-4,5.19454E-4,6.3975E-4,7.68349E-4,9.0265E-4,0.00108653,0.00123812,0.00137893,0.00159747,0.00183174,0.00208957,0.00232995,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,0.00976653,0.015406,0.021255,0.0270444,0.0320713,0.0365318,0.0397712,0.0348444,0.0291634,0.0230412,0.0139564,0.0077266,0.00417309,0.00116223,3.62315E-4,1.30055E-4,3.07008E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,H2 central production,gas,H2 central production,natural gas steam reforming CCS,0.0,0.0,7.04137E-5,1.44037E-4,2.48701E-4,4.16848E-4,7.90789E-4,0.00138173,0.00230232,0.00425366,0.00680584,0.00999496,0.0174812,0.0245306,0.0305255,0.0387364,0.044113,0.0485522,0.0505344,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,0.00139719,0.00232036,0.00338698,0.00464045,0.0064935,0.0087119,0.0112553,0.0197287,0.0345851,0.0620955,0.0792095,0.0936955,0.106969,0.125904,0.147371,0.171384,0.186645,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,0.00133406,0.00222482,0.00326253,0.00449329,0.00632613,0.00854769,0.0111337,0.0136426,0.0159662,0.017886,0.0232885,0.028205,0.0330817,0.040121,0.0480564,0.057304,0.06353,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,4.38075E-4,6.94559E-4,9.50405E-4,0.00121909,0.00163378,0.00207336,0.00257775,0.0030169,0.0033941,0.00370686,0.0043682,0.00480165,0.00525425,0.00594141,0.00677176,0.00773415,0.00858685,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,9.78694E-4,0.00156507,0.0022254,0.00296957,0.00385236,0.00485353,0.00592538,0.00661778,0.00726082,0.00788391,0.00870974,0.00952706,0.0102344,0.0111898,0.0121026,0.0129911,0.013589,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,0.00903129,0.0152994,0.0225979,0.0310642,0.0405811,0.0511094,0.0619973,0.0662341,0.0691746,0.07042,0.0648438,0.0590855,0.0533114,0.0422976,0.0339246,0.0275714,0.0194429,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,3.40553E-4,7.05665E-4,0.0012449,0.00182415,0.00220988,0.00241325,0.00248508,0.00149947,7.98454E-4,5.09602E-4,1.54565E-4,6.48407E-5,3.44484E-5,7.02141E-6,2.78086E-6,1.49421E-6,5.73116E-7,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,H2 central production,biomass,H2 central production,biomass to H2 CCS,0.0,0.0,1.96923E-4,4.62966E-4,8.85817E-4,0.00167569,0.00345834,0.00648293,0.0109889,0.0193993,0.0297372,0.0391018,0.0621154,0.0761429,0.0870271,0.109336,0.107477,0.097741,0.0756302,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,0.0017044,0.00312551,0.00492099,0.00672514,0.00726208,0.00716632,0.00688788,0.00368883,0.00192917,0.00127596,4.65486E-4,2.22256E-4,1.31206E-4,3.54125E-5,1.4043E-5,6.67628E-6,1.87998E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,H2 central production,coal,H2 central production,coal chemical CCS,0.0,0.0,5.15976E-4,0.00112814,0.00197654,0.00369288,0.00744564,0.0135321,0.021958,0.0327284,0.043608,0.0499592,0.0598698,0.0684654,0.0744261,0.0805525,0.0855687,0.0902581,0.0921954,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,1.93561E-5,3.81823E-5,6.98757E-5,1.17252E-4,1.86621E-4,2.80761E-4,4.05268E-4,5.03507E-4,6.16502E-4,7.5632E-4,9.76135E-4,0.00129048,0.00166959,0.00232506,0.00314245,0.00409245,0.00523478,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,0.00297326,0.0054797,0.00857153,0.0116882,0.0137948,0.0152256,0.0161756,0.012136,0.00903193,0.00726122,0.00438917,0.00293824,0.00212522,8.55494E-4,4.11665E-4,2.21104E-4,7.4194E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,H2 central production,gas,H2 central production,natural gas steam reforming CCS,0.0,0.0,7.8279E-4,0.00169796,0.00297492,0.00514954,0.00905622,0.014545,0.0214233,0.0298791,0.0382518,0.0447541,0.0585315,0.0722473,0.0858576,0.107784,0.129435,0.151118,0.170427,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,5.74639E-4,0.00114921,0.00194212,0.00300279,0.0045996,0.00660315,0.00908859,0.0162633,0.0294875,0.0569042,0.0804364,0.113222,0.155115,0.225081,0.321215,0.443305,0.569205,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,5.48674E-4,0.00110189,0.00187075,0.00290756,0.00448105,0.00647869,0.00899042,0.0112462,0.0136129,0.0163907,0.0236492,0.0340831,0.0479714,0.0717253,0.104746,0.148224,0.193745,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,1.79586E-4,3.12061E-4,4.54888E-4,6.23796E-4,8.64864E-4,0.00115361,0.00149367,0.00175153,0.00196353,0.00223253,0.00285529,0.00362512,0.0046123,0.00615518,0.00827586,0.0110113,0.0139345,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,3.86026E-4,7.15359E-4,0.00119166,0.00182782,0.00265813,0.00370163,0.00496882,0.00603799,0.00726056,0.00865432,0.0107202,0.0132414,0.015886,0.0199095,0.0242202,0.0285476,0.0329554,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,0.00363524,0.0074735,0.0127664,0.0198868,0.0290196,0.0403399,0.0539086,0.063311,0.073279,0.0836576,0.0883669,0.092281,0.0950432,0.0877777,0.081184,0.0747311,0.059445,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,1.11536E-5,2.16383E-5,3.86589E-5,6.74542E-5,1.05701E-4,1.53185E-4,2.0501E-4,2.2727E-4,2.16569E-4,1.81261E-4,8.58652E-5,2.81729E-5,9.0153E-6,9.88896E-7,1.84041E-7,5.15007E-8,1.19206E-8,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,H2 central production,biomass,H2 central production,biomass to H2 CCS,0.0,0.0,4.61475E-6,9.56546E-6,1.34866E-5,1.1638E-5,9.0045E-6,6.78896E-6,7.50503E-6,1.9018E-5,4.78664E-5,1.02141E-4,2.98978E-4,4.9147E-4,6.50521E-4,8.89358E-4,0.00100193,0.00103423,8.75692E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,5.58302E-5,9.58544E-5,1.51398E-4,2.38159E-4,3.20592E-4,4.0971E-4,5.04625E-4,4.78629E-4,4.23234E-4,3.43802E-4,1.66936E-4,6.56388E-5,2.48089E-5,3.6243E-6,7.64112E-7,2.10795E-7,3.87124E-8,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,H2 central production,coal,H2 central production,coal chemical CCS,0.0,0.0,1.06593E-5,2.04574E-5,2.44379E-5,1.63259E-5,1.00245E-5,6.56029E-6,6.90152E-6,1.82484E-5,4.71242E-5,9.91996E-5,2.65514E-4,4.5275E-4,5.99945E-4,7.41548E-4,8.65088E-4,9.90996E-4,0.00107202,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,6.67478E-7,1.23432E-6,2.03335E-6,3.13565E-6,4.61991E-6,6.65671E-6,9.40179E-6,1.20441E-5,1.50113E-5,1.82685E-5,2.30227E-5,2.80367E-5,3.34629E-5,4.18325E-5,5.13798E-5,6.22934E-5,7.5654E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,9.33888E-5,1.59662E-4,2.43451E-4,3.59304E-4,4.83572E-4,6.22643E-4,7.54896E-4,7.37329E-4,6.76147E-4,5.8231E-4,3.96854E-4,2.37798E-4,1.36444E-4,4.00434E-5,1.32994E-5,5.08507E-6,1.2948E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,H2 central production,gas,H2 central production,natural gas steam reforming CCS,0.0,0.0,1.90651E-5,3.70096E-5,5.08201E-5,4.8979E-5,4.32912E-5,3.82359E-5,4.41283E-5,8.47145E-5,1.53141E-4,2.47839E-4,4.90731E-4,7.48261E-4,9.91596E-4,0.00132813,0.001613,0.00189234,0.00212561,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,1.71764E-5,3.15087E-5,4.9573E-5,7.2882E-5,1.07746E-4,1.53889E-4,2.13811E-4,4.14109E-4,7.9721E-4,0.0015616,0.00224155,0.00287147,0.0034849,0.00432419,0.00539529,0.0066863,0.0078571,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,1.64003E-5,3.02114E-5,4.77514E-5,7.05708E-5,1.04969E-4,1.50988E-4,2.11502E-4,2.8636E-4,3.68031E-4,4.49803E-4,6.59041E-4,8.64396E-4,0.00107775,0.00137796,0.00175936,0.00223563,0.00267439,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,6.07122E-6,1.01532E-5,1.44868E-5,1.93351E-5,2.69933E-5,3.60491E-5,4.83944E-5,6.17492E-5,6.84607E-5,6.98602E-5,7.31749E-5,5.92155E-5,4.78175E-5,4.13476E-5,7.11761E-5,1.2142E-4,1.74264E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,1.28951E-5,2.22491E-5,3.36375E-5,4.77852E-5,6.43245E-5,8.47292E-5,1.0921E-4,1.29352E-4,1.49356E-4,1.70057E-4,1.99274E-4,2.31282E-4,2.63245E-4,3.05865E-4,3.5422E-4,4.04495E-4,4.56031E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,1.08088E-4,2.03423E-4,3.255E-4,4.84527E-4,6.78913E-4,9.22534E-4,0.00121563,0.00144909,0.00166723,0.00185181,0.00191265,0.00185954,0.00175881,0.00144815,0.00123603,0.00107074,8.07551E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,7.79334E-4,0.00189701,0.00325296,0.00471882,0.00532401,0.00557035,0.00558561,0.00298688,0.00134235,5.9373E-4,1.04814E-4,2.51809E-5,7.34617E-6,6.85029E-7,1.68566E-7,7.18625E-8,3.66097E-8,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,H2 central production,biomass,H2 central production,biomass to H2 CCS,0.0,0.0,4.68013E-4,0.00146716,0.00330415,0.00614203,0.0114451,0.0193959,0.0302559,0.0526458,0.079966,0.109037,0.182213,0.243146,0.311152,0.442036,0.479055,0.457115,0.334501,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,0.00389766,0.00836708,0.0127364,0.0171831,0.0172276,0.016304,0.0153038,0.00726229,0.00322346,0.00150545,3.52372E-4,1.04905E-4,3.76508E-5,5.88459E-6,1.48251E-6,4.97614E-7,1.31668E-7,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,H2 central production,coal,H2 central production,coal chemical CCS,0.0,0.0,0.00124348,0.00376713,0.0081218,0.0147235,0.0261916,0.0421128,0.0619931,0.0907419,0.119209,0.140965,0.169629,0.202701,0.235636,0.259755,0.300966,0.35001,0.39204,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,4.77884E-5,1.18915E-4,2.20663E-4,3.59108E-4,5.25747E-4,7.4175E-4,0.00102196,0.00124699,0.00150209,0.00178691,0.00218279,0.00271602,0.00331784,0.00412088,0.00534143,0.0068992,0.00939418,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,0.00683891,0.0150868,0.0236867,0.0321138,0.0355293,0.0375072,0.0385476,0.0270263,0.0183323,0.0121749,0.00561646,0.0028294,0.00151774,4.17927E-4,1.4879E-4,6.35661E-5,2.00885E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,H2 central production,gas,H2 central production,natural gas steam reforming CCS,0.0,0.0,0.00185278,0.00527119,0.0105552,0.0179321,0.0286614,0.0420741,0.0575803,0.0787115,0.0982905,0.113286,0.139323,0.165206,0.191568,0.223357,0.271492,0.330523,0.406841,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,0.00132968,0.00325291,0.00571243,0.00880487,0.012643,0.0172174,0.0226902,0.0391,0.0675804,0.12003,0.151133,0.191604,0.237645,0.297615,0.39432,0.525106,0.706059,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,0.0012696,0.00311898,0.00550253,0.00852565,0.0123172,0.0168928,0.0224452,0.027038,0.0311985,0.0345735,0.0444347,0.0576784,0.0734949,0.094839,0.128584,0.175574,0.240328,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,8.04825E-4,0.00194265,0.00333769,0.00501316,0.0071825,0.00953547,0.0122431,0.0143136,0.0158739,0.0171492,0.0207201,0.0254671,0.0312402,0.0387229,0.0509345,0.0675475,0.0915156,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,9.57651E-4,0.00223355,0.0038293,0.00577001,0.0078256,0.010269,0.0131392,0.0156953,0.0185359,0.0215978,0.0257411,0.030699,0.035793,0.0415956,0.0498434,0.0593885,0.0734022,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,0.00817441,0.0205508,0.0368273,0.05755,0.0792739,0.1044,0.132763,0.150142,0.166007,0.177725,0.172689,0.169402,0.164892,0.138302,0.122919,0.111687,0.0936324,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,1.09958E-4,2.54933E-4,5.41166E-4,0.00101016,0.00154291,0.00210176,0.00265014,0.00195718,0.00144291,0.0012825,5.5357E-4,3.57145E-4,3.46637E-4,8.8518E-5,2.9746E-5,6.56814E-6,9.05213E-7,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,H2 central production,biomass,H2 central production,biomass to H2 CCS,0.0,0.0,6.52386E-5,1.76787E-4,4.07944E-4,9.41057E-4,0.00243227,0.00568167,0.0115518,0.024015,0.0428639,0.0645039,0.120921,0.16753,0.180563,0.228751,0.254983,0.332903,0.395042,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,5.84043E-4,0.00123176,0.0023788,0.00409603,0.0054115,0.00645833,0.00758519,0.00486805,0.00348226,0.00317963,0.00170285,0.00132129,0.00131897,4.4949E-4,1.68825E-4,4.53451E-5,8.24446E-6,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,H2 central production,coal,H2 central production,coal chemical CCS,0.0,0.0,1.80767E-4,4.72323E-4,0.00101647,0.00228315,0.00567632,0.0125114,0.0244663,0.0417935,0.0607582,0.0736381,0.0875247,0.0972586,0.108499,0.128941,0.155261,0.201751,0.223336,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,2.66948E-6,7.01519E-6,1.55881E-5,3.116E-5,6.10156E-5,1.13923E-4,2.06185E-4,3.12791E-4,4.64429E-4,6.77548E-4,0.0010105,0.00152996,0.00234982,0.00372735,0.00545821,0.00717189,0.00878928,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,0.00102508,0.00218916,0.00422136,0.00729958,0.0106651,0.01441,0.0188515,0.0167795,0.0156017,0.0155477,0.0116919,0.0105415,0.0109683,0.00549248,0.0027318,0.00105516,2.66183E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,H2 central production,gas,H2 central production,natural gas steam reforming CCS,0.0,0.0,2.72967E-4,7.00436E-4,0.00151347,0.003237,0.00709975,0.0140645,0.0255556,0.042213,0.0615631,0.079011,0.106879,0.135351,0.171174,0.23455,0.307606,0.402074,0.460192,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,1.97901E-4,4.59674E-4,9.53632E-4,0.0018352,0.00344862,0.0059956,0.0100186,0.0209436,0.0450002,0.100488,0.15773,0.251691,0.411525,0.673469,1.02606,1.3763,1.63805,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,1.88954E-4,4.4081E-4,9.18948E-4,0.00177821,0.00336303,0.00589002,0.00992506,0.0145102,0.0208138,0.0289942,0.0464586,0.0759192,0.127592,0.215082,0.335503,0.461797,0.559904,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,1.46075E-4,3.18373E-4,6.24702E-4,0.00114632,0.00206739,0.00346388,0.0055821,0.00784467,0.0108775,0.0146991,0.0222303,0.0341322,0.0535605,0.0841476,0.123482,0.162285,0.191405,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,6.86163E-5,1.65188E-4,3.37847E-4,6.31229E-4,0.00114248,0.00198682,0.00334474,0.00493178,0.00710366,0.00991444,0.0139103,0.0193109,0.0265562,0.0372917,0.0494025,0.0611327,0.0694954,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,0.00149224,0.00349873,0.00736707,0.0144821,0.0262268,0.0446234,0.0729525,0.100865,0.137591,0.179691,0.208587,0.242517,0.285819,0.289488,0.286428,0.268644,0.204754,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,5.74315E-5,1.24213E-4,2.10656E-4,3.20065E-4,4.10933E-4,4.82857E-4,5.42907E-4,4.1191E-4,2.96171E-4,2.23382E-4,7.79987E-5,3.24844E-5,1.96478E-5,3.97709E-6,1.27297E-6,5.49782E-7,6.90532E-8,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,H2 central production,biomass,H2 central production,biomass to H2 CCS,0.0,0.0,3.05504E-5,6.80022E-5,1.44737E-4,2.70915E-4,5.55304E-4,0.0010446,0.00167342,0.00276062,0.00412865,0.00562071,0.0102527,0.0142664,0.0159766,0.020266,0.0218506,0.0228257,0.0279591,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,3.05611E-4,6.02664E-4,9.27863E-4,0.00130154,0.00145137,0.00150079,0.00158297,0.00104152,7.08215E-4,5.32809E-4,2.23623E-4,1.18781E-4,8.0682E-5,2.28099E-5,8.09438E-6,3.67734E-6,6.20892E-7,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,H2 central production,coal,H2 central production,coal chemical CCS,0.0,0.0,8.11059E-5,1.67056E-4,3.50294E-4,6.3989E-4,0.00125283,0.00221505,0.00337434,0.00456235,0.00564124,0.00630944,0.00752629,0.00831156,0.00936756,0.0108921,0.0126956,0.0140195,0.0158936,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,2.37099E-6,5.14845E-6,1.0151E-5,1.80801E-5,3.04521E-5,4.82368E-5,7.30663E-5,9.54512E-5,1.19273E-4,1.45475E-4,1.83806E-4,2.37277E-4,3.14032E-4,4.26368E-4,5.7788E-4,7.67359E-4,9.73918E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,5.27858E-4,0.00103362,0.00162179,0.00227916,0.00275984,0.00314788,0.00353228,0.00290411,0.00242107,0.00205984,0.00132086,9.31283E-4,7.51892E-4,3.2632E-4,1.53162E-4,8.18889E-5,1.97321E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,H2 central production,gas,H2 central production,natural gas steam reforming CCS,0.0,0.0,1.292E-4,2.76704E-4,5.43282E-4,9.44059E-4,0.0016551,0.00266157,0.0038587,0.00515361,0.0063645,0.0073748,0.00963664,0.0116304,0.0142444,0.0187172,0.0236598,0.028448,0.0329689,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,1.00166E-4,2.08741E-4,3.60542E-4,5.62981E-4,8.64839E-4,0.00124742,0.00173271,0.00311914,0.00575735,0.011159,0.0156918,0.0218705,0.0317898,0.048632,0.0713728,0.10019,0.11857,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,9.56374E-5,2.00175E-4,3.47429E-4,5.45498E-4,8.43374E-4,0.00122545,0.00171652,0.00216101,0.00266293,0.00321974,0.00462195,0.00659694,0.0098563,0.0155313,0.0233376,0.0336171,0.0405284,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,5.42381E-5,1.05729E-4,1.70957E-4,2.53372E-4,3.74938E-4,5.24235E-4,7.13714E-4,8.77452E-4,0.00105845,0.00125058,0.00168554,0.0022514,0.00317077,0.00477806,0.00689115,0.00960848,0.0113865,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,5.26528E-5,1.06085E-4,1.88792E-4,3.05051E-4,4.64069E-4,6.71818E-4,9.29197E-4,0.00114895,0.00138171,0.00163391,0.00200587,0.00245513,0.00302101,0.00377381,0.00469858,0.00571645,0.00679025,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,6.77632E-4,0.00144008,0.00250735,0.00395419,0.00579291,0.008103,0.010897,0.0126869,0.0147485,0.0168914,0.0178644,0.0186037,0.0200392,0.0193345,0.0185273,0.017544,0.0134756,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,7.55331E-5,1.6305E-4,2.99857E-4,4.69966E-4,6.37963E-4,8.0148E-4,9.48375E-4,6.63361E-4,4.67535E-4,4.02161E-4,1.70693E-4,1.06532E-4,1.03927E-4,2.60362E-5,8.52113E-6,1.70656E-6,2.3223E-7,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,H2 central production,biomass,H2 central production,biomass to H2 CCS,0.0,0.0,4.5148E-5,1.10504E-4,2.15882E-4,4.3281E-4,9.87143E-4,0.00211114,0.00400954,0.00788502,0.0130432,0.0195157,0.0380543,0.0539683,0.059026,0.0705445,0.0724031,0.0861561,0.101137,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,4.01126E-4,7.88325E-4,0.00131954,0.00190638,0.00223965,0.0024665,0.00271965,0.00165199,0.00112807,9.95252E-4,5.26556E-4,3.99551E-4,4.01316E-4,1.33317E-4,4.82943E-5,1.17743E-5,2.11434E-6,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,H2 central production,coal,H2 central production,coal chemical CCS,0.0,0.0,1.2546E-4,2.92877E-4,5.30234E-4,0.00104671,0.00229447,0.00462893,0.00845688,0.0136885,0.0184403,0.0222649,0.0275265,0.0311998,0.0353066,0.0396373,0.0441122,0.0522276,0.0571865,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,2.40788E-6,5.38883E-6,1.08418E-5,1.99401E-5,3.57127E-5,6.19733E-5,1.05405E-4,1.50631E-4,2.12248E-4,2.89049E-4,4.02198E-4,5.74849E-4,8.36513E-4,0.00124692,0.0017322,0.00216529,0.00260775,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,7.04853E-4,0.00139569,0.00232371,0.00338999,0.00439413,0.00546195,0.00669108,0.00562643,0.0049358,0.00480568,0.0036375,0.00325332,0.00341173,0.00164702,7.79919E-4,2.73744E-4,6.82343E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,H2 central production,gas,H2 central production,natural gas steam reforming CCS,0.0,0.0,1.88771E-4,4.38919E-4,8.05544E-4,0.00149105,0.00288857,0.00524291,0.00890067,0.0139006,0.0188407,0.0239907,0.0335494,0.0431416,0.0553081,0.071822,0.0874622,0.104123,0.117856,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,1.36241E-4,2.91918E-4,5.20753E-4,8.5046E-4,0.00141541,0.00225949,0.0035304,0.00696592,0.0140047,0.0307736,0.0493235,0.0791928,0.131018,0.204749,0.292125,0.356611,0.419629,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,1.30081E-4,2.79938E-4,5.01813E-4,8.2405E-4,0.00138028,0.0022197,0.00349742,0.00482615,0.00647755,0.00887922,0.014528,0.0238874,0.0406218,0.0653896,0.0955194,0.119655,0.143434,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,1.10427E-4,2.27555E-4,3.88466E-4,6.08557E-4,9.71975E-4,0.00148582,0.0022154,0.00288892,0.0036638,0.0049022,0.0076851,0.0119889,0.0191423,0.0287608,0.0394807,0.0466873,0.0542603,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,5.86915E-5,1.22347E-4,2.23488E-4,3.76119E-4,6.15721E-4,9.87613E-4,0.00155277,0.00214777,0.00290431,0.0038411,0.00518675,0.00695224,0.00924775,0.0122359,0.015284,0.017777,0.0199638,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,9.98089E-4,0.00218397,0.00393189,0.00650538,0.0103937,0.0162003,0.0247269,0.0322111,0.040881,0.0529753,0.0636587,0.0752832,0.0906046,0.0876088,0.080822,0.0686054,0.0519118,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,1.72534E-4,4.17371E-4,8.70952E-4,0.00153686,0.00227949,0.0030636,0.00386373,0.0029377,0.00246057,0.00231849,0.00113917,8.05622E-4,7.71503E-4,1.96985E-4,4.53048E-5,1.11175E-5,1.63582E-6,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,H2 central production,biomass,H2 central production,biomass to H2 CCS,0.0,0.0,1.02716E-4,2.81341E-4,6.26123E-4,0.00140762,0.00347834,0.00784372,0.0155511,0.0314827,0.0527015,0.0773885,0.146972,0.210633,0.252066,0.358203,0.462152,0.583957,0.723871,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,9.16347E-4,0.00201823,0.00383281,0.00623526,0.00800791,0.00944302,0.0111131,0.00734321,0.00592509,0.00562343,0.00325753,0.00268793,0.00271271,9.40855E-4,2.64423E-4,7.71926E-5,1.49343E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,H2 central production,coal,H2 central production,coal chemical CCS,0.0,0.0,2.84991E-4,7.44246E-4,0.00153713,0.00339903,0.00806045,0.0171171,0.0325794,0.054207,0.0736365,0.0875703,0.107936,0.125893,0.15497,0.206622,0.278204,0.353045,0.408821,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,5.06961E-6,1.32222E-5,3.12905E-5,6.65059E-5,1.33675E-4,2.51109E-4,4.54166E-4,6.78448E-4,9.78562E-4,0.00138294,0.00200854,0.00298064,0.00442549,0.00731102,0.0108594,0.0146031,0.0185992,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,0.00160918,0.00357,0.00674795,0.0110763,0.015659,0.0207413,0.026906,0.024067,0.0235187,0.0238702,0.0191362,0.0183853,0.0200381,0.0105985,0.00444917,0.00181044,4.83586E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,H2 central production,gas,H2 central production,natural gas steam reforming CCS,0.0,0.0,4.29637E-4,0.00111814,0.00233675,0.00485288,0.0101972,0.0195495,0.034716,0.0560402,0.0779931,0.0987331,0.138443,0.183882,0.253923,0.386769,0.542895,0.701314,0.841345,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,3.10838E-4,7.46003E-4,0.00151186,0.00277594,0.00502952,0.00852644,0.0140332,0.0290231,0.0623244,0.138866,0.22628,0.378904,0.662971,1.17258,1.76499,2.3885,2.98906,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,2.96785E-4,7.15387E-4,0.00145687,0.00268974,0.00490469,0.00837629,0.0139021,0.0201079,0.0288267,0.0400674,0.0666498,0.114291,0.205552,0.374482,0.577118,0.801425,1.02169,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,2.42609E-4,5.43374E-4,0.00102555,0.00176295,0.00300279,0.00479223,0.00742017,0.0100177,0.0133971,0.0173781,0.0261425,0.0407833,0.0683153,0.114625,0.161968,0.209926,0.257347,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,1.24726E-4,2.99848E-4,6.3803E-4,0.00123021,0.00223677,0.003852,0.0064,0.00920514,0.0127427,0.017208,0.0237837,0.0329151,0.0453965,0.067426,0.0921074,0.115468,0.137479,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,0.00218688,0.00531308,0.0107819,0.0199182,0.034349,0.056438,0.0901398,0.121965,0.163561,0.211649,0.253282,0.308805,0.395196,0.433737,0.430456,0.402229,0.322635,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,3.12813E-5,7.10434E-5,1.18771E-4,1.71329E-4,1.93337E-4,1.92777E-4,1.77924E-4,9.52916E-5,4.34643E-5,1.89366E-5,2.31322E-6,3.00362E-7,7.18437E-8,4.75616E-9,1.03658E-9,2.87491E-10,0.0,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,H2 central production,biomass,H2 central production,biomass to H2 CCS,0.0,0.0,1.89822E-5,5.54316E-5,1.21169E-4,2.25805E-4,4.35994E-4,7.66279E-4,0.00118719,0.00198294,0.00302734,0.00434239,0.00904196,0.0155009,0.0200715,0.0293342,0.0317557,0.034101,0.0374198,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,1.6606E-4,3.41794E-4,5.15613E-4,6.82745E-4,6.62427E-4,5.76195E-4,4.92744E-4,2.30927E-4,1.04388E-4,5.00478E-5,1.0761E-5,2.83556E-6,9.71943E-7,1.41869E-7,3.41565E-8,1.03915E-8,2.27311E-9,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,H2 central production,coal,H2 central production,coal chemical CCS,0.0,0.0,5.30593E-5,1.54255E-4,3.30971E-4,6.01371E-4,0.0010963,0.00179294,0.00265426,0.00358226,0.00441674,0.00501057,0.00569637,0.00624731,0.00725131,0.00784784,0.00914629,0.0101797,0.0101716,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,1.38119E-6,3.38654E-6,6.77823E-6,1.18351E-5,1.85987E-5,2.72039E-5,3.83634E-5,4.79809E-5,5.82431E-5,6.88947E-5,7.9656E-5,9.16523E-5,1.10844E-4,1.31306E-4,1.69787E-4,2.10894E-4,2.58582E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,2.92497E-4,6.20394E-4,9.70259E-4,0.00131152,0.00143757,0.00145392,0.00142782,9.82672E-4,6.55503E-4,4.29531E-4,1.78509E-4,7.87393E-5,4.05202E-5,1.05405E-5,3.65748E-6,1.43451E-6,3.81264E-7,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,H2 central production,gas,H2 central production,natural gas steam reforming CCS,0.0,0.0,7.92532E-5,2.16877E-4,4.33653E-4,7.43249E-4,0.00121727,0.00181427,0.00251371,0.00332869,0.00401762,0.00450851,0.00521491,0.00561801,0.00632236,0.00694674,0.00827822,0.00955528,0.0103741,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,5.66751E-5,1.32978E-4,2.31685E-4,3.52797E-4,5.01945E-4,6.60978E-4,8.41731E-4,0.00140849,0.00237501,0.0041484,0.00489988,0.00564252,0.00689492,0.00836032,0.0109716,0.0137506,0.0161163,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,5.41128E-5,1.27521E-4,2.23259E-4,3.41842E-4,4.89487E-4,6.49338E-4,8.33868E-4,9.75832E-4,0.00109851,0.00119695,0.00144324,0.00170199,0.00213774,0.00266999,0.0035875,0.00461383,0.00550871,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,5.13641E-5,1.18395E-4,2.02157E-4,3.03077E-4,4.26227E-4,5.57089E-4,7.06E-4,8.15898E-4,9.053E-4,9.7621E-4,0.00114982,0.00132547,0.00163131,0.00200119,0.00264827,0.00336614,0.00400139,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,3.13693E-5,7.17009E-5,1.30086E-4,2.0706E-4,2.97116E-4,4.01645E-4,5.23307E-4,6.31766E-4,7.45186E-4,8.62709E-4,0.00100245,0.00114636,0.00132267,0.00148625,0.00175976,0.00203394,0.00235982,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,3.93604E-4,9.46854E-4,0.00167223,0.00258784,0.00355575,0.00460371,0.00576386,0.00640153,0.00695466,0.00736846,0.00687985,0.00629272,0.00593115,0.00474799,0.0040956,0.00353818,0.00270926,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,8.72507E-5,1.99562E-4,3.33357E-4,4.78566E-4,5.37412E-4,5.36169E-4,4.89628E-4,2.62617E-4,1.20257E-4,5.43569E-5,7.10549E-6,9.5265E-7,2.31795E-7,1.55239E-8,3.29966E-9,8.98158E-10,1.4039E-10,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,H2 central production,biomass,H2 central production,biomass to H2 CCS,0.0,0.0,5.29615E-5,1.56295E-4,3.44103E-4,6.45905E-4,0.00125986,0.00225548,0.00351415,0.00598126,0.00928872,0.0133357,0.0278803,0.049083,0.0639605,0.0929832,0.0960017,0.0984186,0.104187,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,4.63177E-4,9.5995E-4,0.00144621,0.00190402,0.00183551,0.00159464,0.0013468,6.32964E-4,2.88403E-4,1.44013E-4,3.30739E-5,8.99009E-6,3.12636E-6,4.5917E-7,1.07182E-7,3.17711E-8,6.84686E-9,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,H2 central production,coal,H2 central production,coal chemical CCS,0.0,0.0,1.48056E-4,4.35499E-4,9.43177E-4,0.00173083,0.0031925,0.00532182,0.00792445,0.0108679,0.0135904,0.0153861,0.0175603,0.019785,0.0231371,0.024966,0.0278206,0.0296527,0.0287041,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,5.38949E-6,1.28686E-5,2.42321E-5,4.00243E-5,5.99989E-5,8.55644E-5,1.17936E-4,1.43594E-4,1.70286E-4,2.00163E-4,2.14077E-4,2.30153E-4,2.76363E-4,3.37731E-4,4.44253E-4,5.55631E-4,6.77485E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,8.15876E-4,0.00174365,0.00272841,0.00367888,0.00402974,0.00410433,0.00401565,0.0027978,0.00188991,0.00126851,5.49293E-4,2.49534E-4,1.2993E-4,3.38902E-5,1.13421E-5,4.30684E-6,1.12131E-6,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,H2 central production,gas,H2 central production,natural gas steam reforming CCS,0.0,0.0,2.21115E-4,6.11266E-4,0.00122988,0.00211999,0.00350175,0.00530832,0.00739014,0.00996474,0.0122043,0.0137334,0.0160695,0.017795,0.0201987,0.022161,0.0253072,0.0280509,0.0295763,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,1.58094E-4,3.73993E-4,6.52974E-4,9.94419E-4,0.00141924,0.00189118,0.00241109,0.00410853,0.00704376,0.012475,0.0150911,0.0178757,0.0220534,0.0267343,0.0336859,0.0406405,0.0463782,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,1.50947E-4,3.58645E-4,6.29225E-4,9.63538E-4,0.00138402,0.00185787,0.00238857,0.00284648,0.00325793,0.00359946,0.00444502,0.00539194,0.00683758,0.00853798,0.0110147,0.0136363,0.0158526,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,1.18648E-4,2.76584E-4,4.72658E-4,7.0534E-4,9.94867E-4,0.00130503,0.00164369,0.00192015,0.00214831,0.00232944,0.00279267,0.00330717,0.004098,0.00499424,0.00631021,0.00768546,0.00887961,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,1.10428E-4,2.47277E-4,4.27651E-4,6.51833E-4,9.03765E-4,0.00120307,0.00154268,0.0018394,0.00214736,0.00247973,0.00274777,0.00304054,0.00351085,0.00403166,0.00475312,0.00543204,0.00618845,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,9.86558E-4,0.00239342,0.00424722,0.00658003,0.00905535,0.0118241,0.0147915,0.0167449,0.0185092,0.0198207,0.0191919,0.0186373,0.0182691,0.0150223,0.0125416,0.0104192,0.00773136,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,2.02765E-4,4.19256E-4,6.7426E-4,9.5397E-4,0.00106879,0.00106442,9.76846E-4,5.11654E-4,2.29618E-4,9.83336E-5,1.18598E-5,1.53651E-6,3.64195E-7,2.39493E-8,5.0422E-9,1.35311E-9,2.06819E-10,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,H2 central production,biomass,H2 central production,biomass to H2 CCS,0.0,0.0,1.22935E-4,3.26479E-4,6.87373E-4,0.0012611,0.00243101,0.00429385,0.0066409,0.0108546,0.0161817,0.0225384,0.0461955,0.0785129,0.0999105,0.143523,0.148938,0.153191,0.161548,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,0.00107643,0.00201724,0.00292724,0.0038008,0.00365944,0.00317742,0.00270066,0.00123851,5.51388E-4,2.59883E-4,5.51417E-5,1.44725E-5,4.90513E-6,7.08484E-7,1.64473E-7,4.82912E-8,1.02347E-8,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,H2 central production,coal,H2 central production,coal chemical CCS,0.0,0.0,3.43512E-4,9.07913E-4,0.00187715,0.00336123,0.00612327,0.0100689,0.0148804,0.0196336,0.023616,0.0260066,0.0291091,0.0316733,0.0361636,0.0385334,0.0430835,0.0459799,0.0442302,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,7.17854E-6,1.65004E-5,3.08343E-5,5.12911E-5,7.75672E-5,1.10875E-4,1.53695E-4,1.85794E-4,2.20952E-4,2.59208E-4,3.02562E-4,3.5449E-4,4.32227E-4,5.26986E-4,6.71502E-4,8.22141E-4,9.77736E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,0.00189575,0.00366015,0.00550749,0.00730652,0.00796179,0.00805876,0.00788265,0.00531304,0.00347914,0.00223002,9.13728E-4,4.00838E-4,2.03555E-4,5.22975E-5,1.74653E-5,6.59551E-6,1.69487E-6,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,H2 central production,gas,H2 central production,natural gas steam reforming CCS,0.0,0.0,5.13312E-4,0.00127762,0.00246026,0.00414946,0.00678049,0.0101503,0.0140364,0.0181916,0.0214507,0.023402,0.0266589,0.0285113,0.0315896,0.0342024,0.0391334,0.0433571,0.0453578,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,3.67273E-4,7.84258E-4,0.00131494,0.00196665,0.00278526,0.00367646,0.00466881,0.00765474,0.0126459,0.0215347,0.02506,0.0286649,0.0345092,0.0412589,0.0520237,0.0626415,0.070816,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,3.50669E-4,7.52072E-4,0.00126711,0.00190558,0.00271613,0.00361172,0.0046252,0.00530338,0.00584908,0.00621349,0.00738131,0.00864636,0.0106994,0.0131766,0.0170108,0.0210184,0.0242057,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,2.91949E-4,5.99462E-4,9.70645E-4,0.00141055,0.00196328,0.00254702,0.00317755,0.00356499,0.00380901,0.00393458,0.0044131,0.00488508,0.00575044,0.00677976,0.00846884,0.0102322,0.0117517,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,1.69889E-4,3.61541E-4,6.1796E-4,9.4674E-4,0.00132274,0.00176542,0.00227755,0.00267707,0.00310126,0.00355037,0.00412763,0.00475976,0.00547646,0.00621577,0.00715367,0.008046,0.00898616,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,0.00254646,0.00553661,0.00942742,0.0143562,0.0196834,0.0255816,0.0319262,0.0347367,0.0368719,0.0378954,0.0346555,0.031272,0.028814,0.0224542,0.0184076,0.0151325,0.0110784,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,1.22852E-4,2.74712E-4,4.6151E-4,6.82036E-4,8.00357E-4,8.45036E-4,7.60744E-4,4.00434E-4,1.73739E-4,7.15804E-5,8.97627E-6,1.23648E-6,3.17417E-7,2.34304E-8,5.89533E-9,2.28163E-9,5.3365E-10,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,H2 central production,biomass,H2 central production,biomass to H2 CCS,0.0,0.0,7.41742E-5,2.10107E-4,4.46891E-4,8.08888E-4,0.00147941,0.00252552,0.00396214,0.00676337,0.0103972,0.0148298,0.0295163,0.0482186,0.0595719,0.080997,0.0821482,0.0794681,0.0782088,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,6.52255E-4,0.00132276,0.00200916,0.00273556,0.00278161,0.00258056,0.00215059,9.81629E-4,4.18035E-4,1.88478E-4,4.06689E-5,1.09542E-5,3.90075E-6,5.93202E-7,1.56876E-7,5.97533E-8,1.67749E-8,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,H2 central production,coal,H2 central production,coal chemical CCS,0.0,0.0,2.06927E-4,5.80698E-4,0.00120192,0.0020954,0.00357155,0.00565321,0.00859104,0.0120486,0.0151024,0.0171132,0.0187898,0.0199609,0.0224213,0.0232453,0.0259294,0.0272351,0.0260098,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,5.74589E-6,1.36842E-5,2.61822E-5,4.44437E-5,6.8575E-5,9.99274E-5,1.37698E-4,1.71519E-4,2.05757E-4,2.40042E-4,2.73013E-4,3.06146E-4,3.6741E-4,4.36119E-4,5.62347E-4,7.13753E-4,8.99986E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,0.00114796,0.00239202,0.00373888,0.00512635,0.00570878,0.00593341,0.00568326,0.003834,0.00246719,0.00155583,6.39597E-4,2.82637E-4,1.47035E-4,3.86476E-5,1.40124E-5,6.21768E-6,1.92612E-6,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,H2 central production,gas,H2 central production,natural gas steam reforming CCS,0.0,0.0,3.09836E-4,8.23769E-4,0.00160896,0.00269706,0.00423082,0.00617561,0.0085985,0.0115567,0.0139995,0.0155848,0.0175258,0.0184636,0.0203597,0.0217442,0.0253505,0.0288453,0.0311996,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,2.22249E-4,5.10905E-4,8.84003E-4,0.00135009,0.00190881,0.00252504,0.00315205,0.00519934,0.00857765,0.0146231,0.0168498,0.019092,0.0230584,0.0274629,0.0359487,0.0462815,0.0566369,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,2.12202E-4,4.89938E-4,8.51851E-4,0.00130817,0.00186144,0.00248057,0.0031226,0.00360222,0.0039674,0.00421925,0.00496303,0.00575885,0.00714919,0.00877069,0.0117546,0.0155291,0.0193591,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,1.66433E-4,3.76113E-4,6.32832E-4,9.41976E-4,0.0013097,0.00169654,0.00208401,0.0023453,0.00253041,0.00264955,0.00300329,0.00337184,0.0040771,0.00486908,0.00638738,0.00830364,0.0103127,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,1.26501E-4,2.81186E-4,4.91402E-4,7.64207E-4,0.00107184,0.00143292,0.00182587,0.00219324,0.00256203,0.0029287,0.00332218,0.00369014,0.0041915,0.004641,0.00543427,0.0063028,0.00739877,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,0.00146004,0.0034365,0.00603268,0.00934469,0.0126287,0.0162153,0.0198385,0.0216577,0.0230367,0.0238378,0.0215513,0.0193407,0.0179834,0.0140386,0.012009,0.0104572,0.00819093,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,8.71002E-5,1.7699E-4,2.94971E-4,4.58505E-4,5.66015E-4,6.00929E-4,5.76421E-4,3.16367E-4,1.45163E-4,6.37347E-5,8.84591E-6,1.36481E-6,3.84765E-7,3.23539E-8,9.60293E-9,3.6868E-9,8.03572E-10,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,H2 central production,biomass,H2 central production,biomass to H2 CCS,0.0,0.0,5.23546E-5,1.31513E-4,2.65881E-4,4.77992E-4,9.30698E-4,0.00176825,0.00293789,0.00518261,0.00831626,0.0124288,0.026561,0.0468766,0.0619268,0.0889071,0.0869732,0.0851295,0.0825678,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,4.62491E-4,8.53178E-4,0.00128852,0.00185098,0.00198079,0.00183696,0.00163214,7.76752E-4,3.49436E-4,1.67443E-4,3.95302E-5,1.17523E-5,4.55911E-6,7.68767E-7,2.28333E-7,8.7137E-8,2.3077E-8,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,H2 central production,coal,H2 central production,coal chemical CCS,0.0,0.0,1.45803E-4,3.59887E-4,6.9987E-4,0.00119607,0.00219184,0.00394819,0.00635245,0.00921296,0.012064,0.0143427,0.0169999,0.0196386,0.0236721,0.026218,0.0288085,0.0304868,0.0285438,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,2.27548E-6,5.1578E-6,1.00856E-5,1.71993E-5,2.85544E-5,4.44204E-5,6.55924E-5,8.38369E-5,1.03813E-4,1.25836E-4,1.54656E-4,1.91315E-4,2.44585E-4,3.21096E-4,4.25073E-4,5.4111E-4,6.65829E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,8.13401E-4,0.00153473,0.00236309,0.0033731,0.00394452,0.00420367,0.0042802,0.00299672,0.00202616,0.00135057,6.04506E-4,2.93282E-4,1.65277E-4,4.75299E-5,1.84584E-5,8.24251E-6,2.45025E-6,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,H2 central production,gas,H2 central production,natural gas steam reforming CCS,0.0,0.0,2.18785E-4,5.17206E-4,9.6529E-4,0.00162004,0.00270171,0.00433196,0.00639017,0.00887904,0.0112438,0.0131552,0.0160114,0.018398,0.0218347,0.0250695,0.0293846,0.0336303,0.0354054,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,1.57364E-4,3.26139E-4,5.51301E-4,8.66283E-4,0.00128671,0.00178264,0.00236148,0.00403138,0.00696159,0.0124897,0.0155836,0.0192817,0.0251008,0.0322937,0.0433115,0.0560854,0.0665148,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,1.5025E-4,3.12754E-4,5.3125E-4,8.39381E-4,0.00125477,0.00175125,0.00233942,0.00279304,0.00321992,0.00360371,0.00459007,0.00581607,0.00778242,0.0103135,0.0141621,0.0188186,0.0227355,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,8.04652E-5,1.4787E-4,2.22366E-4,3.18526E-4,4.34432E-4,5.66095E-4,7.15564E-4,8.15047E-4,8.97119E-4,9.72421E-4,0.00115465,0.00136666,0.00171548,0.00214447,0.0027981,0.00356599,0.0042415,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,5.6548E-5,1.18073E-4,2.08776E-4,3.28356E-4,4.92993E-4,7.0663E-4,9.66591E-4,0.0012023,0.00146633,0.00176263,0.00216572,0.00264132,0.00319094,0.00382885,0.00448143,0.00513377,0.0057217,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,0.0011537,0.00242069,0.00411653,0.00656231,0.0092891,0.0125673,0.0163404,0.0186092,0.0208969,0.0229381,0.0226056,0.0220922,0.022007,0.018229,0.0155655,0.0134537,0.00998318,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,1.0958E-4,2.02519E-4,3.07804E-4,4.18983E-4,4.70347E-4,4.71414E-4,4.34516E-4,2.30676E-4,1.05339E-4,4.51228E-5,5.62093E-6,7.44763E-7,1.77826E-7,1.22006E-8,2.62871E-9,7.2488E-10,1.13215E-10,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,H2 central production,biomass,H2 central production,biomass to H2 CCS,0.0,0.0,6.644E-5,1.57846E-4,3.13879E-4,5.5283E-4,0.00106298,0.00187745,0.00289902,0.0047725,0.00721056,0.0103274,0.0218773,0.0381002,0.0488927,0.0728944,0.0768859,0.080951,0.087123,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,5.81728E-4,9.74377E-4,0.00133628,0.00166952,0.00161126,0.00140879,0.00120336,5.59203E-4,2.5305E-4,1.19247E-4,2.61312E-5,7.01686E-6,2.39635E-6,3.60611E-7,8.55128E-8,2.57741E-8,5.57881E-9,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,H2 central production,coal,H2 central production,coal chemical CCS,0.0,0.0,1.85654E-4,4.39093E-4,8.57246E-4,0.00147275,0.00267403,0.00439411,0.00648144,0.00861846,0.0105147,0.0119166,0.0137862,0.0153685,0.0176931,0.0195782,0.022267,0.024336,0.0238969,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,5.06652E-6,9.85622E-6,1.7139E-5,2.71019E-5,4.13223E-5,5.92724E-5,8.14163E-5,9.80322E-5,1.15485E-4,1.33691E-4,1.55082E-4,1.77248E-4,2.09586E-4,2.55216E-4,3.19297E-4,3.83806E-4,4.50823E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,0.00102452,0.00176824,0.00251432,0.00320795,0.00349893,0.00355717,0.00348683,0.00237386,0.00157772,0.00102268,4.32905E-4,1.94401E-4,9.95006E-5,2.66007E-5,9.06003E-6,3.50913E-6,9.20866E-7,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,H2 central production,gas,H2 central production,natural gas steam reforming CCS,0.0,0.0,2.77418E-4,6.17643E-4,0.0011234,0.00181942,0.00296705,0.0044442,0.00613835,0.00801531,0.00958522,0.010725,0.0126268,0.0138326,0.0154517,0.0173826,0.0202449,0.0229787,0.0245401,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,1.98486E-4,3.78941E-4,6.00337E-4,8.63133E-4,0.00122228,0.00161789,0.00205552,0.00339724,0.00568935,0.00987195,0.0118707,0.0139055,0.0168763,0.0209741,0.0269357,0.033238,0.0383625,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,1.89513E-4,3.6339E-4,5.78503E-4,8.36329E-4,0.00119195,0.00158939,0.00203632,0.00235369,0.00263148,0.00284839,0.00349647,0.00419439,0.00523242,0.0066984,0.00880747,0.0111525,0.0131127,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,1.60175E-4,3.00699E-4,4.66525E-4,6.60359E-4,9.20577E-4,0.00120898,0.00153081,0.00174124,0.00190876,0.0020371,0.00241682,0.00280567,0.00340989,0.00423785,0.0054437,0.006768,0.00787929,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,1.12195E-4,2.04683E-4,3.26369E-4,4.75954E-4,6.67482E-4,8.91833E-4,0.00114101,0.00133727,0.00154262,0.00176162,0.00206131,0.00235702,0.00266603,0.00306047,0.00349589,0.00390056,0.00431611,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,0.00129631,0.0025428,0.00410138,0.00601415,0.00822446,0.0107039,0.0133665,0.0146395,0.0157629,0.0165785,0.0157009,0.0145761,0.0135952,0.011035,0.00922841,0.00777932,0.00578458,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,7.9004E-4,0.00147499,0.00225994,0.00308946,0.00358354,0.00374041,0.00351734,0.0018046,7.53278E-4,2.96642E-4,3.83271E-5,5.15951E-6,1.19799E-6,7.98386E-8,1.58704E-8,4.11542E-9,5.7059E-10,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,H2 central production,biomass,H2 central production,biomass to H2 CCS,0.0,0.0,4.71725E-4,0.0011101,0.00216954,0.0037223,0.00708111,0.0122594,0.0185732,0.0311947,0.0468126,0.0651446,0.139215,0.236341,0.283681,0.390197,0.366384,0.347817,0.317551,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,0.00419569,0.00710671,0.00984283,0.0123803,0.0123995,0.0113504,0.00993302,0.00441852,0.0018117,7.82761E-4,1.76303E-4,4.7402E-5,1.55678E-5,2.22809E-6,4.83735E-7,1.35734E-7,2.56594E-8,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,H2 central production,coal,H2 central production,coal chemical CCS,0.0,0.0,0.00131032,0.00305119,0.00581997,0.00968288,0.0173338,0.0278484,0.0403431,0.0556609,0.0680739,0.0751724,0.0880956,0.0963505,0.10426,0.107409,0.10911,0.107986,0.0905823,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,4.46143E-5,8.33393E-5,1.3721E-4,2.05369E-4,2.97268E-4,4.12402E-4,5.51402E-4,6.47748E-4,7.4229E-4,8.29471E-4,9.4454E-4,0.0010593,0.00119155,0.00138282,0.00157913,0.001764,0.00188656,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,0.00737138,0.0128135,0.0182837,0.0232837,0.0259122,0.0268616,0.026379,0.0174201,0.0108579,0.00660738,0.00285914,0.0012758,6.22431E-4,1.57049E-4,4.85414E-5,1.73336E-5,3.94725E-6,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,H2 central production,gas,H2 central production,natural gas steam reforming CCS,0.0,0.0,0.00197256,0.00435979,0.00781886,0.012387,0.0200841,0.0296544,0.0402492,0.0531969,0.0628066,0.0679882,0.0812929,0.0876927,0.0924529,0.097206,0.101522,0.104792,0.0958702,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,0.00142457,0.00272905,0.0043159,0.0061513,0.00878937,0.0116746,0.0146793,0.0237683,0.0381382,0.0630788,0.0771265,0.0891654,0.102406,0.119247,0.137798,0.155263,0.154103,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,0.00136016,0.00261705,0.00415893,0.00596028,0.00857122,0.011469,0.0145421,0.0164673,0.0176399,0.0182003,0.0227173,0.0268955,0.0317506,0.0380833,0.0450576,0.0520963,0.0526739,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,7.3639E-4,0.00130504,0.00192059,0.00259719,0.00360085,0.00464397,0.00574777,0.00633392,0.00662086,0.00667948,0.00756249,0.00821841,0.00927798,0.0107493,0.0125314,0.0144591,0.0152381,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,8.65201E-4,0.00151935,0.0023043,0.00319169,0.0042747,0.00551402,0.00684738,0.00786789,0.00886076,0.00979683,0.0114262,0.0129814,0.0141807,0.0158379,0.0167035,0.0172976,0.0171462,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,0.00602868,0.0115211,0.0179877,0.0253141,0.0336754,0.042312,0.051073,0.0546221,0.0565027,0.0571645,0.0574026,0.0571809,0.0572541,0.0525657,0.0452979,0.0371913,0.0243917,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,1.63772E-5,3.8672E-5,6.92845E-5,1.06771E-4,1.30384E-4,1.40726E-4,1.40334E-4,8.36733E-5,3.98138E-5,1.71602E-5,2.24454E-6,3.15028E-7,8.14294E-8,5.9446E-9,1.39437E-9,4.17315E-10,0.0,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,H2 central production,biomass,H2 central production,biomass to H2 CCS,0.0,0.0,9.91128E-6,3.00244E-5,7.01254E-5,1.38868E-4,2.87238E-4,5.36419E-4,8.72499E-4,0.00154358,0.00252264,0.00386724,0.00849611,0.0153726,0.0209093,0.0321795,0.0359893,0.0397549,0.0442735,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,8.69461E-5,1.86093E-4,3.00914E-4,4.2585E-4,4.47556E-4,4.22101E-4,3.91081E-4,2.04161E-4,9.57342E-5,4.53242E-5,1.03902E-5,2.93622E-6,1.07918E-6,1.70802E-7,4.38204E-8,1.42133E-8,3.27126E-9,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,H2 central production,coal,H2 central production,coal chemical CCS,0.0,0.0,2.76751E-5,8.341E-5,1.91099E-4,3.68566E-4,7.18881E-4,0.00124724,0.00193419,0.00276643,0.00367045,0.00446241,0.00536295,0.00622913,0.00762054,0.00874821,0.0105782,0.0121738,0.0124417,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,9.16815E-7,2.22167E-6,4.53613E-6,8.08749E-6,1.29442E-5,1.92814E-5,2.75924E-5,3.49877E-5,4.279E-5,5.12088E-5,6.11603E-5,7.34166E-5,9.29638E-5,1.19443E-4,1.60738E-4,2.04248E-4,2.53614E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,1.5308E-4,3.37463E-4,5.65275E-4,8.15422E-4,9.64623E-4,0.0010499,0.00110299,8.26523E-4,5.78306E-4,3.86404E-4,1.70657E-4,8.03476E-5,4.40415E-5,1.23212E-5,4.51141E-6,1.86575E-6,5.17039E-7,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,H2 central production,gas,H2 central production,natural gas steam reforming CCS,0.0,0.0,4.13915E-5,1.17532E-4,2.51199E-4,4.57821E-4,8.04148E-4,0.00127579,0.00185999,0.00261769,0.0033783,0.00402357,0.0049268,0.00563339,0.00670186,0.00784047,0.00973577,0.0116756,0.0130162,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,2.96483E-5,7.22697E-5,1.34776E-4,2.18759E-4,3.35073E-4,4.72606E-4,6.38895E-4,0.00114728,0.00204201,0.00371454,0.00464883,0.00569064,0.00736681,0.00953732,0.0130902,0.0171203,0.0206984,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,2.83079E-5,6.93038E-5,1.29875E-4,2.11966E-4,3.26756E-4,4.64283E-4,6.32927E-4,7.94859E-4,9.44484E-4,0.00107177,0.00136929,0.0017165,0.00228405,0.00304589,0.00428027,0.00574446,0.00707493,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,1.00449E-5,2.22538E-5,3.6742E-5,5.39799E-5,7.69901E-5,1.02702E-4,1.32486E-4,1.57909E-4,1.76739E-4,1.90815E-4,2.19568E-4,2.47921E-4,3.01242E-4,3.67731E-4,4.81674E-4,6.14574E-4,7.44125E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,1.87329E-5,4.26686E-5,7.95591E-5,1.30289E-4,1.92691E-4,2.68444E-4,3.58701E-4,4.46235E-4,5.42112E-4,6.4895E-4,7.86665E-4,9.44402E-4,0.00114015,0.00137254,0.0016723,0.00195948,0.0022658,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,1.92739E-4,4.84363E-4,9.19535E-4,0.00152287,0.00226433,0.00315499,0.00420679,0.00504592,0.00586254,0.00656889,0.00654532,0.00639177,0.00637677,0.00541639,0.00483773,0.00431486,0.00334881,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,2.90632E-5,6.96514E-5,1.2291E-4,1.80998E-4,2.10572E-4,2.19955E-4,2.09056E-4,1.2186E-4,5.98152E-5,3.00743E-5,6.3568E-6,1.79196E-6,8.95134E-7,1.52816E-7,5.96852E-8,2.83877E-8,7.03624E-9,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,H2 central production,biomass,H2 central production,biomass to H2 CCS,0.0,0.0,1.63017E-5,4.30811E-5,8.81227E-5,1.66521E-4,3.27807E-4,5.92614E-4,9.34977E-4,0.00163876,0.00254502,0.00353688,0.00638111,0.00899035,0.00961571,0.0110491,0.0100277,0.00917008,0.00893918,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,1.54541E-4,3.37453E-4,5.40922E-4,7.34227E-4,7.39014E-4,6.76017E-4,5.9736E-4,3.01961E-4,1.44306E-4,7.7474E-5,2.41914E-5,1.03055E-5,5.9053E-6,1.48745E-6,5.74807E-7,2.69176E-7,7.75808E-8,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,H2 central production,coal,H2 central production,coal chemical CCS,0.0,0.0,4.41903E-5,1.1056E-4,2.16158E-4,4.02603E-4,7.62945E-4,0.00130426,0.00198712,0.00287187,0.00365649,0.00407616,0.00433577,0.00444777,0.00470151,0.00476837,0.00488909,0.00485538,0.00465693,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,1.29192E-6,3.09325E-6,5.83414E-6,9.6511E-6,1.4298E-5,2.01955E-5,2.74884E-5,3.40189E-5,4.10333E-5,4.86178E-5,5.8499E-5,7.17029E-5,9.30279E-5,1.23978E-4,1.66576E-4,2.14409E-4,2.70938E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,2.6895E-4,5.88862E-4,9.51918E-4,0.00130538,0.00145205,0.00150687,0.00149746,0.0010779,7.4292E-4,5.16129E-4,2.64036E-4,1.5457E-4,1.07008E-4,3.95363E-5,1.83504E-5,9.48904E-6,3.14475E-6,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,H2 central production,gas,H2 central production,natural gas steam reforming CCS,0.0,0.0,6.85814E-5,1.72862E-4,3.28993E-4,5.73749E-4,9.58456E-4,0.00146758,0.00206252,0.00285677,0.00353737,0.00396478,0.00457364,0.00502241,0.00567222,0.00645311,0.00736957,0.00814102,0.00871308,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,5.14604E-5,1.21292E-4,2.13176E-4,3.27426E-4,4.6831E-4,6.26499E-4,8.00692E-4,0.00137746,0.00235636,0.00417037,0.00521337,0.00659099,0.00878359,0.0119539,0.0165171,0.0217476,0.0269,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,4.91338E-5,1.16314E-4,2.05422E-4,3.17258E-4,4.56686E-4,6.15466E-4,7.93212E-4,9.54339E-4,0.00108988,0.00120329,0.00153558,0.00198808,0.00272332,0.00381764,0.0054008,0.00729708,0.00919472,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,3.17772E-5,7.2024E-5,1.20615E-4,1.77472E-4,2.47186E-4,3.21262E-4,4.02139E-4,4.70304E-4,5.22845E-4,5.64473E-4,6.7134E-4,8.16076E-4,0.00106753,0.00143016,0.00195702,0.00257529,0.0032295,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,2.81458E-5,6.298E-5,1.08867E-4,1.66106E-4,2.26792E-4,2.98236E-4,3.78277E-4,4.56572E-4,5.3923E-4,6.23869E-4,7.2719E-4,8.4512E-4,0.00100194,0.00119108,0.00142534,0.0016551,0.00191791,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,3.2044E-4,7.69809E-4,0.00136658,0.00212359,0.00290693,0.00378493,0.00472798,0.0053916,0.00593341,0.00631146,0.0060262,0.00581921,0.00582859,0.00504452,0.00450536,0.00397811,0.00310638,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,0.0045678,0.00826828,0.0121535,0.0163118,0.018545,0.0193941,0.018772,0.0114185,0.00688633,0.00429747,0.00116427,3.9552E-4,2.05399E-4,3.58554E-5,1.10568E-5,3.7138E-6,7.94179E-7,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,H2 central production,biomass,H2 central production,biomass to H2 CCS,0.0,0.0,0.00242859,0.00456968,0.00859462,0.0146008,0.0272955,0.0472217,0.0716075,0.113194,0.154412,0.19207,0.312682,0.392212,0.374094,0.386802,0.333532,0.305678,0.27748,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,0.0243068,0.040114,0.0535026,0.0662273,0.0652606,0.0599392,0.0541599,0.0286142,0.0165901,0.0105902,0.00368513,0.00167383,9.71428E-4,2.36642E-4,7.74232E-5,2.77444E-5,6.96417E-6,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,H2 central production,coal,H2 central production,coal chemical CCS,0.0,0.0,0.00644621,0.0112644,0.0209909,0.0350321,0.0627558,0.102182,0.148899,0.193657,0.216214,0.218781,0.224777,0.217888,0.20861,0.196393,0.186128,0.179158,0.159434,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,2.19386E-4,3.97118E-4,6.5376E-4,9.99329E-4,0.0014867,0.00211199,0.00290135,0.00350714,0.00418666,0.00490976,0.0058547,0.00697328,0.00845122,0.0104506,0.012662,0.0147825,0.0170328,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,0.0419804,0.0688857,0.0939447,0.117145,0.126531,0.129805,0.128897,0.0911663,0.0669552,0.0496852,0.0269202,0.0162939,0.0111392,0.00403189,0.0016652,7.18884E-4,2.14567E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,H2 central production,gas,H2 central production,natural gas steam reforming CCS,0.0,0.0,0.0102713,0.0185737,0.0321426,0.0504936,0.080409,0.118454,0.160857,0.202995,0.227551,0.238058,0.269235,0.284611,0.296087,0.316193,0.32962,0.34156,0.335084,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,0.00796554,0.0139326,0.0209884,0.0292343,0.0403413,0.0527741,0.0663912,0.107805,0.179531,0.311474,0.382487,0.469061,0.583038,0.740829,0.919792,1.09262,1.22996,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,0.00760542,0.0133608,0.0202251,0.0283265,0.0393401,0.0518448,0.065771,0.0746896,0.0830377,0.0898707,0.11266,0.141486,0.180769,0.236595,0.300755,0.366611,0.420414,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,0.00540605,0.00929371,0.0135239,0.0181215,0.0247023,0.0311384,0.0380955,0.0417348,0.0450009,0.0476223,0.0567374,0.0678724,0.0831298,0.104425,0.128265,0.152025,0.171938,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,0.00466269,0.0078394,0.0117563,0.0164354,0.0221807,0.028859,0.0363321,0.041666,0.0470741,0.0524093,0.0595629,0.0669052,0.0745635,0.0835639,0.0922105,0.09976,0.107323,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,0.0470742,0.0830069,0.124856,0.173598,0.224493,0.279497,0.33756,0.353012,0.365039,0.370515,0.343263,0.32665,0.318075,0.273597,0.232008,0.192977,0.140827,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,2.31058E-5,4.6894E-5,7.77508E-5,1.14168E-4,1.32211E-4,1.37881E-4,1.30304E-4,7.36308E-5,3.47764E-5,1.57006E-5,2.28013E-6,3.77772E-7,1.36954E-7,1.59076E-8,5.22859E-9,2.20734E-9,5.50565E-10,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,H2 central production,biomass,H2 central production,biomass to H2 CCS,0.0,0.0,1.35352E-5,3.28195E-5,6.22824E-5,1.07367E-4,2.13453E-4,3.93753E-4,6.35299E-4,0.00112853,0.00180607,0.00266355,0.00547829,0.00908124,0.0108112,0.0141252,0.0138944,0.0135186,0.0134248,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,1.22761E-4,2.26514E-4,3.41163E-4,4.62781E-4,4.63131E-4,4.22282E-4,3.70146E-4,1.81372E-4,8.37896E-5,4.10327E-5,9.854E-6,3.00694E-6,1.37685E-6,2.80124E-7,9.17365E-8,3.81466E-8,1.11917E-8,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,H2 central production,coal,H2 central production,coal chemical CCS,0.0,0.0,3.73186E-5,8.79656E-5,1.58141E-4,2.61172E-4,5.00719E-4,8.74916E-4,0.00136576,0.00199673,0.002612,0.00307339,0.00355201,0.00393197,0.00443139,0.00473512,0.00524216,0.00553628,0.00538159,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,9.71897E-7,1.99643E-6,3.55818E-6,5.80035E-6,8.94483E-6,1.31268E-5,1.84345E-5,2.35396E-5,2.91437E-5,3.5155E-5,4.23076E-5,5.0392E-5,6.45799E-5,8.44342E-5,1.14201E-4,1.4803E-4,1.89802E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,2.1504E-4,4.03205E-4,6.11893E-4,8.26214E-4,9.181E-4,9.57645E-4,9.55695E-4,6.81414E-4,4.6699E-4,3.13852E-4,1.4068E-4,6.83123E-5,4.16297E-5,1.33559E-5,5.57432E-6,2.65039E-6,8.64961E-7,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,H2 central production,gas,H2 central production,natural gas steam reforming CCS,0.0,0.0,5.67027E-5,1.29903E-4,2.29343E-4,3.68851E-4,6.21112E-4,9.68142E-4,0.00138835,0.00194467,0.00246441,0.00286532,0.00342561,0.00381683,0.00439346,0.00504622,0.00603441,0.00696535,0.00764648,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,4.14305E-5,8.47976E-5,1.39726E-4,2.08087E-4,2.98346E-4,4.03375E-4,5.21664E-4,9.0085E-4,0.00156254,0.00279624,0.0034376,0.00415772,0.00542647,0.00720057,0.00999572,0.0132621,0.0166503,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,3.95574E-5,8.13175E-5,1.34644E-4,2.01625E-4,2.90941E-4,3.96272E-4,5.16791E-4,6.2413E-4,7.22715E-4,8.06809E-4,0.00101253,0.00125412,0.00168246,0.00229961,0.00326842,0.0044499,0.00569124,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,2.60578E-5,5.10284E-5,8.04094E-5,1.15908E-4,1.61523E-4,2.14538E-4,2.75022E-4,3.26282E-4,3.7286E-4,4.12289E-4,4.98143E-4,5.97651E-4,7.79676E-4,0.00103381,0.00143035,0.00190234,0.00241411,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,2.16169E-5,4.17004E-5,6.81071E-5,1.02013E-4,1.43778E-4,1.95557E-4,2.55341E-4,3.16566E-4,3.84026E-4,4.56138E-4,5.45326E-4,6.36599E-4,7.54991E-4,8.93257E-4,0.00108202,0.00127628,0.00150978,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,2.66016E-4,5.58473E-4,9.32993E-4,0.00140802,0.00193319,0.00255284,0.0032355,0.00369816,0.0041327,0.00447798,0.00428111,0.00402555,0.00391038,0.00325338,0.00288237,0.00256059,0.0020277,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,3.11413E-5,8.3585E-5,1.55269E-4,2.37915E-4,2.89549E-4,3.11637E-4,3.02499E-4,1.78463E-4,8.8242E-5,4.22845E-5,8.62653E-6,2.43015E-6,1.2687E-6,2.29705E-7,9.76149E-8,5.00794E-8,1.30625E-8,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,H2 central production,biomass,H2 central production,biomass to H2 CCS,0.0,0.0,1.69249E-5,5.02774E-5,1.11428E-4,2.20149E-4,4.56936E-4,8.60744E-4,0.00140514,0.00253392,0.00403439,0.00583155,0.0109474,0.0159255,0.0173471,0.0199873,0.0178969,0.0160205,0.0153869,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,1.6567E-4,4.05145E-4,6.83321E-4,9.64928E-4,0.00101549,9.56388E-4,8.62183E-4,4.41164E-4,2.12804E-4,1.09626E-4,3.39516E-5,1.47394E-5,8.78212E-6,2.32829E-6,9.5647E-7,4.74014E-7,1.4202E-7,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,H2 central production,coal,H2 central production,coal chemical CCS,0.0,0.0,4.53146E-5,1.27754E-4,2.73407E-4,5.33117E-4,0.00106662,0.00190214,0.00300152,0.00445852,0.00581052,0.00672544,0.0073502,0.0077122,0.00831536,0.00847891,0.00866179,0.00848899,0.00806419,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,1.81755E-6,4.90493E-6,9.67418E-6,1.63284E-5,2.45926E-5,3.47887E-5,4.73193E-5,5.82044E-5,6.96772E-5,8.20237E-5,9.85272E-5,1.203E-4,1.55867E-4,2.07498E-4,2.7809E-4,3.53886E-4,4.4338E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,2.87009E-4,7.04055E-4,0.0012027,0.00171741,0.00200187,0.00214744,0.00218927,0.00160836,0.00112718,7.75312E-4,3.98234E-4,2.37353E-4,1.69339E-4,6.46252E-5,3.11592E-5,1.66731E-5,5.66411E-6,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,H2 central production,gas,H2 central production,natural gas steam reforming CCS,0.0,0.0,7.14247E-5,2.02375E-4,4.15953E-4,7.57942E-4,0.0013336,0.00212503,0.00308681,0.00439591,0.00557048,0.00642268,0.00757256,0.00849244,0.00980302,0.011277,0.0129474,0.0142467,0.0151925,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,5.46446E-5,1.44357E-4,2.6938E-4,4.31235E-4,6.47458E-4,8.97788E-4,0.00118122,0.00208442,0.00364455,0.00653598,0.00833063,0.0107739,0.0147382,0.020455,0.0287164,0.0381049,0.0473649,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,5.21741E-5,1.38432E-4,2.59582E-4,4.17844E-4,6.31389E-4,8.81977E-4,0.00117019,0.00144413,0.0016857,0.00188585,0.00245375,0.0032498,0.00456951,0.00653261,0.00938974,0.0127855,0.0161898,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,3.08219E-5,7.7616E-5,1.3775E-4,2.10726E-4,3.10374E-4,4.17265E-4,5.35278E-4,6.37543E-4,7.10425E-4,7.62673E-4,9.08783E-4,0.00111319,0.00146705,0.00196249,0.00268867,0.00352915,0.00441071,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,3.71451E-5,9.33775E-5,1.69249E-4,2.64602E-4,3.70685E-4,4.93213E-4,6.30899E-4,7.64776E-4,9.04956E-4,0.00105249,0.00123718,0.00144308,0.00171324,0.00203036,0.00241409,0.00276191,0.00315364,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,3.52992E-4,9.55434E-4,0.00181724,0.00297284,0.00432478,0.0059091,0.00767394,0.0090433,0.0102404,0.0111452,0.0108791,0.0106751,0.0108052,0.00934235,0.00835092,0.00736408,0.00573404,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,4.25903E-4,6.93819E-4,9.88683E-4,0.00130039,0.00139361,0.00134248,0.00118489,5.87259E-4,2.48199E-4,1.02229E-4,1.39245E-5,2.43467E-6,8.57593E-7,9.59079E-8,2.78454E-8,1.0535E-8,2.3328E-9,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,H2 central production,biomass,H2 central production,biomass to H2 CCS,0.0,0.0,2.47857E-4,4.82105E-4,7.96589E-4,0.00122472,0.00225611,0.00384359,0.00577782,0.00895702,0.0127004,0.016856,0.0316184,0.0468039,0.0486831,0.0540954,0.0441571,0.0367529,0.0315234,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,0.00226314,0.00335212,0.00433743,0.0052709,0.00488106,0.0041109,0.0033658,0.00144691,5.98081E-4,2.6688E-4,5.96734E-5,1.84645E-5,8.01066E-6,1.50613E-6,4.32929E-7,1.60739E-7,4.15365E-8,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,H2 central production,coal,H2 central production,coal chemical CCS,0.0,0.0,6.81633E-4,0.00128895,0.00202623,0.00298035,0.0052955,0.00854397,0.0124214,0.0158422,0.0183591,0.0194487,0.0205669,0.0206778,0.020585,0.0190439,0.0175446,0.0158763,0.0133749,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,1.95084E-5,3.54802E-5,5.77543E-5,8.66878E-5,1.24896E-4,1.72531E-4,2.3139E-4,2.69579E-4,3.0596E-4,3.4097E-4,3.73484E-4,4.13938E-4,4.81492E-4,5.74079E-4,6.89731E-4,8.04034E-4,9.10915E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,0.00396035,0.00595963,0.00778753,0.00941289,0.00968262,0.00932979,0.00869076,0.00542554,0.00331356,0.00201937,8.37228E-4,3.95458E-4,2.22625E-4,6.46422E-5,2.33189E-5,9.79909E-6,2.81848E-6,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,H2 central production,gas,H2 central production,natural gas steam reforming CCS,0.0,0.0,0.001039,0.0019097,0.00293122,0.0042066,0.00656255,0.0094475,0.0126263,0.0154412,0.0173538,0.0181923,0.0199533,0.0205204,0.0210965,0.0211991,0.0212505,0.0211166,0.0200903,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,7.62213E-4,0.00125182,0.00178012,0.00237134,0.00314825,0.00393211,0.004744,0.0071636,0.0110429,0.017855,0.0201813,0.022916,0.0269771,0.0315981,0.0370884,0.0426867,0.0466712,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,7.27753E-4,0.00120045,0.00171538,0.0022977,0.00307011,0.00386287,0.00469969,0.00496311,0.00510765,0.00515176,0.0059443,0.00691229,0.00836415,0.0100913,0.0121272,0.0143229,0.0159527,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,5.96783E-4,9.37739E-4,0.00128276,0.00166173,0.00218412,0.00272254,0.00328756,0.00344229,0.00350171,0.00351242,0.00396527,0.00453684,0.00540921,0.0064496,0.00769075,0.0090519,0.0100885,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,4.30823E-4,7.16506E-4,0.00105044,0.00143209,0.00187639,0.00238149,0.00293814,0.00326447,0.00357325,0.00386828,0.00422472,0.00458041,0.00494177,0.00532531,0.00572683,0.00610705,0.00649776,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,0.00496634,0.00821235,0.0116918,0.0156387,0.0197457,0.0238784,0.0280706,0.0278324,0.0274691,0.0268207,0.0238207,0.0214481,0.0194916,0.0150199,0.0116752,0.00924069,0.00657343,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,1.41471E-4,3.23834E-4,5.69061E-4,8.9025E-4,0.00119826,0.00146363,0.00175059,0.0014714,0.00120824,0.00110041,5.64459E-4,3.45406E-4,2.02111E-4,3.04136E-5,4.48619E-6,1.00831E-6,1.30868E-7,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,H2 central production,biomass,H2 central production,biomass to H2 CCS,0.0,0.0,7.82521E-5,1.7797E-4,3.93765E-4,7.60463E-4,0.00162822,0.00313458,0.0049314,0.00798532,0.0113029,0.0145099,0.0245135,0.0302727,0.0321515,0.0394319,0.047038,0.0532454,0.0579395,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,7.52428E-4,0.00157116,0.00250619,0.00361933,0.00423117,0.0045512,0.00512299,0.00372904,0.00285803,0.00251241,0.00138213,9.50223E-4,6.29473E-4,1.37085E-4,2.63005E-5,7.00704E-6,1.19487E-6,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,H2 central production,coal,H2 central production,coal chemical CCS,0.0,0.0,2.10965E-4,4.37812E-4,9.55132E-4,0.00180081,0.00367798,0.00663514,0.0098109,0.0129303,0.01507,0.0158915,0.0182563,0.0188132,0.0203422,0.0232304,0.028264,0.0321791,0.0327214,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,4.68433E-6,1.03039E-5,1.99789E-5,3.49486E-5,5.80042E-5,9.10877E-5,1.3815E-4,1.80655E-4,2.3105E-4,2.89388E-4,3.79389E-4,5.05449E-4,6.74437E-4,9.14537E-4,0.0011554,0.00142112,0.00165634,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,0.0013068,0.00269604,0.00438538,0.00634813,0.00805564,0.00952084,0.0111442,0.00973848,0.00860429,0.00796813,0.00597037,0.00491287,0.00388417,0.00142824,4.45273E-4,1.64534E-4,3.86951E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,H2 central production,gas,H2 central production,natural gas steam reforming CCS,0.0,0.0,3.29658E-4,7.23842E-4,0.0014767,0.00264667,0.00484924,0.00799759,0.0115049,0.0152685,0.0181549,0.0203548,0.0260542,0.0301121,0.0353171,0.0446736,0.0550228,0.0638921,0.067337,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,2.49492E-4,5.44803E-4,9.76099E-4,0.00157068,0.00252716,0.00376469,0.00535757,0.00994772,0.0185659,0.03685,0.053991,0.0769661,0.105827,0.142983,0.178164,0.217436,0.239213,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,2.38213E-4,5.22444E-4,9.40598E-4,0.00152191,0.00246444,0.00369839,0.00530752,0.00689201,0.00858722,0.0106325,0.0159028,0.0232157,0.0328112,0.0456638,0.0582564,0.0729575,0.0817656,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,7.01393E-5,1.3654E-4,2.18945E-4,3.2056E-4,4.84737E-4,6.79455E-4,9.23795E-4,0.00114779,0.00136877,0.00162802,0.0021303,0.00264239,0.00320336,0.00389448,0.00457713,0.00546672,0.00619252,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,1.07194E-4,2.20608E-4,3.92063E-4,6.31914E-4,9.64911E-4,0.0014038,0.00195347,0.00242614,0.00294917,0.00353756,0.00438877,0.00537866,0.00652558,0.00795299,0.00935447,0.0106826,0.0115285,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,0.00172397,0.00384925,0.00699448,0.011426,0.0176518,0.0255929,0.035149,0.0420494,0.0488189,0.0564745,0.0609067,0.0632999,0.0640237,0.0546372,0.045868,0.0387408,0.0273592,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,1.07579E-4,2.36693E-4,4.02412E-4,6.08603E-4,7.91413E-4,9.565E-4,0.00117866,9.94537E-4,8.14505E-4,7.01612E-4,3.24631E-4,1.67172E-4,9.52568E-5,1.85621E-5,3.11631E-6,7.25657E-7,1.0323E-7,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,H2 central production,biomass,H2 central production,biomass to H2 CCS,0.0,0.0,5.85395E-5,1.29073E-4,2.72417E-4,4.98484E-4,0.00100366,0.0017968,0.00256811,0.00405882,0.00571246,0.00724484,0.0126928,0.0169204,0.0192042,0.0246978,0.0315462,0.0377198,0.0452579,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,5.72302E-4,0.00114842,0.00177292,0.00247685,0.00280177,0.0029897,0.00347701,0.00252166,0.00190685,0.00157261,7.82717E-4,4.7181E-4,3.0877E-4,8.40351E-5,1.81659E-5,5.03006E-6,9.40933E-7,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,H2 central production,coal,H2 central production,coal chemical CCS,0.0,0.0,1.56809E-4,3.16637E-4,6.5622E-4,0.0011665,0.00223238,0.0037165,0.00490951,0.00638196,0.00746661,0.00784366,0.00945358,0.010475,0.0120479,0.0145272,0.0189997,0.0228205,0.0255778,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,4.42662E-6,9.42879E-6,1.78618E-5,3.04353E-5,4.91727E-5,7.47722E-5,1.09645E-4,1.37909E-4,1.70949E-4,2.10531E-4,2.74325E-4,3.63708E-4,4.90482E-4,7.2445E-4,9.87613E-4,0.00126734,0.00157049,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,9.91639E-4,0.00196861,0.0030917,0.00431259,0.00525475,0.00605061,0.00707348,0.00607244,0.00527885,0.0046588,0.00328753,0.00252869,0.00202049,8.80778E-4,3.05131E-4,1.17701E-4,3.04087E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,H2 central production,gas,H2 central production,natural gas steam reforming CCS,0.0,0.0,2.47012E-4,5.25446E-4,0.00102448,0.00174496,0.00301817,0.00466832,0.0062079,0.00804018,0.00947994,0.0104457,0.0136425,0.0165596,0.0205217,0.0278797,0.0371014,0.0453754,0.0526823,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,1.88837E-4,3.9732E-4,6.85588E-4,0.00105895,0.00162599,0.00232697,0.00321545,0.00580793,0.0106418,0.0203334,0.0289855,0.0410617,0.0586789,0.0888564,0.120755,0.154766,0.187404,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,1.803E-4,3.81014E-4,6.60653E-4,0.00102606,0.00158563,0.00228599,0.00318542,0.00402387,0.00492213,0.00586688,0.00853754,0.0123857,0.0181932,0.0283776,0.0394847,0.0519293,0.0640567,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,4.85032E-5,8.41911E-5,1.24453E-4,1.70872E-4,2.38164E-4,3.18823E-4,4.18853E-4,5.08668E-4,5.94426E-4,6.7886E-4,8.64474E-4,0.00105923,0.00129769,0.00166276,0.00199176,0.0023713,0.00284371,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,9.43435E-5,1.87126E-4,3.2254E-4,5.02416E-4,7.38759E-4,0.00103052,0.00137243,0.00163329,0.00192427,0.00225453,0.00278114,0.00343183,0.00425328,0.0056075,0.00712499,0.00856435,0.0100726,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,0.00112765,0.00241299,0.0041948,0.00653353,0.00951849,0.0130982,0.0172197,0.0197758,0.0223327,0.0246381,0.0255996,0.0264424,0.0276695,0.0257665,0.0233039,0.0206273,0.016163,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,7.50406E-5,1.6708E-4,2.75411E-4,3.98131E-4,4.54869E-4,4.45917E-4,3.95888E-4,2.08311E-4,9.11225E-5,3.77629E-5,4.99863E-6,7.4585E-7,2.32545E-7,2.5225E-8,7.85413E-9,3.10618E-9,7.32663E-10,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,H2 central production,biomass,H2 central production,biomass to H2 CCS,0.0,0.0,4.45539E-5,1.22948E-4,2.50026E-4,4.26121E-4,7.48668E-4,0.00130999,0.00200546,0.00336799,0.0050623,0.00697253,0.013436,0.0210115,0.0241919,0.0296176,0.0273396,0.0252377,0.0238226,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,3.98573E-4,8.05697E-4,0.0012027,0.00160532,0.00159175,0.00136325,0.00112147,5.11788E-4,2.19416E-4,9.9008E-5,2.19683E-5,6.14658E-6,2.48929E-6,4.77429E-7,1.47037E-7,5.72499E-8,1.5918E-8,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,H2 central production,coal,H2 central production,coal chemical CCS,0.0,0.0,1.23487E-4,3.3532E-4,6.59556E-4,0.00107391,0.00176351,0.00292421,0.00433287,0.00598166,0.00733672,0.00804607,0.00865541,0.00896624,0.00965551,0.0096268,0.0100323,0.0100544,0.00928133,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,5.39463E-6,1.22545E-5,2.14895E-5,3.32217E-5,4.66761E-5,6.22448E-5,8.02012E-5,9.25129E-5,1.04242E-4,1.15607E-4,1.27347E-4,1.40642E-4,1.67319E-4,2.03632E-4,2.59433E-4,3.16268E-4,3.8332E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,6.99633E-4,0.00144679,0.00220883,0.00294156,0.00317055,0.0031181,0.00293464,0.00196413,0.00125654,7.82104E-4,3.24669E-4,1.45597E-4,8.07565E-5,2.42806E-5,9.51546E-6,4.24795E-6,1.31093E-6,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,H2 central production,gas,H2 central production,natural gas steam reforming CCS,0.0,0.0,1.86407E-4,4.84022E-4,9.06968E-4,0.00143935,0.00217302,0.00320992,0.00436485,0.00577673,0.00686416,0.00742741,0.00824884,0.00856762,0.00930962,0.00998758,0.011245,0.0123007,0.0128341,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,1.35086E-4,3.06928E-4,5.15991E-4,7.59293E-4,0.00103445,0.0013218,0.00161671,0.00263319,0.00428154,0.00712771,0.00815052,0.00917245,0.0111775,0.0138841,0.0181383,0.0227458,0.0271023,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,1.28978E-4,2.94332E-4,4.97224E-4,7.35714E-4,0.00100877,0.00129852,0.00160161,0.00182434,0.00198033,0.00205658,0.0024007,0.00276674,0.00346554,0.00443409,0.00593089,0.00763203,0.00926387,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,7.123E-5,1.58311E-4,2.53992E-4,3.54897E-4,4.67433E-4,5.72048E-4,6.70528E-4,7.23916E-4,7.09454E-4,7.05537E-4,7.44859E-4,7.97264E-4,9.49855E-4,0.00115357,0.00153283,0.00195274,0.00243928,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,1.04957E-4,2.23803E-4,3.62409E-4,5.1844E-4,6.69641E-4,8.34605E-4,0.00100592,0.00114023,0.00126665,0.00138756,0.00152932,0.00166415,0.00185058,0.00204485,0.0023331,0.00259587,0.00291231,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,8.55702E-4,0.00200719,0.00345842,0.00520606,0.006838,0.00861035,0.0104034,0.0113437,0.0119738,0.0121684,0.010938,0.00969531,0.0089509,0.00707757,0.0059581,0.0050465,0.00383072,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,1.02196E-4,2.36421E-4,4.10176E-4,6.16232E-4,7.34877E-4,7.92661E-4,7.75114E-4,4.18577E-4,1.85171E-4,7.74699E-5,9.98758E-6,1.40074E-6,3.63677E-7,2.70286E-8,6.52548E-9,2.10403E-9,4.49909E-10,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,H2 central production,biomass,H2 central production,biomass to H2 CCS,0.0,0.0,6.16544E-5,1.80731E-4,4.01482E-4,7.56886E-4,0.0014733,0.00260335,0.00408852,0.00721437,0.0114226,0.0167571,0.035193,0.0606656,0.0784945,0.112263,0.119493,0.125755,0.131475,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,5.42598E-4,0.00113841,0.00178468,0.00246661,0.0025402,0.00240501,0.00218911,0.00102503,4.45391E-4,2.0431E-4,4.57299E-5,1.27065E-5,4.62143E-6,7.2038E-7,1.86785E-7,6.33167E-8,1.69577E-8,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,H2 central production,coal,H2 central production,coal chemical CCS,0.0,0.0,1.71948E-4,4.99424E-4,0.00108326,0.00197892,0.00361724,0.00591566,0.00887952,0.0128701,0.0166069,0.0193368,0.022311,0.0248647,0.0291249,0.0315174,0.0365562,0.0406069,0.0404517,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,4.87112E-6,1.22544E-5,2.38502E-5,4.05069E-5,6.17357E-5,8.86614E-5,1.22911E-4,1.49775E-4,1.78104E-4,2.09532E-4,2.38068E-4,2.73377E-4,3.34812E-4,4.13619E-4,5.48442E-4,6.98916E-4,8.90161E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,9.54844E-4,0.00205846,0.00332867,0.0046596,0.0053298,0.00569537,0.00581133,0.00403641,0.00266128,0.00171461,7.34696E-4,3.36998E-4,1.80486E-4,4.89355E-5,1.77698E-5,7.46507E-6,2.26601E-6,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,H2 central production,gas,H2 central production,natural gas steam reforming CCS,0.0,0.0,2.57558E-4,7.08633E-4,0.00144368,0.00251277,0.00417135,0.00629577,0.00886108,0.0123059,0.015336,0.0175202,0.0206557,0.0227584,0.0260724,0.0289695,0.0347946,0.0407737,0.0454734,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,1.84838E-4,4.39622E-4,7.88616E-4,0.00123575,0.00181354,0.00247648,0.00323302,0.00550308,0.00932892,0.0163026,0.0196764,0.0232759,0.0291348,0.0360244,0.0481765,0.0622847,0.0774055,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,1.76482E-4,4.2158E-4,7.59933E-4,0.00119737,0.00176853,0.00243287,0.00320282,0.00381266,0.00431488,0.00470384,0.00579558,0.00702085,0.00903314,0.0115049,0.0157528,0.0208987,0.026458,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,1.02901E-4,2.28808E-4,3.82893E-4,5.63578E-4,7.88324E-4,0.00103218,0.0012984,0.00148325,0.00157561,0.00163609,0.00184703,0.00205112,0.00243568,0.00288094,0.00372145,0.00472351,0.00591291,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,1.05789E-4,2.46512E-4,4.39781E-4,6.88832E-4,9.69941E-4,0.0012985,0.00167671,0.00201079,0.0023645,0.00275497,0.00318034,0.00364854,0.0042442,0.00486686,0.00580161,0.00674631,0.00787158,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,0.00125066,0.00303744,0.00555076,0.00887464,0.0126042,0.0168998,0.0216771,0.0247496,0.0273348,0.0292334,0.0280591,0.0264422,0.0254759,0.0205577,0.0178319,0.0156127,0.0122531,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,4.05838E-4,8.932E-4,0.00157007,0.00233843,0.00274831,0.00287529,0.00271602,0.00154371,7.34309E-4,3.35121E-4,5.03669E-5,8.48532E-6,3.14876E-6,3.79256E-7,1.30537E-7,5.77565E-8,1.5454E-8,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,H2 central production,biomass,H2 central production,biomass to H2 CCS,0.0,0.0,2.40844E-4,6.23322E-4,0.00120369,0.00218753,0.00439983,0.00811827,0.0130675,0.023333,0.0376243,0.0562948,0.121411,0.214736,0.272831,0.376845,0.385323,0.388062,0.400128,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,0.0021556,0.00431485,0.0068984,0.00948062,0.00963156,0.00881222,0.00772241,0.00380509,0.00176943,8.75495E-4,2.17776E-4,6.83023E-5,3.23293E-5,6.87427E-6,2.34854E-6,1.01928E-6,3.18499E-7,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,H2 central production,coal,H2 central production,coal chemical CCS,0.0,0.0,6.67409E-4,0.001669,0.00301503,0.00531339,0.0103024,0.0180053,0.0280436,0.0412422,0.0543903,0.0649559,0.0787053,0.0925411,0.110837,0.124777,0.143823,0.157502,0.159456,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,1.21376E-5,2.89484E-5,5.86367E-5,1.05031E-4,1.71384E-4,2.59963E-4,3.73145E-4,4.80984E-4,6.03277E-4,7.43737E-4,9.11437E-4,0.00112227,0.00147529,0.00202766,0.00286225,0.00384132,0.00503666,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,0.00378355,0.00767684,0.0122772,0.0169089,0.0190538,0.0199163,0.0198473,0.0142171,0.0098084,0.00667149,0.00311223,0.00157286,0.00100102,3.36388E-4,1.46251E-4,7.23611E-5,2.49436E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,H2 central production,gas,H2 central production,natural gas steam reforming CCS,0.0,0.0,0.0010077,0.00246794,0.00445636,0.00752038,0.012817,0.0199886,0.0285977,0.0402561,0.0514036,0.0606279,0.0758782,0.0893744,0.10886,0.131546,0.163851,0.196349,0.225285,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,7.30475E-4,0.00161371,0.00278175,0.00425439,0.00618087,0.00836768,0.0107991,0.0187273,0.0326996,0.0592826,0.0761091,0.0968087,0.133167,0.18573,0.268602,0.370263,0.48741,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,6.9745E-4,0.00154748,0.00268057,0.00412227,0.00602746,0.00822032,0.0106983,0.0129747,0.0151244,0.017105,0.0224176,0.029201,0.041288,0.0593157,0.087828,0.124236,0.166602,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,3.47956E-4,7.1108E-4,0.00113176,0.00162567,0.00225179,0.00295298,0.00372916,0.00440392,0.00497159,0.00547979,0.00674233,0.0082182,0.010832,0.0145298,0.0201508,0.0269845,0.0353113,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,2.9147E-4,6.42188E-4,0.001169,0.00189446,0.00279421,0.00389581,0.00516571,0.00646662,0.00794711,0.00964347,0.0118719,0.0144689,0.017777,0.0220702,0.0276844,0.0335399,0.0402125,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,0.00521531,0.0116989,0.0202302,0.0311502,0.0432358,0.0571408,0.0723282,0.083525,0.0945217,0.104381,0.105581,0.105742,0.109404,0.0963616,0.0889163,0.0818611,0.0675345,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,3.16119E-5,6.87356E-5,1.23334E-4,2.07719E-4,3.03979E-4,4.17744E-4,5.94366E-4,5.87707E-4,5.89245E-4,6.41033E-4,3.94674E-4,2.25207E-4,1.34546E-4,1.3089E-5,2.28267E-6,5.54465E-7,7.74863E-8,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,H2 central production,biomass,H2 central production,biomass to H2 CCS,0.0,0.0,1.624E-5,3.73661E-5,8.3341E-5,1.70055E-4,3.83902E-4,7.54495E-4,0.00118077,0.00198648,0.00296347,0.0039423,0.00724382,0.0104724,0.0124581,0.0197645,0.0247094,0.0296968,0.0346155,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,1.6827E-4,3.33508E-4,5.43394E-4,8.45368E-4,0.00107631,0.00130749,0.00175692,0.0014883,0.00135999,0.001378,8.49301E-4,5.52922E-4,3.82267E-4,6.05505E-5,1.34516E-5,3.86189E-6,7.0857E-7,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,H2 central production,coal,H2 central production,coal chemical CCS,0.0,0.0,4.25245E-5,9.15615E-5,2.00643E-4,3.97893E-4,8.53087E-4,0.00154964,0.00222408,0.00306022,0.00377829,0.00415162,0.00536238,0.00658525,0.00800453,0.0115352,0.0148157,0.0179301,0.0195362,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,8.72378E-7,1.9666E-6,4.02493E-6,7.45362E-6,1.34021E-5,2.30913E-5,3.84173E-5,5.4869E-5,7.60551E-5,1.04025E-4,1.46001E-4,2.0372E-4,2.84137E-4,3.98298E-4,5.36201E-4,6.94948E-4,8.53093E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,2.89272E-4,5.7146E-4,9.47331E-4,0.0014718,0.00201684,0.00262113,0.00349613,0.00341291,0.00344794,0.00358293,0.00294932,0.00245219,0.00206812,6.53426E-4,2.29378E-4,9.09659E-5,2.29902E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,H2 central production,gas,H2 central production,natural gas steam reforming CCS,0.0,0.0,6.89211E-5,1.5217E-4,3.13495E-4,5.95323E-4,0.00115514,0.00197128,0.00289322,0.00403665,0.00512741,0.00606308,0.00844983,0.011162,0.0145269,0.0219165,0.028762,0.0355548,0.040171,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,5.45986E-5,1.15279E-4,2.10007E-4,3.61367E-4,6.23562E-4,9.99815E-4,0.00155849,0.00312931,0.00644215,0.0138878,0.0217484,0.0328621,0.0487397,0.0684374,0.0926985,0.120757,0.142531,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,5.21302E-5,1.10548E-4,2.02369E-4,3.50145E-4,6.08086E-4,9.82208E-4,0.00154393,0.00216806,0.00297967,0.00400709,0.00640588,0.0099124,0.0151116,0.0218565,0.0303107,0.0405183,0.0487186,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,2.46239E-5,4.62273E-5,7.51402E-5,1.17216E-4,1.83819E-4,2.72289E-4,3.97888E-4,5.24426E-4,6.8219E-4,8.80486E-4,0.0013072,0.00187713,0.00265692,0.00351347,0.00450812,0.00564671,0.0065281,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,2.09145E-5,4.35302E-5,8.08868E-5,1.38222E-4,2.27353E-4,3.58576E-4,5.41061E-4,7.2339E-4,9.47334E-4,0.0012275,0.00162285,0.00212744,0.00274474,0.00359563,0.00449841,0.00542029,0.00617632,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,3.6975E-4,7.89703E-4,0.00144683,0.0025205,0.0041411,0.00637747,0.00944873,0.0120024,0.0151564,0.0187614,0.0213944,0.0238885,0.026251,0.023999,0.0216573,0.0194139,0.014616,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,4.25302E-4,7.22542E-4,0.00104902,0.00140148,0.00159454,0.00164646,0.00147766,7.60496E-4,3.26418E-4,1.33284E-4,1.70244E-5,2.34574E-6,5.78374E-7,4.22908E-8,9.44739E-9,2.70842E-9,4.57895E-10,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,H2 central production,biomass,H2 central production,biomass to H2 CCS,0.0,0.0,2.56801E-4,5.51584E-4,0.00100908,0.00164351,0.00292454,0.004923,0.0077152,0.0129313,0.0198172,0.0283611,0.059136,0.101402,0.127386,0.185078,0.188689,0.191184,0.194131,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,0.00225805,0.00347935,0.00456838,0.00562469,0.0055445,0.00502779,0.00417648,0.00186365,7.85271E-4,3.51297E-4,7.7779E-5,2.12698E-5,7.38559E-6,1.14388E-6,2.76836E-7,8.51517E-8,1.90957E-8,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,H2 central production,coal,H2 central production,coal chemical CCS,0.0,0.0,7.16427E-4,0.0015235,0.00270856,0.00424472,0.00704886,0.0110207,0.0167341,0.0230473,0.0287979,0.0327276,0.0375222,0.0415688,0.0471677,0.0516331,0.0571483,0.060587,0.0571953,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,2.09187E-5,3.78485E-5,6.2658E-5,9.58527E-5,1.43021E-4,2.02814E-4,2.75639E-4,3.2821E-4,3.82505E-4,4.38113E-4,5.07856E-4,5.82862E-4,6.91368E-4,8.45689E-4,0.00104647,0.00124423,0.00143942,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,0.00397416,0.00628974,0.00848962,0.0105137,0.0113556,0.0115619,0.0110468,0.00729869,0.00466177,0.00292968,0.00124409,5.63835E-4,2.89921E-4,7.86319E-5,2.68689E-5,1.04323E-5,2.76823E-6,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,H2 central production,gas,H2 central production,natural gas steam reforming CCS,0.0,0.0,0.00107269,0.00216304,0.0036358,0.00548761,0.00837181,0.0120375,0.0167389,0.0220833,0.0266469,0.0297106,0.034792,0.0380547,0.042137,0.047223,0.0539336,0.0598464,0.0620924,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,7.69423E-4,0.00134296,0.00200474,0.00276276,0.00379062,0.00492084,0.00613048,0.00991534,0.0162709,0.0277334,0.0332056,0.0389276,0.0469955,0.0584663,0.0741187,0.0900801,0.102221,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,7.34637E-4,0.00128785,0.00193183,0.00267696,0.00369654,0.00483419,0.00607321,0.00686958,0.00752575,0.00800202,0.00978057,0.011742,0.0145708,0.0186721,0.0242355,0.0302251,0.0349401,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,5.41842E-4,9.03061E-4,0.00128102,0.00170306,0.00226153,0.00287909,0.0035491,0.00393379,0.00422915,0.00443503,0.00518811,0.00599034,0.00719001,0.00887288,0.011164,0.0135776,0.0155097,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,4.49055E-4,7.56666E-4,0.00114101,0.00159736,0.00216481,0.00282265,0.00355906,0.00411913,0.00471208,0.00532502,0.00619821,0.00708152,0.00798882,0.00917816,0.010394,0.0115155,0.0126553,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,0.0046927,0.00836708,0.0126409,0.0176454,0.0230855,0.0290833,0.0354816,0.0379399,0.0400977,0.0414081,0.0386724,0.0355984,0.0327406,0.0263407,0.0216865,0.0180044,0.0132103,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,2.31076E-5,4.40893E-5,6.9808E-5,9.72718E-5,1.16658E-4,1.26857E-4,1.30524E-4,8.49874E-5,5.93875E-5,4.65279E-5,2.02366E-5,1.26007E-5,1.063E-5,2.27859E-6,5.74723E-7,1.28467E-7,1.66699E-8,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,H2 central production,biomass,H2 central production,biomass to H2 CCS,0.0,0.0,1.29575E-5,2.69882E-5,4.99003E-5,8.8631E-5,1.77065E-4,3.22959E-4,5.25055E-4,9.2539E-4,0.00132023,0.00168455,0.0030348,0.00404826,0.00405229,0.00497433,0.00555643,0.0066397,0.00730854,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,1.22873E-4,2.13646E-4,3.07242E-4,3.94712E-4,4.09931E-4,3.91136E-4,3.75432E-4,2.12323E-4,1.43061E-4,1.13368E-4,5.90919E-5,4.35967E-5,3.83629E-5,1.12338E-5,3.32547E-6,8.89687E-7,1.51946E-7,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,H2 central production,coal,H2 central production,coal chemical CCS,0.0,0.0,3.51209E-5,6.90047E-5,1.22286E-4,2.13711E-4,4.09842E-4,7.04113E-4,0.0010999,0.00159538,0.00184789,0.00191001,0.00222055,0.0023963,0.00247341,0.00283552,0.00335674,0.00401858,0.00413047,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,1.3601E-6,2.45275E-6,4.02489E-6,6.1383E-6,9.11413E-6,1.30997E-5,1.79454E-5,2.13076E-5,2.6196E-5,3.20441E-5,4.03282E-5,5.27792E-5,7.0943E-5,1.02372E-4,1.38868E-4,1.75928E-4,2.11798E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,2.13829E-4,3.72234E-4,5.40424E-4,7.00488E-4,8.00576E-4,8.57737E-4,9.088E-4,6.9995E-4,5.75565E-4,4.94654E-4,3.62829E-4,3.14759E-4,2.94662E-4,1.3201E-4,5.52834E-5,2.0792E-5,4.91054E-6,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,H2 central production,gas,H2 central production,natural gas steam reforming CCS,0.0,0.0,5.45137E-5,1.08417E-4,1.86366E-4,3.05776E-4,5.19461E-4,8.05512E-4,0.00117219,0.00164476,0.0019471,0.00213196,0.00280835,0.00344114,0.00400259,0.0052297,0.0065812,0.00799453,0.00850745,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,4.09118E-5,7.65405E-5,1.20962E-4,1.75387E-4,2.56856E-4,3.52162E-4,4.73935E-4,8.47493E-4,0.00153988,0.00293786,0.00445468,0.00683254,0.0101636,0.0154095,0.0215653,0.0272897,0.0302631,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,3.90622E-5,7.33993E-5,1.16562E-4,1.6994E-4,2.50481E-4,3.4596E-4,4.69508E-4,5.87163E-4,7.12237E-4,8.47671E-4,0.00131211,0.00206094,0.00315118,0.00492124,0.00705145,0.00915664,0.0103443,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,2.56255E-5,4.22424E-5,6.10566E-5,8.29634E-5,1.15385E-4,1.52213E-4,1.99912E-4,2.42407E-4,2.8509E-4,3.32104E-4,4.92857E-4,7.47786E-4,0.0011043,0.00164953,0.00231011,0.00295725,0.00332378,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,2.79298E-5,4.75057E-5,7.19146E-5,1.01652E-4,1.39696E-4,1.86854E-4,2.40722E-4,2.83237E-4,3.34777E-4,3.92111E-4,4.83834E-4,6.011E-4,7.3614E-4,9.5403E-4,0.00118762,0.00140647,0.00155913,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,2.64272E-4,5.1257E-4,8.29704E-4,0.00123235,0.00174803,0.00235326,0.00312403,0.00372999,0.00426801,0.00477237,0.00543633,0.00617208,0.00668718,0.00634635,0.00585727,0.00515982,0.0036669,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,1.21954E-4,2.31226E-4,3.61854E-4,5.0381E-4,5.63685E-4,5.71556E-4,5.49548E-4,3.05E-4,1.3485E-4,5.50847E-5,6.95719E-6,9.49982E-7,2.35735E-7,1.6595E-8,3.62023E-9,1.01595E-9,1.56278E-10,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,H2 central production,biomass,H2 central production,biomass to H2 CCS,0.0,0.0,7.39129E-5,1.79835E-4,3.66103E-4,6.5256E-4,0.00122992,0.0021444,0.00335194,0.00551578,0.00853843,0.0124197,0.0264115,0.0467159,0.0614214,0.0920758,0.096681,0.101287,0.104514,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,6.4743E-4,0.00111259,0.00157163,0.00200997,0.00193635,0.00171658,0.001534,7.44996E-4,3.24257E-4,1.45495E-4,3.22198E-5,8.86991E-6,3.13531E-6,4.8019E-7,1.14844E-7,3.50294E-8,7.40014E-9,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,H2 central production,coal,H2 central production,coal chemical CCS,0.0,0.0,2.06502E-4,4.99894E-4,9.97552E-4,0.00173008,0.00307222,0.00497406,0.00741338,0.00987221,0.0124232,0.0143311,0.0166687,0.0189157,0.0223516,0.0249559,0.028303,0.0308538,0.0291604,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,3.38383E-6,7.03993E-6,1.24736E-5,2.00784E-5,3.09167E-5,4.52659E-5,6.27501E-5,7.61102E-5,9.01836E-5,1.05122E-4,1.24997E-4,1.49102E-4,1.83552E-4,2.33305E-4,2.95808E-4,3.60411E-4,4.20426E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,0.00114015,0.00201826,0.0029521,0.00384487,0.00416176,0.00424679,0.00429527,0.0029916,0.00195821,0.00124061,5.29683E-4,2.4321E-4,1.28425E-4,3.48334E-5,1.19165E-5,4.64657E-6,1.18482E-6,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,H2 central production,gas,H2 central production,natural gas steam reforming CCS,0.0,0.0,3.08632E-4,7.03842E-4,0.00131149,0.00215244,0.00344717,0.00510895,0.00715902,0.00936986,0.0114353,0.0129211,0.0153082,0.0170933,0.0196277,0.0223139,0.0259624,0.0294591,0.0303389,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,2.20875E-4,4.32356E-4,7.03805E-4,0.00103063,0.00144257,0.00190457,0.00247623,0.00413076,0.00691319,0.0119276,0.014439,0.0172533,0.0215456,0.0270882,0.0348074,0.0430279,0.0479992,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,2.10889E-4,4.14613E-4,6.78207E-4,9.98622E-4,0.00140676,0.00187103,0.0024531,0.00286189,0.00319754,0.00344151,0.00425293,0.00520422,0.00668013,0.00865101,0.0113814,0.0144374,0.0164066,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,1.17309E-4,1.90862E-4,2.62998E-4,3.44875E-4,4.45695E-4,5.57879E-4,6.96225E-4,7.79738E-4,8.38909E-4,8.85064E-4,0.00102215,0.00117532,0.0014207,0.0017555,0.00222198,0.00274169,0.00310804,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,8.32163E-5,1.60062E-4,2.60142E-4,3.86708E-4,5.45207E-4,7.39956E-4,9.59843E-4,0.00113678,0.00133372,0.00154983,0.00185626,0.00220522,0.00258294,0.00305408,0.00348534,0.00387458,0.00413509,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,0.00161135,0.00319799,0.00527862,0.00786237,0.0105945,0.0137126,0.0175448,0.0194819,0.0212463,0.0225169,0.0216879,0.0206717,0.0199053,0.0163707,0.0136351,0.0114155,0.00805945,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,6.15934E-4,0.00114169,0.00172507,0.0023381,0.00261819,0.00264197,0.00247405,0.00132568,5.5803E-4,2.1838E-4,2.58468E-5,3.2739E-6,7.50814E-7,4.82871E-8,9.6684E-9,2.48707E-9,3.63694E-10,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,H2 central production,biomass,H2 central production,biomass to H2 CCS,0.0,0.0,3.73326E-4,8.85622E-4,0.00173479,0.00300025,0.00564907,0.00979511,0.0149069,0.0237105,0.0353229,0.049257,0.098372,0.162228,0.198729,0.276155,0.270555,0.265233,0.266563,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,0.00326985,0.00549411,0.00749494,0.00933352,0.00900162,0.00794237,0.00691318,0.00324004,0.00134183,5.76813E-4,1.19747E-4,3.06214E-5,1.00243E-5,1.4094E-6,3.10691E-7,8.73308E-8,1.76747E-8,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,H2 central production,coal,H2 central production,coal chemical CCS,0.0,0.0,0.00104305,0.00245959,0.00471847,0.00793494,0.0140789,0.0226792,0.0329197,0.0424055,0.0513935,0.0568376,0.0620742,0.0656394,0.0722007,0.0745703,0.0787674,0.0801651,0.0735511,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,2.46796E-5,5.01879E-5,9.10458E-5,1.49284E-4,2.30638E-4,3.36077E-4,4.70908E-4,5.62846E-4,6.51172E-4,7.39424E-4,8.32677E-4,9.35369E-4,0.00108574,0.00127068,0.0015206,0.00176219,0.00197598,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,0.00575842,0.0099615,0.0140599,0.0178142,0.0192843,0.0195707,0.0192686,0.0129521,0.0081024,0.00491915,0.00197015,8.41307E-4,4.12243E-4,1.02942E-4,3.25854E-5,1.17649E-5,2.88677E-6,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,H2 central production,gas,H2 central production,natural gas steam reforming CCS,0.0,0.0,0.00155886,0.00346712,0.00621882,0.00990739,0.0158539,0.0233669,0.0318762,0.040316,0.0473084,0.0512429,0.0569922,0.05927,0.0633,0.066484,0.0719243,0.0760369,0.0758739,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,0.00111556,0.00213298,0.00334813,0.00476613,0.00666795,0.00875251,0.0110748,0.0178318,0.0286021,0.0472992,0.053738,0.0597778,0.0693825,0.0805083,0.0960499,0.110419,0.119103,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,0.00106512,0.00204544,0.00322636,0.00461812,0.00650245,0.00859838,0.0109714,0.0123543,0.0132293,0.0136474,0.0158283,0.0180311,0.0215118,0.0257115,0.0314066,0.0370495,0.0407108,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,8.60751E-4,0.00156742,0.00233342,0.00317764,0.00430475,0.00550152,0.00680618,0.00745864,0.00774789,0.00779139,0.00857154,0.00928514,0.0105876,0.0122237,0.0144652,0.0167008,0.0182453,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,5.69136E-4,0.00107303,0.00175983,0.00262425,0.0036951,0.00496434,0.00640757,0.00738523,0.00834962,0.00930947,0.0104865,0.0116564,0.0128418,0.0140822,0.0153094,0.0164001,0.0174016,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,0.0078717,0.0153613,0.0243706,0.0351588,0.0473839,0.0609607,0.0755744,0.0805931,0.083799,0.0845856,0.0759615,0.0671504,0.0601301,0.0459915,0.0360137,0.0284986,0.0200941,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,3.54269E-4,8.44062E-4,0.00151096,0.00241437,0.00330953,0.00440483,0.00591998,0.00556058,0.00527581,0.00527085,0.00287883,0.00146154,7.87504E-4,7.98163E-5,1.26076E-5,2.74354E-6,3.4808E-7,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,H2 central production,biomass,H2 central production,biomass to H2 CCS,0.0,0.0,2.03351E-4,4.6101E-4,0.00101787,0.00194379,0.0040519,0.00724687,0.0105419,0.0166865,0.0235657,0.0294089,0.0508949,0.0713158,0.0831757,0.118553,0.135267,0.146044,0.154756,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,0.00188302,0.00409532,0.0066574,0.00982959,0.0117302,0.0138256,0.0175315,0.0140624,0.0121089,0.0112387,0.00615955,0.00361976,0.00228822,3.68197E-4,7.41886E-5,1.90902E-5,3.18038E-6,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,H2 central production,coal,H2 central production,coal chemical CCS,0.0,0.0,5.56239E-4,0.00113157,0.00244813,0.00452648,0.00894089,0.0146341,0.0195045,0.0253664,0.0297673,0.0307986,0.037654,0.0448181,0.0532704,0.0692627,0.0811543,0.0882145,0.0873715,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,1.66216E-5,4.02493E-5,8.46117E-5,1.58279E-4,2.80608E-4,4.67566E-4,7.46911E-4,0.0010191,0.00134021,0.00173098,0.00223159,0.00281457,0.00357178,0.00446809,0.00541945,0.00635933,0.00712171,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,0.00328829,0.00702161,0.0116008,0.0170649,0.0218379,0.0271207,0.0340315,0.031327,0.0298215,0.0285781,0.0212025,0.0162363,0.0127769,0.00395828,0.00126254,4.49056E-4,1.03086E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,H2 central production,gas,H2 central production,natural gas steam reforming CCS,0.0,0.0,8.53574E-4,0.00187639,0.00383033,0.00682058,0.0122459,0.0191928,0.0262626,0.0344894,0.0414343,0.0458368,0.0596185,0.0756213,0.0956261,0.131769,0.157669,0.175023,0.179733,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,6.31481E-4,0.00141751,0.00257035,0.0041773,0.00671068,0.010148,0.014829,0.0279837,0.0542651,0.108401,0.155001,0.220156,0.311883,0.412559,0.508818,0.59496,0.638129,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,6.02931E-4,0.00135933,0.00247686,0.00404758,0.00654413,0.00996928,0.0146904,0.0193878,0.0250991,0.0312772,0.0456548,0.0664069,0.0966983,0.131757,0.166374,0.19963,0.218119,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,5.54809E-4,0.00119953,0.002083,0.00324441,0.0049922,0.0072446,0.0101724,0.0127457,0.0155656,0.0182541,0.0244596,0.0329573,0.044737,0.0567903,0.0673664,0.0768893,0.0812932,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,3.65936E-4,8.14486E-4,0.001536,0.00259083,0.004118,0.00618293,0.00884276,0.0111599,0.0137461,0.0166019,0.0202345,0.0244814,0.0294748,0.0349232,0.0398692,0.0440102,0.046927,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,0.00404156,0.00917985,0.0166766,0.027191,0.0412221,0.0593976,0.0821961,0.0974982,0.11541,0.131685,0.137113,0.146132,0.156821,0.136855,0.114315,0.0933507,0.0655884,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,0.00139753,0.0025125,0.00394508,0.00565406,0.00776576,0.0100574,0.011911,0.0118675,0.0105427,0.00828745,0.00364331,0.0010017,2.61849E-4,2.21243E-5,3.38088E-6,7.1368E-7,8.87736E-8,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,H2 central production,biomass,H2 central production,biomass to H2 CCS,0.0,0.0,9.44358E-6,1.98073E-5,3.48426E-5,5.92315E-5,1.23216E-4,2.37059E-4,4.4726E-4,0.00110328,0.0024202,0.00475932,0.0141167,0.0243451,0.0296203,0.0374773,0.0387376,0.0396625,0.0407433,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,0.00637437,0.010476,0.0149954,0.0199124,0.0239883,0.0275942,0.0307307,0.0257404,0.0202942,0.0146975,0.00620426,0.00218418,7.69775E-4,1.04388E-4,2.01084E-5,5.00042E-6,8.15572E-7,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,H2 central production,coal,H2 central production,coal chemical CCS,0.0,0.0,5.62217E-6,1.26834E-5,2.38924E-5,4.29127E-5,9.88986E-5,2.07084E-4,4.12677E-4,0.00107819,0.00236805,0.00437417,0.0101048,0.0153608,0.0189361,0.0217158,0.0231388,0.0238871,0.0229489,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,5.20214E-5,9.32025E-5,1.49081E-4,2.20443E-4,3.21035E-4,4.47766E-4,6.02368E-4,7.29375E-4,8.57467E-4,9.7982E-4,0.00115505,0.00127747,0.00141304,0.0016046,0.00179344,0.00196662,0.00209928,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,0.0106448,0.0174649,0.0248473,0.0323248,0.0390011,0.0447631,0.0490027,0.0428775,0.0353923,0.0271951,0.0159068,0.00837202,0.00437008,0.00115679,3.47305E-4,1.1875E-4,2.66132E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,H2 central production,gas,H2 central production,natural gas steam reforming CCS,0.0,0.0,7.64381E-5,1.6223E-4,2.87581E-4,4.87051E-4,9.32838E-4,0.00163013,0.00271588,0.00503442,0.00804541,0.0116755,0.020337,0.0278115,0.0338008,0.0408816,0.0446962,0.0472083,0.0470747,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,0.00151747,0.00261431,0.00391619,0.00541481,0.00761515,0.010142,0.0129545,0.0222774,0.0382196,0.0667794,0.0835932,0.0960069,0.108649,0.125339,0.142866,0.159503,0.166409,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,0.00144887,0.00250702,0.00377376,0.00524665,0.00742614,0.00996345,0.0128335,0.0154343,0.0176776,0.0192681,0.024622,0.0289592,0.0336863,0.040029,0.0467145,0.053519,0.0568803,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,4.54259E-4,7.31925E-4,0.00102712,0.00134267,0.00182836,0.00234656,0.00294902,0.00346165,0.00386625,0.00414208,0.00475041,0.00502656,0.00537776,0.00596034,0.00665562,0.00740702,0.00804643,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,0.00105428,0.00174562,0.00254703,0.00344701,0.00451657,0.00568405,0.00689521,0.00760023,0.00819955,0.00870062,0.00949856,0.0102108,0.0108702,0.0116217,0.0122309,0.0127002,0.0129828,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,0.00967334,0.0169572,0.0257044,0.0359224,0.0475055,0.0599822,0.0727376,0.0772745,0.0797327,0.0794853,0.0721545,0.0645482,0.0575598,0.0443861,0.0345546,0.0271793,0.0187378,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,3.02827E-4,5.95871E-4,0.00100183,0.0014923,0.001816,0.00197072,0.00194669,0.00110565,5.31638E-4,2.48131E-4,4.04538E-5,9.55202E-6,4.18043E-6,6.39689E-7,2.43408E-7,1.18295E-7,3.25495E-8,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,H2 central production,biomass,H2 central production,biomass to H2 CCS,0.0,0.0,1.7923E-4,4.20467E-4,7.98688E-4,0.00140106,0.00291953,0.00557838,0.00933879,0.016468,0.0262239,0.0385967,0.0823482,0.133586,0.157662,0.209725,0.20172,0.192284,0.183412,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,0.00160856,0.00287753,0.00439663,0.00604944,0.00636283,0.00603896,0.00553612,0.0027272,0.00128144,6.46327E-4,1.70579E-4,6.77038E-5,3.57247E-5,8.79783E-6,3.26993E-6,1.53574E-6,4.80852E-7,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,H2 central production,coal,H2 central production,coal chemical CCS,0.0,0.0,4.96151E-4,0.0011302,0.00202495,0.00340652,0.00684239,0.0123772,0.0200339,0.0290771,0.0378635,0.0445285,0.0538963,0.0606972,0.0692135,0.0781333,0.0853195,0.0890084,0.084299,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,1.83598E-5,3.60124E-5,6.51363E-5,1.07653E-4,1.69558E-4,2.51585E-4,3.58873E-4,4.34579E-4,5.17372E-4,6.10855E-4,7.54089E-4,9.59159E-4,0.0012558,0.00174763,0.00234076,0.00298803,0.00369939,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,0.00282219,0.00512933,0.0078788,0.0107967,0.0126004,0.0136589,0.014214,0.0101309,0.00699605,0.00478361,0.002314,0.00133307,8.94079E-4,3.32845E-4,1.51357E-4,7.84385E-5,2.69279E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,H2 central production,gas,H2 central production,natural gas steam reforming CCS,0.0,0.0,7.50102E-4,0.00166277,0.00294275,0.0048143,0.00850005,0.0137307,0.0204439,0.0284487,0.035955,0.0419352,0.0528907,0.0621424,0.073886,0.0916182,0.110147,0.127622,0.137442,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,5.44634E-4,0.00108027,0.00179758,0.00271837,0.00409102,0.00574192,0.00772859,0.0132937,0.0230863,0.0416425,0.0543233,0.0719636,0.0987744,0.144159,0.205846,0.280833,0.353025,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,5.20011E-4,0.00103593,0.00173221,0.00263395,0.00398948,0.0056408,0.00765639,0.00921021,0.010678,0.0120153,0.0160007,0.0217068,0.0306246,0.0460393,0.0673078,0.0942295,0.120668,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,1.74421E-4,2.9965E-4,4.32458E-4,5.84846E-4,8.02505E-4,0.00105529,0.0013512,0.00154224,0.00167348,0.00178445,0.00211052,0.00255487,0.00326587,0.0044308,0.00599091,0.00792126,0.00992314,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,3.65352E-4,6.72111E-4,0.00110595,0.00167071,0.00241167,0.00332867,0.00443041,0.00528233,0.00623459,0.00731099,0.00903928,0.0110961,0.0134109,0.0168307,0.0201898,0.0234097,0.0264905,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,0.00344163,0.00701886,0.0118357,0.0181626,0.0263094,0.0362698,0.0481145,0.0554037,0.0626143,0.0689796,0.070496,0.0716132,0.0730669,0.0669034,0.0610206,0.0555464,0.0436455,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,1.04348E-5,1.83318E-5,2.85109E-5,4.43369E-5,6.7367E-5,1.00912E-4,1.3935E-4,1.58873E-4,1.70388E-4,1.51979E-4,7.64205E-5,2.34037E-5,6.68386E-6,5.95082E-7,9.7012E-8,2.21198E-8,2.91065E-9,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,H2 central production,biomass,H2 central production,biomass to H2 CCS,0.0,0.0,4.40702E-6,8.92276E-6,1.51674E-5,1.93643E-5,2.3879E-5,2.41964E-5,2.16008E-5,2.78071E-5,3.71613E-5,7.92293E-5,2.82223E-4,5.52549E-4,7.41674E-4,9.94021E-4,0.00110007,0.00121927,0.00132693,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,5.55186E-5,8.8947E-5,1.25779E-4,1.80195E-4,2.36288E-4,3.04724E-4,3.81694E-4,3.55456E-4,3.27013E-4,2.676E-4,1.29267E-4,5.07594E-5,1.95848E-5,2.80099E-6,5.76022E-7,1.54779E-7,2.67095E-8,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,H2 central production,coal,H2 central production,coal chemical CCS,0.0,0.0,1.0669E-5,2.10033E-5,3.38061E-5,3.761E-5,3.87237E-5,3.27183E-5,2.52581E-5,2.93149E-5,3.62098E-5,7.24433E-5,2.01826E-4,3.48623E-4,4.74395E-4,5.76486E-4,6.57554E-4,7.34725E-4,7.4777E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,6.65234E-7,1.17125E-6,1.86203E-6,2.77183E-6,4.04012E-6,5.70465E-6,7.86235E-6,9.74798E-6,1.19012E-5,1.43695E-5,1.80484E-5,2.15359E-5,2.5863E-5,3.18234E-5,3.83542E-5,4.56562E-5,5.23179E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,9.32587E-5,1.50342E-4,2.12215E-4,2.89505E-4,3.7505E-4,4.78312E-4,5.91506E-4,5.87951E-4,5.70016E-4,4.9251E-4,3.29041E-4,1.93362E-4,1.10669E-4,3.09393E-5,9.92562E-6,3.66903E-6,8.70333E-7,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,H2 central production,gas,H2 central production,natural gas steam reforming CCS,0.0,0.0,1.90886E-5,3.68179E-5,5.8892E-5,7.45107E-5,8.89064E-5,9.23565E-5,8.9541E-5,1.05904E-4,1.25363E-4,1.99359E-4,4.0994E-4,6.33211E-4,8.48132E-4,0.00108649,0.00127133,0.00145313,0.00153481,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,1.71014E-5,2.98132E-5,4.524E-5,6.4096E-5,9.35847E-5,1.30424E-4,1.75516E-4,3.25876E-4,6.11672E-4,0.00119131,0.00171248,0.00220228,0.00273733,0.0033385,0.00406977,0.00491539,0.00543053,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,1.63283E-5,2.85897E-5,4.35946E-5,6.21056E-5,9.12619E-5,1.28127E-4,1.73876E-4,2.25775E-4,2.82915E-4,3.43733E-4,5.04403E-4,6.64288E-4,8.48699E-4,0.0010662,0.00133074,0.00164928,0.00185621,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,6.11206E-6,9.97235E-6,1.39959E-5,1.82499E-5,2.54256E-5,3.3784E-5,4.34018E-5,5.24471E-5,5.35228E-5,5.58424E-5,5.93379E-5,4.86892E-5,3.90719E-5,3.19531E-5,5.62234E-5,8.34566E-5,1.18672E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,1.28197E-5,2.10418E-5,3.07066E-5,4.20456E-5,5.5941E-5,7.23412E-5,9.11822E-5,1.051E-4,1.19451E-4,1.35706E-4,1.60207E-4,1.86087E-4,2.13729E-4,2.43176E-4,2.7529E-4,3.089E-4,3.35109E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,1.07641E-4,1.92751E-4,2.98396E-4,4.30272E-4,5.98884E-4,8.02547E-4,0.00103784,0.00120725,0.00137148,0.00152853,0.00159392,0.00157628,0.00151258,0.00119889,9.88744E-4,8.35329E-4,6.03512E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,H2 central production,biomass,H2 central production,biomass to H2,0.0,0.0,7.15322E-4,0.00164549,0.00274539,0.00393756,0.00438798,0.00440847,0.00411534,0.00231145,0.00111195,4.61129E-4,5.75968E-5,7.76104E-6,1.94204E-6,1.36766E-7,3.17171E-8,9.4846E-9,1.63132E-9,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,H2 central production,biomass,H2 central production,biomass to H2 CCS,0.0,0.0,4.33902E-4,0.00128625,0.00282181,0.00526432,0.0100631,0.0177114,0.0272403,0.045896,0.0707294,0.104275,0.217886,0.374653,0.486382,0.70823,0.76911,0.83073,0.923191,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,H2 central production,coal,H2 central production,coal chemical,0.0,0.0,0.00379741,0.00791594,0.0119133,0.0156761,0.0150141,0.0131645,0.0114053,0.00561674,0.0026736,0.0012181,2.66596E-4,7.2159E-5,2.55822E-5,3.88016E-6,9.79832E-7,3.15824E-7,7.37042E-8,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,H2 central production,coal,H2 central production,coal chemical CCS,0.0,0.0,0.00121266,0.00358164,0.00772476,0.0140723,0.0253886,0.0415072,0.0608446,0.0826592,0.102923,0.120322,0.13754,0.151971,0.177724,0.193584,0.227727,0.256861,0.262815,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,H2 central production,electricity,H2 central production,electrolysis,0.0,0.0,4.61897E-5,1.11667E-4,2.05736E-4,3.30693E-4,4.75905E-4,6.55407E-4,8.80399E-4,0.0010759,0.00129464,0.00151133,0.00173703,0.0019961,0.00244483,0.00298925,0.00393172,0.00494219,0.00614864,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,H2 central production,gas,H2 central production,natural gas steam reforming,0.0,0.0,0.00668831,0.0143733,0.0224545,0.0302183,0.0327459,0.0333413,0.0329467,0.023439,0.0161763,0.0103983,0.00437799,0.001969,0.00103744,2.77106E-4,9.94406E-5,4.06643E-5,1.13795E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,H2 central production,gas,H2 central production,natural gas steam reforming CCS,0.0,0.0,0.00181167,0.00503151,0.0100905,0.0172981,0.0280408,0.0418866,0.0577216,0.0773489,0.094685,0.108446,0.126363,0.137586,0.156698,0.174231,0.210874,0.24839,0.277724,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,H2 central production,nuclear,H2 central production,thermal splitting,0.0,0.0,0.00129586,0.00308184,0.00536952,0.00815239,0.0114764,0.0151959,0.019384,0.0331775,0.0571794,0.100051,0.119243,0.139139,0.172651,0.212716,0.285031,0.366882,0.445768,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,H2 central production,solar,H2 central production,electrolysis,0.0,0.0,0.00123728,0.00295536,0.00517423,0.00789923,0.0111916,0.0149282,0.019203,0.0229862,0.026447,0.0288682,0.0351224,0.0419695,0.0535298,0.067934,0.0932,0.123102,0.152368,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,H2 central production,wind,H2 central production,electrolysis,0.0,0.0,7.8264E-4,0.00183426,0.00312742,0.00463837,0.00654439,0.00848275,0.0106081,0.0123548,0.013711,0.0145857,0.0166663,0.0188692,0.0231644,0.0282857,0.0377559,0.0487733,0.0603485,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,H2 forecourt production,electricity,H2 forecourt production,electrolysis,0.0,0.0,9.21358E-4,0.00208405,0.00354391,0.00528964,0.00709417,0.00917898,0.0115301,0.0137467,0.0161817,0.0187178,0.0216997,0.0249072,0.0291298,0.0335649,0.0403033,0.0470105,0.0550909,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,H2 forecourt production,gas,H2 forecourt production,natural gas steam reforming,0.0,0.0,0.00776287,0.0189055,0.0335571,0.051958,0.0707161,0.0918286,0.114838,0.129945,0.143583,0.153181,0.144722,0.136342,0.133551,0.111233,0.0991593,0.0880712,0.0694448,EJ, Biomass Consumption by use scenario,region,input,sector,1990,2005,2010,2015,2020,2025,2030,2035,2040,2045,2050,2055,2060,2065,2070,2075,2080,2085,2090,2095,2100,Units, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,delivered biomass,building,0.1563437,0.22469619999999998,0.2820818,0.361818,0.455315,0.525784,0.586863,0.623412,0.611546,0.591245,0.554695,0.4934842,0.4193403,0.3500613,0.2415562,0.1559683,0.1033935,0.0519583,0.02659937,0.014415,0.0065411,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,delivered biomass,industry,0.44015706,0.60519625,0.67671868,1.0048495,1.2865190000000002,1.5567792999999999,1.8535217,2.1682219,2.475613,2.8167077999999997,3.1582148,3.484579,3.740593,3.929788,3.732553,3.304442,2.855455,2.009367,1.3443798,0.9019710000000001,0.5178688,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,regional biomass,electricity,0.00196741,0.0038093,0.0038093,0.0158708,0.024199659999999998,0.034546952,0.051082148,0.072935678,0.098922015,0.138002241,0.18749327899999993,0.26053011900000006,0.368562069,0.49650112399999996,0.670286972,0.865743031,1.058744382,1.314372947,1.5357123295999995,1.6716904220499997,1.6802983577139994,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,regional biomass,gas processing,0.0,0.0,0.0,2.00072E-6,9.30138E-6,2.54126E-5,6.0157E-5,1.28655E-4,2.59944E-4,5.07121E-4,9.64023E-4,0.00179617,0.0030684,0.00494451,0.00679871,0.00728436,0.00733534,0.00482733,0.0026991,0.00154022,5.88028E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,regional biomass,hydrogen,0.0,0.0,0.0,0.0,4.65928E-4,9.8066E-4,0.0017788930000000001,0.00301517,0.0051369599999999994,0.00877253,0.01463401,0.02454397,0.03954022,0.055192627999999994,0.090611068,0.114980393,0.131038537,0.1611169475,0.1615464694,0.15684752751,0.13015398640999998,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,regional biomass,refining,0.0,0.0,0.0,0.0,0.040644804,0.09967691499999998,0.18496546800000002,0.31820192399999997,0.5160431759999999,0.8039310510000001,1.129947147,1.5183711289999997,1.9745421857000003,2.532390645099999,3.2508973899999996,3.9011915319999995,4.3198406799999995,4.03130846624759,4.2229471635785805,4.362254022918528,4.29872225,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,delivered biomass,building,0.0033089001,0.0065225,0.0070573,0.00699085,0.00804816,0.00841005,0.00835534,0.00791754,0.00706358,0.00628457,0.005461580000000001,0.0046365,0.003771524,0.003022994,0.002044829,0.001284573,8.31734E-4,4.178676E-4,2.1427540000000002E-4,1.1650779999999999E-4,5.36771E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,delivered biomass,industry,0.02697865,0.0438617,0.0871743,0.105923,0.1342999,0.1497987,0.1633407,0.1716962,0.173882,0.1747327,0.1726065,0.1712186,0.1645279,0.1563555,0.1367753,0.1122122,0.092616,0.0668958,0.0483214,0.0366659,0.02640994,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,regional biomass,electricity,0.0,0.0,0.0,0.00447158,0.01091511,0.017471691,0.029988740000000003,0.044537422999999986,0.058772529,0.074180909,0.08960751000000002,0.10768189,0.14384465599999996,0.17795656999999993,0.21603400500000006,0.2624148129999999,0.3154180139999999,0.3963410349999999,0.46660591611999996,0.500311721818,0.47360359802940005,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,regional biomass,gas processing,0.0,0.0,0.0,2.17613E-4,6.75788E-4,0.00133998,0.00236742,0.00380894,0.00584991,0.00874652,0.0127793,0.0187826,0.0247924,0.031783,0.0348949,0.0301998,0.0250253,0.0134983,0.00640529,0.00319927,0.00108169,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,regional biomass,hydrogen,0.0,0.0,0.0,0.0,2.3108930000000002E-4,4.7146899999999997E-4,8.06497E-4,0.0012351200000000001,0.001821532,0.002640997,0.0037341690000000003,0.005316748,0.007078378000000001,0.00871779,0.0129383712,0.015346103,0.0171830974,0.02090411597,0.02096166382,0.019987223418,0.016676072692,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,regional biomass,refining,0.0,0.0,0.0,0.0,0.04989926,0.14939716,0.2691228500000001,0.48054422999999996,0.8140550799999998,1.242164083,1.5870767250000002,1.8615073069999999,2.0975685907,2.27109483,2.5135415839999995,2.6915400539999994,2.706634741,2.3430465633489,2.3532416966876313,2.3285609369536338,2.1784112239999995,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,delivered biomass,building,0.0797127,0.13983790000000001,0.15706189999999998,0.1639722,0.209643,0.24165509999999998,0.26490800000000003,0.27748510000000004,0.2745237,0.2707778,0.2628827,0.2463172,0.2173775,0.18667820000000002,0.1331309,0.0881703,0.05989995,0.03074494,0.01618367,0.0089689,0.004180097,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,delivered biomass,industry,0.296921395,0.476782008,0.5514989969999999,0.56495182,0.71141539,0.81832849,0.90274347,0.97695406,1.05290401,1.1513571699999998,1.26715695,1.39634061,1.48255846,1.5393369,1.4355728,1.2364156,1.0473139,0.7063876,0.45799104999999996,0.29763426,0.1619949,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,regional biomass,electricity,0.0,0.0,0.0,6.12224E-4,0.001242239,0.0020180246999999996,0.0036246759000000003,0.0060068299999999995,0.009065848800000002,0.0141853488,0.021884973700000004,0.0336733414,0.05786945799999999,0.09446650869999998,0.16027564309999992,0.25289239519999995,0.35045906220000006,0.4826698245999999,0.6049833173199999,0.7005831576100001,0.738350520312,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,regional biomass,gas processing,0.0,0.0,0.0,6.70264E-6,2.47519E-5,5.56187E-5,1.12967E-4,2.11969E-4,3.86272E-4,7.03461E-4,0.0012687,0.00227281,0.00374344,0.00598733,0.00835814,0.00909314,0.00913133,0.00600121,0.00331348,0.00186117,6.98409E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,regional biomass,hydrogen,0.0,0.0,0.0,0.0,2.123936E-4,4.24184E-4,7.06096E-4,0.001074146,0.0017093719999999998,0.0027949100000000003,0.004609462999999999,0.00795717,0.013080644999999998,0.019863733999999997,0.034019384,0.0434849028,0.0499505051,0.05993403111,0.056100891820000005,0.05015954673,0.039470787321,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,regional biomass,refining,0.0,0.0,0.0,0.0,0.023542386,0.051595141000000004,0.090163365,0.15096436299999996,0.246645985,0.38619460099999997,0.545460498,0.7455171899,0.9869029070000002,1.3086949273999997,1.7947371851999998,2.2627474769999996,2.5873514662999995,2.64250721761033,2.7951211536500304,2.842867877123999,2.7235362099999993,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,delivered biomass,building,0.1991744,0.2311539,0.2366298,0.3106891,0.421923,0.532035,0.642974,0.7333879999999999,0.7736719999999999,0.805566,0.8154819999999999,0.789166,0.726396,0.6556331,0.497282,0.35014389999999995,0.2510952,0.1397664,0.0783102,0.04597653,0.02292708,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,delivered biomass,industry,0.65619142,1.10237948,1.25090791,1.61733915,2.0330309,2.52178596,3.0502962,3.6081518,4.160293299999999,4.781244200000001,5.4371835,6.1214396,6.720515300000001,7.2442521,7.1639781000000005,6.6066525,5.9334236,4.414072099999999,3.0940317,2.1282276,1.2320358999999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,regional biomass,electricity,0.0025116,0.00468829,0.0051488,0.00542677,0.009753350000000001,0.015688073,0.025823181,0.039122512000000005,0.053270103000000006,0.072287628,0.09827116600000001,0.13669852769999996,0.19953944389999997,0.2894227213000001,0.44001136100000005,0.6520318229999998,0.8978943950000002,1.2592531883000002,1.5938392647999997,1.8332600038300002,1.8765217148310003,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,regional biomass,gas processing,0.0,0.0,0.0,3.11135E-5,1.06477E-4,2.46437E-4,5.21673E-4,0.00101427,0.00186963,0.00337746,0.00600301,0.0106769,0.0176182,0.0276119,0.037101,0.0390823,0.0384867,0.0246605,0.013345,0.00731944,0.00266335,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,regional biomass,hydrogen,0.0,0.0,0.0,0.0,5.75805E-4,0.001261226,0.0023443839999999997,0.0040354499999999995,0.00697881,0.0120577,0.02046158,0.03539668,0.05893279,0.08656128,0.151005974,0.20166139,0.239321494,0.30912028389999996,0.31758002949999997,0.3116812823,0.26301126863,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,regional biomass,refining,0.0,0.0,0.0,0.0,0.05779963999999999,0.16045722999999998,0.31048769,0.53633642,0.85364844,1.28753373,1.7894481270000002,2.441424101,3.293454923199999,4.33047853,5.702465023999999,6.9488423689999985,7.7888350960000015,7.4021762253015,7.719012560458735,7.876384183176664,7.595008310000002,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,delivered biomass,building,0.0036417999999999997,0.016199799999999997,0.0115951989,0.00950197,0.010704862,0.010854733000000002,0.010793035,0.010210808,0.009226156999999999,0.008280138999999999,0.0072947446,0.0062149774,0.005061672299999999,0.0040326403,0.0027255508999999996,0.0016884715000000002,0.0010763252,5.382944200000001E-4,2.7878292E-4,1.5455375999999998E-4,7.243945799999999E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,delivered biomass,industry,0.058771409999999996,0.05098543,0.038758230000000005,0.04784855,0.05816772,0.065263,0.07161290000000001,0.0754658,0.0779934,0.07918800000000001,0.0800712,0.079259,0.0766017,0.0727525,0.0628224,0.050627,0.0413215,0.027937860000000002,0.019332059999999998,0.01403198,0.00925232,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,regional biomass,electricity,0.00452089,0.0243625,0.0305578,0.038843699999999995,0.04786549999999999,0.05509695499999999,0.06726736300000001,0.07789951,0.087668824,0.09698878600000002,0.10727768099999997,0.11794238900000004,0.14494118499999997,0.171405445,0.21236859699999996,0.272295025,0.3442555967999999,0.44244939779000003,0.539710054628,0.6113447786874997,0.6693596568255707,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,regional biomass,gas processing,0.0,0.0,0.0,1.18412E-4,3.5352E-4,6.85323E-4,0.0012035,0.00192704,0.00300054,0.00451785,0.0067116,0.0098792,0.0130861,0.0169839,0.0190066,0.0166625,0.0140799,0.00768125,0.00374868,0.00190377,6.60956E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,regional biomass,hydrogen,0.0,0.0,0.0,0.0,1.608905E-4,3.8844E-4,7.48821E-4,0.0012339030000000002,0.001947951,0.002900631,0.004215032,0.006399481,0.009401325,0.012825106400000001,0.0217656543,0.02976520278,0.038992202967000004,0.0562632716812,0.0612297169307,0.05788820690439,0.042320203401000005,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,regional biomass,refining,0.0,0.0,0.0,0.0,0.022941258000000003,0.054879698,0.105222831,0.18776075600000003,0.32651723400000005,0.4970415379999999,0.649534581,0.7582522499000001,0.8760683829999997,0.9900305783999999,1.253035134,1.565371861,1.8773717087700004,2.7411402279306634,3.2454895159507244,3.665958013,3.895951879,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,delivered biomass,building,0.0804129,0.06672469999999998,0.0635434,0.06297200900000001,0.072008354,0.07552053999999998,0.077643842,0.07616681,0.071160025,0.065631978,0.059393087000000004,0.051700645,0.043054767,0.035181051000000005,0.024641611,0.015854886300000003,0.0104782707,0.0054551831,0.0029008292000000002,0.0016345663399999998,7.6860674E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,delivered biomass,industry,0.11540802,0.18016538,0.17053739999999998,0.18327149,0.23284835,0.26659413000000004,0.2916813,0.30604148,0.31503689,0.31687142999999995,0.31132998,0.29833453000000004,0.27185258,0.24184583,0.19151755,0.14128396999999998,0.10651527,0.06617339,0.041491490000000006,0.027251869999999997,0.01516864,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,regional biomass,electricity,0.0,0.00983718,0.00941851,0.004430994,0.00517047,0.009037462,0.017145732599999998,0.026931074299999996,0.04152328170000001,0.054881031899999995,0.0674619321,0.08359699069999998,0.10588256609999999,0.13056977894,0.18598311499999998,0.24007603270000005,0.2826047402,0.34253716341999985,0.3970280870069999,0.4384136921675,0.4758819461276049,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,regional biomass,gas processing,0.00208004,0.0133799,0.0186082,0.019683,0.0267573,0.0324911,0.0393716,0.0464408,0.055409,0.0652042,0.0757593,0.0879473,0.0943025,0.0973366,0.0859341,0.0589571,0.0375894,0.0148484,0.00495863,0.00158917,2.84605E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,regional biomass,hydrogen,0.0,0.0,0.0,0.0,3.06252E-4,7.87616E-4,0.001510841,0.00246243,0.00377127,0.00557351,0.007851033,0.011638596000000001,0.016011767,0.020302729000000002,0.032061708599999995,0.04062361033,0.049312576005999996,0.0665548802279,0.0680211175714,0.06139360678704,0.042394003166930004,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,regional biomass,refining,0.0,9.47172E-4,0.0194585,0.020046615,0.0235999644,0.028911456299999996,0.04472451129999999,0.0884952756,0.18384072,0.2999751567000001,0.3945710798,0.46898049370000006,0.55929223316,0.6571253272,0.9053676628,1.21220047,1.50821916966,2.1405567301822317,2.474597650426475,3.106404262,3.444937684,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,delivered biomass,building,0.03403213,0.02750209,0.028632170000000002,0.02670989,0.03111667,0.033079410000000004,0.03436997,0.03365825,0.03128753,0.02854017,0.025627989999999996,0.02166893,0.0177224,0.014119360000000001,0.009311374,0.005687413,0.0035973109999999997,0.001706965,8.511629000000001E-4,4.568838999999999E-4,2.050108E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,delivered biomass,industry,1.3566461,1.8667909999999999,2.2407679999999996,2.085333,2.3899109999999997,2.567593,2.71131,2.771262,2.787611,2.757998,2.6999910000000003,2.579068,2.406837,2.199046,1.8299050000000001,1.4382959999999998,1.144565,0.785112,0.5616289999999999,0.428775,0.318656,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,regional biomass,electricity,0.0310598,0.114822,0.242746,0.467812,0.602551,0.7336999700000001,0.88780907,1.01244836,1.1253348499999998,1.22626295,1.33911297,1.43036253,1.6473183400000002,1.86174552,2.1576570700000004,2.5402442899999986,2.9812508770000004,3.500175149700001,3.9244624664700005,4.163169644524,4.265677592710019,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,regional biomass,gas processing,0.0,0.0,0.0,8.37196E-5,2.85798E-4,6.27905E-4,0.00122789,0.00215207,0.00366513,0.00600046,0.00972529,0.0153185,0.0215178,0.029435,0.0352996,0.033314,0.0300575,0.0175826,0.00902444,0.00477075,0.00173097,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,regional biomass,hydrogen,0.0,0.0,0.0,0.0,8.533130000000001E-4,0.00191347,0.0035084599999999997,0.00561734,0.00875709,0.01311938,0.019006799999999997,0.02791525,0.039954605,0.053507613,0.0898013164,0.1212805505,0.15630928679,0.22354229459799999,0.2392150691749,0.2227590280285,0.16008501359910002,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,regional biomass,refining,0.0,0.0,0.0,0.0,0.056662279999999995,0.12940645,0.24859756000000002,0.45574241,0.8283498899999999,1.3027780200000005,1.758238932,2.117067273,2.5293615858999994,2.959053483,3.910026463,5.104351139000001,6.32053218929,8.852821901315,10.644578883267954,12.39340834,14.02274254,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,delivered biomass,building,0.0624551,0.0790735,0.103143,0.0981177,0.109407,0.111038,0.10975,0.102691,0.0897467,0.0775813,0.0655285,0.0531655,0.0412399,0.0316873,0.0203721,0.0122297,0.00765359,0.00367971,0.00183672,9.78419E-4,4.30991E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,delivered biomass,industry,0.2419296,0.3328179,0.27276030000000007,0.28392513999999996,0.32768108,0.35078462,0.36504234,0.36730928,0.35863848,0.34690992,0.33196387,0.31188802000000004,0.28446490999999996,0.25673663,0.20970286,0.16193373,0.12745474299999998,0.084396429,0.056926487,0.0405441524,0.026094799000000002,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,regional biomass,electricity,0.036753,0.080706,0.0752642,0.0787637,0.08127531999999998,0.084094903,0.09315938599999998,0.10246053899999999,0.11660058400000001,0.126739033,0.134798574,0.145969953,0.16028242900000003,0.17587407900000002,0.21401076500000002,0.263191783,0.3081150658999999,0.3798601682400001,0.4441774884540001,0.48740607993447016,0.508188839559564,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,regional biomass,gas processing,3.93498E-4,0.0107938,0.010569,0.0113818,0.01514,0.0179648,0.0212157,0.0244756,0.0283282,0.0326542,0.0374607,0.0431703,0.0463171,0.0482943,0.0429055,0.0302817,0.0205557,0.00891103,0.00343552,0.00138879,3.74843E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,regional biomass,hydrogen,0.0,0.0,0.0,0.0,4.45952E-4,0.001116071,0.00209804,0.00337477,0.00490064,0.00704517,0.00981149,0.014337709,0.019544575999999998,0.024591139,0.037820677899999995,0.047139842710000004,0.0564023975,0.07443384626300001,0.07414763707939999,0.0646313169847,0.04446940864428,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,regional biomass,refining,0.0,0.0,0.0,0.0,0.008226248,0.022305608,0.058671797,0.15773210000000001,0.34885799999999995,0.5710100509999999,0.7298248478,0.8370643300000001,0.9545560478299998,1.0666563544999998,1.378849574,1.7895187470000002,2.1629035352,2.762577602274456,3.0902492387585077,3.37989605,4.1476067279999995,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,delivered biomass,building,0.027327987999999998,0.042627778000000005,0.046862899,0.047012021,0.05227367499999999,0.056057143,0.05819472,0.05669404,0.051812014,0.046675492,0.041685415,0.035061714,0.028645393000000005,0.02306718,0.015422888999999999,0.009637511000000001,0.0062423567,0.0030318386,0.0015497959,8.5287411E-4,3.8642834E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,delivered biomass,industry,0.28771163,0.14346239,0.12963233000000002,0.1369915,0.1665219,0.1935885,0.221977,0.2432165,0.2604787,0.2735996,0.28570270000000003,0.2886419,0.2843767,0.2747751,0.2377419,0.1925094,0.15793749999999998,0.10523400000000001,0.0716138,0.051053799999999996,0.0321754,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,regional biomass,electricity,0.0579034,0.0666484,0.0968785,0.0691605,0.10741239999999999,0.14160601400000003,0.191494465,0.24310178400000002,0.29815586699999996,0.354650629,0.415960071,0.4761942170000001,0.562064829,0.6600555300000002,0.7859148559999999,0.9345910659999999,1.129761064,1.3715462202,1.6169170394199999,1.8068766545679997,1.9717908117082001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,regional biomass,gas processing,0.0,3.93499E-4,1.12409E-4,1.82004E-4,3.51692E-4,5.80546E-4,9.47982E-4,0.00147354,0.00229301,0.00350233,0.0053265,0.00796969,0.011114,0.0148442,0.0170256,0.0154716,0.0136306,0.0077445,0.00386256,0.00200285,7.07841E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,regional biomass,hydrogen,0.0,0.0,0.0,0.0,2.95814E-4,6.52786E-4,0.001193507,0.001888441,0.0029355199999999996,0.00451788,0.00684387,0.010607296,0.015824375,0.021972998,0.0376395062,0.05178688581,0.0675315021,0.092414032261,0.095142608576,0.0865028565294,0.0622719286942,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,regional biomass,refining,0.0,0.0,0.0,0.0,0.026751893000000002,0.06341565600000001,0.12958848499999998,0.239575151,0.4149828409999999,0.6101622369999999,0.7824459749999999,0.925008933,1.0859745886000003,1.2720866984,1.644551337,2.101823699,2.5400505412700003,3.0669937630309207,3.4287486921096604,3.599869469,3.750118977,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,delivered biomass,building,0.026371699999999998,0.0180835,0.0205952,0.018920185,0.021349999999999997,0.02153142,0.02143531,0.02013618,0.017978413,0.015796024000000002,0.013654533,0.011371293999999999,0.009148091,0.007234348,0.0050165800000000005,0.003211016,0.0021322025000000003,0.0011720960000000003,6.621287E-4,3.978292E-4,2.0850925000000004E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,delivered biomass,industry,0.001507,0.004227902,0.002888394,0.0034521630000000003,0.004473039999999999,0.00514988,0.005762150000000001,0.00615234,0.00644007,0.00660941,0.006684310000000001,0.0066330700000000005,0.00633956,0.0059241499999999996,0.00504401,0.00396799,0.00316427,0.002129208,0.001465662,0.001071364,7.06995E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,regional biomass,electricity,0.0,0.0,0.0,0.00501235,0.00858976,0.0114033976,0.0184308054,0.025784217,0.035894413900000005,0.04689237449999999,0.05785268820000001,0.07239567880000003,0.09769712579999999,0.1227539567,0.1760356885,0.2507101507,0.31976955660000006,0.43513707830000004,0.5521090332440001,0.6477473759229001,0.7377033437328802,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,regional biomass,gas processing,0.0,0.0,0.0,2.49499E-4,7.66825E-4,0.00153337,0.0027042,0.00431927,0.00671142,0.0100822,0.0147105,0.0212163,0.0274758,0.0344249,0.0369096,0.0310202,0.0249814,0.0128362,0.005892,0.00285031,9.18014E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,regional biomass,hydrogen,0.0,0.0,0.0,0.0,4.27187E-4,8.86439E-4,0.0015617220000000002,0.00244209,0.00383321,0.00581085,0.00849182,0.012727095,0.018414345,0.024727476999999998,0.041211680699999996,0.05491891244,0.07032716459,0.101794132173,0.1099540312043,0.1046400128911,0.07509110623918999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,regional biomass,refining,0.0,0.0,0.0,0.0,0.05665367,0.14030921000000002,0.24772891000000002,0.40216947,0.6408596300000001,0.93242277,1.2092214680000004,1.447156737,1.7007918020999995,1.967274812,2.4387537370000003,2.9514770109999993,3.4451003726000007,5.271759667200446,6.158613457019289,6.90156121,7.00755168,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,delivered biomass,building,4.707E-4,2.559E-4,1.905E-4,2.001561E-4,2.46264E-4,2.699695E-4,2.825522E-4,2.7710880000000003E-4,2.573332E-4,2.3270609999999998E-4,2.0404899999999998E-4,1.691425E-4,1.331829E-4,1.026853E-4,6.581749999999999E-5,3.9504809999999996E-5,2.459749E-5,1.155986E-5,5.67091E-6,3.024051E-6,1.3194340000000001E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,delivered biomass,district heat,0.0,0.0202184,0.0473018,0.0565509,0.0904897,0.114366,0.138675,0.158026,0.180452,0.198563,0.210808,0.229541,0.232653,0.226248,0.201531,0.160224,0.127563,0.0830848,0.0536219,0.03561,0.0201302,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,delivered biomass,industry,2.31E-4,2.201E-4,1.918E-4,2.24199E-4,3.07835E-4,3.62642E-4,4.09883E-4,4.39406E-4,4.62935E-4,4.75541E-4,4.75877E-4,4.75358E-4,4.5184E-4,4.18538E-4,3.5177E-4,2.72468E-4,2.12876E-4,1.34241E-4,8.33369E-5,5.31838E-5,2.8173E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,regional biomass,electricity,4.79999E-6,0.0346181,0.164175,0.13971899999999998,0.2523243,0.40179464000000004,0.6588061799999999,0.9582013999999999,1.2987099300000002,1.6623646099999996,2.03069723,2.51239744,3.1173345799999996,3.8697648000000004,5.602912550000001,7.54728868,9.0181772,10.937848282000001,12.294387619449997,13.019901615284,13.862178086708003,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,regional biomass,gas processing,0.0,0.193839,0.39296,0.537359,0.885401,1.21463,1.62126,2.05708,2.58518,3.15128,3.72643,4.38565,4.81189,5.0492,4.72155,3.61441,2.52731,1.08854,0.351659,0.0893334,0.00403446,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,regional biomass,hydrogen,0.0,0.0,0.0,0.0,0.0028057200000000003,0.00581711,0.01019484,0.01580761,0.02415126,0.03598838,0.05220805,0.07915159,0.11182632,0.146013467,0.237537115,0.3053293148,0.37549986549,0.520714930066,0.525948217786,0.4476250922036,0.28163604316699997,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,regional biomass,refining,0.0,0.0,0.0,0.0,0.43868654999999995,1.00179853,1.87013418,3.2463853200000004,5.236481700000001,7.647959470000002,10.000126679999997,12.41095625,15.128042446000006,18.114707406000004,23.267943970000008,29.303740459999997,35.1324007089,46.75733297326056,54.60060769496406,60.03238979999999,72.23627769999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,delivered biomass,building,0.0030139,0.015362698,0.014609205100000001,0.015597657800000001,0.0187157252,0.020589543000000002,0.022117994,0.022401159,0.021517901000000002,0.020321607000000002,0.018899181400000003,0.016677661700000002,0.0141910153,0.0117897446,0.008218316800000002,0.0052472897,0.0034466833000000004,0.0017261142999999998,9.093361699999999E-4,5.1722448E-4,2.4590322E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,delivered biomass,industry,0.08388743,0.06932007999999999,0.05739002,0.07357767999999999,0.09574308000000001,0.1115411,0.1291542,0.143949,0.1597333,0.1738067,0.1884884,0.20031369999999998,0.2079595,0.21093679999999998,0.1963382,0.16822979999999998,0.1438662,0.10071064,0.0699429,0.05014257,0.03106936,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,regional biomass,electricity,0.00305582,0.005693,0.00560922,0.01110962,0.01296657,0.0146782243,0.020096556699999994,0.0254938528,0.03130174,0.037798642199999996,0.0461791867,0.05562840279999998,0.07723821719999999,0.1029345635,0.1478602695,0.21338683,0.28910312450000003,0.39514387723,0.49583534944800006,0.5695258253221002,0.6424932778622404,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,regional biomass,gas processing,0.0,0.0,0.0,2.95629E-5,9.47263E-5,1.90219E-4,3.59437E-4,6.23144E-4,0.00105713,0.00173225,0.00281025,0.00448352,0.00650489,0.00920304,0.0114879,0.0111932,0.0103437,0.00617885,0.00319968,0.00169065,6.12334E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,regional biomass,hydrogen,0.0,0.0,0.0,0.0,6.81914E-5,1.757689E-4,3.62728E-4,6.30233E-4,0.00105463,0.001659125,0.002536697,0.004121188,0.006430470000000001,0.009253321,0.01671414964,0.02412940726,0.033101845929,0.0499301731965,0.0561112186711,0.05460280813689,0.04074230413805,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,regional biomass,refining,0.0,0.0,0.0,0.0,0.014032412000000001,0.029404117999999996,0.05827640000000001,0.10469519999999999,0.18170866699999996,0.2793691870000001,0.377971386,0.466419603,0.5773011607000001,0.7056681098999998,0.9535374856999999,1.250430554,1.55049152077,2.155865842427418,2.568953033564267,2.959296919,3.4401157259999997,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,delivered biomass,building,0.18079330000000002,0.4032788,0.4865389,0.4623635,0.56240842,0.5757383100000001,0.5782546299999999,0.54905245,0.5049135800000001,0.4525314,0.39436079999999996,0.33676217999999997,0.27140313900000007,0.21226377600000002,0.145617852,0.090901379,0.057883489999999996,0.0302729129,0.0159079665,0.0088084629,0.0040913458700000006,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,delivered biomass,district heat,0.00694863,0.0258686,0.028256,0.0373371,0.0485515,0.0601889,0.0741841,0.0882824,0.106175,0.122807,0.137946,0.149733,0.152836,0.147719,0.136746,0.106116,0.0823207,0.0536299,0.0343835,0.0229532,0.0128244,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,delivered biomass,industry,0.0631665,0.1629606,0.19644910000000002,0.2073387,0.2673826,0.30047630000000003,0.3263851,0.3367462,0.346178,0.3455027,0.33992310000000003,0.3239743,0.2948964,0.2605479,0.208064,0.1547673,0.1180438,0.07434858,0.04767036,0.03265411,0.01929796,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,regional biomass,electricity,0.00117213,0.0364608,0.11817,0.1273887,0.1417629,0.15459911,0.17842497699999996,0.20019917099999998,0.230480886,0.2584697850000001,0.28907726899999997,0.3135973260000001,0.3446721220000001,0.36581228000000005,0.42303050900000005,0.4835084479999999,0.5270117639999999,0.5871082099,0.6279574601999998,0.633263403903,0.5582716411877001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,regional biomass,gas processing,5.0591E-4,0.00781424,0.022993,0.0261327,0.0382611,0.0476362,0.05932,0.0711899,0.0879595,0.106184,0.127238,0.149667,0.162613,0.166499,0.147592,0.10181,0.0657763,0.0265005,0.00899761,0.00303247,5.98195E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,regional biomass,hydrogen,0.0,0.0,0.0,0.0,1.1994849999999999E-4,3.21723E-4,6.43055E-4,0.001083911,0.001728146,0.002640008,0.003931133,0.0060309380000000004,0.008320975999999999,0.010057308000000001,0.0144419831,0.016272814,0.017275747799999998,0.01952556865,0.018091478851,0.015956117066,0.012198406862000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,regional biomass,refining,0.0,0.0,0.0,0.0,0.037400271,0.07473047100000002,0.14950156700000003,0.287899794,0.5449810030000001,0.8214481160000002,1.0433250630000002,1.1822797470000002,1.3125369433000003,1.3849140725000006,1.5502809819999999,1.6617743850000002,1.66293904,1.47182460368542,1.488168263691566,1.5044967257453399,1.4414172839999997,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,delivered biomass,building,0.8571030000000001,0.9811536999999999,1.261439,1.1964748,1.3244987,1.3300424999999998,1.3166581000000002,1.2447636,1.11228,0.9872167,0.857223,0.7252897899999998,0.5851813499999999,0.46622075999999996,0.31848649000000007,0.20191312,0.13263539000000002,0.07119003099999999,0.039034005000000004,0.022712079,0.0113743114,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,delivered biomass,industry,0.682894,0.975345,1.2491425,1.289184,1.546693,1.698264,1.775929,1.771974,1.693696,1.5943520000000002,1.4759860000000002,1.340773,1.171905,1.008875,0.769095,0.5541311,0.4123044,0.2541757,0.1610989,0.1099419,0.06725616,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,regional biomass,electricity,0.120954,0.642526,1.06835,0.67856,0.8017837,0.88491341,1.0059972500000003,1.1063611699999998,1.2781256499999998,1.3533731599999999,1.4062302200000003,1.4559294800000002,1.51219424,1.5288811500000001,1.5869997100000002,1.6238151100000002,1.692870296,1.8511141699999993,1.9252346275699994,1.847435802383,1.4921878966170001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,regional biomass,gas processing,0.0368228,0.243366,0.593373,0.610068,0.782967,0.903231,1.03248,1.14943,1.28573,1.41468,1.53733,1.67127,1.67037,1.62063,1.34452,0.886348,0.539316,0.197548,0.0587337,0.0155127,0.00150128,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,regional biomass,hydrogen,0.0,0.0,0.0,0.0,0.01521407,0.02769983,0.0438284,0.0624325,0.08595539999999999,0.115533,0.1493052,0.1856661,0.2169883,0.23565685,0.30185959,0.310559229,0.305405783,0.32825344199999995,0.2949837899,0.25342731279999997,0.18486997527000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,regional biomass,refining,0.0,0.0,0.0,0.0,0.007720343,0.094967866,0.40023213,1.2510183359999998,2.82527363,4.511060703999999,5.5971357708,6.118702288500002,6.515324989729998,6.5913170600000015,6.926162593000001,7.089844509999998,6.803393489999998,5.497320302435099,5.359737266724848,5.288871026024772,5.008927710000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,delivered biomass,building,0.0228556,0.0411484,0.0728782,0.06369534,0.06931078,0.06694499,0.06416767,0.058328149999999995,0.051150379999999995,0.04424395,0.03772136,0.03136294,0.025151774000000002,0.019749578,0.013704430000000002,0.008701324,0.005684738,0.0030466241,0.0016527212,9.395997E-4,4.5773837999999996E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,delivered biomass,district heat,0.0,0.0165768,0.0235675,0.0266704,0.0328944,0.0370666,0.0418941,0.0461794,0.0514756,0.0564388,0.0608459,0.0650355,0.0658221,0.0639459,0.0576162,0.0454988,0.0360291,0.0236659,0.0152842,0.0102065,0.0057083,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,delivered biomass,industry,0.0021767,0.009460300000000001,0.036962398,0.038549031,0.04719319899999999,0.052393028,0.056088400000000004,0.05739137,0.05770736,0.0571816,0.05613383999999999,0.05385616,0.04974557,0.04498482000000001,0.036500172,0.027580033,0.021247191999999998,0.013348222000000002,0.008392845,0.005526577,0.0030272140000000003,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,regional biomass,electricity,0.0,0.0,0.00263714,0.00799145,0.01064582,0.0134944483,0.0220286235,0.03227036070000001,0.04640771330000001,0.06182796930000001,0.0779884882,0.09643469349999997,0.11902394159999999,0.1393847056,0.17621878099999994,0.21933356730000003,0.2554400860999999,0.31010547097999996,0.3602033050179999,0.39202764640920007,0.3778340292935201,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,regional biomass,gas processing,0.0,0.0,1.12409E-4,3.02874E-4,6.58467E-4,0.00110542,0.00174988,0.0025912,0.00380429,0.00545782,0.00768668,0.0107918,0.0138102,0.0170395,0.0178137,0.014682,0.0116073,0.00581028,0.00257573,0.00120969,3.74029E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,regional biomass,hydrogen,0.0,0.0,0.0,0.0,1.0364400000000001E-4,2.3275979999999997E-4,4.3249200000000003E-4,7.09419E-4,0.00114141,0.0017737629999999998,0.002692542,0.004321062,0.006415395,0.0086539623,0.0136519731,0.01697159348,0.019929223649999998,0.025137105295,0.024846638633,0.0222751727995,0.0164422329922,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,regional biomass,refining,0.0,0.0,0.0,0.0,0.011510135999999999,0.026085518999999998,0.053036574,0.10418674000000001,0.19294650199999996,0.2973925409999999,0.3881687419999999,0.45882507810000006,0.5292592415,0.5936651041,0.7050172791,0.8132032419999999,0.8793565742000001,0.9160531724309172,0.983819130711152,1.027966266476816,1.018140629,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,delivered biomass,building,0.3855306,0.29917289999999996,0.27460159999999995,0.29767248999999996,0.33975102,0.35105171,0.35547238000000003,0.34140967,0.31066229,0.27807001000000003,0.24356171999999998,0.20552678000000002,0.16656542000000002,0.13281700000000002,0.090792686,0.057649979,0.037907722,0.01996603,0.0108335804,0.006307870299999999,0.0031157859,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,delivered biomass,district heat,0.0,1.25601E-4,6.69815E-4,0.00156418,0.00214575,0.00265297,0.00319109,0.00365956,0.00409731,0.00446523,0.00473452,0.0049584,0.00491441,0.00469364,0.00409298,0.00317392,0.00248422,0.00159184,0.00102007,6.896E-4,3.89315E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,delivered biomass,industry,0.0198223,0.0301546,0.0367114,0.043947023,0.055240199999999996,0.06015365,0.06485934,0.06692442000000001,0.06686266,0.06558452,0.06309908,0.06053599,0.056029640000000006,0.051093309999999996,0.04339356,0.034860484000000004,0.028487896,0.020877592,0.015709942,0.0127054403,0.0099666219,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,regional biomass,electricity,0.0,0.00104648,0.00175807,0.007492424,0.009073132,0.013632546000000002,0.021206505999999996,0.029630139,0.037912377,0.04807343499999999,0.05822494499999999,0.07190228000000001,0.116282642,0.14554325650000002,0.20620310099999992,0.2784577059999999,0.31968159420000003,0.37560939989999986,0.42445540075999993,0.4420809812070001,0.4042078122959,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,regional biomass,gas processing,0.0,5.62176E-4,0.00404763,0.00737629,0.0110692,0.0143632,0.0184626,0.022819,0.0282184,0.0345113,0.04164,0.0510213,0.0523596,0.055035,0.0500693,0.0365744,0.0252042,0.0111689,0.00437767,0.00181299,4.98051E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,regional biomass,hydrogen,0.0,0.0,0.0,0.0,1.648901E-4,4.66501E-4,9.57398E-4,0.001614274,0.002551257,0.00373751,0.005279664999999999,0.007937554000000001,0.010983811,0.013274744,0.0190227519,0.0215194204,0.02292928849,0.025990590990000003,0.023652860981,0.020101776444,0.014758201176,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,regional biomass,refining,0.0,0.0,0.0,0.0,0.05145145,0.10759992999999998,0.17850483000000003,0.29246546,0.48303104,0.747611656,0.9793170679999998,1.1281346240000003,1.2447217061,1.3045871776999998,1.4206598289999999,1.515275465,1.5207499323000002,1.39562917894761,1.4060766473666337,1.3967771553537303,1.301555734,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,delivered biomass,building,0.052335099999999996,0.055011,0.06963760000000001,0.07267269500000001,0.08155836,0.08382764000000001,0.08435622999999999,0.08032887,0.071717545,0.062989527,0.054025709,0.043802825000000004,0.034064331999999996,0.026189796,0.016660424,0.009937163999999998,0.006181501900000001,0.0029592514,0.0014812218,7.9505177E-4,3.5739573000000005E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,delivered biomass,industry,0.04076151,0.07529916,0.07674693999999999,0.06700259,0.08024298,0.08521882,0.08580841,0.08136362,0.07581662,0.06899644999999999,0.062227260000000006,0.05433127,0.04624547,0.03915344,0.02930017,0.0209173,0.01546633,0.0094213,0.006005411,0.004143208,0.002602279,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,regional biomass,electricity,0.0084977,0.00891642,0.0119303,0.007126799999999999,0.01875271,0.032301737999999997,0.05147694199999999,0.07039751,0.07514435900000001,0.07863709600000002,0.08123871900000001,0.08487764000000002,0.088194948,0.09315975419999996,0.094797356,0.09867524400000004,0.10590530515999996,0.118250939467,0.12815953851009998,0.13233006248336,0.11835970984641705,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,regional biomass,gas processing,0.00213631,0.00460985,0.00567808,0.00539919,0.00741534,0.00911944,0.0111735,0.0133205,0.0154533,0.0177714,0.0202119,0.0227649,0.0237174,0.0229019,0.0181684,0.0113788,0.0068292,0.00263256,8.60097E-4,2.68802E-4,4.33759E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,regional biomass,hydrogen,0.0,0.0,0.0,0.0,0.001388603,0.00244956,0.0037116,0.0050035800000000005,0.00677298,0.00900378,0.01168247,0.015202710000000001,0.018938473,0.022166731999999998,0.0313982773,0.0345601491,0.03617927221,0.041651186959999996,0.0366256756865,0.0290866315957,0.018061312160599998,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,regional biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03530998,0.10313314999999999,0.17592233000000004,0.22459655,0.25034341,0.27244583,0.2859957990000001,0.337445908,0.4016241729000001,0.44698947966,0.47878970942212296,0.504866445611655,0.523646936,0.5443171630000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,delivered biomass,building,0.197244,0.251118,0.268741,0.349144,0.538656,0.698934,0.818308,0.871766,0.872891,0.832909,0.75541,0.654647,0.52771,0.406967,0.263873,0.15526,0.0933653,0.0416368,0.0191292,0.0094708,0.00385577,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,delivered biomass,industry,0.94205929,1.1423207,1.2223073,1.4907393999999998,2.2708509,3.0234224,3.7883289,4.4729323,5.0956817,5.59681,5.929925,6.170609,6.081516,5.804892,5.066484,4.027826,3.17361,2.029754,1.276238,0.83808,0.473668,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,regional biomass,electricity,0.0,0.0461297,0.0493948,0.05563491,0.12754426,0.24858639,0.45859628000000013,0.74420211,1.0830392000000002,1.4731194799999996,1.8974309700000003,2.316861544,2.7939408539999997,3.272554222,3.9186300299999983,4.6620133599999996,5.365819770000001,6.498268689999997,7.428264165999996,8.080550838399997,8.25087671173,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,regional biomass,gas processing,0.0,0.0,0.0,1.79708E-4,6.52308E-4,0.0015403,0.00325249,0.00622386,0.0112156,0.0192527,0.0317228,0.0509887,0.073802,0.100639,0.117824,0.10936,0.0962761,0.055247,0.0267285,0.0134612,0.004585,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,regional biomass,hydrogen,0.0,0.0,0.0,0.0,4.74321E-4,0.0010928140000000001,0.0021164,0.00360434,0.00597916,0.0093362,0.013097649999999999,0.01761696,0.02163909,0.024415859999999998,0.03274611,0.036045871,0.040229174,0.0516275295,0.0605023987,0.06418941509,0.054886765389999995,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,regional biomass,refining,0.0,0.00938506,0.0156704,0.44026489999999996,1.0314363,1.7916770999999998,2.7924106,4.126788299999999,5.8923175200000015,7.909719259999998,9.831170112,11.745171729999997,13.314629936,14.46045963,15.18973334,15.048840790000003,13.73677366,8.560829800569,8.468065304424067,8.878051738640831,8.963866879999998,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,delivered biomass,building,0.042697189999999996,0.0251997,0.0225625,0.0277048,0.0348299,0.0393806,0.0422511,0.0420317,0.039288,0.035672,0.0314993,0.02681017,0.02190803,0.01740363,0.012018689999999999,0.00751921,0.00473783,0.002300404,0.001129291,5.863590000000001E-4,2.575683E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,delivered biomass,industry,0.366359198,0.29419201,0.29268510000000003,0.46168326,0.68271181,0.88537398,1.07805342,1.22415845,1.33444149,1.4184332,1.4721077,1.5129835,1.4980712,1.4477829,1.2966318,1.0741173000000002,0.88091753,0.61169174,0.41130519,0.28194456,0.16634149999999998,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,regional biomass,electricity,0.0,3.767E-4,0.0017163,0.006165338,0.014260242,0.027374697,0.05012993500000001,0.07990067699999998,0.115848072,0.157118604,0.20074212700000005,0.24459169960000002,0.30065060460000004,0.35344153980000015,0.41274011200000005,0.47902078699999995,0.558171493,0.7319374349999999,0.8921931156,1.0012745407900003,1.0441018338519996,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,regional biomass,gas processing,0.0,0.0,0.0,1.4493E-4,5.16565E-4,0.00117798,0.00234523,0.0041764,0.00709815,0.0115953,0.0182788,0.028607,0.0406033,0.0546663,0.0628382,0.0570364,0.0490244,0.0272122,0.0128707,0.00640003,0.00215905,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,regional biomass,hydrogen,0.0,0.0,0.0,0.0,4.89434E-4,0.001095731,0.00203237,0.00327164,0.0049875,0.00702806,0.00933259,0.01154948,0.01330537,0.0145976,0.01997494,0.02408826,0.031490687999999996,0.046602205400000006,0.055163808,0.058370783239999995,0.051817418703,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,regional biomass,refining,0.0,0.0,0.0,0.0,0.22481443,0.51345622,0.88860362,1.37533127,2.00421688,2.74080832,3.419558629999999,4.038607794000001,4.499671355999998,4.783171796000002,4.891923702,4.760379349999999,4.19569281,2.2939100922030002,2.275164899245148,2.358476281371878,2.3592954799999997,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,delivered biomass,building,0.0041988,9.693E-4,7.974E-4,7.35437E-4,8.61922E-4,8.91443E-4,9.12029E-4,8.75817E-4,7.88149E-4,6.98817E-4,6.09029E-4,5.03968E-4,4.02225E-4,3.15112E-4,2.08543E-4,1.29636E-4,8.45063E-5,4.29658E-5,2.31397E-5,1.35392E-5,6.53488E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,delivered biomass,industry,0.107288,0.108003,0.114363,0.105047,0.12424,0.13361,0.141502,0.144382,0.14494,0.143329,0.139905,0.135099,0.125512,0.113615,0.0925327,0.0698712,0.0534655,0.0332048,0.0206448,0.0134793,0.00726808,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,regional biomass,electricity,0.095064,0.179537,0.178407,0.2119863,0.20457509999999998,0.20303846199999998,0.21298737,0.21902792400000004,0.228853835,0.236765444,0.24311626599999994,0.2511454919999999,0.3035346300000001,0.328110264,0.37747178499999995,0.42760409099999996,0.4704600659999999,0.5419141930000001,0.606635537194,0.6415541222767001,0.6232094321904601,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,regional biomass,gas processing,0.00326067,0.0089386,0.00730833,0.00850821,0.0120592,0.0145771,0.0179845,0.0217409,0.0268903,0.0330301,0.0402577,0.0497909,0.0506796,0.0539257,0.0514993,0.0383874,0.0269257,0.0121106,0.00494529,0.00216668,6.51308E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,regional biomass,hydrogen,0.0,0.0,0.0,0.0,2.9525199999999997E-4,7.44339E-4,0.001380319,0.0021430499999999996,0.00310152,0.00440895,0.0060639000000000005,0.008789676000000001,0.011910539999999999,0.014786202,0.0222219353,0.02583482034,0.02844083121,0.033996258036,0.031773209074999996,0.027090351515500002,0.0189001222123,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,regional biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.007259128,0.367920416,1.050221686,1.7774022650000003,2.2664120690000003,2.4825240770000008,2.6504047680000005,2.71149269,3.1588835267,3.661594449,3.9622942078999994,4.085587119974208,4.1122546791928185,4.0679516447349595,4.014217067,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,delivered biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,delivered biomass,industry,0.08162710000000001,0.058059799999999995,0.0428646,0.0415353,0.0549086,0.0639671,0.0733683,0.0805051,0.0868492,0.0919248,0.0968835,0.100103,0.1004068,0.09863569999999999,0.0883683,0.0736275,0.0620522,0.0438033,0.0321603,0.02504692,0.01829445,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,regional biomass,electricity,0.0,0.0467995,0.0455436,0.01418315,0.02763345,0.037922155,0.052810568999999995,0.06812329699999999,0.087064834,0.10539342499999999,0.12886796299999997,0.154956039,0.20125386599999995,0.27473514099999996,0.4009339880000001,0.5669086229999999,0.7602105909999998,1.0306698805999999,1.2909764204500003,1.4938274182562004,1.6721759905941995,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,regional biomass,gas processing,0.0,8.43266E-4,0.0025298,0.00255228,0.00395789,0.00538352,0.00742301,0.00993167,0.0135434,0.0182729,0.0250934,0.0343038,0.0443095,0.0546343,0.0586763,0.0504714,0.0420649,0.0228108,0.011012,0.00553201,0.00190473,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,regional biomass,hydrogen,0.0,0.0,0.0,0.0,3.1289E-4,8.2223E-4,0.001625882,0.00271894,0.00423958,0.00641296,0.00979258,0.015660603,0.023686389000000002,0.033078397999999995,0.0575317848,0.08013225722,0.1063838589,0.153808290543,0.1661500804487,0.1536760411021,0.11211402283,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,regional biomass,refining,0.0,0.0,0.0,0.0,0.0015266506,0.0665125164,0.2058387252,0.4446268267,0.8400016565,1.2530337499,1.6016868852,1.8894913995799998,2.2670965276800006,2.697047016999999,3.5872499039999997,4.602656119000001,5.55228815921,7.387374299119957,8.289883753686556,8.75083731,10.11096392,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,delivered biomass,building,0.0152789,0.026622899999999998,0.0221021,0.02250874,0.026562259999999997,0.028889909999999998,0.02981708,0.029175310000000003,0.02710702,0.0250603,0.022971810000000002,0.0200696,0.016830229999999998,0.013814680000000001,0.009429729999999999,0.00599071,0.003945129,0.00196025,0.001021383,5.76312E-4,2.726287E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,delivered biomass,industry,0.0045627,0.0030558,0.0032232,0.00355544,0.00449506,0.00517049,0.00582045,0.00629719,0.00666666,0.0069579,0.00719402,0.00729463,0.00716026,0.00686684,0.00595056,0.00478865,0.00389299,0.00259239,0.00172334,0.00118878,7.00336E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,regional biomass,electricity,0.0,0.0,2.512E-4,0.0081678645,0.0232473761,0.040942576499999994,0.07635160950000001,0.12248944060000003,0.1766134111,0.23358313900000002,0.2932432584,0.35981335208000004,0.48548678633000003,0.6301119645700002,0.849642575,1.140252207,1.4795618159999995,1.9824932733999998,2.4977772103199993,2.9157144640839996,3.2218069422667996,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,regional biomass,gas processing,0.0,5.62714E-5,7.30856E-4,0.00163471,0.00361758,0.00620579,0.0101492,0.0155577,0.0234065,0.0344137,0.050013,0.0727016,0.0973647,0.124903,0.136999,0.11919,0.0999679,0.0541568,0.0261303,0.0132827,0.00459911,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,regional biomass,hydrogen,0.0,0.0,0.0,0.0,0.001582609,0.00385918,0.00726172,0.01200366,0.01880146,0.02863123,0.04232085,0.0670551,0.09883865,0.13250223,0.217977441,0.2774551658,0.33492304700000003,0.43623179582,0.44054621975,0.399683607611,0.298472284712,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,regional biomass,refining,0.0,0.0,0.0,0.0,0.30999116,0.7765266700000001,1.4480745700000002,2.5351324,4.26241105,6.264156679999999,7.96330377,9.344845620000003,10.63960133,11.801286855000003,14.2445482,16.511017310000003,18.048695579,19.659280631462202,20.79751886444775,21.00429299329394,20.89715509,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,delivered biomass,building,0.004479,0.0073255,0.0079953,0.00926016,0.011255,0.0127865,0.0138746,0.0139781,0.0132433,0.0122499,0.0110399,0.00937093,0.00760519,0.00598155,0.00403843,0.00249015,0.00156694,7.56859E-4,3.7218E-4,1.94065E-4,8.43376E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,delivered biomass,industry,0.096696602,0.1420315,0.15542609999999998,0.25532498,0.35303084,0.4705743,0.61245078,0.76103842,0.91364616,1.0676670000000001,1.2075904,1.3123407,1.3526445,1.3401351,1.1911514,0.974695,0.7887077,0.5137266,0.32709769,0.21469823,0.11836052,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,regional biomass,electricity,0.0,0.0,0.0,0.0211393,0.043163400000000005,0.075331007,0.13747041499999998,0.23090017899999998,0.34693120099999997,0.4921180779999999,0.650812646,0.8208941929999999,1.0285507440000001,1.2049184700000002,1.328432796,1.372625568,1.4537055300000008,1.6594120410000006,2.0092464210000003,2.3273668517999995,2.534728981949,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,regional biomass,gas processing,0.0,0.0,0.0,1.11604E-4,3.68401E-4,8.22085E-4,0.00166957,0.00311965,0.00561445,0.00974475,0.0162065,0.0264441,0.0386952,0.0536708,0.0621088,0.056175,0.0482265,0.0261723,0.0123025,0.0060897,0.00202809,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,regional biomass,hydrogen,0.0,0.0,0.0,0.0,1.713762E-4,4.00769E-4,8.065959999999999E-4,0.001432545,0.00241294,0.0037437399999999997,0.00542907,0.0070049,0.008400560000000001,0.00972285,0.0136287,0.018584189999999997,0.026509157000000002,0.0399296142,0.04891438033,0.054184540270000005,0.049305778637999995,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,regional biomass,refining,0.0,0.0,0.0,0.0,0.054930559999999996,0.13891549,0.26753421,0.4563189900000001,0.7243727400000002,1.0750895949999997,1.4219316749999997,1.7504757279999998,1.9858873580999998,2.2297318130000003,2.4266397379999987,2.512656903,2.416145762,1.6117202401998,1.783185788738787,2.042817831029014,2.2570637190000005,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,delivered biomass,building,0.3046985,0.0730037,0.0764363,0.07017496,0.08180272,0.08212767000000001,0.08181063,0.07750341000000001,0.07186028,0.06571234000000001,0.059217439999999996,0.05243212,0.044265240000000004,0.036348277,0.026467360000000002,0.01742745,0.011716271,0.0064084936,0.0035209925000000003,0.0020247937,9.9132029E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,delivered biomass,district heat,0.161656,0.097368,0.105994,0.111079,0.140512,0.159235,0.182523,0.204488,0.231465,0.256615,0.278424,0.298268,0.30136,0.291019,0.260965,0.202947,0.158254,0.102436,0.0662236,0.0445182,0.0254047,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,delivered biomass,industry,0.04345073,0.11909169,0.10820812,0.10726257,0.13062894,0.14417591,0.15106845000000002,0.15170666000000002,0.14897156,0.14426879,0.13865682000000001,0.13037511,0.11791341,0.10403256,0.08124636,0.05914598,0.04431456,0.02712682,0.01690279,0.011148469000000001,0.006206154,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,regional biomass,electricity,0.0,0.0,0.0,0.00719193,0.021301470000000003,0.029376949,0.052657639000000006,0.07814033000000001,0.112504651,0.147534993,0.18361740699999998,0.22380725399999998,0.27779524,0.33423420900000006,0.443397086,0.5745542729999998,0.7152657326999998,0.93409914614,1.1494403879200001,1.3248960995877996,1.4620330249880504,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,regional biomass,gas processing,0.0,0.0,0.0,9.29664E-4,0.00263369,0.00483478,0.00801644,0.0121353,0.0179313,0.0256576,0.0359126,0.0499558,0.0639298,0.0776312,0.0801325,0.0650089,0.0507526,0.0251272,0.0111631,0.00524995,0.00163087,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,regional biomass,hydrogen,0.0,0.0,0.0,0.0,0.00164372,0.00311164,0.0051231,0.00754415,0.01093004,0.01586463,0.022639430000000002,0.03340647,0.046846687,0.06077183,0.0976045,0.125169505,0.15377114580999998,0.212814389647,0.2200720931306,0.1960740422334,0.1325510209781,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,regional biomass,refining,0.0,0.0,0.0,0.0,0.03138381,0.134119784,0.34217421800000003,0.7435717840000001,1.4291412719999999,2.199572937,2.823319672999999,3.2799003570000016,3.7857719696000003,4.261965162000001,5.270824686999999,6.373043128,7.322487437720001,9.867443841216565,11.218892694527126,12.345219219999999,13.84041603,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,delivered biomass,building,0.0310183,0.0378833,0.0401437,0.0364513,0.0456879,0.0514489,0.0543682,0.0541037,0.0511651,0.0476373,0.0427315,0.036956,0.0302612,0.0243573,0.0163166,0.0102308,0.00665343,0.00331371,0.0016833,9.04182E-4,4.02867E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,delivered biomass,industry,0.17091411,0.22009988,0.2330342,0.20740616,0.25574034,0.28630381,0.30617132,0.31559302,0.31945893,0.31982577,0.31254865,0.30908631,0.29327086,0.27331467,0.23162968,0.18183859,0.14261133,0.09165629,0.056891664,0.035947814,0.018837666,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,regional biomass,electricity,0.0,0.00380928,0.00406038,9.22459E-4,0.00157108,0.0046865418,0.0107996947,0.0194551467,0.0297869767,0.042947686299999996,0.05682119680000001,0.07485770080000002,0.09539336400000001,0.11689634489999999,0.1546649127,0.1835231194,0.20526690290000005,0.2324935689,0.24562084129999998,0.24550979155500002,0.21744991278020007,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,regional biomass,gas processing,0.0,0.0,0.0,1.09895E-4,2.33494E-4,3.50827E-4,4.96178E-4,6.74416E-4,9.17896E-4,0.00125551,0.00172292,0.00238508,0.00309481,0.00382673,0.0041373,0.00352551,0.00287102,0.00152677,7.00213E-4,3.34569E-4,1.07509E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,regional biomass,hydrogen,0.0,0.0,0.0,0.0,8.17509E-5,1.590215E-4,2.5561999999999997E-4,3.75411E-4,5.4163E-4,7.76325E-4,0.001067884,0.0015303860000000001,0.0019588312,0.0022687221,0.0031051522,0.00331544515,0.00331218077,0.00367118047,0.0034392415019999997,0.003141948119,0.0024059678196,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,regional biomass,refining,0.0,0.0,0.0,0.0,0.0,0.010108518,0.064670349,0.134296971,0.21015138800000002,0.289652855,0.348541131,0.39630549899999995,0.43896107139999985,0.4874914111000001,0.5483203120000001,0.585200176,0.5826517199999999,0.48069453187706,0.47571843035814804,0.47365569921937095,0.45703508699999995,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,delivered biomass,building,0.0053866009999999995,0.0071071050999999994,0.0074292477,0.0065372803,0.0074083242,0.0080166874,0.008390810700000001,0.0083790907,0.0077701212000000006,0.0070641227,0.0063691473,0.005427091,0.00449650949,0.0036485644,0.00244450436,0.0015246591900000001,9.8499128E-4,4.719169E-4,2.3878441E-4,1.31153789E-4,5.9619129E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,delivered biomass,industry,0.01894989,0.02406889,0.02091007,0.02049057,0.02497497,0.02815353,0.031507139999999996,0.03384798,0.035367800000000005,0.036242800000000006,0.0368767,0.036856,0.0359307,0.0343663,0.0298457,0.02427491,0.02000839,0.01371381,0.00981491,0.0074213000000000005,0.00523389,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,regional biomass,electricity,8.06798E-4,9.20296E-4,9.49597E-4,0.009508583999999999,0.018149795,0.028083870000000004,0.045265047999999995,0.064172388,0.087188812,0.114595557,0.14288250110000006,0.17225610950000003,0.22418034460000003,0.27337817334000003,0.343006876,0.42574853999999995,0.5226614959999999,0.6570578921999999,0.799443255729,0.8998793804398,1.0092024262800101,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,regional biomass,gas processing,0.0,0.0,0.0,6.886E-5,1.98839E-4,3.74061E-4,6.35185E-4,9.84388E-4,0.00149318,0.00224578,0.00340795,0.00511505,0.00692629,0.00923344,0.0106123,0.00968348,0.00856262,0.00486229,0.00242909,0.00125859,4.45354E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,regional biomass,hydrogen,0.0,0.0,0.0,0.0,6.214149999999999E-4,0.001266162,0.00220652,0.00341463,0.0051173899999999994,0.0073587999999999995,0.010666120000000001,0.015934877,0.022997091,0.030923367,0.051764228600000003,0.06979955247,0.09051703084,0.131175201726,0.14178704935,0.1334580206771,0.09446970992999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,regional biomass,refining,0.0,0.0,0.0,0.0,0.037561314,0.11293800000000001,0.21759218099999997,0.3554436709999999,0.522179283,0.692591049,0.8447160239999999,0.9712148140000002,1.0974053151000003,1.2751242640000005,1.6147655069999998,1.9970272,2.3579006616800005,3.1976810700158103,3.7470899733998806,4.2796812609999995,4.927837885999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,delivered biomass,building,0.0254091,0.015069601,0.0168277,0.017816116,0.020809654,0.02206828,0.022589099,0.021685797,0.019536437999999996,0.017296598,0.015046829,0.012409135,0.009855118000000001,0.0076414975,0.0049062066,0.0029056918000000004,0.0017819174,8.233795000000001E-4,4.0347753999999997E-4,2.1453714E-4,9.650989E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,delivered biomass,industry,0.12105912,0.1723377,0.21725330000000004,0.27164710000000003,0.3464197,0.4065034,0.43833779999999994,0.44947170000000003,0.454673,0.45086180000000003,0.44486459999999994,0.4282546,0.40022159999999996,0.36439130000000003,0.2928031,0.2202435,0.1698517,0.10491994,0.06696578,0.04537706,0.027598705,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,regional biomass,electricity,0.0046884,0.00786999,0.0234427,0.0396062,0.05197199999999999,0.064639069,0.084631925,0.103421383,0.120204005,0.136430281,0.15462399700000004,0.17297445299999997,0.21030048299999998,0.25347298399999996,0.3245780099999999,0.425609868,0.542364638,0.6863508852000001,0.825286627702,0.9264256484938999,1.0265306162355299,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,regional biomass,gas processing,0.00101195,0.0,5.05916E-4,8.78985E-4,0.00146407,0.00209555,0.00310505,0.00443302,0.00635921,0.0090073,0.0128025,0.0179912,0.0232271,0.0295423,0.0329551,0.0290239,0.0245096,0.0134089,0.00646787,0.00323021,0.00111909,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,regional biomass,hydrogen,0.0,0.0,0.0,0.0,0.002540828,0.0050893399999999995,0.008604009999999999,0.01290925,0.01945732,0.028287859999999998,0.03988989,0.05793228,0.08181112,0.107463376,0.1744358003,0.225525091,0.28081411374,0.387030534263,0.392055119694,0.34581804615690004,0.2295380206165,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,regional biomass,refining,0.0,0.0,0.0,0.0,0.05570089000000001,0.12626116999999998,0.22834349999999998,0.3732328299999999,0.6053248000000001,0.89077174,1.1627619920000005,1.387426038,1.6373185129999999,1.9128085830000001,2.4912262960000007,3.168344383000001,3.852372501859999,5.62416322560726,6.738780727901754,7.6993005199999995,8.41427648,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,delivered biomass,building,0.00328211,0.0104303,0.0122853,0.01333779,0.015877330000000002,0.017549500000000003,0.01847222,0.018409389999999998,0.017407,0.01624155,0.014938590000000002,0.013105970000000002,0.01111266,0.009216829999999999,0.0065179999999999995,0.00420775,0.002763347,0.001375381,6.9666E-4,3.73292E-4,1.660153E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,delivered biomass,industry,0.0354933001,0.076563997,0.08441169899999999,0.157843536,0.24606013000000002,0.34732219000000003,0.45273749999999996,0.5494777799999999,0.63657891,0.71815991,0.7882695,0.8452119,0.8611616,0.8417113,0.7267159,0.5713457000000001,0.4465689,0.2777698,0.17086282,0.1093944,0.05991514,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,regional biomass,electricity,1.853E-4,8.37E-5,0.0,0.00496624,0.013956260000000002,0.027360215,0.05111784699999999,0.08226077899999998,0.12036041800000002,0.16773574299999996,0.220779352,0.282403383,0.35340893500000004,0.4118788660000001,0.44117240699999993,0.45602840400000005,0.521047602,0.6894275599999998,0.8857167968999998,1.03002880904,1.06426901237,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,regional biomass,gas processing,1.68681E-4,0.0028109,0.00359788,0.00792705,0.0149559,0.0229745,0.0350315,0.0505317,0.0718282,0.100471,0.136789,0.185367,0.226774,0.261362,0.251551,0.187339,0.131239,0.057636,0.0217387,0.00854579,0.00221992,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,regional biomass,hydrogen,0.0,0.0,0.0,0.0,0.0019447510000000002,0.00463919,0.00909956,0.015442629999999999,0.0244249,0.0356911,0.0489951,0.058948600000000004,0.0658097,0.070742,0.0894919,0.11148349,0.14263731999999998,0.191866259,0.2088692528,0.2058234245,0.16612028959,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,regional biomass,refining,0.0,0.0,0.0,0.0,0.07977646,0.18583441,0.31989922000000004,0.49018521,0.72259748,1.0259109399999997,1.3372833509999997,1.6512198279999997,1.9168135626000002,2.1376735220000005,2.294985169,2.354328909000001,2.231637973,1.4777461372762002,1.658722923208164,1.9191457262031177,2.157870672,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,delivered biomass,building,0.0183765,0.0153053,0.0284943,0.02742881,0.030507809999999996,0.03052544,0.030413330000000002,0.028624240000000002,0.0253887,0.02224036,0.01905111,0.01594811,0.012757480000000002,0.01009605,0.00687987,0.00432682,0.002806631,0.001481483,7.879359999999999E-4,4.44175E-4,2.113431E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,delivered biomass,industry,0.01142769,0.07017287,0.09122543000000001,0.09279843,0.10967201,0.11668113,0.12286444,0.12499144,0.12521615,0.12364050000000001,0.11984631,0.11695567,0.10883693,0.09862539,0.07961034,0.059297230000000006,0.04464312,0.027317673,0.016730619,0.010829334,0.006033392699999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,regional biomass,electricity,0.0,4.18612E-4,0.00368369,0.0044496,0.00698922,0.00930743017,0.014903985068000001,0.02253871095,0.03294993156999999,0.043919435810000004,0.053920820150000014,0.06410085507,0.07270789286,0.07644537381000002,0.07784282668000002,0.07353848729,0.07241439192000002,0.08306221959999999,0.09604904387,0.105896582418,0.10702946149349,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,regional biomass,gas processing,0.00101198,0.00455375,0.011356,0.01196,0.0164505,0.0195918,0.0236397,0.0278942,0.0333802,0.0396178,0.0463141,0.054796,0.0580884,0.0585291,0.0500412,0.0336441,0.0211156,0.00815143,0.00269006,9.21506E-4,2.00939E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,regional biomass,hydrogen,0.0,0.0,0.0,0.0,0.0030429559000000003,0.0053710304999999995,0.0083113546,0.011581993,0.015344925,0.019369623,0.02331443,0.02412734,0.02345127,0.02286547,0.02754814,0.03416446,0.040484995,0.0515865444,0.05411206291,0.052178182590000004,0.040925254551000004,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,regional biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0145527751,0.07082398662288,0.2206084407886,0.4842782491399999,0.7641782475000001,0.9447303575900001,1.0390848721000003,1.0958082475000002,1.0912105482599996,1.0744387116000003,1.0041613409999997,0.850291393,0.49232285298639994,0.501446405329525,0.5455894116429432,0.602235275,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,delivered biomass,building,0.272676769,0.2479129,0.288989,0.336615108,0.41903836,0.48483726,0.5338242099999999,0.55101575,0.53629923,0.51032189,0.47460255,0.42057613,0.3574175600000001,0.298211572,0.21089506300000002,0.13663929,0.091182281,0.046259833900000005,0.0241341139,0.0134145074,0.00615893389,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,delivered biomass,industry,0.692809,0.8231203,0.9243520999999999,1.0843898,1.4889017,1.8475848,2.1948975,2.472292,2.7008734,2.8726260000000003,2.991271,3.0938890000000003,3.0863020000000003,3.017592,2.7105200000000003,2.25554,1.8801439999999998,1.3076364,0.8916473,0.6242122,0.3746361,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,regional biomass,electricity,0.0106935,0.0647155,0.130226,0.10299516,0.16039395,0.23210244,0.35047042000000006,0.47543202,0.60594096,0.7441719200000001,0.8881066999999999,1.05396681,1.3101994509999997,1.566811235,1.8971191100000002,2.30002363,2.691754730000001,3.2552344489999996,3.6786012166,3.8483800743799996,3.6950563614570004,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,regional biomass,gas processing,0.0,5.62716E-5,0.00359788,0.00514797,0.00871118,0.0124999,0.0183241,0.0260009,0.0370035,0.0521504,0.072721,0.103024,0.132461,0.164142,0.178185,0.153195,0.124416,0.0667903,0.0307418,0.0146026,0.00473411,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,regional biomass,hydrogen,0.0,0.0,0.0,0.0,0.0011917429999999999,0.0025627899999999997,0.00463199,0.00752653,0.012060040000000001,0.01872882,0.02807086,0.04309029,0.06244513,0.08018498,0.125291995,0.152720941,0.1734296222,0.2169499314,0.21199048492,0.19202893558,0.14858712595999998,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,regional biomass,refining,0.0,0.0,0.0,0.0,0.22620492,0.536062,1.00495689,1.7202445599999998,2.72651332,3.95002649,5.147138979999999,6.412510521000002,7.796980476000002,9.171555246999999,10.876044586000003,12.365728999999998,13.084695731999998,12.228138536591803,12.70057507925557,12.882316342676214,12.369052120000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,delivered biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,delivered biomass,industry,0.0,0.0012139,0.002093,0.00206059,0.00256804,0.00283775,0.00308966,0.00324653,0.00339111,0.00349069,0.00353945,0.00361571,0.00354675,0.00339384,0.00295234,0.00227528,0.00174081,0.00105336,6.40188E-4,4.08134E-4,2.15398E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,regional biomass,electricity,0.0,0.0473498,0.0525763,0.0355522,0.0616832,0.07318516700000001,0.091307608,0.106540671,0.12051858499999997,0.132528416,0.141936565,0.15195221400000003,0.17135422500000003,0.189381123,0.19723136000000002,0.19335305199999997,0.19362383799999994,0.209622274,0.23040240769999998,0.24594955784300004,0.2478437656385,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,regional biomass,gas processing,0.0,0.0,0.0,3.79029E-5,1.39819E-4,2.92337E-4,5.37647E-4,8.94881E-4,0.0014412,0.00222899,0.00334297,0.00502458,0.00643329,0.00776581,0.00853461,0.00754416,0.0062584,0.00332599,0.00149999,7.17805E-4,2.38213E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,regional biomass,hydrogen,0.0,0.0,0.0,0.0,3.4963100000000004E-5,6.84294E-5,1.1336000000000001E-4,1.700909E-4,2.440545E-4,3.367866E-4,4.4273850000000004E-4,5.078113E-4,5.407673E-4,5.73688E-4,7.74332E-4,0.0010413696,0.0013138188,0.0017665621,0.0019765530000000003,0.00203199118,0.0017204434197000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,regional biomass,refining,0.0,0.0,0.0,0.0,0.0063710749999999995,0.035937142000000005,0.08759711599999999,0.18907055000000003,0.34900208099999996,0.5111033571000001,0.6104101731099999,0.6762557794999999,0.7159821578099999,0.7235941399000002,0.7214207207000001,0.6844191770000001,0.5884419479999999,0.33408411141320005,0.33535693557565205,0.356387016420267,0.379029779,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,delivered biomass,building,0.566659,0.5762028,0.5111529,0.49100509999999997,0.568389,0.594221,0.615532,0.607786,0.570542,0.532362,0.4882501,0.436203,0.3735757,0.3138354,0.22942479999999998,0.1541387,0.1074111,0.061139700000000005,0.03565923,0.02216549,0.01168697,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,delivered biomass,industry,1.6154229599999999,1.60173148,1.47476959,1.48138751,1.87883846,2.17190761,2.4382564899999997,2.6437758000000002,2.82681724,2.9666332,3.0676449000000003,3.0793137,2.9323304,2.6940451,2.1845712,1.6486055000000002,1.28509699,0.8131092400000001,0.52300221,0.35463660999999996,0.20157844,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,regional biomass,electricity,0.393165,0.49654,0.513823,0.2545962,0.3053387,0.40529845000000003,0.5376387200000001,0.6795750099999999,0.8782701099999998,1.07331176,1.28376481,1.5256647600000002,1.96757348,2.3861416200000005,3.3015217500000005,4.3214417,5.2059616229999985,6.451083401199997,7.645236004930001,8.585588755469999,9.4251412965956,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,regional biomass,gas processing,0.0411517,0.214527,0.299077,0.320055,0.439379,0.538497,0.659158,0.788753,0.958224,1.14915,1.36943,1.62758,1.74071,1.8125,1.61707,1.13233,0.740581,0.300369,0.103045,0.0342303,0.00643204,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,regional biomass,hydrogen,0.0,0.0,0.0,0.0,0.00276573,0.00737757,0.01425458,0.0233567,0.035679,0.0525606,0.0746699,0.11470653,0.1662751,0.22192388,0.366836893,0.4873174627,0.6198406338,0.8770573591799999,0.944882332477,0.898065141184,0.6571730719248,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,regional biomass,refining,0.0,0.0,0.0,0.0,0.19725621999999998,0.51441895,1.2134580999999998,2.73511093,5.410046589999999,8.345728569999999,10.61649663,12.231940756,14.012691397000001,15.638142018000002,19.519231930000004,24.05000372,27.892243699900003,36.04648135861296,41.463283516158306,47.793896769999996,56.7305346,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,delivered biomass,building,0.1563437,0.22469619999999998,0.2820818,0.3229324,0.4105971,0.501924,0.609505,0.7142580000000001,0.77879,0.818138,0.8016559999999999,0.7489680000000001,0.6854669999999999,0.6140680000000001,0.48524,0.3478538,0.23258009999999998,0.1113574,0.0561924,0.030949829999999998,0.01476181,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,delivered biomass,industry,0.44015706,0.60519625,0.67671868,0.8104729,1.1261913,1.5413947,2.0864835,2.7453662,3.5058589999999996,4.32961,5.148841,5.955345,6.654332,7.191213,7.306176000000001,6.899679,6.139336,4.304139999999999,2.883844,1.955471,1.1718320000000002,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,regional biomass,electricity,0.0019674,0.00380929,0.0038093,0.01044122,0.02207804,0.040048195,0.06868821,0.11273455099999999,0.17868547199999998,0.27699615099999997,0.41212395199999996,0.5907766440000001,0.824963372,1.116156288,1.54216211,2.039179954,2.5688791019999995,3.084334566,3.6515950690000003,4.2346238224000015,5.020091799540001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,regional biomass,gas processing,0.0,0.0,0.0,1.43757E-7,8.75937E-7,3.03921E-6,8.5889E-6,2.14827E-5,5.10957E-5,1.13229E-4,2.28675E-4,4.35533E-4,7.94026E-4,0.00138556,0.00234049,0.00326531,0.00378036,0.00302191,0.00202404,0.00137757,7.57728E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,regional biomass,hydrogen,0.0,0.0,0.0,0.0,3.88462E-4,9.46753E-4,0.0020632849999999998,0.00419616,0.00845783,0.016386150000000002,0.02958734,0.05355102,0.09060704,0.13317115,0.24441581999999998,0.336446721,0.360377511,0.45404663100000003,0.5029846705,0.654046904,0.77611677841,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,regional biomass,refining,0.0,0.0,0.0,0.0,0.012450446,0.035335479999999996,0.07590801399999998,0.14801482200000002,0.26764580000000004,0.44952020899999995,0.6902853190000001,1.0218600020000002,1.4612349525,2.0181560817999995,2.7875696780000006,3.696989264,4.555057185000001,5.501997915999997,5.627831147569999,5.99213375970295,7.119547902340447,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,delivered biomass,building,0.0033089001,0.0065225,0.0070573,0.0073336,0.00805821,0.00847064,0.00852692,0.00830226,0.00773778,0.00712261,0.00622785,0.005333879999999999,0.00456694,0.00390807,0.0030383520000000002,0.00212313,0.001416115,7.22668E-4,3.7779510000000003E-4,2.1549839999999998E-4,1.003467E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,delivered biomass,industry,0.02697865,0.0438617,0.0871743,0.1015421,0.1261671,0.1456524,0.1664633,0.1852731,0.2017348,0.2160883,0.2217239,0.228124,0.231503,0.232903,0.22785,0.2056643,0.1812322,0.1300093,0.0947311,0.0727208,0.0520277,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,regional biomass,electricity,0.0,0.0,0.0,0.00209171,0.00972114,0.020929562000000002,0.041351434,0.06711796499999999,0.09702735400000001,0.129556377,0.159364703,0.190934713,0.23130175300000003,0.28523050299999997,0.369779835,0.46940501499999987,0.5774527150000002,0.700046879,0.8622875338000002,1.00125457282,1.2167744595620003,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,regional biomass,gas processing,0.0,0.0,0.0,1.95751E-5,6.3437E-5,1.43285E-4,2.85606E-4,5.18146E-4,9.06783E-4,0.00150378,0.00229661,0.00345429,0.00502858,0.00711032,0.00978811,0.0111571,0.010549,0.00690894,0.00394837,0.00239097,0.00119664,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,regional biomass,hydrogen,0.0,0.0,0.0,0.0,1.950821E-4,4.21526E-4,7.725939999999999E-4,0.001270924,0.002055826,0.0032157,0.00461736,0.00654129,0.009048716,0.011830189999999999,0.020786139,0.028654998900000003,0.031865139,0.04021829105,0.04310031079,0.04484528012,0.054929535664,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,regional biomass,refining,0.0,0.0,0.0,0.0,0.024221959,0.068109257,0.131096518,0.230052988,0.382513018,0.5664550170000001,0.7352617369999999,0.9195535431999999,1.1358784573,1.3599593086000004,1.6746992997999999,2.0235383039999997,2.2963007710000007,2.7409431309999994,2.732154704269999,2.6732626475245205,2.933292224130243,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,delivered biomass,building,0.0797127,0.13983790000000001,0.15706189999999998,0.1792785,0.226357,0.2734809,0.3148466,0.3482672,0.368414,0.38111069999999997,0.3705911,0.3445284,0.3109337,0.2860934,0.2374948,0.1767107,0.12301619999999999,0.0594274,0.02956872,0.01562739,0.0074403,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,delivered biomass,industry,0.296921395,0.476782008,0.5514989969999999,0.63905988,0.8365612299999999,1.05785304,1.283733,1.51624216,1.77947779,2.0676761000000003,2.3321053,2.5839337999999996,2.7644556,2.9461564,2.9634361,2.7299759,2.3485488,1.5409071,0.9639456000000001,0.6096181,0.3472773,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,regional biomass,electricity,0.0,0.0,0.0,9.36233E-4,0.002204126,0.004676626700000001,0.009671094099999998,0.017391225399999998,0.028637938999999998,0.04635097900000001,0.07230244489999997,0.1097302056,0.16717946469999995,0.23698915219999997,0.3585739588999999,0.5476514783,0.7992612639999997,1.106582302,1.4460043916999998,1.7977526254999994,2.1570297947899997,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,regional biomass,gas processing,0.0,0.0,0.0,9.31912E-7,3.75113E-6,1.01859E-5,2.43272E-5,5.23956E-5,1.09507E-4,2.20094E-4,4.10728E-4,7.46459E-4,0.00128746,0.00213322,0.00348315,0.00475316,0.00537764,0.0042548,0.00280136,0.0018731,0.00101253,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,regional biomass,hydrogen,0.0,0.0,0.0,0.0,2.67585E-4,5.99899E-4,0.001121171,0.001941454,0.00345767,0.00613183,0.01032898,0.01762555,0.027629304,0.040319591,0.076911547,0.10836649,0.117789026,0.1400206592,0.142823807,0.16926835276,0.19869845624700003,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,regional biomass,refining,0.0,0.0,0.0,0.0,0.009658574000000001,0.026825641999999997,0.05372556199999999,0.09612925900000001,0.166991147,0.27962967000000005,0.42652364699999984,0.6238109591000001,0.8677856641000001,1.1828692401,1.6658384766999996,2.2351378937999997,2.6991076400000007,3.2312167549999997,3.2021141261100015,3.28625357880831,3.909987454305912,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,delivered biomass,building,0.1991744,0.2311539,0.2366298,0.3139771,0.41899400000000003,0.568382,0.7297359999999999,0.880871,0.9893449999999999,1.075587,1.092761,1.063576,1.016813,0.9511229999999999,0.804777,0.621661,0.46560399999999996,0.23864839999999998,0.12294070000000001,0.06896250000000001,0.03409373,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,delivered biomass,industry,0.65619142,1.10237948,1.25090791,1.60216934,2.09433616,2.9088689999999997,3.9118672,5.0662265,6.3661234,7.7814425,9.188549400000001,10.6229768,11.9499725,13.0547145,13.612359,13.283208,12.246463,9.15993,6.3306528,4.3945488,2.6973933999999997,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,regional biomass,electricity,0.0025116,0.00468829,0.0051488,0.00598889,0.01249006,0.025724702999999998,0.049888859,0.08569966999999999,0.13377503100000002,0.20133942299999996,0.291349366,0.41443035149999996,0.5912743702999997,0.8357785127,1.210685077,1.6796112509999996,2.2156861359999995,2.9830453489999997,4.114832131,5.2493400134999995,6.5538585324,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,regional biomass,gas processing,0.0,0.0,0.0,3.42651E-6,1.27506E-5,3.67535E-5,9.43976E-5,2.17577E-4,4.74814E-4,9.74205E-4,0.00183459,0.00335242,0.00586876,0.00986681,0.0159832,0.0212823,0.0232386,0.017736,0.0114219,0.00749746,0.00399885,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,regional biomass,hydrogen,0.0,0.0,0.0,0.0,6.10312E-4,0.001532262,0.00325451,0.00633221,0.012250690000000002,0.02296279,0.04044763,0.07096992,0.11280583999999999,0.16135031,0.2980101,0.42372347,0.50365986,0.711110842,0.9116323585,1.1472818419,1.4221432137899999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,regional biomass,refining,0.0,0.0,0.0,0.0,0.017839146,0.06281563600000001,0.14227174499999998,0.275911387,0.488167199,0.8063005730000004,1.2219379430000004,1.8010729221999997,2.5889398771000005,3.5754716120999994,4.9088964840000004,6.400435793,7.797751301999999,9.317309147999998,9.483853437159999,9.931183572183288,11.835416885905966,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,delivered biomass,building,0.0036417999999999997,0.016199799999999997,0.0115951989,0.011029473299999999,0.0119948898,0.011742708000000001,0.011392852,0.010814352000000001,0.009971240000000001,0.0091283916,0.0079094013,0.006774865300000001,0.0057210674,0.004805750399999999,0.0037019654,0.0025419439999999995,0.0016069380999999998,7.851296000000001E-4,4.0115670000000003E-4,2.2549528E-4,1.1084825999999998E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,delivered biomass,industry,0.058771409999999996,0.05098543,0.038758230000000005,0.04210142,0.04575821,0.052179409999999996,0.057959899999999995,0.0626108,0.0661534,0.0686714,0.0686144,0.0686712,0.0675376,0.0658133,0.0613035,0.0520346,0.0416467,0.026893060000000003,0.01785108,0.012679220000000001,0.008243190000000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,regional biomass,electricity,0.00452089,0.0243625,0.0305578,0.028537299999999998,0.02931689,0.037528663,0.04801941399999999,0.058039648000000006,0.066607407,0.074682326,0.07976680599999998,0.08591063400000001,0.097715864,0.10941527,0.13712896400000002,0.17635176200000002,0.22232611870000005,0.28310863916999995,0.3484050329749999,0.3985604838982999,0.4633057934230791,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,regional biomass,gas processing,0.0,0.0,0.0,1.05443E-5,2.78779E-5,5.80952E-5,1.07055E-4,1.80854E-4,2.95575E-4,4.5987E-4,6.65652E-4,9.5338E-4,0.00130607,0.00179108,0.00235883,0.00256252,0.00228661,0.00143174,7.99485E-4,4.76026E-4,2.34809E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,regional biomass,hydrogen,0.0,0.0,0.0,0.0,1.11449E-4,2.77358E-4,5.21608E-4,8.54052E-4,0.001339002,0.0020190670000000003,0.0028439859999999997,0.004285026999999999,0.0062797641,0.008828583099999999,0.01819775436,0.031064501927999998,0.039983243115,0.05820270943682,0.06263460204454,0.066996100564816,0.0735163,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,regional biomass,refining,0.0,0.0,0.0,0.0,0.0,0.00787859,0.021194201999999995,0.044261201,0.08253260899999997,0.127855488,0.16211476899999996,0.18962461099999997,0.2224745505,0.2574546294999999,0.34574773419999993,0.5081326059,0.7584507487999997,1.3613534221800003,1.9493081846958202,2.2427025582125975,2.313202873256269,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,delivered biomass,building,0.080413,0.0667248,0.0635434,0.0656869459,0.0724119968,0.07578912919999999,0.0783680358,0.07926544609999998,0.07798836279999999,0.07598034020000001,0.07043828340000001,0.0645797223,0.0581402431,0.051690845699999995,0.0433533068,0.032537598,0.02164302927,0.010992179139999999,0.0056618617100000004,0.0032104050599999997,0.0015891237760000002,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,delivered biomass,industry,0.11540802,0.18016538,0.17053739999999998,0.18925842,0.23877022,0.27557444999999997,0.30525464,0.33039187999999997,0.35643683,0.37769999,0.38100917,0.39255341,0.39471582,0.38692447,0.3765536,0.32718345000000004,0.25249613,0.15374541,0.09347564,0.06100774,0.035681410000000004,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,regional biomass,electricity,0.0,0.00983718,0.00941851,0.005203729,0.007588675,0.012850919999999998,0.022269000000000004,0.03357472599999999,0.049916171000000016,0.065714772,0.08010966,0.09874255140000002,0.1281372192,0.16366296119999998,0.23892554400000005,0.3397830380000001,0.45001891900000013,0.6057932363,0.7535647461860001,0.8674270062773003,0.9936700291615801,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,regional biomass,gas processing,0.00208004,0.0133799,0.0186082,0.0229862,0.0316925,0.0406696,0.0509862,0.0625368,0.0781622,0.0953369,0.110129,0.127005,0.142426,0.156563,0.168203,0.149473,0.105087,0.0479633,0.0168603,0.00489282,2.36221E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,regional biomass,hydrogen,0.0,0.0,0.0,0.0,3.10892E-4,7.80389E-4,0.001472738,0.00241821,0.0038239899999999998,0.00587716,0.00834121,0.012873978999999999,0.019241224,0.027105334,0.0561115968,0.09836450912,0.127411461743,0.18449003080149998,0.1893520065082,0.19335700176455,0.20469000027581602,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,regional biomass,refining,0.0,9.47172E-4,0.0194585,0.019251922,0.019200260800000004,0.018665508700000003,0.017758823,0.0183600088,0.025549772,0.04001142411000002,0.05600722948,0.07293779702999999,0.098672372279,0.13455348282000007,0.24986138777999997,0.5396337834,1.0681506900000002,1.93236448476,3.6056422312271614,4.723837094561136,5.279730782387881,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,delivered biomass,building,0.03403213,0.02750209,0.028632170000000002,0.02581211,0.02770039,0.029425549999999998,0.03049615,0.030578100000000004,0.029275540000000003,0.027573689999999998,0.02448049,0.02094735,0.01752195,0.01443004,0.010495233,0.0068538720000000004,0.0041732209999999995,0.001865524,8.935369E-4,4.7609139999999997E-4,2.222581E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,delivered biomass,industry,1.3566461,1.8667909999999999,2.2407679999999996,1.994034,2.18499,2.342312,2.459438,2.5274520000000003,2.559772,2.553305,2.4658510000000002,2.361468,2.215025,2.043548,1.785376,1.44574,1.113495,0.720339,0.486195,0.35602500000000004,0.25518450000000004,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,regional biomass,electricity,0.0310598,0.114822,0.242746,0.378668,0.450212,0.62716597,0.8063811200000001,0.9668415899999999,1.0942257499999997,1.2113913799999998,1.3000982199999997,1.3753286,1.49297833,1.5896452399999998,1.7560958500000008,1.9583303499999998,2.1937667999999997,2.4607469002999998,2.716873859659999,2.861083510295,2.98494527755501,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,regional biomass,gas processing,0.0,0.0,0.0,7.79638E-6,2.46136E-5,6.15663E-5,1.30644E-4,2.4736E-4,4.46898E-4,7.6223E-4,0.0012128,0.00185233,0.00267524,0.00380864,0.00522457,0.00596502,0.00559165,0.00369071,0.00213811,0.00130915,6.63019E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,regional biomass,hydrogen,0.0,0.0,0.0,0.0,7.22174E-4,0.0016353840000000001,0.00296007,0.00476358,0.00744639,0.011280559999999999,0.0158703,0.02343556,0.033560966,0.045823356,0.09297256279999999,0.15734307918,0.19902572548800002,0.2847680475184,0.29376300994517,0.30096500265835996,0.317384000406323,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,regional biomass,refining,0.0,0.0,0.0,0.0,0.0019472320999999997,0.010439251200000001,0.0235149032,0.0491008,0.10011247210000004,0.17656526739999995,0.24963234919999996,0.3188174345399999,0.4039023800299999,0.5013496253000002,0.7446174943000002,1.2647859504999996,2.0570623190000004,3.502642839300002,5.325110586014807,7.32855650201463,8.666594618612528,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,delivered biomass,building,0.0624551,0.0790736,0.103143,0.1020669,0.1090209,0.1103692,0.1097668,0.1060636,0.09860821,0.09119811,0.08049297,0.06938536,0.058931880000000006,0.04947923,0.03718694,0.02512721,0.015425059999999999,0.007091214,0.0034610220000000002,0.0018837670000000002,8.824457000000001E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,delivered biomass,industry,0.2419296,0.3328179,0.27276030000000007,0.29029891,0.33381036000000003,0.36193563,0.38430742000000007,0.40065338,0.41343213,0.42275479,0.4189716,0.41394180999999997,0.40238435,0.38725687999999997,0.35288485999999997,0.2967381,0.23235889799999998,0.149170974,0.097857771,0.069183282,0.045336653899999996,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,regional biomass,electricity,0.036753,0.080706,0.0752642,0.0810844,0.0903569,0.098970451,0.116148519,0.13292957500000002,0.156383415,0.176435267,0.191942005,0.20923050199999998,0.23078812599999998,0.256145516,0.318227237,0.399079497,0.47956157799999993,0.6014495218999999,0.7139592436140001,0.7979038901423001,0.9094180561783698,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,regional biomass,gas processing,3.93498E-4,0.0107938,0.010569,0.0130507,0.0172776,0.0213613,0.0259164,0.0308573,0.0373082,0.0441772,0.0495268,0.0550467,0.059425,0.0630312,0.0638515,0.0532191,0.0354676,0.0155866,0.00559334,0.00180108,2.5301E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,regional biomass,hydrogen,0.0,0.0,0.0,0.0,4.3686399999999997E-4,0.0010632,0.001974783,0.0032062799999999997,0.00485056,0.0070959000000000005,0.00983933,0.014770736,0.021617394999999998,0.0301647,0.0594069609,0.09663287791000001,0.118669632305,0.1607080464889,0.1620280116279,0.15612600448257,0.15365200104843002,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,regional biomass,refining,0.0,0.0,0.0,0.0,0.0014561180000000002,0.003953263699999999,0.0103997911,0.0283400217,0.06832680150000002,0.1213044127,0.16432253719999998,0.2018256912,0.25171458809999997,0.31616067059999997,0.5008501955,0.8974863900000002,1.4976899388,2.2566447312999993,3.0836864732808205,4.002700766564856,5.594353190996198,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,delivered biomass,building,0.027327984,0.04262768,0.046862999,0.046766562,0.04834642,0.049893398000000005,0.049969864,0.050125207000000005,0.046364217,0.042431972,0.036986236,0.031124204,0.025837541999999998,0.021307087000000002,0.01545637,0.010142723,0.0062415901,0.0027796862,0.0013435255,7.281692E-4,3.3940525E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,delivered biomass,industry,0.28771163,0.14346239,0.12963233000000002,0.14425770000000002,0.17316530000000002,0.20270790000000002,0.2322407,0.2627698,0.2865392,0.306541,0.31485779999999997,0.3210587,0.3201638,0.3145625,0.2916328,0.2472336,0.1982928,0.12369820000000001,0.079967,0.055405499999999996,0.03442727,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,regional biomass,electricity,0.0579034,0.0666484,0.0968785,0.08401829999999999,0.1253057,0.17079366799999998,0.23018861999999998,0.295096992,0.3647693400000001,0.4369075380000001,0.501543131,0.5673336710000001,0.65161882,0.7350156389999999,0.847629048,0.9631323199999999,1.1030489879999998,1.2769339650000002,1.5071248350100002,1.6947153581130001,1.9061720606482997,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,regional biomass,gas processing,0.0,3.93499E-4,1.12409E-4,1.61133E-4,2.42014E-4,3.44761E-4,4.87324E-4,6.80899E-4,9.67405E-4,0.00134716,0.00177354,0.0023221,0.00294971,0.00370817,0.00457659,0.00473392,0.00405795,0.00243901,0.00128813,7.24348E-4,3.35105E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,regional biomass,hydrogen,0.0,0.0,0.0,0.0,3.09212E-4,6.76542E-4,0.001219242,0.002013972,0.0031845,0.00498774,0.00732149,0.011338102000000001,0.017303557,0.025288518000000003,0.0534603986,0.09394383509,0.123360766464,0.1764030641943,0.1715450189407,0.16724900724322,0.16221600157873,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,regional biomass,refining,0.0,0.0,0.0,0.0,0.006829521999999999,0.018105653000000003,0.035931314,0.069194158,0.124444451,0.19566120399999998,0.25959124180000004,0.3180182499,0.37573105325,0.4442787006000001,0.5850502523,0.8587378628000002,1.247702656,1.8848213564999996,2.2635086268027202,2.5861028238087727,3.322666430808438,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,delivered biomass,building,0.026371699999999998,0.0180835,0.0205952,0.01969091,0.020716750000000003,0.020319220000000002,0.019831480000000002,0.01894515,0.01764584,0.016346745,0.014403763,0.012602516999999999,0.010905769000000001,0.009415057000000001,0.007614086000000001,0.005552779000000001,0.003691415,0.0019843054,0.0011181325,6.961977999999999E-4,3.994267E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,delivered biomass,industry,0.001507,0.004227902,0.002888394,0.003351596,0.0041681999999999995,0.00479369,0.00532747,0.005743430000000001,0.006108290000000001,0.0063758999999999994,0.00635109,0.00640527,0.0063399300000000006,0.006211690000000001,0.0059011,0.00505297,0.00399516,0.00260059,0.001737545,0.001251373,8.45344E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,regional biomass,electricity,0.0,0.0,0.0,0.0044377,0.007744860000000001,0.0108956456,0.0174564791,0.024204324100000008,0.03293856889999999,0.042036632,0.048956268500000004,0.0594828512,0.07728772820000002,0.0951341679,0.1410158981,0.2067702335,0.267426782,0.3694549230699999,0.4673467194509999,0.5430090799211,0.65956379847283,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,regional biomass,gas processing,0.0,0.0,0.0,2.5081E-5,7.56819E-5,1.59942E-4,2.89663E-4,4.76911E-4,7.62539E-4,0.00116027,0.00162061,0.00225659,0.00298159,0.00393149,0.00506073,0.00537087,0.00464175,0.00275842,0.00145659,8.24417E-4,3.83048E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,regional biomass,hydrogen,0.0,0.0,0.0,0.0,3.90287E-4,7.90274E-4,0.001351486,0.002089918,0.00326241,0.00494497,0.0069448719999999995,0.010315831000000001,0.014960917,0.0209970417,0.0440301097,0.07635459251,0.09739615423600001,0.1446320242074,0.15164900518483002,0.15903900142413002,0.171165000222426,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,regional biomass,refining,0.0,0.0,0.0,0.0,0.011098775999999998,0.031798372,0.05869567000000001,0.1002335,0.165780374,0.24868348200000004,0.32515859100000016,0.3991030107000001,0.4861559779999999,0.5833821336999999,0.7701700599000004,1.1022726804,1.840438721,3.4708159923200004,4.3991119145556254,4.66529655196057,4.586651322862076,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,delivered biomass,building,4.707E-4,2.559E-4,1.905E-4,2.0335599999999997E-4,2.343211E-4,2.519847E-4,2.589405E-4,2.554375E-4,2.413279E-4,2.218191E-4,1.914895E-4,1.5894E-4,1.283945E-4,1.0301800000000001E-4,7.50918E-5,4.89971E-5,2.976157E-5,1.343111E-5,6.51022E-6,3.560984E-6,1.660101E-6,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,delivered biomass,district heat,0.0,0.0202184,0.0473018,0.0574246,0.0884758,0.111006,0.132061,0.149295,0.171775,0.190499,0.19732,0.214399,0.219991,0.217736,0.215549,0.180713,0.135605,0.0787639,0.0464696,0.0295174,0.0162885,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,delivered biomass,industry,2.31E-4,2.201E-4,1.918E-4,2.25638E-4,3.02746E-4,3.53508E-4,3.93031E-4,4.1878E-4,4.45874E-4,4.61243E-4,4.52067E-4,4.51502E-4,4.32141E-4,4.03408E-4,3.69293E-4,2.97025E-4,2.17132E-4,1.24949E-4,7.18773E-5,4.43461E-5,2.33736E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,regional biomass,electricity,4.79999E-6,0.0346181,0.164175,0.1512021,0.26285,0.42526455,0.6447356400000002,0.86054372,1.10283586,1.3438630700000003,1.5215953800000002,1.7668370600000003,2.04030162,2.3555544799999995,3.494601180000001,4.88504037,5.564715280000002,6.4477297830000015,7.074035649449998,7.479561010108999,8.373701856108498,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,regional biomass,gas processing,0.0,0.193839,0.39296,0.587406,0.935456,1.32725,1.74831,2.16281,2.6643,3.15909,3.53069,3.91387,4.16921,4.31516,4.42431,3.96226,2.98294,1.52787,0.57173,0.161502,0.00107592,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,regional biomass,hydrogen,0.0,0.0,0.0,0.0,0.0027977,0.00566904,0.0096293,0.01464895,0.02269074,0.03368385,0.046021900000000004,0.06803983,0.09727175,0.132472489,0.280188117,0.4736393397,0.5651043864199999,0.77420115841,0.7226500313026,0.68333500808531,0.623873001121,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,regional biomass,refining,0.0,0.0,0.0,0.0,0.04588458,0.12194438999999999,0.22505451999999995,0.38790084,0.6776285910000001,1.0861199350000001,1.5067863209999999,1.9429543009999997,2.445638716699999,2.975668537,4.133710639,6.444741441,10.612454108000003,18.806886445999996,29.941827663920478,37.455518452165826,40.14211544312227,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,delivered biomass,building,0.0030139,0.015362797999999999,0.0146091051,0.0153936541,0.017181549,0.018568617699999998,0.0196651651,0.020217851300000002,0.0198554345,0.0192331927,0.0175755815,0.0156344314,0.013663259,0.0117971258,0.0091734097,0.006355189200000001,0.0040767145,0.0019242379,9.745062099999999E-4,5.5044775E-4,2.700381E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,delivered biomass,industry,0.08388743,0.06932007999999999,0.05739002,0.06607986,0.08456377999999999,0.10028719999999999,0.1172431,0.1340536,0.1520136,0.1692994,0.1811178,0.19487110000000002,0.20465540000000002,0.210758,0.2084883,0.187064,0.156003,0.104591,0.07003572,0.049466380000000004,0.030997709999999998,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,regional biomass,electricity,0.00305581,0.005693,0.00560922,0.008184489999999999,0.01085292,0.013343886500000002,0.018874886099999995,0.0249809102,0.0309498601,0.037855820600000006,0.0443869349,0.05204636900000002,0.0648846691,0.08081023459999997,0.10924199989999998,0.15269664410000006,0.20126036380000004,0.2694220997,0.3359402108300001,0.3865314787537999,0.45070604659018987,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,regional biomass,gas processing,0.0,0.0,0.0,2.65057E-6,8.68563E-6,1.91491E-5,3.84521E-5,7.1282E-5,1.2767E-4,2.17675E-4,3.44111E-4,5.33695E-4,7.89341E-4,0.00114427,0.00163699,0.00193578,0.00185957,0.00125707,7.37236E-4,4.54007E-4,2.32081E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,regional biomass,hydrogen,0.0,0.0,0.0,0.0,5.8289200000000004E-5,1.506498E-4,3.03065E-4,5.28255E-4,8.88559E-4,0.001425566,0.002110072,0.003355152,0.0052401888,0.0078631572,0.01709931618,0.030807431319,0.04165216221,0.06384821179479999,0.07098470275025,0.078103900819873,0.086981300138015,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,regional biomass,refining,0.0,0.0,0.0,0.0,0.0034663996,0.0081205637,0.0157974434,0.028766058700000003,0.05019023330000001,0.07889263709999998,0.10684656270000002,0.13534012549999994,0.16989516319000003,0.21147983885999996,0.2954474612,0.4481785368999998,0.6955751946000001,1.1675097201800002,1.6572467079234408,2.045905192064909,2.308943501876708,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,delivered biomass,building,0.1807936,0.40327890000000005,0.4865383,0.46944730999999995,0.53969448,0.5450557599999999,0.5436102899999999,0.52653562,0.5036104899999999,0.47429054000000004,0.42490054,0.38265740000000004,0.33641681,0.29062899000000003,0.23606558100000002,0.171945001,0.114038346,0.060515852,0.0330067963,0.0195942925,0.010367111100000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,delivered biomass,district heat,0.00694863,0.0258686,0.028256,0.035985,0.0477078,0.0606568,0.0751193,0.0906932,0.109065,0.127701,0.141348,0.157371,0.167562,0.17197,0.176873,0.152288,0.119767,0.0762791,0.0482573,0.0322852,0.0192148,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,delivered biomass,industry,0.0631665,0.1629606,0.19644910000000002,0.2047446,0.25749,0.287679,0.3118753,0.3289239,0.3468055,0.3570046,0.34922729999999996,0.34501819999999994,0.32888870000000003,0.30776709999999996,0.27232419999999996,0.21982890000000002,0.1670777,0.1017709,0.06361587,0.04285802,0.026208910000000002,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,regional biomass,electricity,0.00117213,0.0364608,0.11817,0.12377389999999999,0.1404447,0.154729569,0.177404257,0.19952882099999997,0.22256200199999995,0.244199813,0.2601148970000001,0.27961321699999997,0.304943402,0.333658067,0.408585126,0.4885539330000001,0.539176838,0.6115484367999999,0.6759685386999998,0.720648223927,0.7813824445240001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,regional biomass,gas processing,5.0591E-4,0.00781424,0.022993,0.0288601,0.0415407,0.0537564,0.0678174,0.0832631,0.103385,0.124359,0.141005,0.1596,0.173933,0.184475,0.189562,0.160746,0.108376,0.0481197,0.0166083,0.00478404,2.86486E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,regional biomass,hydrogen,0.0,0.0,0.0,0.0,1.005874E-4,2.472202E-4,4.58766E-4,7.47352E-4,0.001145486,0.001710674,0.002383403,0.003630149,0.005326852,0.0072205491,0.012852090299999999,0.01802029111,0.019156583129999998,0.021923203205999997,0.019778617722,0.018015955771500003,0.0175622138237,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,regional biomass,refining,0.0,0.0,0.0,0.0,0.009950439999999998,0.021016155000000005,0.040593178999999986,0.080793363,0.15487033700000005,0.2425538389999999,0.30814066100000004,0.35974775999999997,0.41013144589999995,0.45504129970000007,0.5630425240999999,0.7364802937999999,0.940009362,1.126731963,1.137917718796,1.124554031392317,1.1707626172995391,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,delivered biomass,building,0.8571020000000001,0.9811536999999999,1.261439,1.2246553000000002,1.2799005,1.272624,1.2651610999999998,1.2298613,1.1589121,1.0826864,0.956047,0.8337629,0.71571736,0.6091423,0.48138155000000005,0.34057049999999994,0.22236137,0.11204252999999999,0.059715353,0.035089289,0.018381142000000003,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,delivered biomass,industry,0.682894,0.975345,1.2491425,1.304197,1.536399,1.6883480000000002,1.792073,1.863391,1.902844,1.9167210000000001,1.8324060000000002,1.750503,1.638488,1.5166570000000001,1.30954,1.0438079999999998,0.7939,0.4781034,0.3002471,0.2049658,0.1291545,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,regional biomass,electricity,0.120954,0.642526,1.06835,0.693977,0.826732,0.91799661,1.06955142,1.22486203,1.47483271,1.6300516299999999,1.7318013600000004,1.8307399500000003,1.94827911,2.04859904,2.2283176799999995,2.32530183,2.415128410000001,2.6229806920000005,2.8730167438,3.0408232271299998,3.224311879181,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,regional biomass,gas processing,0.0368228,0.243366,0.593372,0.688585,0.884251,1.06124,1.25007,1.4488,1.70604,1.95324,2.12502,2.29641,2.3972,2.46015,2.42262,2.0344,1.40367,0.627159,0.216405,0.0597162,0.0011194,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,regional biomass,hydrogen,0.0,0.0,0.0,0.0,0.01551311,0.028153400000000002,0.0451047,0.0664788,0.0975329,0.1402436,0.18829040000000002,0.2569322,0.3298545,0.39750433,0.6314816,0.7867896259999999,0.745617161,0.7675351417,0.6578758082,0.60055329626,0.54514856027,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,regional biomass,refining,0.0,0.0,0.0,0.0,0.022757851,0.05519282800000001,0.15643499099999997,0.43239471900000004,0.9807941130000001,1.6288375920000002,2.1018610469999994,2.4031486539999998,2.705889290000001,2.9598828597,3.5716692500000002,4.540819203999997,5.76489119,6.6450904400000015,6.427791686640001,6.09434368143118,6.366204316425325,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,delivered biomass,building,0.0228555,0.041148500000000005,0.07287830000000001,0.06674730999999999,0.06808041999999999,0.06434540999999999,0.06073674,0.05625545,0.051547739999999995,0.0470956,0.0410693,0.03602826,0.031274072,0.027009301,0.022135893,0.016295353000000002,0.010898573,0.005975311,0.0033780053000000004,0.0020840662,0.0011771200999999998,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,delivered biomass,district heat,0.0,0.0165768,0.0235675,0.0218399,0.0267494,0.0311702,0.0353947,0.0397057,0.0453234,0.0508771,0.0543249,0.0595132,0.0630306,0.0649077,0.0660132,0.0575269,0.0453919,0.0291741,0.0185683,0.0125156,0.00751407,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,delivered biomass,industry,0.0021767,0.009460300000000001,0.036962398,0.033991509,0.040839608,0.045576693,0.048508815,0.05036625499999999,0.05207704,0.05303884999999999,0.05172739,0.051181489999999996,0.04956624,0.04730984,0.04275693,0.034959199999999996,0.026447066999999998,0.016103785000000002,0.009864368,0.006468556,0.003752956,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,regional biomass,electricity,0.0,0.0,0.00263714,0.0035749200000000005,0.007243435,0.0107823237,0.0180522745,0.026794433399999994,0.0381200808,0.049716737100000005,0.0598661751,0.0720950048,0.0853021119,0.10020000850000002,0.13370978610000003,0.16853149539999998,0.2022864618,0.2572545871,0.30804309576600003,0.3494851842168,0.40325584204864007,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,regional biomass,gas processing,0.0,0.0,1.12409E-4,1.36876E-4,2.02786E-4,2.82632E-4,3.83287E-4,5.09466E-4,6.91045E-4,9.20067E-4,0.00115673,0.0014787,0.00186422,0.00230906,0.00277296,0.00278291,0.00230439,0.00130748,6.57014E-4,3.5435E-4,1.54921E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,regional biomass,hydrogen,0.0,0.0,0.0,0.0,8.12438E-5,1.748106E-4,3.0442E-4,4.7641900000000006E-4,7.35454E-4,0.0011192300000000001,0.001595007,0.002478686,0.0037645073,0.0054235825,0.01102728779,0.018199657058,0.021536572816,0.0280261315627,0.0274051103128,0.02655920433663,0.02637480108166,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,regional biomass,refining,0.0,0.0,0.0,0.0,6.173879E-5,0.0018138976600000005,0.0093455617,0.023521644540000008,0.04823818485,0.07549662799000002,0.095079122786,0.11058162442100002,0.1303211880571,0.15302920706000003,0.2053349482,0.29537552569999986,0.40307050339999995,0.5188584281,0.5741072410645698,0.6281220158199349,0.8021376871753122,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,delivered biomass,building,0.3855308,0.2991734,0.27460130000000005,0.28672954999999994,0.31323723000000003,0.32641854,0.33708959000000005,0.33911796,0.33013129999999996,0.31664190999999997,0.2882522799999999,0.25685775,0.22501291,0.19521285000000002,0.15555731,0.11234112999999998,0.074861521,0.03817428900000001,0.020578991,0.0122802687,0.0064892110999999995,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,delivered biomass,district heat,0.0,1.25601E-4,6.69811E-4,0.00107907,0.00150518,0.00200475,0.00258868,0.00321553,0.00393173,0.0046593,0.00518134,0.00582604,0.00626699,0.00652414,0.00660322,0.00584526,0.00490528,0.0030739,0.00197285,0.00134567,8.02085E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,delivered biomass,industry,0.0198223,0.0301546,0.0367114,0.045430088,0.053988186,0.05880268,0.06425641,0.06861787000000001,0.07169271,0.07385095000000001,0.07290536,0.07290334999999999,0.07160464,0.06973041,0.06666685,0.05918427,0.05307433,0.037614097,0.028377975,0.022538786,0.0171120512,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,regional biomass,electricity,0.0,0.00104648,0.00175807,0.002517927,0.005262829,0.0092056433,0.015844658999999997,0.024383720699999997,0.034327540100000005,0.046016522900000016,0.0579694781,0.07396584489999998,0.10006571289999999,0.13244201570000003,0.1997969561,0.27797488,0.3470964925999999,0.4381881421999999,0.5125837299199999,0.5656185491569998,0.6291758051924001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,regional biomass,gas processing,0.0,5.62176E-4,0.00404763,0.00550794,0.00808887,0.0109975,0.0145512,0.0186138,0.0239778,0.0299327,0.0349268,0.0410579,0.0456781,0.0493849,0.051342,0.0441397,0.0302589,0.0137817,0.00508896,0.00172387,3.01094E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,regional biomass,hydrogen,0.0,0.0,0.0,0.0,1.0657710000000001E-4,2.93558E-4,5.79778E-4,9.850850000000001E-4,0.001588266,0.002468169,0.003557587,0.005592535,0.008430744,0.0118903962,0.0220443572,0.03191967003,0.0345585273,0.039657755763,0.035299692534,0.0314744983878,0.030229725663,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,regional biomass,refining,0.0,0.0,0.0,0.0,0.00962725,0.023552119,0.044470853,0.080506713,0.14039264799999998,0.213061004,0.27631641,0.33406165700000007,0.39756165629999984,0.46223003419999986,0.5836027466999999,0.7700888521000002,1.0051892949999999,1.2241892059999997,1.2729308027889998,1.2909043922328713,1.3530312806588465,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,delivered biomass,building,0.0523351,0.0550111,0.0696375,0.07014289,0.07369841,0.07365923,0.07344419,0.07174163,0.06705711,0.06177077,0.053703030000000006,0.044821228000000005,0.036946064,0.030273593,0.022470305,0.015045301000000002,0.009302556,0.0041341793,0.0019488762999999999,0.0010332395,4.8044226E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,delivered biomass,industry,0.04076151,0.07529916,0.07674693999999999,0.07590421,0.08613903,0.08804049,0.08750082,0.08703972,0.08622303,0.08362187,0.07766485,0.07080669,0.06412299,0.0580641,0.049490679999999995,0.038965520000000003,0.029220060000000003,0.01717327,0.01070386,0.007356346,0.004730908,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,regional biomass,electricity,0.0084977,0.00891642,0.0119303,0.03972026,0.058082919999999996,0.083250488,0.110640022,0.133586904,0.143013491,0.153277847,0.15532252700000002,0.15614263400000003,0.16122701400000003,0.1636859235,0.16505487799999996,0.167137553,0.1774329759,0.20050746770000002,0.2285072560790001,0.24405004066279995,0.259509523550973,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,regional biomass,gas processing,0.00213631,0.00460985,0.00567808,0.00806099,0.0111703,0.014423,0.0182187,0.0224016,0.0273053,0.0325467,0.0365015,0.0403295,0.0395437,0.0394057,0.0368137,0.0290344,0.0189615,0.00827391,0.00289002,8.35433E-4,3.3889E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,regional biomass,hydrogen,0.0,0.0,0.0,0.0,0.001493924,0.00257878,0.00388102,0.0054303400000000005,0.00776536,0.01091803,0.01450563,0.019678940000000002,0.026479665000000003,0.034328340000000006,0.0636466171,0.09380017910999999,0.09698000835000001,0.107332190293,0.0870948549218,0.07220602069740001,0.06193190458311,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,regional biomass,refining,0.0,0.0,0.0,0.0,0.0010234586,0.0026628028000000004,0.007157445000000002,0.0190732058,0.041980722199999994,0.06896595900000001,0.0891540521,0.10304571661999998,0.11894772309999997,0.13538267393999998,0.17975644307,0.26717743920000003,0.39467966560000006,0.5017037292000001,0.5577123898730401,0.604649630675529,0.7274489513273699,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,delivered biomass,building,0.197244,0.251118,0.268741,0.373211,0.595594,0.770914,0.894695,0.965487,0.997402,0.981209,0.8921,0.790993,0.6744,0.577464,0.443935,0.299876,0.181245,0.0799299,0.0370156,0.0193932,0.00885115,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,delivered biomass,industry,0.94205929,1.1423207,1.2223073,1.4855040000000002,2.3437232,3.1114064,3.883486,4.6186212,5.3961566,6.079961,6.484528,6.95274,7.179868,7.307829000000001,7.166291,6.3350599999999995,5.126721000000001,3.250373,2.015746,1.333441,0.792966,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,regional biomass,electricity,0.0,0.0461297,0.0493948,0.055782080000000005,0.1551053,0.28909887,0.5123793499999999,0.80398234,1.15471011,1.5597544700000003,1.97650941,2.4256084209999997,2.961937580999999,3.572971650000001,4.678828850000001,6.1034584400000025,7.32980129,8.38884881,9.504839209999997,10.4084161816,11.61889931097,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,regional biomass,gas processing,0.0,0.0,0.0,1.90371E-5,7.39731E-5,1.85204E-4,4.03577E-4,7.95153E-4,0.00149554,0.00263734,0.00424601,0.00665629,0.00992775,0.0143066,0.0204382,0.0245512,0.0243205,0.0165454,0.00940916,0.00557043,0.00271393,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,regional biomass,hydrogen,0.0,0.0,0.0,0.0,4.87191E-4,0.001100447,0.002093102,0.00354992,0.00601377,0.00968044,0.01392087,0.01949842,0.025585040000000003,0.03159995,0.05045873,0.061358895999999996,0.064449511,0.0782982444,0.09278584851,0.10460998097,0.113830257109,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,regional biomass,refining,0.0,0.00938506,0.0156704,0.1060728,0.25466889,0.44490848000000005,0.7048813500000001,1.07479695,1.6383445200000002,2.361133420000001,3.1287829719999993,4.005529128999998,4.866218419,5.717719423000001,6.732546055,7.574324755,7.5976036500000035,8.38185049,7.921296612700002,8.145693436959002,9.6441983551743,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,delivered biomass,building,0.042697189999999996,0.0251997,0.0225625,0.02616474,0.0312121,0.0359335,0.0392759,0.040907700000000005,0.0403755,0.0388495,0.0351615,0.0312183,0.027093779999999998,0.023177259999999998,0.01813662,0.01282494,0.008466129999999999,0.0040506,0.002005706,0.001095261,5.29677E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,delivered biomass,industry,0.366359198,0.29419201,0.29268510000000003,0.37954864,0.52906111,0.6883622500000001,0.84461247,0.98332475,1.11568529,1.2240202599999999,1.27667384,1.3399851,1.3722674000000001,1.3802404,1.3606163,1.2342753,1.051087,0.73739989,0.50172196,0.35313273,0.22428855,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,regional biomass,electricity,0.0,3.767E-4,0.0017163,0.003839911,0.009201636,0.019555384,0.036920235999999995,0.059843130999999994,0.088413413,0.11992923099999998,0.151368065,0.18263799999999997,0.22370343079999994,0.26776735939999996,0.33912260299999997,0.434051973,0.538354363,0.6670420370000001,0.8308915109999999,0.9707754541300002,1.1353902702330005,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,regional biomass,gas processing,0.0,0.0,0.0,1.26307E-5,4.30068E-5,1.03295E-4,2.12715E-4,3.95051E-4,7.08129E-4,0.00119143,0.00183781,0.00277481,0.00401153,0.00563187,0.00770352,0.00880483,0.00833623,0.00544089,0.0030373,0.00178828,8.6484E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,regional biomass,hydrogen,0.0,0.0,0.0,0.0,3.6833199999999997E-4,8.02119E-4,0.001467018,0.00238083,0.0038193100000000002,0.00579642,0.00780577,0.01041929,0.01334755,0.01608597,0.026191981,0.034243713,0.038445155,0.0490403295,0.062227346569999994,0.07410712565,0.088915502809,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,regional biomass,refining,0.0,0.0,0.0,0.0,0.032566461000000005,0.08674187300000001,0.15729772799999997,0.259413617,0.41597779000000024,0.6100181850000002,0.799661076,1.000035345,1.1970126592000003,1.3718163005000001,1.5796553419999995,1.7739237440000002,1.8888909679999997,1.9531389490000006,1.5262026935551996,1.42469687540129,1.6755187595539802,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,delivered biomass,building,0.0041989,9.692E-4,7.974000000000001E-4,7.326733E-4,7.713231999999999E-4,7.707723E-4,7.658869E-4,7.410995E-4,6.808884000000001E-4,6.202197E-4,5.334279E-4,4.492427E-4,3.73505E-4,3.076447E-4,2.291934E-4,1.5355753000000002E-4,9.664097000000001E-5,4.497572E-5,2.266328E-5,1.2763569E-5,6.24621E-6,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,delivered biomass,industry,0.107288,0.108003,0.114363,0.105528,0.121202,0.129035,0.135521,0.139264,0.141894,0.142899,0.138493,0.136567,0.131174,0.1232,0.109825,0.0884169,0.0664358,0.0394955,0.0236211,0.015182,0.00856005,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,regional biomass,electricity,0.095064,0.179537,0.178407,0.21099980000000002,0.1982088,0.196891649,0.203947064,0.20710615599999999,0.21273994499999999,0.21729760700000003,0.21552613900000003,0.217741924,0.257136358,0.27332219699999993,0.32275330299999994,0.3691812200000001,0.4054189359999999,0.46319388489999996,0.524493543481,0.5587353228488,0.6034789345762802,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,regional biomass,gas processing,0.00326067,0.0089386,0.00730833,0.00945464,0.012598,0.0153188,0.0185484,0.0220265,0.0267859,0.0319076,0.035772,0.0404265,0.0395368,0.0410652,0.042905,0.036292,0.0240904,0.010643,0.00395992,0.00139987,2.99227E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,regional biomass,hydrogen,0.0,0.0,0.0,0.0,2.651762E-4,6.36026E-4,0.001142256,0.001772584,0.0025607159999999998,0.003696653,0.005002796,0.007373827,0.010538645,0.0141908431,0.0270442576,0.04210869469,0.048191363237000004,0.0587650500496,0.053924315491400004,0.04958300610251,0.04680270143942,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,regional biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,9.30728E-4,0.09544661430000002,0.2995361770999999,0.5404772427,0.6996237982999999,0.7730440900000001,0.8379450450000001,0.8729496185500003,1.1613622956299996,1.8136450419999994,2.7269834300000007,3.4177434949999994,3.6550026822550605,3.8766040303483327,5.147005347944189,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,delivered biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,delivered biomass,industry,0.08162710000000001,0.058059799999999995,0.0428646,0.0494489,0.060234499999999996,0.0689875,0.07831969999999999,0.08669099999999999,0.0942663,0.1007595,0.10309080000000001,0.10583129999999999,0.1060567,0.1047708,0.1005404,0.0877576,0.07214870000000001,0.0477615,0.0331085,0.0246957,0.01732825,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,regional biomass,electricity,0.0,0.0467995,0.0455436,0.02833349,0.037467600000000004,0.050307776,0.06858999199999999,0.089050954,0.111335726,0.134616887,0.155503214,0.17857177299999996,0.22654211399999996,0.27909567799999996,0.38050938199999995,0.526780717,0.6994597659999997,0.920124186,1.1493355623100001,1.3282040900480003,1.5161201732674199,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,regional biomass,gas processing,0.0,8.43266E-4,0.0025298,0.00345458,0.00503072,0.00687843,0.00934797,0.0124223,0.0166604,0.0217511,0.0269183,0.0328179,0.0378919,0.0433417,0.0483176,0.0446554,0.033371,0.0169435,0.00727843,0.00306856,9.03261E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,regional biomass,hydrogen,0.0,0.0,0.0,0.0,3.63304E-4,9.14807E-4,0.001764473,0.0029529400000000003,0.00469825,0.00714949,0.010132579999999999,0.015738046,0.023737774,0.034078022,0.0708310957,0.12157680709,0.156364724457,0.2227440536283,0.23568601287080002,0.24706200413366,0.258302000883907,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,regional biomass,refining,0.0,0.0,0.0,0.0,0.019944838,0.04689778299999999,0.089597747,0.165639464,0.295206376,0.45288436499999984,0.5827180920000002,0.7010579245000002,0.8369204556000002,0.9777545370999999,1.3296433574000002,1.9992916139999997,3.039397609,5.0732481383,6.861258910661824,7.982691955551222,8.554116060791284,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,delivered biomass,building,0.0152789,0.026622899999999998,0.0221021,0.0228645,0.0251331,0.02696094,0.02758151,0.02741969,0.026214420000000002,0.02484002,0.02242636,0.01967003,0.01692879,0.01440961,0.011068119999999999,0.0076919399999999995,0.004980574000000001,0.002366598,0.001197221,6.7852E-4,3.39661E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,delivered biomass,industry,0.0045627,0.0030558,0.0032232,0.00354793,0.00434181,0.00500639,0.00567849,0.00628346,0.00686017,0.00736752,0.00759753,0.00787434,0.00800297,0.00802272,0.00775995,0.00682737,0.00561425,0.00368073,0.00242176,0.00169054,0.00105926,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,regional biomass,electricity,0.0,0.0,2.512E-4,0.0080080188,0.0223340179,0.041798368800000006,0.07966788480000002,0.1301491719,0.18780349579999997,0.25054856759999994,0.30962225382999997,0.37605463864999994,0.48277501196,0.6113816359470001,0.8415352190000002,1.192383168,1.6649314529999997,2.297060621,3.026422971500001,3.6437693528479995,4.270453190342101,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,regional biomass,gas processing,0.0,5.62714E-5,7.30856E-4,0.00101431,0.00153477,0.00215591,0.00303043,0.00419386,0.00588657,0.00812203,0.0106387,0.0140907,0.0182381,0.0235352,0.0299163,0.0319419,0.0284699,0.017667,0.00978238,0.00577541,0.00280008,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,regional biomass,hydrogen,0.0,0.0,0.0,0.0,0.001433885,0.00332571,0.006029929999999999,0.00973324,0.01520881,0.02314433,0.03288237,0.05129221,0.07844285,0.11463538200000001,0.244388342,0.4303500046,0.5434942724399999,0.7477087524920001,0.760006257469,0.7624021134710001,0.7861060303615,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,regional biomass,refining,0.0,0.0,0.0,0.0,0.07307024000000001,0.19579468999999997,0.3856766499999999,0.7158736700000001,1.2729602700000002,1.9720938500000003,2.573791525,3.1455113910000008,3.740404863200001,4.383200259,5.89161894,8.564790410999999,12.089405649999998,16.401560205,18.679351293721496,20.43236862427397,26.766540649647457,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,delivered biomass,building,0.004479,0.0073255,0.0079953,0.00835705,0.00953099,0.0105119,0.0112813,0.0118798,0.0119451,0.0117084,0.0108857,0.00984868,0.0088108,0.0077982,0.00631655,0.00458176,0.00301549,0.00145688,7.28771E-4,4.01652E-4,1.92384E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,delivered biomass,industry,0.096696602,0.1420315,0.15542609999999998,0.17117065,0.23499303,0.30412805,0.38915659,0.49279554999999997,0.6142146,0.73980727,0.8530425,0.9743809,1.0834015000000001,1.1750691999999998,1.2144605,1.1350934000000001,0.9689684000000001,0.6429076,0.413902,0.27991977,0.16631592,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,regional biomass,electricity,0.0,0.0,0.0,0.00813417,0.02352953,0.043335187,0.077990773,0.126807414,0.19746187699999995,0.29104462799999997,0.39830503800000006,0.522510173,0.6764060000000001,0.8410488099999999,1.029649381,1.2125394249999997,1.359219148,1.5433895789999998,1.8798245320000002,2.2462138468,2.68594138998,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,regional biomass,gas processing,0.0,0.0,0.0,8.27791E-6,2.69659E-5,6.07731E-5,1.22575E-4,2.3201E-4,4.33913E-4,7.72038E-4,0.00126482,0.00203717,0.00314787,0.00471707,0.00679914,0.00809321,0.00792099,0.00522831,0.00297257,0.00178949,8.77802E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,regional biomass,hydrogen,0.0,0.0,0.0,0.0,1.061019E-4,2.326792E-4,4.4929400000000004E-4,8.12417E-4,0.001463578,0.002467871,0.0036981999999999996,0.00530761,0.007265259999999999,0.009278000000000002,0.015369213000000001,0.021438117,0.025084919,0.0392411701,0.0487410023,0.05834438932,0.068007052232,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,regional biomass,refining,0.0,0.0,0.0,0.0,0.008574952999999998,0.020199895999999995,0.039051431,0.072766857,0.13033580900000002,0.206880542,0.2851098773,0.3729630177999999,0.46140002816000003,0.5589611486999996,0.6921592158999998,0.8332248747,0.9231083289999997,1.1449881630000003,1.1857520105999997,1.28672376725325,1.60374218526109,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,delivered biomass,building,0.3046985,0.0730037,0.0764363,0.07209578999999999,0.07894885,0.07797594,0.07684231,0.0742447,0.0717684,0.06894307,0.0630512,0.05864898,0.053505170000000005,0.04829369,0.041631055,0.031875982000000004,0.021986506,0.012340289,0.0070504314,0.0043669166,0.0024501679,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,delivered biomass,district heat,0.161656,0.097368,0.105994,0.110351,0.130883,0.149695,0.171902,0.195513,0.225863,0.256115,0.275164,0.30235,0.320423,0.329535,0.33651,0.291776,0.229955,0.145974,0.0932463,0.0630538,0.0381091,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,delivered biomass,industry,0.04345073,0.11909169,0.10820812,0.10667517,0.12255121,0.13299213000000001,0.13781563000000002,0.14023897000000002,0.14181314,0.14193976,0.13603438999999998,0.13233623000000003,0.12616031,0.11854643,0.10479957,0.08357281,0.06171005,0.03658096,0.022211150000000002,0.014558930000000001,0.008514008,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,regional biomass,electricity,0.0,0.0,0.0,0.00590784,0.01533751,0.026296195,0.048982883000000005,0.07296596799999998,0.102842221,0.13134923300000004,0.153898251,0.18259096699999997,0.22130427399999997,0.26303140300000005,0.36700238300000004,0.49355110499999993,0.6201098429999999,0.8340789192999999,1.04032855048,1.2061455670166,1.456644045243831,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,regional biomass,gas processing,0.0,0.0,0.0,9.67881E-5,2.61282E-4,5.04515E-4,8.59258E-4,0.00134467,0.00205933,0.00301045,0.00407809,0.00553831,0.00730999,0.00948408,0.0118604,0.0122886,0.0104322,0.00606463,0.00314644,0.00174955,7.92268E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,regional biomass,hydrogen,0.0,0.0,0.0,0.0,0.0015124230000000002,0.00279413,0.00447412,0.00654836,0.00961507,0.013830440000000001,0.01915175,0.028230630000000003,0.041193420999999994,0.057680907,0.1190202542,0.20321570088000002,0.25375715214,0.3672170839103,0.3721670186339,0.37560600532106,0.381396000899597,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,regional biomass,refining,0.0,0.0,0.0,0.0,0.0,0.022373636,0.070719135,0.17736808099999993,0.37495644499999986,0.6053063410000002,0.7736700659999998,0.9023312399999996,1.069580323,1.2524906897999994,1.7246132969999997,2.590060689999999,4.1252803479999995,7.139886781500003,9.387581633291749,10.352214705272688,10.469987425448666,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,delivered biomass,building,0.0310183,0.0378833,0.0401437,0.039704,0.0482011,0.0549485,0.0591391,0.0608379,0.059937,0.0569199,0.0521537,0.047054,0.0400814,0.0337954,0.0276684,0.0203861,0.0133483,0.00623252,0.00302976,0.00160169,7.14423E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,delivered biomass,industry,0.17091411,0.22009988,0.2330342,0.206147705,0.25401524600000003,0.29150088,0.32441143,0.35171042,0.38169767,0.40479506,0.41747528,0.44239539,0.45183323999999997,0.45378672,0.45940084000000003,0.42482241000000004,0.35578293,0.2426791,0.158279673,0.10571923300000001,0.060411369,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,regional biomass,electricity,0.0,0.00380928,0.00406038,0.00209821,0.0061771,0.015878141,0.03062248,0.049145804,0.071341063,0.095423026,0.117942764,0.14972417600000001,0.18769496800000005,0.22607839100000005,0.2898526419999999,0.359113798,0.41608703500000005,0.5033134039999999,0.5668435660000002,0.6250570576499999,0.7016682892470002,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,regional biomass,gas processing,0.0,0.0,0.0,4.16686E-5,6.71071E-5,1.00916E-4,1.467E-4,2.08977E-4,3.05365E-4,4.34935E-4,5.95202E-4,8.15614E-4,0.00108975,0.00142323,0.00186788,0.00204972,0.00185603,0.0011911,6.39961E-4,3.58604E-4,1.6241E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,regional biomass,hydrogen,0.0,0.0,0.0,0.0,7.996690000000001E-5,1.558717E-4,2.60236E-4,3.9979100000000004E-4,6.24944E-4,9.46981E-4,0.001365784,0.002083252,0.0028212970000000004,0.003504206,0.0061469574999999995,0.0081379919,0.0080934753,0.009874231,0.01096053358,0.013044852392,0.014358632750299999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,regional biomass,refining,0.0,0.0,0.0,0.0,0.0029651027,0.017619837599999997,0.035661913100000005,0.061558737100000004,0.10156700400000002,0.1547443223,0.20711909210000004,0.260715753,0.31541239875000004,0.3732306708,0.4597354279999999,0.5567750598000001,0.6624757509,0.7452096539999997,0.7257405283700001,0.7198064022826871,0.8073480027249402,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,delivered biomass,building,0.0053866009999999995,0.0071071050999999994,0.0074292477,0.0059493061,0.0052349556,0.0057848382,0.0062845882999999995,0.0065873977,0.0064441185,0.0062098994,0.0058072998,0.0051731281,0.0044966046,0.00384851879,0.0028852496600000003,0.00195632314,0.00123281332,5.713790600000001E-4,2.85058895E-4,1.590925E-4,7.599265900000001E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,delivered biomass,industry,0.01894989,0.02406889,0.02091007,0.01842856,0.01871275,0.02127655,0.02401957,0.026374500000000002,0.028131950000000003,0.02953774,0.029944639999999998,0.030427670000000004,0.0302932,0.029714,0.027908500000000003,0.02382708,0.01935326,0.01248268,0.00852844,0.00624567,0.00425839,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,regional biomass,electricity,8.06798E-4,9.20296E-4,9.49597E-4,0.0034874249999999997,0.00280612,0.008996230999999999,0.022619734000000002,0.039869586000000005,0.058767254000000005,0.07946929039999999,0.09701400840000002,0.11994962589999998,0.15203825217999994,0.18285547592999996,0.2345256069999999,0.29322458199999996,0.35354044399999995,0.42435531000000004,0.5132750299900002,0.5794256763405998,0.6723279377928799,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,regional biomass,gas processing,0.0,0.0,0.0,6.29729E-6,1.5063E-5,3.0669E-5,5.46817E-5,8.9855E-5,1.42049E-4,2.19953E-4,3.29997E-4,4.84909E-4,6.8834E-4,9.74532E-4,0.0013192,0.00147703,0.0013618,8.73636E-4,4.92967E-4,2.96469E-4,1.47069E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,regional biomass,hydrogen,0.0,0.0,0.0,0.0,4.3429600000000003E-4,9.01449E-4,0.001582516,0.00248681,0.0038161899999999997,0.00571781,0.0081281,0.012001566,0.017736768,0.025252608,0.0531559984,0.09362090377,0.122353469591,0.1826900329266,0.19069200714048,0.19899300199598,0.205332000307029,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,regional biomass,refining,0.0,0.0,0.0,0.0,0.0,0.009178619,0.028047224000000003,0.056921947,0.10401235899999998,0.15501405999999998,0.19354712199999996,0.22632505099999992,0.26139300840000007,0.31499220680000006,0.42264867049999993,0.6157624266000004,0.9041912229999997,1.4864006938299996,2.073884839904616,2.4833220721392357,2.7215860239925336,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,delivered biomass,building,0.0254091,0.015069599999999999,0.0168277,0.017801965000000003,0.019207803,0.019920432999999998,0.020065898,0.019524233000000002,0.017980819999999998,0.016324472,0.013955307,0.011587996,0.009426948,0.0075850596,0.005456028700000001,0.003503489,0.0020981098,9.157544999999999E-4,4.3114898000000005E-4,2.2623329E-4,1.0477308E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,delivered biomass,industry,0.12105912,0.1723377,0.21725330000000004,0.2491866,0.2996985,0.3533094,0.38265489999999996,0.4011566,0.4137492,0.4186747,0.4052017,0.3919777,0.3674052,0.33769699999999997,0.28706349999999997,0.2223837,0.1638478,0.09494795,0.057932,0.03841148,0.023499397,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,regional biomass,electricity,0.00468839,0.00786999,0.0234427,0.0310635,0.040537000000000004,0.055446577999999996,0.07591195999999999,0.09638913,0.11313004700000001,0.12964457100000001,0.14247119200000002,0.15537742200000007,0.17461584200000002,0.195535471,0.23296143,0.28315232800000006,0.3429202379999999,0.40649343690000006,0.4829772019850001,0.5399749461555998,0.6142936359663099,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,regional biomass,gas processing,0.00101195,0.0,5.05916E-4,8.16949E-4,0.00126099,0.00188431,0.00280472,0.00401095,0.00565938,0.00772219,0.00987251,0.0123041,0.0146318,0.0171094,0.0193471,0.0178582,0.013285,0.00672008,0.00289465,0.00124079,3.91642E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,regional biomass,hydrogen,0.0,0.0,0.0,0.0,0.002193484,0.00444586,0.00752143,0.01148032,0.01758991,0.026183349999999998,0.03621027,0.05162096,0.07337607,0.100152665,0.1979840057,0.32511256092,0.39587649565,0.5479260958078,0.5336380190697999,0.5210860048861801,0.523699000714527,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,regional biomass,refining,0.0,0.0,0.0,0.0,0.009607173,0.03008282899999999,0.057811459,0.099305015,0.163853136,0.24577078699999996,0.31736265599999985,0.38411624069999994,0.4569651134000001,0.5359044472000001,0.7071796548000001,1.0318127519,1.5856620629999991,2.9295597726799993,4.211223504479288,4.879503393847744,5.112118770951882,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,delivered biomass,building,0.00328211,0.0104303,0.0122853,0.01273646,0.01402676,0.01506806,0.01556885,0.015674360000000002,0.01519058,0.0146115,0.013418719999999999,0.01203293,0.010749,0.0094944,0.00766573,0.00574751,0.00398471,0.00200858,0.0010368830000000002,5.859540000000001E-4,2.872023E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,delivered biomass,industry,0.0354933001,0.076563997,0.08441169899999999,0.109301305,0.16128853199999998,0.22375204999999998,0.28717528000000003,0.34957551,0.41292656,0.47445337,0.51970273,0.5687244,0.6125022999999999,0.6407219,0.6320905,0.5780826,0.4895991,0.311253,0.19282849999999999,0.12619725,0.07353433,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,regional biomass,electricity,1.853E-4,8.37E-5,0.0,0.00250609,0.008054470000000001,0.016331744000000002,0.030301957000000004,0.048298469,0.070254857,0.09677112299999999,0.125365468,0.16045954799999998,0.2073098649999999,0.260154623,0.319311656,0.3732078850000001,0.43027259600000006,0.5344784610000001,0.7087487518999999,0.8866085058199997,1.096000515394,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,regional biomass,gas processing,1.68681E-4,0.0028109,0.00359787,0.00623,0.0110195,0.0170716,0.0256891,0.0368744,0.0526973,0.0728069,0.0936383,0.119504,0.146589,0.173656,0.195567,0.179779,0.133357,0.0640189,0.0242493,0.00795994,9.18239E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,regional biomass,hydrogen,0.0,0.0,0.0,0.0,0.0012364099999999999,0.002862,0.00549746,0.009372390000000001,0.01566262,0.02452992,0.0342956,0.045870299999999996,0.0589806,0.0702018,0.10819642,0.14584693999999998,0.16725773,0.23538236599999998,0.266823867,0.28692939007,0.30403968385,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,regional biomass,refining,0.0,0.0,0.0,0.0,0.01054835,0.026355995000000004,0.047216733,0.07705606399999998,0.12419714800000001,0.1882545830000001,0.25753736199999994,0.3388237076999999,0.42895066,0.5204135638999999,0.6353035160000001,0.7628076448000001,0.857183821,1.0765284960000003,1.1334419056099998,1.25288580843294,1.5871757508841962,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,delivered biomass,building,0.0183765,0.015305199999999998,0.0284942,0.027064163999999998,0.027022815999999998,0.025487864000000002,0.024132533,0.022328070999999998,0.019904203000000002,0.017548804,0.014603532,0.012042402,0.009855238,0.008035943,0.006093323,0.004157234,0.0026592399,0.0012779682,6.501500000000001E-4,3.6583215E-4,1.8232253E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,delivered biomass,industry,0.01142769,0.07017287,0.09122543000000001,0.09497453,0.11252753,0.12129759,0.12919461,0.13422847000000002,0.13834247,0.13950063000000001,0.13410977999999998,0.13136757999999998,0.12435070000000001,0.114758,0.10016174,0.07898925,0.05779115,0.033305358,0.019514,0.012394896,0.0071117049,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,regional biomass,electricity,0.0,4.18612E-4,0.00368369,0.00500604,0.00938263,0.01315310321,0.019765187764999997,0.02757088213,0.03737970631,0.0469740131,0.05404554024,0.061397445220000006,0.06910372937,0.07399418784,0.08372354581000001,0.08444699661000003,0.07875825615999997,0.07881907029999999,0.08782932090000002,0.09640602771199996,0.11343146866149999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,regional biomass,gas processing,0.00101198,0.00455376,0.011356,0.0141734,0.0200965,0.0255596,0.0316803,0.0380532,0.0461714,0.054341,0.0597242,0.0657649,0.0674332,0.0661037,0.062652,0.0493267,0.030886,0.012357,0.00393465,0.00109294,8.68238E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,regional biomass,hydrogen,0.0,0.0,0.0,0.0,0.0031196792,0.0055532970000000004,0.0086519947,0.01228668,0.016785063,0.021672471,0.025746393,0.0267438,0.02650898,0.026410460000000004,0.0357344,0.050795110000000004,0.059526111,0.0744035975,0.07641216840000001,0.07792370212,0.080045974408,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,regional biomass,refining,0.0,0.0,0.0,0.0,0.008798794799999999,0.019554285588627,0.03848321035666,0.07980611760939998,0.15395754145899998,0.24022910902999997,0.30179967970000005,0.3392305737999999,0.3652480884200001,0.37415120080999975,0.4061294233,0.45913970709999996,0.5535491599000001,0.6275556761000001,0.57111697267,0.5354603739609468,0.6190103204158031,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,delivered biomass,building,0.272675769,0.2479129,0.28898999999999997,0.32523324600000003,0.37648605000000007,0.42371135,0.45562182,0.47236363,0.46878558000000004,0.45726412,0.4224621,0.38006587,0.3347991880000001,0.290766052,0.225441164,0.15857527200000002,0.10416734399999998,0.051059738,0.0267495788,0.0156188622,0.0079096036,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,delivered biomass,industry,0.692809,0.8231203,0.9243520999999999,1.0252759,1.3578385,1.6552575,1.9350509999999999,2.1811055,2.4241106,2.6306365,2.7347382999999996,2.866032,2.926848,2.9343500000000002,2.8338680000000003,2.508903,2.082009,1.412321,0.9551862,0.6811751,0.4337959,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,regional biomass,electricity,0.0106935,0.0647155,0.130226,0.08330001,0.13198516,0.18645847999999998,0.27425548,0.36461913999999995,0.46057127,0.5576141200000001,0.63823104,0.7260639499999999,0.8690740449999997,1.026569281,1.3049341400000003,1.64878452,1.99154588,2.4754721810000007,2.9230994108999995,3.2360769015300006,3.5927512391859,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,regional biomass,gas processing,0.0,5.62716E-5,0.00359788,0.00523424,0.00821543,0.0115007,0.0160159,0.0216372,0.029556,0.0391865,0.0487012,0.0604747,0.0713674,0.0826102,0.0948859,0.0893671,0.0671866,0.0349865,0.0150903,0.00634952,0.00191239,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,regional biomass,hydrogen,0.0,0.0,0.0,0.0,0.001068864,0.002228817,0.00391418,0.00622228,0.01007559,0.01589289,0.0235114,0.03623429,0.0547149,0.07863328900000001,0.16577239600000002,0.26772614229999997,0.31407632754000003,0.41612126922,0.39786948009399997,0.37776823240699997,0.3603370639479,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,regional biomass,refining,0.0,0.0,0.0,0.0,0.028810405999999993,0.075324523,0.14745883399999998,0.274523216,0.49416519799999997,0.796722443,1.1104848859999998,1.448452385,1.8479666075999996,2.2969698970000008,3.058042828,4.173917904,5.6695271320000025,6.943737265,7.4958655804528,7.872638985689903,9.356338010818124,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,delivered biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,delivered biomass,industry,0.0,0.0012139,0.002093,0.0021246,0.00254971,0.0027526,0.00295486,0.00312375,0.0033364,0.00351774,0.00356389,0.00373518,0.00380762,0.00382565,0.00370331,0.00316177,0.00244967,0.00143848,8.60127E-4,5.57616E-4,3.15877E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,regional biomass,electricity,0.0,0.0473498,0.0525763,0.046294300000000004,0.0529043,0.060046854000000004,0.07166440600000003,0.08275793199999999,0.095052152,0.106219175,0.111976066,0.12072645399999998,0.14867651,0.16702431399999998,0.191027265,0.20251173899999994,0.20020981799999998,0.20073882599999998,0.22390918530000004,0.24727951318000002,0.28065256834429997,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,regional biomass,gas processing,0.0,0.0,0.0,4.66173E-6,1.48701E-5,3.06584E-5,5.54596E-5,9.27023E-5,1.53161E-4,2.40818E-4,3.51191E-4,5.09732E-4,6.30897E-4,8.27148E-4,0.00112155,0.00130096,0.00121113,7.75526E-4,4.20415E-4,2.42384E-4,1.17491E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,regional biomass,hydrogen,0.0,0.0,0.0,0.0,3.290867E-5,5.9768799999999996E-5,9.49528E-5,1.369918E-4,1.941404E-4,2.6338479999999997E-4,3.353147E-4,3.849083E-4,4.244364E-4,4.68033E-4,7.21616E-4,0.0011542113,0.0014907545,0.00197344072,0.002169961345,0.0023954634574000003,0.00260693571837,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,regional biomass,refining,0.0,0.0,0.0,0.0,0.0027559397,0.007299162,0.017151247099999996,0.0431931607,0.09239214870000002,0.14767372340000004,0.1829647121,0.20471785330000006,0.22371655007000005,0.2359843755200001,0.2643710408000001,0.30212343629999994,0.33880982280000005,0.3795269385000001,0.340444506592,0.32653708308711693,0.393988120850337,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,delivered biomass,building,0.5666589000000001,0.5762032,0.5111528,0.48861922999999996,0.51497274,0.51265737,0.5157840600000001,0.51236998,0.4980625,0.48151208000000006,0.44310683,0.40667424999999996,0.36962293,0.33387798999999996,0.28092209,0.21074331999999998,0.14386488,0.0775751,0.04410134400000001,0.027751213,0.015514835999999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,delivered biomass,electricity,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,delivered biomass,hydrogen,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,delivered biomass,industry,1.6154229599999999,1.60173148,1.47476959,1.4864784199999999,1.82223718,2.06745847,2.2942566400000004,2.5006112,2.7244107499999997,2.9133796700000003,2.9545285999999997,3.009176,2.9704124,2.8699733,2.5842079,2.0883441,1.5691974,0.94349244,0.5831287299999999,0.39050691000000004,0.23065724,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,delivered biomass,refining,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,regional biomass,building,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,regional biomass,electricity,0.393165,0.49654,0.513823,0.251352,0.2940705,0.37566132999999996,0.4884715200000001,0.6109505399999999,0.7806103100000001,0.9403765899999997,1.07461216,1.2371788699999997,1.5274328999999998,1.8270431199999997,2.59338295,3.48457666,4.19252843,5.234684,6.244836692819998,7.066905723009,8.2491687928199,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,regional biomass,gas processing,0.0411517,0.214527,0.299077,0.359067,0.483858,0.607956,0.74956,0.905524,1.11406,1.33479,1.51389,1.71257,1.82232,1.93755,1.99216,1.69741,1.15101,0.514477,0.181422,0.0530519,0.00268128,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,regional biomass,hydrogen,0.0,0.0,0.0,0.0,0.0025481699999999998,0.00642927,0.01210261,0.019788970000000003,0.03074692,0.0465682,0.06532422,0.09939667,0.14691492,0.21201646,0.43851888899999997,0.7508235532,0.96889186862,1.4052202713609998,1.5169800625583,1.6320800186338,1.8137300032049501,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,regional biomass,industry,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,regional biomass,refining,0.0,0.0,0.0,0.0,0.04301681100000001,0.107046917,0.259048476,0.6257535000000003,1.3455915420000004,2.216370862,2.8721298720000004,3.3815308240000004,3.9647039788999985,4.595772279700001,6.3471767780000015,9.842119954000003,15.340083059999996,23.427594062000004,32.62214153643825,40.900481496373885,46.00388471305028,EJ, Electricity generation by technology (inc solar roofs) scenario,region,technology,1990,2005,2010,2015,2020,2025,2030,2035,2040,2045,2050,2055,2060,2065,2070,2075,2080,2085,2090,2095,2100,Units, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,CSP,0.0,0.0,0.0,2.12442E-5,4.8720999999999997E-5,9.30108E-5,1.703344E-4,2.819734E-4,4.406004E-4,6.801812E-4,0.0010094003999999998,0.0015257776,0.002283396,0.003193457,0.00446898,0.005962205,0.007429109,0.009269002,0.0108263,0.01197792,0.01316675,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,CSP_storage,0.0,0.0,0.0,0.0,0.0,3.89899E-4,0.001816629,0.004998789,0.010177809,0.019909679,0.034975179,0.059596880000000005,0.09736835,0.14481739,0.21634797,0.30696209999999996,0.4036846,0.542782,0.6850028,0.8170335999999999,0.997516,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,Gen_III,0.0,0.0,0.0,0.00156495,0.002242416,0.007299506000000001,0.018952106000000003,0.038192406,0.063017005,0.10167390500000001,0.15289059500000002,0.22395689500000002,0.317780195,0.42274809500000005,0.561650894,0.7212678339999999,0.8811449700000001,1.0861268,1.2854738,1.4616843000000002,1.6886875,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,PV,0.0,3.6E-6,7.19999E-6,0.00633550999,0.00983833999,0.012341459990000001,0.01575543999,0.019875099990000002,0.02497168,0.02630401,0.03251361999999999,0.0444597,0.06164082,0.08207686,0.11029138,0.14242514,0.1735096,0.21069100000000002,0.2399107,0.2593361,0.2765389,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,PV_storage,0.0,0.0,0.0,1.08867E-4,2.64263E-4,6.03084E-4,0.00115649,0.001912789,0.002956069,0.004558392,0.0067714559999999995,0.010302954999999999,0.015760569,0.02276372,0.033493140000000005,0.047302550000000006,0.06237139,0.08436037,0.10709245,0.1286264,0.158491,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,biomass (IGCC CCS),0.0,0.0,0.0,0.0,0.0,8.44036E-5,2.585568E-4,5.732483E-4,0.0011447213000000001,0.0023150771999999997,0.0042704799000000005,0.0083388453,0.0158565443,0.0263915331,0.0445233603,0.06858378170000001,0.0940885478,0.129937181,0.164261239,0.19210534299999998,0.21649611900000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,4.62511E-4,0.001280403,0.002469705,0.00401447,0.0063798729999999994,0.00932658,0.012854333999999999,0.016552911,0.019728526,0.020083394,0.016840224,0.0123572636,0.0048012934,0.0015715535,5.522931300000001E-4,1.3288653999999998E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,biomass (conv CCS),0.0,0.0,0.0,0.0,0.0,2.86259E-4,8.8112E-4,0.001964737,0.003931643,0.007919081000000001,0.014480027999999999,0.028614331,0.055193402,0.09124460200000001,0.152872442,0.226699576,0.294935926,0.381950602,0.44802899,0.4831310200000001,0.47259431999999996,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,biomass (conv),7.23596E-4,0.00113761,0.00113761,0.00433182,0.006653882,0.008871498,0.012360852,0.016773627,0.021355562,0.027335787,0.033564996,0.038919391000000005,0.0423604187,0.042782424299999997,0.03334228299999999,0.019820777,0.011005421,0.0031284223999999998,8.721399699999999E-4,2.780064E-4,5.9836763E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,coal (IGCC CCS),0.0,0.0,0.0,0.0,0.0,1.02044E-5,3.03767E-5,6.84431E-5,1.475692E-4,3.308335E-4,6.742583E-4,0.0015024418,0.0032139885,0.0056866539,0.009990728099999999,0.01578095031,0.021807651989999996,0.0298615903,0.037778646400000004,0.045017678900000004,0.054862863,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,coal (IGCC),0.0,0.0,0.0,0.0,0.0,2.69326E-4,6.87635E-4,0.0012547510000000001,0.001944297,0.002931208,0.004114922,0.005395087,0.0066326549999999995,0.007605027,0.007314264000000001,0.005880036999999999,0.0040811284,0.0013612034000000002,4.4629984000000005E-4,1.6451816E-4,4.2205066E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,coal (conv pul CCS),0.0,0.0,0.0,0.0,0.0,2.58964E-5,7.259740000000001E-5,1.553474E-4,3.178468E-4,6.712684000000001E-4,0.0012995085000000002,0.0027465574,0.005596722199999999,0.0095375459,0.0160015731,0.0242566957,0.032399517899999994,0.042724695300000004,0.0523819125,0.060936057,0.072338041,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,coal (conv pul),0.00125085,0.00237117,0.00341518,0.0114956,0.014240429999999998,0.0164006,0.018949380000000002,0.021687039999999998,0.024188170000000002,0.027182589999999996,0.030260077,0.032657944999999994,0.034051797,0.033920606,0.026951879999999998,0.015293525,0.008694972999999998,0.0023772124999999994,7.002322400000001E-4,2.3881696900000002E-4,5.70075556E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,gas (CC CCS),0.0,0.0,0.0,0.0,0.0,6.20797E-4,0.001643168,0.003140639,0.005227443,0.008625538,0.013224803,0.020858071,0.033052635999999996,0.048516306,0.07261042999999999,0.10503117999999999,0.1403102,0.19418459000000002,0.25322019,0.31202178999999997,0.3966915,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,gas (CC),0.0,1.3375E-4,9.03293E-5,0.0028134477,0.0041464568,0.0051913409999999995,0.0067385014,0.008868086599999998,0.0115055325,0.0155488261,0.0208955641,0.027557401999999998,0.032817246499999994,0.03979776717,0.045527250000000005,0.048625789999999995,0.048874789999999994,0.04092743,0.02907987,0.018188509000000002,0.007720491,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,gas (steam/CT),0.0,5.1348E-5,1.28255E-4,0.002237956,0.003071987,0.0036122000000000003,0.004241461300000001,0.0048430439,0.005290447,0.005712792300000001,0.0060090591,0.005988269000000001,0.004350149,0.0036554547600000003,0.002781777,0.0019838390000000003,0.0013771128999999997,6.546681E-4,2.913426E-4,1.305556E-4,4.212675E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,geothermal,0.00117361,0.0036108,0.0052956,0.01980392,0.028459830000000002,0.038489340000000004,0.051002580000000006,0.06443465,0.07361759000000001,0.07361689,0.07361698,0.07361725,0.07361536,0.07361685000000001,0.07361598999999999,0.07361706,0.07358375,0.07361705,0.073617,0.07361695,0.07361699,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,hydro,0.0219597,0.0353919,0.0539216,0.0712437,0.0885658,0.105888,0.12321,0.140532,0.174952,0.209372,0.243792,0.278212,0.312632,0.347051,0.381471,0.415891,0.450311,0.484731,0.519151,0.553571,0.553571,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,hydrogen cogen,0.0,0.0,0.0,0.0,0.00101602,0.00195478,0.00317925,0.00492378,0.00730739,0.0111175,0.0165349,0.0225961,0.0328194,0.0469695,0.0654046,0.0896207,0.118248,0.162719,0.219834,0.293061,0.343599,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,refined liquids (CC CCS),0.0,0.0,0.0,0.0,0.0,0.0117334,0.02392434,0.03759218,0.05296976,0.07538627,0.10019506,0.13730274999999997,0.18852264,0.23860945,0.30864864000000003,0.37427521999999996,0.41733623000000003,0.4753327,0.4861823,0.439491,0.3349482,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,refined liquids (CC),0.0,0.0,0.0,0.0180053,0.0257988,0.02955136,0.03603331,0.0447064,0.05388775,0.06903482999999999,0.08608400999999999,0.10153061000000001,0.11023078,0.11599703,0.10543140000000001,0.08619681,0.0659646,0.03555869,0.016980898,0.007536348000000001,0.0023609255,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,refined liquids (steam/CT),0.00813916,0.0265001,0.0368684,0.0730136,0.080403,0.08047218,0.07864438000000001,0.07513167000000001,0.06976597000000001,0.06465036,0.059650829999999995,0.053124000000000005,0.025287760000000003,0.016401040000000002,0.011148970000000001,0.007859066000000001,0.005488241,0.0028584939999999996,0.0013385880000000001,5.778680000000002E-4,1.6364454000000002E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,rooftop_pv,0.0,0.0,0.0,0.00179196,0.00576876,0.0124085,0.0216736,0.0357064,0.0568172,0.0860798,0.122516,0.16811,0.224186,0.303984,0.415823,0.560984,0.739411,0.942342,1.14647,1.35913,1.57456,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,wind,0.0,1.11E-5,2.327E-4,0.01008672,0.0191862,0.033813,0.0590049,0.0955549,0.1449818,0.21550178,0.3150653,0.4661065,0.6799126,0.9289145999999999,1.268926,1.6479380000000001,2.000335,2.4408890000000003,2.8180549999999998,3.105751,3.4484310000000002,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,wind_storage,0.0,0.0,0.0,5.64504E-5,1.10077E-4,1.995403E-4,3.596663E-4,6.030813E-4,9.477703E-4,0.0014726319,0.0022481493,0.003498236,0.0053956,0.007798185,0.011481835999999999,0.016297784,0.02170181,0.029614500000000002,0.03781411,0.045627709999999995,0.05644767,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,CSP,0.0,0.0,0.0,9.62946E-6,3.274286E-5,7.026316E-5,1.5358435999999998E-4,2.7659235999999995E-4,4.2281035999999994E-4,5.577779000000001E-4,6.761635E-4,8.148502000000001E-4,0.001061499,0.001285756,0.0015694,0.0019360420000000002,0.002312453,0.002812615,0.0031459699999999997,0.003377016,0.0035802039999999996,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,CSP_storage,0.0,0.0,0.0,0.0,0.0,1.24787E-4,6.40477E-4,0.001767447,0.0036178169999999997,0.006887267,0.011449767,0.01777372,0.03046413,0.04430476,0.06276589,0.08563794,0.10964564,0.14490920000000002,0.1770525,0.2058175,0.2410995,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,Gen_III,0.0,0.0,0.0,8.72257E-4,0.00156989,0.00567026,0.015882759,0.030967159,0.047265159,0.065795059,0.085783858,0.10872335699999999,0.14769454599999998,0.185643546,0.230324245,0.280213391,0.32896955,0.3890529,0.44216150000000004,0.4831952,0.5320802,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,PV,0.0,0.0,0.0,0.00351201,0.0097505,0.01758034,0.03195754,0.049190239999999996,0.06259073999999999,0.06650721,0.06568177,0.06379872,0.05968822,0.052776319999999995,0.05151812,0.05802134,0.06641749,0.07768620000000001,0.0836953,0.08711920000000001,0.0892418,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,PV_storage,0.0,0.0,0.0,5.85342E-5,1.618432E-4,2.920502E-4,5.322292E-4,8.538371999999999E-4,0.0013014002,0.001933136,0.002691074,0.003759047,0.005950498,0.00838316,0.011678497000000001,0.015843097,0.02033292,0.0270268,0.03322224,0.03888907,0.045952770000000004,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,biomass (IGCC CCS),0.0,0.0,0.0,0.0,0.0,5.37029E-5,1.8465689999999998E-4,4.0109209999999995E-4,7.361428E-4,0.0012400037000000002,0.0019256384,0.0030814798,0.0057420381,0.0090423151,0.0143593465,0.0215144197,0.0291869277,0.040267431,0.05072909,0.058353204,0.06238209799999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,3.28558E-4,9.57426E-4,0.001784541,0.0026909489999999998,0.003715204,0.004754267,0.0058056620000000005,0.007432734000000001,0.008483174,0.007958298999999999,0.005888088499999999,0.0037579492000000005,0.0012289413,3.6415583999999996E-4,1.2038970200000002E-4,2.7605572299999997E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,biomass (conv CCS),0.0,0.0,0.0,0.0,0.0,1.73961E-4,6.071129999999999E-4,0.0013249,0.002441744,0.004099686,0.006307244,0.010084171,0.018597152,0.028801721000000002,0.045435356999999996,0.066169577,0.086343656,0.114240068,0.135512997,0.144073669,0.13233571900000002,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,biomass (conv),0.0,0.0,0.0,0.00118944,0.002994068,0.004387345,0.007048086,0.009973434,0.012400936999999999,0.014605291999999999,0.016292634,0.017188662,0.018389961,0.017585435,0.012447111,0.006564990000000001,0.0032204303000000004,8.167297000000001E-4,2.1008759999999996E-4,6.2560487E-5,1.2696132800000002E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,coal (IGCC CCS),0.0,0.0,0.0,0.0,0.0,2.43403E-5,7.89303E-5,1.643873E-4,2.994142E-4,5.064026E-4,7.932522E-4,0.0012901801,0.0024415864999999997,0.0038240430999999997,0.005977797,0.0088186609,0.011705396699999999,0.0154931715,0.018991234699999998,0.021728540999999997,0.02469753,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,coal (IGCC),0.0,0.0,0.0,0.0,0.0,7.57659E-4,0.001940101,0.00327485,0.0045382949999999995,0.0057645349999999995,0.0068735309999999996,0.007756056,0.008802494000000001,0.009244236999999999,0.0077512250000000005,0.005238713000000001,0.003037284,8.033339999999998E-4,2.3009566E-4,7.636770600000001E-5,1.7890760200000002E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,coal (conv pul CCS),0.0,0.0,0.0,0.0,0.0,5.98596E-5,1.8530330000000002E-4,3.697047E-4,6.441224E-4,0.0010378660000000001,0.0015540653,0.0023990818000000002,0.0042434624,0.0063694484,0.0095145228,0.0134913844,0.0173618377,0.022207861,0.026449566,0.02956713,0.032766719,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,coal (conv pul),0.00796861,0.0473972,0.0399414,0.055137900000000004,0.0643533,0.06848779,0.07302171,0.07592802000000001,0.07616945,0.07517819,0.07358574999999999,0.07013752,0.06614468,0.05969786,0.039447129,0.017866376,0.007873970000000001,0.0017179387,4.2837219999999996E-4,1.2517089799999996E-4,2.62791098E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,gas (CC CCS),0.0,0.0,0.0,0.0,0.0,0.0446864,0.114254,0.1895983,0.2613398,0.3310209,0.393815,0.4626384,0.5761635,0.6808968,0.7684735,0.8535612,0.9257604,1.0506507,1.1653763000000001,1.2505004,1.3430047999999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,gas (CC),0.0753821,0.198188,0.0832847,0.1540682,0.22237810000000002,0.2593807,0.3186469,0.38898790000000005,0.45514000000000004,0.5214692,0.583986,0.6388286,0.64628354,0.63716674,0.6128351999999999,0.5446357,0.4489447,0.2894787,0.1591134,0.07979207199999999,0.027863053,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,gas (steam/CT),0.0604314,0.28426,0.552887,0.650478,0.7143120000000001,0.7167115,0.6975731000000001,0.6512280999999999,0.577763,0.4992481,0.42430378,0.34448968999999996,0.19666325999999998,0.10912755,0.05240665,0.025489203999999998,0.011986538,0.0039042617000000003,0.0013338579,4.9491079E-4,1.40080282E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,geothermal,0.0,0.0,0.0,0.00727223,0.01663139,0.02581284,0.038392169999999996,0.050753030000000005,0.06167088999999999,0.06633717,0.06954025,0.07266709999999998,0.07266695,0.07266736,0.07266703,0.07266703000000001,0.07266881,0.07266703,0.07266706,0.07266700999999999,0.07266707,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,hydro,0.0408238,0.0516204,0.0603183,0.0632959,0.0662735,0.0692511,0.0722286,0.0752062,0.0811228,0.0870394,0.092956,0.0988726,0.104789,0.110706,0.116622,0.122539,0.128456,0.134372,0.140289,0.146205,0.146205,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,hydrogen cogen,0.0,0.0,0.0,0.0,2.49196E-4,4.84073E-4,7.30432E-4,0.00101451,0.00135269,0.00181394,0.00235597,0.00286372,0.00361951,0.00466457,0.00578707,0.00687966,0.00797517,0.00970635,0.0117366,0.0142106,0.0156193,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,refined liquids (CC CCS),0.0,0.0,0.0,0.0,0.0,0.0259303,0.04712036,0.06129872,0.07291486999999999,0.08559645,0.09663908,0.11352592,0.14740047,0.16658230000000002,0.18935269999999998,0.2012392,0.2008285,0.20978086,0.19372861,0.15288115,0.10144102,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,refined liquids (CC),0.0,0.0,0.0,0.0313199,0.049295000000000005,0.0497756,0.06061977,0.07047262,0.07683974,0.08447068,0.08995211,0.09178272,0.09776922000000002,0.08830561,0.06997392000000001,0.0498089,0.032877630000000005,0.015227073,0.006381889,0.0025438711,7.3706591E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,refined liquids (steam/CT),0.11773,0.126766,0.200053,0.22075899999999998,0.2193945,0.20977700000000002,0.18815462,0.16289155,0.13836836000000002,0.11768358999999999,0.10034383,0.08431395999999998,0.045524961,0.023718727,0.011666828,0.006447124,0.0035019369999999992,0.0014255427,5.56602E-4,2.1139531000000003E-4,5.563742100000001E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,rooftop_pv,0.0,0.0,0.0,0.00123814,0.00402866,0.00952139,0.0157656,0.0241778,0.0373079,0.0551292,0.0786267,0.118454,0.170856,0.230435,0.30254,0.357593,0.393604,0.416483,0.439465,0.46339,0.492637,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,wind,0.0,0.0028801,0.0082198,0.017658029999999998,0.03100163,0.04663513,0.07426813,0.10893902999999999,0.13957753,0.1757166,0.2126912,0.2611198,0.3529168,0.44442589999999993,0.5638345999999999,0.7092012999999999,0.8567011,1.060364,1.21584,1.3429189999999998,1.48678,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,wind_storage,0.0,0.0,0.0,6.77598E-5,1.687918E-4,2.934028E-4,5.264668E-4,8.364728E-4,0.0011983318,0.001570783,0.0019755980000000003,0.0025201670000000002,0.003593683,0.004721927,0.006254127999999999,0.008199907,0.01025714,0.013229639999999999,0.01579287,0.01801826,0.020680439999999998,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,CSP,0.0,0.0,0.0,1.40677E-6,3.70691E-6,7.98097E-6,1.869887E-5,3.820387E-5,6.974067E-5,1.28952E-4,2.2194976E-4,3.201057E-4,4.869098E-4,7.178767999999999E-4,0.001099949,0.0016386419,0.0022180900000000003,0.003039167,0.003852981,0.0046514090000000004,0.00539394,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,CSP_storage,0.0,0.0,0.0,0.0,0.0,1.42089E-5,8.0259E-5,2.50327E-4,5.419190000000001E-4,0.0011518460000000002,0.002392206,0.0052776271,0.011813467000000001,0.021807699,0.039959707,0.06832478,0.10245582,0.15366579,0.2116797,0.2774073,0.3563276,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,Gen_III,0.0,0.0,0.0,1.19425E-4,1.845149E-4,6.240709E-4,0.0018646109,0.0041117809000000005,0.007150420900000001,0.0123301309,0.0202541609,0.0312218609,0.0505463508,0.0759758508,0.11595084979999999,0.1712047048,0.23127730500000002,0.31257313,0.39977389,0.4928574,0.60144686,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,PV,0.0,0.0,0.0,4.56535E-4,0.0010090049999999999,0.0018031129999999999,0.0034583929999999997,0.006050933,0.009791063,0.015931788,0.023290607999999997,0.026430930000000002,0.03018081,0.03479519,0.042334659999999996,0.0514785,0.06085281000000001,0.07950078000000001,0.09742442,0.1140946,0.12776200000000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,PV_storage,0.0,0.0,0.0,7.60868E-6,1.675574E-5,2.994764E-5,5.731954E-5,1.0050344E-4,1.6325944E-4,2.7023076E-4,4.6941569999999996E-4,9.355988E-4,0.0019898569000000002,0.0036109230000000003,0.006572277,0.011245707,0.016932114999999998,0.02556206,0.03541793,0.046756679999999995,0.06057287,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,biomass (IGCC CCS),0.0,0.0,0.0,0.0,0.0,6.44055E-6,2.379321E-5,5.7675609999999994E-5,1.2375957E-4,2.7467135999999996E-4,5.7075137E-4,0.00119405865,0.0027532532,0.00545787887,0.010999299729999999,0.01983132234,0.030179063120000002,0.045334811600000004,0.061257951899999996,0.0766979173,0.09020707800000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,3.43659E-5,1.1125189999999999E-4,2.383769E-4,4.1445740000000005E-4,7.13759E-4,0.0011499576,0.0016789463,0.0024436526000000004,0.00318883,0.0035684231,0.0033100424,0.0026324740199999996,0.00110754178,3.8755457E-4,1.46818E-4,3.7573825999999994E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,biomass (conv CCS),0.0,0.0,0.0,0.0,0.0,2.20894E-5,8.266640000000001E-5,1.990582E-4,4.273158E-4,9.450198999999999E-4,0.0019499042000000002,0.0041531952,0.009815523500000001,0.0197929083,0.0405814846,0.0710562011,0.1026836246,0.1452000236,0.181866332,0.208115023,0.213717369,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,biomass (conv),0.0,0.0,0.0,1.62852E-4,3.38893E-4,5.048E-4,8.425189999999999E-4,0.0013270819999999998,0.001872401,0.0026649209999999998,0.0036602599999999994,0.004625205,0.0057448901,0.0064203527,0.005656614999999999,0.0037934092000000003,0.0022616005999999997,6.7460256E-4,1.9833773000000002E-4,6.7600586E-5,1.5337787E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,coal (IGCC CCS),0.0,0.0,0.0,0.0,0.0,4.55609E-5,1.4978529999999998E-4,3.3100809999999997E-4,6.868018E-4,0.0014970606000000001,0.0030681531999999997,0.0064392205000000004,0.014726533600000001,0.028186586399999998,0.0525206917,0.0865676782,0.1204060655,0.1609813518,0.19750885499999998,0.22925219000000002,0.26038601299999997,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.00115536,0.0031453699999999998,0.005822610000000001,0.00887437,0.01312094,0.01830662,0.023180020000000003,0.028684900000000003,0.03282077,0.032075552,0.026459476,0.01870054,0.006325321,0.0020778222999999997,7.547705500000001E-4,1.9353887999999994E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,coal (conv pul CCS),0.0,0.0,0.0,0.0,0.0,1.16517E-4,3.61213E-4,7.55653E-4,0.001487865,0.003055694,0.005944263,0.01187706,0.025822552999999998,0.047858813,0.08559355099999999,0.135892379,0.18340852900000001,0.237575194,0.283769538,0.321801494,0.35696371000000005,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,coal (conv pul),0.0215065,0.0200021,0.0180461,0.0540384,0.0682358,0.07725579999999999,0.0891622,0.10179420000000002,0.11228120000000001,0.1244828,0.13744863000000002,0.14577507000000003,0.152455662,0.15279315300000001,0.12613177,0.07324733,0.04191379,0.011595026,0.0034010803,0.00112988404,2.70097454E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,gas (CC CCS),0.0,0.0,0.0,0.0,0.0,0.00321546,0.008706460000000001,0.01579422,0.024368539999999998,0.03710412,0.053831119999999996,0.07725114999999999,0.11991967,0.17751097,0.26892574999999996,0.39543659000000003,0.5252075199999999,0.7000484,0.8722319000000001,1.0372775,1.2162206,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,gas (CC),0.0,8.11349E-4,0.0,0.00335112,0.00608119,0.00812607,0.012263969999999999,0.018884440000000002,0.02718307,0.03994297,0.05722617,0.07587730000000001,0.09805828999999999,0.12106033,0.14024757,0.1508883,0.15098264,0.12702443,0.09177898999999999,0.05761096,0.025432022000000002,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,gas (steam/CT),0.0,0.00338992,0.00619505,0.02003785,0.02590161,0.028163680000000003,0.03060608,0.03249891,0.03321026,0.0336375,0.03377862500000001,0.03283627,0.020648447,0.0152467163,0.011353023,0.007716593,0.005056117999999999,0.0022916369999999996,9.925997999999999E-4,4.2964694E-4,1.3782507999999998E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,geothermal,0.0,0.0,0.0,0.00116079,0.0023951600000000003,0.00403855,0.007121870000000001,0.01142977,0.01672627,0.023485100000000002,0.03242313,0.04327557,0.05847224000000001,0.07071778,0.07071998,0.07072002999999999,0.07072779,0.07072004000000001,0.07071996,0.07072002,0.07071996,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,hydro,0.0549063,0.1228,0.143803,0.152226,0.160649,0.169072,0.177496,0.185919,0.202656,0.219393,0.236131,0.252868,0.269606,0.286343,0.30308,0.319818,0.336555,0.353293,0.37003,0.386767,0.386767,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,hydrogen cogen,0.0,0.0,0.0,0.0,3.4119E-4,6.6651E-4,0.00101406,0.00144379,0.00208751,0.00313578,0.00480516,0.0073273,0.011225,0.0169327,0.0242503,0.032243,0.0411233,0.0530396,0.0674011,0.0849941,0.0975869,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,refined liquids (CC CCS),0.0,0.0,0.0,0.0,0.0,0.0094264,0.02036812,0.03180985,0.04512049,0.06604144,0.09255629000000001,0.13113087,0.19746135999999997,0.27506862,0.39299029,0.51625965,0.5979345,0.6759041,0.6572645,0.5526911999999999,0.38393810000000006,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,refined liquids (CC),0.0,0.0,0.0,0.0140958,0.02015708,0.02231279,0.02784691,0.035476980000000005,0.04371184,0.057944100000000005,0.0764001,0.09377625,0.11323911,0.12588994,0.12316951000000001,0.10444674,0.07927920999999999,0.04132542,0.019003373,0.008125545000000001,0.0024776404000000003,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,refined liquids (steam/CT),0.00267763,0.00666428,0.00933526,0.03528483,0.04210269,0.043540169999999996,0.04431301000000001,0.04429298,0.043648308000000004,0.043174343999999996,0.04292264900000001,0.042208749000000004,0.022255571999999998,0.015048883799999998,0.012063980000000002,0.008891659,0.006326311,0.00338348,0.001585763,6.71955E-4,1.9491072E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,rooftop_pv,0.0,0.0,0.0,3.93262E-4,0.00156887,0.00371834,0.00639601,0.0102261,0.0169263,0.0271689,0.0439137,0.0766503,0.121575,0.179234,0.2602,0.355521,0.469047,0.591528,0.710272,0.812463,0.917177,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,wind,0.0,2.4E-6,3.54999E-5,5.183409E-4,0.0010669949,0.0018687889,0.0035808789,0.0063450489,0.010306218999999998,0.017012838000000002,0.027859084,0.04473449,0.0776511,0.12450992999999999,0.20333405999999998,0.3173256,0.4454037,0.6249045,0.8107068,1.0059438,1.216344,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,wind_storage,0.0,0.0,0.0,2.56799E-6,5.52499E-6,9.92534E-6,1.949828E-5,3.538828E-5,5.889158E-5,9.960779E-5,1.6781199000000003E-4,2.7780464000000003E-4,5.015207E-4,8.349557000000001E-4,0.0014299923999999999,0.0023423452,0.003420444,0.005022241,0.006792592,0.008750117,0.011020197,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,CSP,0.0,0.0,0.0,2.2326E-6,8.49224E-6,2.618984E-5,7.100574E-5,1.5221814E-4,2.6290314E-4,3.9256854000000005E-4,5.596369E-4,8.122863000000001E-4,0.0012094344,0.0017607439999999999,0.0026898190000000004,0.004091961,0.005831072999999999,0.008435936,0.011204122,0.01382723,0.016406669999999998,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,CSP_storage,0.0,0.0,0.0,0.0,0.0,5.88483E-5,3.358163E-4,0.0010705473,0.0024514773,0.005646247300000001,0.0117122673,0.022209719,0.040606051000000004,0.06871932,0.11941668999999999,0.19932122000000002,0.30511520000000003,0.48315589999999997,0.6995355999999999,0.9363885999999999,1.2314922999999998,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,Gen_III,0.0,0.0,0.0,1.603E-4,3.10847E-4,0.001869847,0.006346977,0.014551497,0.024899287,0.040039687,0.062330686999999996,0.094076987,0.140892077,0.203034777,0.300411357,0.437555547,0.60224969,0.8478571800000001,1.12276587,1.40463,1.7404368,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,PV,0.0,1.44E-5,1.08E-5,6.1423E-4,0.00186638,0.00460409,0.01034815,0.01895302,0.02682006,0.03131498,0.03512579,0.03952513,0.04470317,0.0510862,0.06674006,0.09531761,0.13148775,0.18379040000000002,0.23696429999999996,0.28503519999999993,0.3280925,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,PV_storage,0.0,0.0,0.0,1.00569E-5,3.07895E-5,7.629349999999999E-5,1.718875E-4,3.272685E-4,5.747945E-4,0.0010645866,0.001892417,0.003300413,0.005752818999999999,0.009531347999999999,0.016395622,0.027332473000000003,0.04200981,0.06699970999999999,0.09758871,0.1315698,0.17447069999999998,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,biomass (IGCC CCS),0.0,0.0,0.0,0.0,0.0,4.95649E-5,1.595665E-4,3.585615E-4,6.879091E-4,0.0012876492000000002,0.0023522978,0.0045477035999999995,0.0089448184,0.0161441518,0.030473351000000003,0.053129427300000004,0.0816235037,0.126643397,0.17453576,0.218009151,0.252195126,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,2.69462E-4,7.81849E-4,0.001526258,0.002393012,0.0035668690000000003,0.005118273,0.006932473,0.008972935000000001,0.010991153,0.011471577,0.0098026933,0.0073848735999999995,0.0029887216,0.0010476279,3.9262116E-4,1.03119837E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,biomass (conv CCS),0.0,0.0,0.0,0.0,0.0,1.68662E-4,5.41233E-4,0.001219304,0.002347435,0.004387698000000001,0.007961761000000001,0.015621867000000001,0.031279156,0.056409525,0.10645606699999999,0.17836691300000002,0.25762283399999997,0.371157378,0.468273376,0.530880366,0.525501644,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,biomass (conv),1.692E-4,6.11997E-4,8.28003E-4,0.001312679,0.002510014,0.003783192,0.005940828,0.008635106,0.0110861969,0.0138957076,0.017032653000000002,0.0196302993,0.021486302529999998,0.022166721469999998,0.017540762999999997,0.010649992999999998,0.0061028755,0.0018279625999999998,5.398749E-4,1.7968489E-4,4.10244754E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,coal (IGCC CCS),0.0,0.0,0.0,0.0,0.0,7.39863E-6,2.4577250000000003E-5,5.832912E-5,1.2311833E-4,2.5653716000000005E-4,5.2005854E-4,0.00114045047,0.00250971274,0.00479963336,0.0093198681,0.01641674777,0.02499446091,0.037597730999999995,0.050948358,0.0640878966,0.07948082020000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,coal (IGCC),0.0,0.0,0.0,0.0,0.0,1.92965E-4,5.46414E-4,0.001049075,0.0016126760000000002,0.0023272719999999996,0.0032255879999999997,0.004154827,0.00508715,0.005890237,0.005635145,0.0044666308,0.003068186,0.0010251791,3.4561636E-4,1.2880968E-4,3.3929258E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,coal (conv pul CCS),0.0,0.0,0.0,0.0,0.0,1.8819E-5,5.86409E-5,1.320108E-4,2.6506679999999995E-4,5.224277E-4,0.0010048361,0.0020903329999999998,0.004376732600000001,0.0080522027,0.014900683500000001,0.0251227361,0.0368432816,0.053197884300000005,0.0696812494,0.0853885438,0.10319567799999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,coal (conv pul),0.00130874,0.00250043,0.003599,0.005529259999999999,0.0069486,0.00842279,0.01051347,0.012876229999999999,0.014816659999999999,0.01683769,0.019056790999999997,0.020681579000000002,0.021715001,0.021877276999999997,0.01735479,0.010763500000000002,0.0060856650000000005,0.0016585977000000002,4.9628296E-4,1.6870372299999996E-4,4.1500822E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,gas (CC CCS),0.0,0.0,0.0,0.0,0.0,0.0183688,0.049447000000000005,0.0908677,0.1369141,0.19480389999999997,0.266841,0.3683399,0.519509,0.7128941,1.0018311,1.3956768,1.8281261999999998,2.4638789,3.105413,3.687596,4.295382,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,gas (CC),0.00907155,0.0219692,8.15672E-4,0.008430679,0.018833211,0.030309969,0.053902283,0.09112419399999999,0.134285789,0.190996506,0.26464898000000003,0.34549484500000005,0.42936092859999997,0.5139166465,0.5736387000000001,0.5935054000000001,0.5720033999999999,0.43725980000000003,0.2820483,0.16013796999999996,0.06431811,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,gas (steam/CT),0.0175865,0.0425327,0.0790683,0.10230909999999999,0.1204774,0.1291472,0.1379895,0.1422269,0.1379695,0.13097567000000002,0.12268128,0.10899391000000001,0.07885595,0.05796373,0.03714357,0.02287941,0.01394598,0.006022235999999999,0.0025572846,0.001096106,3.5035861999999996E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,geothermal,0.0,0.0,0.0,0.00157438,0.00444611,0.010134839999999999,0.02046462,0.03424598,0.0493625,0.06661767,0.0867944,0.1101704,0.13700980000000001,0.144519,0.1445194,0.144519,0.1445206,0.144519,0.14451908,0.14451898,0.14451904,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,hydro,0.0814254,0.10931,0.113792,0.139788,0.165784,0.191781,0.217777,0.243773,0.295429,0.347085,0.398742,0.450398,0.502054,0.55371,0.605366,0.657022,0.708678,0.760334,0.81199,0.863646,0.863646,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,hydrogen cogen,0.0,0.0,0.0,0.0,8.78668E-4,0.00179026,0.00293481,0.00456716,0.00701796,0.0110799,0.0172104,0.0254273,0.0395298,0.0606221,0.0919404,0.132516,0.180741,0.264636,0.375561,0.513257,0.641614,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,refined liquids (CC CCS),0.0,0.0,0.0,0.0,0.0,0.0191939,0.04029318,0.0624383,0.08373354999999999,0.11330061999999999,0.15053088,0.20761251000000003,0.2912834,0.38539994,0.5327175,0.6829059,0.7898213,0.9274275,0.9326661,0.8033054,0.5853360000000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,refined liquids (CC),0.0,0.0,0.0,0.0108229,0.02080146,0.026517769999999996,0.038875759999999995,0.05490955,0.06906826,0.08975214000000001,0.11573258,0.13833027,0.16026478,0.17593881,0.16668782,0.13998833000000002,0.10800277999999999,0.05852511,0.02746577,0.011790982,0.0038173653,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,refined liquids (steam/CT),0.0179558,0.0344399,0.0455212,0.0599224,0.06694629999999999,0.0677921,0.06625887999999999,0.06299169,0.058296249999999994,0.05460914999999999,0.05152267,0.04752151,0.033142149999999995,0.024361624999999998,0.01786446,0.012419102,0.008432418,0.004309343,0.0020060038,8.502433000000001E-4,2.5286817000000003E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,rooftop_pv,0.0,0.0,0.0,0.00113548,0.00363271,0.0083669,0.0143574,0.0234657,0.0394282,0.0647827,0.104228,0.175353,0.281483,0.430689,0.64197,0.874337,1.11684,1.40432,1.70688,2.02941,2.45251,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,wind,0.0,1.17E-5,1.769E-4,0.00137424,0.0037175800000000003,0.00889238,0.01991988,0.037589880000000006,0.06085628,0.09529844000000001,0.14648360000000002,0.2252534,0.3498569,0.5250089,0.8158125999999999,1.2374491,1.7508536000000001,2.522734,3.3557989999999998,4.171037,5.0430399999999995,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,wind_storage,0.0,0.0,0.0,6.55481E-6,1.977501E-5,5.015351E-5,1.1769541E-4,2.3143441000000002E-4,3.8864841E-4,6.309416000000001E-4,0.0010116984,0.0016332279,0.0026781260000000003,0.0042436769999999995,0.007046443,0.011446225,0.017226748,0.02673714,0.0380302,0.05016911,0.06506693,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,CSP,0.0,0.0,0.0,8.33939E-6,2.3050189999999998E-5,4.4474889999999996E-5,1.0074878999999999E-4,1.8386929E-4,3.0546929E-4,4.397709E-4,5.584491000000001E-4,6.734604E-4,8.545334999999999E-4,0.0010072780000000001,0.001193789,0.001400094,0.0016119930000000001,0.001869367,0.00202174,0.002120678,0.002219881,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,CSP_storage,0.0,0.0,0.0,0.0,0.0,7.12273E-5,4.181093E-4,0.0011446373,0.0023016673,0.0040514473,0.0070335773,0.011517860000000001,0.020332077999999996,0.029395499999999998,0.04216157,0.05742329,0.07255326000000001,0.09094334999999999,0.10671315,0.12042009999999999,0.1394376,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,Gen_III,0.0,0.0,0.0,0.0055657,0.00885407,0.01182857,0.01756851,0.02442712,0.033055219999999996,0.043026049999999996,0.05484259999999999,0.06810978,0.08987113000000001,0.10989049,0.13468560999999998,0.15592474,0.17812877,0.2039706,0.22677333000000002,0.24473096,0.26804273999999995,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,Gen_II_LWR,0.0262116,0.0247428,0.0258156,0.0238573,0.0227383,0.0211062,0.0188727,0.0160691,0.0129078,0.00974642,0.00694286,0.00470941,0.00307728,0.00195831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,PV,0.0,0.0,0.0,0.00100765,0.00232322,0.00380531,0.00704053,0.01114532,0.01638531,0.02031328,0.02196286,0.022773989999999997,0.02316091,0.02254205,0.02170597,0.0216503,0.02346966,0.02647962,0.02800784,0.02888025,0.02961329,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,PV_storage,0.0,0.0,0.0,1.67929E-5,3.85737E-5,6.31944E-5,1.167149E-4,1.853996E-4,2.78111E-4,3.837011E-4,5.484063E-4,8.041866E-4,0.0013094801,0.0018375994,0.0025948520000000004,0.003519079,0.004456403,0.005614212,0.006626588000000001,0.007528684,0.00879999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,biomass (IGCC CCS),0.0,0.0,0.0,0.0,0.0,7.47309E-5,2.5290159999999997E-4,5.082092E-4,9.089649999999999E-4,0.0014545955,0.0021994269,0.0033650621,0.005917465199999999,0.0088685248,0.0135276267,0.0192441548,0.025161654800000002,0.032389827,0.039649966999999994,0.045698438999999993,0.05239142,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,3.83637E-4,0.0010900789999999999,0.001880096,0.002746268,0.003599899,0.004444831,0.005078734,0.005756387,0.005698221000000001,0.004307424,0.0023747028999999997,0.0011656441,2.8249503999999996E-4,7.075610699999999E-5,2.10832217E-5,4.34240065E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,biomass (conv CCS),0.0,0.0,0.0,0.0,0.0,2.60531E-4,8.98556E-4,0.0018140320000000001,0.0032626779999999998,0.0052078079999999995,0.00781753,0.012076656,0.021752291,0.033374335,0.053543302,0.07882862,0.104933307,0.13949168900000003,0.172902309,0.19719582999999996,0.21620750999999996,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,biomass (conv),3.85201E-4,0.0046368,0.007902,0.01019953,0.012758259999999999,0.014192260000000002,0.01652559,0.01822783,0.01916531,0.01952535,0.019532010000000002,0.018151043999999998,0.016309905,0.012971739000000003,0.007002808,0.0026592168999999997,0.0010355058999999998,2.1304323999999996E-4,4.7979202600000005E-5,1.300458366E-5,2.3861935879999997E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,coal (IGCC CCS),0.0,0.0,0.0,0.0,0.0,1.01831E-5,3.85102E-5,8.48368E-5,1.704415E-4,3.040228E-4,5.082933E-4,8.710254E-4,0.0017695513,0.0028937067,0.0047457517,0.007139766,0.0096722544,0.012798531900000002,0.0161477303,0.0191694478,0.023337149,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,coal (IGCC),0.0,0.0,0.0,0.0,0.0,2.43638E-4,7.13474E-4,0.001261182,0.001859516,0.0024422539999999996,0.0030127640000000002,0.0034197149999999994,0.0037857919999999996,0.0037451970000000005,0.0026567267,0.0014032983999999998,6.484280000000002E-4,1.3548987E-4,3.48833995E-5,1.100568582E-5,2.4507620900000002E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,coal (conv pul CCS),0.0,0.0,0.0,0.0,0.0,2.63376E-5,9.44715E-5,1.988089E-4,3.7997240000000004E-4,6.442633000000001E-4,0.001026247,0.0016724397000000002,0.0032094318,0.0050939517,0.0081021291,0.011921328,0.015891757,0.020722452299999996,0.025867332000000003,0.030450535,0.036732085000000005,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,coal (conv pul),0.0016128,0.00567,0.00806399,0.01591662,0.01929105,0.02089973,0.023328429999999997,0.025365150000000003,0.02666355,0.027385139999999995,0.02787698,0.027053127,0.025461598000000002,0.021976347499999997,0.012205855,0.0043611474,0.0016408378000000003,3.04238898E-4,7.025447700000001E-5,1.985971738E-5,3.963285135E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,gas (CC CCS),0.0,0.0,0.0,0.0,0.0,0.0169463,0.0498338,0.0870858,0.1289125,0.1706674,0.21267840000000002,0.2595826,0.3404962,0.4175165,0.5072287000000001,0.5989736999999999,0.6837726999999999,0.7851889999999999,0.8856207,0.961178,1.0599598000000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,gas (CC),0.0177817,0.143583,0.0614012,0.1193438,0.15457959999999998,0.16923670000000002,0.19652350000000002,0.2272015,0.25941970000000003,0.29095360000000003,0.32366009999999995,0.34893019999999997,0.32423167999999997,0.30667205,0.2783559,0.22420690000000001,0.16337719999999997,0.08012248999999999,0.034590748000000004,0.0143598473,0.0042541928599999996,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,gas (steam/CT),0.053761,0.0556123,0.163188,0.2196571,0.2404015,0.2418989,0.23957050000000002,0.2275023,0.2053014,0.17909322,0.15332832999999996,0.12127053999999998,0.06205704,0.03374502,0.015625263,0.0068075079999999994,0.0029270419,7.996795E-4,2.4272597999999996E-4,8.0347877E-5,2.0730619600000006E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,geothermal,0.0,0.0,0.0,0.00421802,0.008935950000000002,0.013960779999999999,0.02379359,0.03505246,0.047675010000000004,0.05695391,0.0669299,0.07821513,0.0938716,0.1055149,0.1197175,0.1334179,0.14000100000000001,0.14000110000000002,0.14000100000000001,0.1400009,0.1400009,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,hydro,0.0643536,0.122414,0.120913,0.123868,0.126823,0.129777,0.132732,0.135687,0.140903,0.14612,0.151337,0.156554,0.16177,0.166987,0.172204,0.177421,0.182637,0.187854,0.193071,0.198288,0.198288,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,hydrogen cogen,0.0,0.0,0.0,0.0,1.26538E-4,2.36774E-4,3.50559E-4,4.77795E-4,6.35437E-4,8.40566E-4,0.00108874,0.0012965,0.00162829,0.00203505,0.00256857,0.00310926,0.00372046,0.0047451,0.00543438,0.00589749,0.00553676,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,refined liquids (CC CCS),0.0,0.0,0.0,0.0,0.0,0.00940911,0.02046433,0.02779293,0.0360641,0.04316473,0.050763800000000005,0.06083271999999999,0.08367896,0.09847144000000001,0.12711608,0.15200666000000002,0.17419364,0.22049634,0.23202963000000001,0.20973831999999998,0.15285706,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,refined liquids (CC),0.0,0.0,0.0,0.0139803,0.01863286,0.018029780000000002,0.02273752,0.02688803,0.030830789999999997,0.03428899,0.03774134,0.03749875,0.039181129,0.032992704,0.02504601,0.016269599000000003,0.009967852000000001,0.004296332999999999,0.0015848966000000001,5.7518098E-4,1.51663159E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,refined liquids (steam/CT),0.0178164,0.0206892,0.0597456,0.0734711,0.07379379999999999,0.07071668,0.06441734,0.05647577,0.04827709000000001,0.04097232,0.034965995,0.028571768,0.014089080999999998,0.007368837,0.003899424,0.0021011421,0.0011275791000000001,4.553874999999999E-4,1.5707883E-4,5.3294494999999996E-5,1.25922419E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,rooftop_pv,0.0,0.0,0.0,1.36609E-4,4.50368E-4,0.00108392,0.00182583,0.00282096,0.00441052,0.00646497,0.00930414,0.0135602,0.0187928,0.0240927,0.0303074,0.0352097,0.0397674,0.0435144,0.0466928,0.0497973,0.0533472,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,wind,0.0,2.7E-4,9.0E-5,0.00397049,0.008985130000000001,0.015099520000000002,0.029509720000000003,0.04934212,0.07614042,0.10547203,0.14186449,0.1887454,0.27297879999999997,0.3544354,0.4647981,0.593434,0.7197709,0.8701796,0.985786,1.0818310000000002,1.210378,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,wind_storage,0.0,0.0,0.0,2.02534E-5,4.6658E-5,7.93036E-5,1.5745899999999998E-4,2.67514E-4,4.19382E-4,5.890066E-4,8.046169999999999E-4,0.0010876724,0.001608865,0.002126041,0.0028490300000000002,0.003713842,0.004582607000000001,0.0056471360000000005,0.006523188,0.007265937,0.00827671,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,CSP,0.0,3.60003E-6,1.44E-5,1.880598E-5,2.339735E-5,3.819645E-5,8.045915000000001E-5,1.4899155E-4,2.4637155000000003E-4,3.3325407E-4,4.189952E-4,5.246701E-4,6.458683999999999E-4,7.501929999999999E-4,9.29446E-4,0.0010896285,0.001172008,0.001246387,0.001255423,0.001234434,0.001158721,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,CSP_storage,0.0,0.0,0.0,0.0,0.0,4.92167E-5,3.106427E-4,9.481857E-4,0.0025345857,0.0051246757,0.0082953657,0.012810939,0.019162003000000004,0.02596484,0.03808884,0.04820144999999999,0.054314060000000004,0.061270870000000005,0.06578108,0.0689888,0.07236619999999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,Gen_III,0.0,0.0,0.0,0.0,0.0,3.73856E-4,0.001673556,0.0038587960000000003,0.009697976,0.017590006,0.027029116000000002,0.038447775000000003,0.052351545,0.065912015,0.087714074,0.10569730299999999,0.11753718099999999,0.13038089,0.14080805000000002,0.14908281,0.15883586,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,PV,0.0,2.80802E-4,9.82801E-4,0.002537181,0.003735941,0.006723771,0.013784071,0.022899711,0.03069139,0.03287268,0.034823639999999996,0.03571219,0.03360266,0.029537229999999998,0.02885899,0.031913359999999995,0.033365250000000006,0.03448892,0.03384184,0.032492919999999995,0.029430229999999998,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,PV_storage,0.0,0.0,0.0,2.59097E-5,4.57627E-5,9.54408E-5,2.1322479999999998E-4,3.892258E-4,7.604167999999999E-4,0.0012635001,0.0018226340999999999,0.0025934169999999998,0.0036534529999999996,0.004801912,0.006874741,0.008627848,0.009730841,0.011019149999999998,0.011888199999999998,0.01254721,0.01331643,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,biomass (IGCC CCS),0.0,0.0,0.0,0.0,0.0,3.33629E-5,1.3116849999999998E-4,3.03344E-4,6.779568E-4,0.0011739694,0.0017983529,0.0029062490000000005,0.0047662659,0.0071199041,0.012130030600000001,0.0169804031,0.020557226799999998,0.024993711600000003,0.029052861,0.032546012,0.036989733,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,1.7077E-4,5.53401E-4,0.001077106,0.001889908,0.002654918,0.0033401750000000003,0.003960342,0.004392672,0.0043886311,0.0034636857999999996,0.0019169514,9.273415299999999E-4,2.3060169000000002E-4,5.8552229E-5,1.75600089E-5,3.4923319899999994E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,biomass (conv CCS),0.0,0.0,0.0,0.0,0.0,1.16456E-4,4.66586E-4,0.0010881474,0.002461071,0.004255787,0.00648927,0.010636471,0.017780356,0.027068098999999998,0.04881703,0.070353873,0.086208317,0.107547697,0.126374765,0.14049314000000002,0.15292074000000003,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,biomass (conv),0.0,0.00150481,0.0014688,0.0011457928,0.0013442341,0.002144769,0.003799783,0.0056413316000000005,0.0079657892,0.009581037399999999,0.010614901699999998,0.01085870956,0.01014369037,0.008427377690000001,0.004904959499999999,0.0019813381,7.981279E-4,1.7087608600000004E-4,3.9718396700000006E-5,1.09831612E-5,1.936250646E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,biomass cogen,0.00399456,0.0112041,0.0107029,0.0119857,0.0183738,0.0232749,0.0263341,0.0281509,0.0295497,0.0298597,0.0290754,0.027116,0.0233377,0.0193465,0.0133508,0.00836005,0.00550363,0.00276167,0.00146347,8.45104E-4,3.93443E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,coal (IGCC CCS),0.0,0.0,0.0,0.0,0.0,1.81107E-4,6.983569999999999E-4,0.0015830710000000001,0.003552247,0.006201675,0.009527156,0.015509445,0.025461742,0.037430039,0.061087684,0.082505749,0.096805542,0.112457581,0.125659757,0.13617015,0.15035465000000003,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.004314,0.01278841,0.02300571,0.03627724,0.04722355,0.0557826,0.06164733,0.06414046000000001,0.061312320000000003,0.04253448,0.021929802,0.009947489,0.0020836291,5.31849399E-4,1.630822232E-4,3.264048515E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,coal (conv pul CCS),0.0,0.0,0.0,0.0,0.0,4.68817E-4,0.0017155159999999998,0.003715269,0.007904379,0.013183173,0.019458143,0.030231933,0.047350472000000005,0.067429657,0.105892772,0.140097665,0.16253887900000002,0.18659763999999998,0.20651793,0.22189096000000003,0.24211803,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,coal (conv pul),0.439003,0.672518,0.655517,0.722737,0.7249512,0.7210772,0.7210953000000001,0.7049229,0.6779390000000001,0.6315929,0.580501,0.5158311999999999,0.44401510000000005,0.3617156899999999,0.19085243,0.070277812,0.027839621000000002,0.00521237928,0.001193924497,3.262405858E-4,5.678797561899999E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,coal cogen,7.08817E-4,0.00236353,0.0024372,0.00296462,0.00270728,0.00299262,0.00271803,0.00245313,0.00200625,0.00160913,0.00128757,8.06761E-4,5.1371E-4,3.39356E-4,1.65413E-4,9.1392E-5,5.53549E-5,2.43668E-5,1.28059E-5,7.59648E-6,3.7668E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,gas (CC CCS),0.0,0.0,0.0,0.0,0.0,0.00563817,0.0170321,0.0308313,0.05003075,0.06706373,0.08170511,0.09919789,0.12098880999999999,0.14282679,0.1779189,0.2039702,0.21639059999999996,0.22948839999999998,0.2419888,0.2531309,0.27408509999999997,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,gas (CC),0.0392458,0.0623957,0.0181282,0.02493885,0.02776199,0.030812839999999998,0.03783679,0.0473051,0.0610864,0.07331939,0.08396351,0.09327907000000002,0.09371851,0.09467872999999999,0.08836396999999999,0.0722099,0.052779990000000006,0.025675052000000004,0.0109940073,0.004544911099999999,0.0012726419899999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,gas (steam/CT),0.0328841,0.0559444,0.143944,0.1262849,0.12430605,0.12219395,0.11473309,0.1027391,0.08748584000000001,0.07071155,0.05534084999999999,0.03987049700000001,0.020663614,0.012294925999999998,0.005080062,0.0023026437000000003,0.0010034182000000001,2.6405270000000005E-4,7.6689453E-5,2.5039510300000002E-5,6.03734718E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,gas cogen,6.22289E-4,0.00413685,0.00788556,0.00914561,0.0112189,0.0131164,0.0131792,0.0128656,0.0123077,0.011327,0.0101385,0.00837669,0.00678392,0.00542356,0.00384159,0.00280612,0.00210129,0.00128622,8.44079E-4,5.74974E-4,3.31112E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,geothermal,0.00746642,0.0111493,0.0209844,0.02741602,0.030772900000000002,0.03759423,0.05097006,0.06702097,0.07050565,0.08673391,0.103947,0.12132840000000002,0.13745780000000002,0.1503884,0.17065,0.1845437,0.1892004,0.19442539999999997,0.19298430000000003,0.19063929999999998,0.1880152,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,hydro,0.134392,0.138895,0.133859,0.139576,0.145294,0.151011,0.156728,0.162446,0.169607,0.176768,0.18393,0.191091,0.198253,0.205414,0.212575,0.219737,0.226898,0.23406,0.241221,0.248382,0.248382,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,hydrogen cogen,0.0,0.0,0.0,0.0,1.50052E-4,2.80651E-4,4.36918E-4,6.25915E-4,8.76527E-4,0.00120725,0.00158389,0.00191021,0.002319,0.0027913,0.00346103,0.00409247,0.00472683,0.0059211,0.00655558,0.00686896,0.00607176,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,refined liquids (CC CCS),0.0,0.0,0.0,0.0,0.0,0.00100288,0.002268637,0.003291732,0.005167365,0.006304818,0.007373617,0.00923386,0.011559179,0.013521484,0.019409111,0.022809311,0.02458287,0.03071363,0.031234779999999997,0.02899109,0.022042075,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,refined liquids (CC),0.0,0.0,0.0,9.96559E-4,8.89818E-4,0.0010751649999999999,0.0017638329999999998,0.002483431,0.003617976,0.004281528,0.0047608699999999995,0.005026765000000001,0.0049822433,0.0044525834,0.003826713,0.002358294,0.0013545893000000001,6.073565E-4,2.2255542000000004E-4,8.4199717E-5,2.21682928E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,refined liquids (steam/CT),0.012816,0.0102421,0.0113868,0.0055818199999999995,0.005497262,0.005586208,0.005188022,0.004637306999999999,0.004148179,0.003590032,0.003074522,0.0024978405,0.0013565250000000001,9.001654999999998E-4,5.267761000000001E-4,2.9761480000000003E-4,1.6401066E-4,6.624963E-5,2.2376926000000004E-5,7.841219E-6,1.80270044E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,rooftop_pv,0.0,0.0,0.0,1.8417E-4,7.66424E-4,0.00191489,0.00357019,0.00605642,0.0102612,0.0158926,0.0230456,0.0328102,0.0427845,0.0516942,0.0584205,0.0600188,0.0620308,0.0643526,0.0680208,0.0728167,0.0779051,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,wind,0.0,0.00539644,0.0231552,0.030307630000000002,0.034497940000000005,0.044068710000000004,0.06585771,0.09617931,0.12209791,0.16703118,0.21661637,0.27851360000000003,0.35376640000000004,0.42734079999999997,0.557078,0.6635973000000001,0.7227627999999999,0.7857238,0.814793,0.829256,0.8344419999999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,wind_storage,0.0,0.0,0.0,4.19599E-5,6.67322E-5,1.244469E-4,2.591609E-4,4.530189E-4,7.735109E-4,0.001080093,0.0014265277000000002,0.0018760259999999998,0.002445257,0.003021752,0.00407856,0.004981988,0.00551269,0.006098287000000001,0.006426502,0.006625407,0.006768637,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,CSP,0.0,0.0,0.0,2.8642E-5,9.26742E-5,2.1894219999999998E-4,4.451762E-4,7.470712E-4,0.0012052292,0.0018083501999999999,0.002689195,0.0038027670000000003,0.005678053,0.0069294579999999995,0.00838613,0.009909767,0.01106294,0.012201769999999999,0.01239716,0.01286136,0.013569490000000002,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,CSP_storage,0.0,0.0,0.0,0.0,0.0,4.19759E-4,0.001813909,0.004445739,0.008674549,0.014912459,0.024916959,0.037938,0.07001225,0.12173352,0.21756971,0.3398608,0.46635530000000003,0.6246575,0.7720921000000001,0.891611,1.053312,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,Gen_III,0.0,0.0,0.0,6.20903E-4,0.003755863,0.008376162999999999,0.015319903,0.023588302999999998,0.034424293,0.047973193,0.06686579299999999,0.08824869199999999,0.127848072,0.171947562,0.237648431,0.311242,0.37867481,0.45393568,0.52431499,0.5850701999999999,0.6705481,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,Gen_II_LWR,0.00805313,0.0354779,0.0522827,0.0483166,0.0460504,0.042745,0.0382217,0.0325438,0.0261413,0.0197388,0.014061,0.00953768,0.00623224,0.00396606,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,PV,0.0,0.0,0.0,0.00105905,0.0028114,0.00548444,0.00946569,0.01403931,0.02024609,0.027209780000000003,0.03680403,0.04841889,0.06425344,0.07032502,0.07558654,0.0801303,0.0809927,0.08037430000000001,0.07371230000000001,0.0746129,0.07798139999999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,PV_storage,0.0,0.0,0.0,1.76498E-5,4.66621E-5,9.10659E-5,1.568947E-4,2.330388E-4,3.367388E-4,4.52611E-4,6.150647E-4,8.238499000000001E-4,0.0013828091,0.002320705,0.004086495,0.006373022999999999,0.008773557,0.011814828,0.014679169999999998,0.01705959,0.02034903,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,biomass (IGCC CCS),0.0,0.0,0.0,0.0,0.0,0.00134206,0.00343815,0.00602764,0.00982005,0.014812140000000001,0.021951110000000003,0.03187985,0.05346701,0.07997432,0.12368382,0.17193055999999998,0.21425942,0.25642787,0.28938524,0.31045997,0.32663234999999996,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,0.00689456,0.01521071,0.02333602,0.03181972,0.040085499999999996,0.048881789999999994,0.055185910000000005,0.06235061,0.06412157,0.05375230999999999,0.033636070000000004,0.017708748,0.0043574134,0.0010615439,3.0567547999999997E-4,5.99165437E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,biomass (conv CCS),0.0,0.0,0.0,0.0,0.0,0.00467731,0.01218775,0.0215884,0.03544055,0.05339663,0.07860199,0.11495940000000002,0.19676555,0.30114536000000003,0.49015587000000005,0.70327311,0.88953996,1.09146485,1.24340483,1.3275076,1.3637196999999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,biomass (conv),0.0138923,0.0489274,0.113382,0.168815,0.20503169999999998,0.22835119999999998,0.2543548,0.2705346,0.278646,0.27998639999999997,0.278461,0.2624788,0.2404848,0.20136849,0.11596769000000001,0.04613278,0.017674975,0.0034585062999999997,7.434112579999999E-4,1.940458015E-4,3.448484156E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,coal (IGCC CCS),0.0,0.0,0.0,0.0,0.0,1.23831E-4,3.67754E-4,7.357240000000001E-4,0.001421494,0.002536584,0.004456722,0.0077199750000000004,0.016277016,0.028474673,0.051109827,0.07960548199999999,0.107577796,0.139556764,0.17047204100000002,0.196859054,0.23321113,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.00296596,0.00701014,0.01134698,0.01611556,0.02096144,0.02634501,0.030312600000000002,0.03472323,0.03649972,0.03055405,0.019366871,0.009986151,0.002190925,5.631381299999999E-4,1.774819426E-4,4.036098254E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,coal (conv pul CCS),0.0,0.0,0.0,0.0,0.0,3.20207E-4,9.069550000000001E-4,0.001736201,0.0031891050000000002,0.005398745,0.008995575,0.014818102,0.029456561000000003,0.049904483,0.086665124,0.13210903,0.175936441,0.225293146,0.272745154,0.3127389,0.36749082,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,coal (conv pul),0.0171142,0.0386711,0.0408167,0.0951128,0.125432,0.148981,0.1728957,0.1921611,0.2071272,0.218475,0.2291036,0.23094073000000004,0.22872486,0.21368466,0.14602685999999998,0.063638543,0.025878077,0.004780035700000001,0.0010930502859999999,3.103355822E-4,6.379755411E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,gas (CC CCS),0.0,0.0,0.0,0.0,0.0,0.00718001,0.0191354,0.03434359,0.056145930000000004,0.08488151000000001,0.12561335,0.17994308999999997,0.29841891,0.44676827,0.6964976999999999,1.0029668,1.300187,1.6430666,1.9630359,2.2148544,2.546929,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,gas (CC),8.08283E-4,0.0445118,0.0777075,0.2661384,0.3907621,0.5078797,0.6353489999999999,0.7466046000000001,0.8476738,0.9360652,1.0259614,1.0891351,0.9862689199999999,0.92021865,0.8102212,0.6524471,0.48911229999999994,0.26281315000000005,0.12116509000000002,0.05176477399999999,0.016258321099999997,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,gas (steam/CT),3.65337E-4,0.0232112,0.0536022,0.05694069,0.05970923,0.06157545,0.06247065,0.06112133,0.058017040000000006,0.05396052999999999,0.05020200000000001,0.04439545,0.03426888,0.026405090000000003,0.01596249,0.008951581,0.004770385,0.001573155,5.515960000000001E-4,2.0617134400000004E-4,6.0563605000000004E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,geothermal,0.0,0.0,0.0,0.00407581,0.010135700000000001,0.01982877,0.03451146,0.05158043,0.07279923,0.09381439999999999,0.12014355999999998,0.1473658,0.1965766,0.24551700000000004,0.3106062,0.3721037,0.4164922,0.42690200000000006,0.426902,0.426902,0.4269021,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,hydro,0.744149,1.21485,1.45184,1.4758,1.49977,1.52373,1.5477,1.57166,1.61397,1.65628,1.69859,1.7409,1.78321,1.82552,1.86783,1.91014,1.95245,1.99476,2.03707,2.07938,2.07938,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,hydrogen cogen,0.0,0.0,0.0,0.0,9.11482E-4,0.00163983,0.00251761,0.0035496,0.00494958,0.00676961,0.00890277,0.0107497,0.0137019,0.0171333,0.0213172,0.0253685,0.029571,0.0360138,0.0391033,0.0402867,0.0358994,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,refined liquids (CC CCS),0.0,0.0,0.0,0.0,0.0,0.037041,0.0659127,0.0901353,0.1220942,0.1546524,0.1943342,0.23720809999999998,0.3304143,0.41673489999999996,0.5642384,0.706552,0.8258724000000001,1.0170103,1.0707335,0.9861358,0.7588676,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,refined liquids (CC),0.0,0.0,0.0,0.0297143,0.0504633,0.0570376,0.07208540000000001,0.08704590000000001,0.10429821,0.12241711,0.1450072,0.15192415,0.16693663,0.15681717,0.12982359000000002,0.08910192,0.056344429999999994,0.02503984,0.009514166000000001,0.0035241856,9.479602100000001E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,refined liquids (steam/CT),0.017773,0.0420406,0.0578339,0.1102707,0.1325596,0.13382680000000002,0.13271929999999998,0.12748599,0.12084946,0.1132892,0.10571659,0.0947599,0.053321570000000006,0.02963228,0.017512086,0.010083473,0.005820844999999999,0.0025437686,9.454508000000001E-4,3.3407307E-4,8.3608083E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,rooftop_pv,0.0,0.0,0.0,9.74293E-4,0.0034469,0.00765483,0.0136435,0.0220796,0.0364078,0.055085,0.0799823,0.115885,0.160684,0.2036,0.247805,0.285527,0.323219,0.350719,0.377827,0.406046,0.448236,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,wind,0.0,3.34799E-4,0.00783718,0.019400979999999998,0.030857879999999997,0.04662168,0.06955878,0.09629228000000001,0.1232194,0.1551109,0.2037254,0.2617005,0.38554239999999995,0.5321269,0.7645915999999999,1.0344243,1.2861769,1.5773540000000001,1.7956720000000002,1.959999,2.1749780000000003,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,wind_storage,0.0,0.0,0.0,6.48025E-5,1.3029E-4,2.229329E-4,3.613599E-4,5.280319E-4,7.500098999999999E-4,9.685224000000001E-4,0.0013088669,0.00173037,0.0026610930000000002,0.003814721,0.005759563,0.008153468,0.010518796,0.013398710000000001,0.01582619,0.01779863,0.02048659,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,CSP,0.0,0.0,0.0,3.88701E-4,7.596879999999999E-4,0.0012788919999999998,0.002437652,0.0039422319999999995,0.006538441999999999,0.008918901,0.011261954000000001,0.013563299999999999,0.01432825,0.014163599999999998,0.01323914,0.011942569999999998,0.01031622,0.00885148,0.00814842,0.00784582,0.00755428,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,CSP_storage,0.0,0.0,0.0,0.0,0.0,0.00116863,0.00600389,0.01489077,0.03114377,0.04986997,0.07062877000000001,0.09933684000000001,0.13432507999999999,0.16733710000000002,0.22179959999999999,0.27397920000000003,0.3095169,0.3574606,0.3945079,0.4242831,0.4639706,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,Gen_III,0.0,0.0,0.0,0.0488495,0.06867319999999999,0.09260759999999998,0.1458872,0.21524949999999998,0.30973520000000004,0.39432750000000005,0.4691966000000001,0.5552355000000001,0.6455354000000001,0.7257529,0.8433509000000001,0.8994057999999999,0.9543237,1.0234647999999997,1.054313,1.0572617999999998,1.065463,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,Gen_II_LWR,0.262681,0.331344,0.326372,0.301614,0.287467,0.266833,0.238597,0.203153,0.163186,0.123218,0.0877747,0.0595384,0.0389043,0.0247578,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,PV,0.0,6.11999E-5,5.68799E-4,7.06796E-4,8.042797E-4,9.098207E-4,0.0011056427,0.0013245997000000001,0.0010938866999999999,0.0012952627,0.001518949,0.0017730509999999999,0.001870209,0.001879745,0.001850097,0.001795187,0.001692408,0.0016151770000000002,0.0015866210000000003,0.0015927760000000002,0.0016143899999999998,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,PV_storage,0.0,0.0,0.0,2.29958E-6,3.91337E-6,5.66636E-6,8.90389E-6,1.2549890000000001E-5,1.820168E-5,2.158613E-5,2.5606039999999998E-5,3.183389E-5,3.913866E-5,4.6577559999999997E-5,5.9660969999999995E-5,7.290943999999999E-5,8.243533999999999E-5,9.56235E-5,1.061061E-4,1.1486419999999999E-4,1.269845E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,biomass (IGCC CCS),0.0,0.0,0.0,0.0,0.0,5.9791E-5,2.35339E-4,5.195092E-4,0.0010847934999999999,0.001802863,0.0026778747999999996,0.004194708199999999,0.006393919099999999,0.0089276519,0.0138192325,0.0189143269,0.0229724629,0.028590954,0.033777207000000004,0.037952745,0.04236460300000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,3.09722E-4,0.001026981,0.001973455,0.0034057899999999997,0.004680812,0.005737556999999999,0.006574297,0.00687028,0.0064801680000000006,0.0046965936,0.0024618342,0.0011630222,2.8586698E-4,7.2684782E-5,2.1629731099999997E-5,4.2957322E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,biomass (conv CCS),0.0,0.0,0.0,0.0,0.0,2.07652E-4,8.33755E-4,0.001834582,0.003786536,0.006245868,0.009233448,0.014713332,0.022945864,0.032762315,0.05346637700000001,0.075317354,0.092520131,0.117989535,0.140044965,0.15462491,0.16111063,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,biomass (conv),0.0137844,0.0300024,0.0279072,0.02758696,0.02824208,0.02820588,0.02906978,0.029435959999999997,0.029913989999999998,0.028891160000000003,0.027000680000000003,0.023820716000000002,0.019373617,0.014421194,0.006955315,0.0026446001999999996,0.0010437588,2.2310342299999999E-4,5.174695770000001E-5,1.4080990899999998E-5,2.4231577730000004E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,biomass cogen,4.21048E-4,4.20829E-4,4.24375E-4,4.54847E-4,6.58563E-4,8.04664E-4,8.48065E-4,8.28446E-4,7.55881E-4,6.78321E-4,5.98456E-4,4.99997E-4,3.95395E-4,3.09296E-4,1.9827E-4,1.188E-4,7.63287E-5,3.67546E-5,1.89503E-5,1.06877E-5,4.82695E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,coal (IGCC CCS),0.0,0.0,0.0,0.0,0.0,6.3012E-5,2.577544E-4,5.828448E-4,0.0012649373,0.002195783,0.0033943323000000004,0.005625237,0.009009881499999999,0.0128892859,0.0200756399,0.027308134399999996,0.0326847153,0.039472422,0.045455985,0.05010906999999999,0.05614268,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.00152822,0.004871540000000001,0.009036889999999999,0.014679600000000001,0.01938758,0.02307051,0.02557901,0.02624283,0.024558109999999994,0.01608998,0.007914642999999999,0.0035079547000000004,7.2936979E-4,1.87980009E-4,5.764999800000001E-5,1.1435650944000001E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,coal (conv pul CCS),0.0,0.0,0.0,0.0,0.0,1.62544E-4,6.2817E-4,0.001351295,0.0027616380000000003,0.004568695,0.006783215,0.010738546,0.016499998000000002,0.022963693,0.034547498999999995,0.045972131000000006,0.054293709,0.064561759,0.073387508,0.07995822999999998,0.08810127000000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,coal (conv pul),0.295991,0.395942,0.316566,0.3523066,0.3563362,0.3496851000000001,0.3448266,0.33300640000000004,0.31723530000000005,0.29325520000000005,0.26741240000000005,0.23586762,0.19891029000000002,0.15649679,0.07514155100000001,0.025564529000000003,0.009747161300000001,0.0018325851699999998,4.2645022499999995E-4,1.1703190542000001E-4,2.0182638769000003E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,gas (CC CCS),0.0,0.0,0.0,0.0,0.0,0.00517976,0.01669069,0.030654300000000002,0.04968393,0.06652213,0.0809628,0.09817642000000001,0.1170457,0.1344812,0.15887300000000001,0.1766878,0.1847932,0.1958608,0.20650190000000002,0.21429370000000003,0.22786230000000002,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,gas (CC),0.0338351,0.0585332,0.016694,0.0253853,0.02966287,0.03226541,0.03943215,0.04971482,0.06554322000000001,0.07963635999999999,0.09163887,0.10162057,0.09905674,0.09653940999999999,0.08666144,0.06796915,0.04733156,0.020934298000000004,0.0083550591,0.0032500011,8.513896999999999E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,gas (steam/CT),0.00100203,0.0677619,0.173231,0.1724021,0.16949188999999998,0.16271027999999998,0.15178455,0.13534395,0.11355844999999999,0.09019336,0.06906062,0.04768275999999999,0.022549989999999995,0.012190076999999997,0.0046119789999999996,0.0020132875,8.525137E-4,2.1417289000000002E-4,5.991668300000001E-5,1.86861079E-5,4.33755788E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,geothermal,0.0,0.0,0.0,0.00373612,0.0060514,0.00869001,0.01295707,0.01323098,0.01323094,0.013231,0.013231010000000001,0.01323096,0.013231389999999999,0.01323093,0.013231007,0.013231001,0.01322893,0.013231003,0.013231007,0.013231,0.013231001999999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,hydro,1.06835,1.30916,1.26543,1.30693,1.34854,1.39015,1.43175,1.47336,1.49957,1.52578,1.55199,1.5782,1.60441,1.63062,1.65683,1.68304,1.70925,1.73547,1.76168,1.78789,1.78789,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,hydrogen cogen,0.0,0.0,0.0,0.0,3.01966E-4,5.37424E-4,7.85266E-4,0.00104402,0.00129134,0.00160478,0.00194278,0.00214861,0.00246488,0.00286558,0.00333065,0.0038032,0.00429236,0.00515208,0.00552593,0.00561939,0.00494886,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,refined liquids (CC CCS),0.0,0.0,0.0,0.0,0.0,0.0014703,0.0037866149999999997,0.005756879,0.008803019,0.010537897000000001,0.011995421999999999,0.014510229,0.017070336999999998,0.019027935,0.025258807,0.0290712,0.03077306,0.03890889,0.038786100000000004,0.032589820000000005,0.022626926,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,refined liquids (CC),0.0,0.0,0.0,0.00209194,0.0023108699999999996,0.002452137,0.003648756,0.005015685000000001,0.007077577,0.008176099,0.008778935,0.008797597,0.007886198,0.0065511836,0.005197134,0.003227465,0.0018479627,8.169644E-4,2.9475361E-4,1.06123047E-4,2.9172379600000004E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,refined liquids (steam/CT),0.0592847,0.0551952,0.0266292,0.02045054,0.01972601,0.018854738,0.016900774,0.014481536,0.011803504,0.009351700999999999,0.007331553,0.005381901,0.0026773884000000003,0.0015786947,7.808067999999999E-4,4.327475E-4,2.3223079E-4,8.827643000000001E-5,2.8644634E-5,9.2791244E-6,2.05467424E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,rooftop_pv,0.0,0.0,0.0,6.37403E-6,3.30472E-5,7.31891E-5,6.86795E-5,1.06874E-4,1.59724E-4,2.22498E-4,2.96353E-4,3.91794E-4,4.86334E-4,5.70162E-4,6.64908E-4,7.46294E-4,8.20697E-4,9.03243E-4,9.71961E-4,0.0010348,0.0010885,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,wind,0.0,0.00529559,0.0344051,0.0460662,0.05358905,0.06435515,0.09146984999999999,0.12998674999999998,0.15916165,0.21441165,0.27489719999999995,0.35264009999999996,0.42990739999999994,0.49430949999999996,0.5947975,0.6875473999999999,0.744461,0.824278,0.883372,0.931238,0.9951059999999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,wind_storage,0.0,0.0,0.0,6.82123E-5,1.126373E-4,1.7738440000000002E-4,3.445764E-4,5.905494E-4,0.0010052034,0.0013851651,0.0018117891,0.00237961,0.0029746449999999997,0.003495024,0.00434231,0.0051495560000000004,0.005671575,0.006405257,0.00698685,0.007468448,0.008129368,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,CSP,0.0,0.0,0.0,4.66816E-5,1.660516E-4,3.498736E-4,6.102676E-4,9.348276E-4,0.0013789106,0.0018560340000000001,0.002358719,0.002890548,0.003650784,0.0044875439999999996,0.005589651,0.006759606,0.007851561,0.00894116,0.0096766,0.01012148,0.0106291,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,CSP_storage,0.0,0.0,0.0,0.0,0.0,9.62122E-4,0.0061011220000000005,0.016291022000000002,0.032453222000000004,0.054338022,0.083754822,0.1185561,0.1671631,0.2215199,0.2979294,0.38416459999999997,0.4713918,0.5715714000000001,0.6633574,0.7454007,0.870404,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,Gen_III,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0113205,0.0339334,0.0692262,0.1057475,0.1522897,0.2010345,0.26265,0.3270915,0.3899101,0.4561093,0.5215189,0.5831088,0.6571293,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,PV,0.0,0.0,4.32E-5,0.00378357,0.01079636,0.01656555,0.02088226,0.02538608,0.030774399999999997,0.03295902,0.032557550000000005,0.034087110000000004,0.039856699999999995,0.046664080000000004,0.05601076,0.06612677,0.07575595,0.0852623,0.0913294,0.0946588,0.09817390000000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,PV_storage,0.0,0.0,0.0,6.23537E-5,1.807207E-4,4.0129870000000004E-4,9.271907000000001E-4,0.0015661267,0.0024250787,0.003377955,0.004479698,0.00571916,0.0073677180000000005,0.009338581999999998,0.012227849999999998,0.015624619999999999,0.01920484,0.023396319999999998,0.02730506,0.03089752,0.03644233,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,biomass (IGCC CCS),0.0,0.0,0.0,0.0,0.0,2.87158E-4,8.819819999999999E-4,0.001733322,0.0031128270000000003,0.005062756,0.00781999,0.011905613999999998,0.019005841000000002,0.028495761,0.044016295999999996,0.06267603,0.08254655,0.104960787,0.12710229,0.14667615999999997,0.16990175999999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,0.00150854,0.0040505,0.0071363400000000006,0.01079952,0.01457103,0.01844566,0.021486830000000002,0.024179259999999998,0.02555747,0.023104721,0.016748196,0.010414675999999998,0.0031755626999999996,9.078561399999999E-4,2.95831506E-4,6.299033899999999E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,biomass (conv CCS),0.0,0.0,0.0,0.0,0.0,9.91381E-4,0.003107956,0.006083165,0.010860213,0.017576211,0.027005281,0.041657577,0.068056165,0.104468989,0.16916972000000002,0.24759377500000002,0.32913863499999996,0.42342375,0.50824534,0.57078249,0.6215743499999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,biomass (conv),0.00762288,0.008862,0.0143049,0.01489271,0.025495789999999997,0.0328488,0.04349792,0.05423845,0.06415134,0.07238230000000001,0.079157529,0.080882223,0.07895733,0.0720261505,0.04960424,0.024472663000000002,0.011150529000000001,0.0025789560000000003,6.418704200000002E-4,1.886410597E-4,3.5872805899999984E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,coal (IGCC CCS),0.0,0.0,0.0,0.0,0.0,1.4983E-5,5.10432E-5,1.102556E-4,2.293261E-4,4.3678550000000003E-4,7.913001E-4,0.001441184,0.0027878999,0.0048321048000000005,0.0085013653,0.0133457152,0.0188027108,0.0251354696,0.031873713,0.038396319000000005,0.047893656,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,coal (IGCC),0.0,0.0,0.0,0.0,0.0,3.71142E-4,0.001023165,0.0018531250000000002,0.002865599,0.003934953000000001,0.005069953,0.0059499900000000005,0.006724102000000001,0.007157099,0.006438014999999999,0.0047144050000000005,0.002885288,7.880859999999999E-4,2.35024799E-4,8.29371869E-5,2.002043059E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,coal (conv pul CCS),0.0,0.0,0.0,0.0,0.0,3.84916E-5,1.239487E-4,2.538725E-4,4.992366999999999E-4,9.015386E-4,0.0015556508,0.0027058348,0.004992738199999999,0.0083874331,0.0142757362,0.0218825462,0.0302542859,0.039711307,0.049574470999999995,0.058897509,0.072192115,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,coal (conv pul),1.548E-4,0.007992,0.0111816,0.0163244,0.02003476,0.022602209999999998,0.02606907,0.02940518,0.032326959999999995,0.034651930000000004,0.0367363,0.037503119999999994,0.03751429,0.036151224,0.027861191,0.015477942,0.0076591514000000005,0.00175044433,4.6591548699999997E-4,1.481880823E-4,3.2142400979999995E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,gas (CC CCS),0.0,0.0,0.0,0.0,0.0,0.00593816,0.015645899999999997,0.02658251,0.03935476,0.05267563,0.06683017000000001,0.08238516,0.10441525000000001,0.13011963999999998,0.16305818,0.2009533,0.24181199999999997,0.2900841,0.3419505,0.391178,0.46757709999999997,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,gas (CC),0.0,0.0,0.0,0.0035472,0.00823343,0.011956610000000001,0.01901178,0.02887307,0.04116605,0.05436215,0.06868598,0.08052598000000001,0.08916028,0.09451576,0.09591798000000001,0.08930528,0.07721552000000001,0.05306709799999999,0.031504073,0.016594322999999998,0.006118603099999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,gas (steam/CT),0.0129143,0.042021,0.0577774,0.0684651,0.076677,0.07795924,0.07828958000000001,0.07596306000000001,0.07093089000000001,0.06449006,0.05802996,0.0504387,0.032121758,0.019906814999999998,0.011108254,0.005858740999999999,0.0029198972,9.298311E-4,3.1841495000000004E-4,1.1493443799999999E-4,3.19540259E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,geothermal,0.002898,0.0094176,0.0117864,0.01908155,0.026925860000000003,0.03379201,0.033792,0.03379191,0.03379257,0.03379199,0.03379206,0.03379197,0.03379203,0.03379144,0.033792329999999995,0.03379201,0.03379277,0.03379199,0.03379206,0.03379204,0.033792020000000006,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,hydro,0.0486099,0.0767999,0.0855111,0.0891228,0.0927345,0.0963461,0.0999578,0.103569,0.109946,0.116323,0.1227,0.129076,0.135453,0.14183,0.148206,0.154583,0.16096,0.167337,0.173713,0.18009,0.18009,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,hydrogen cogen,0.0,0.0,0.0,0.0,5.47591E-4,0.0010428,0.00163859,0.0022981,0.00303849,0.00404932,0.00536407,0.00655289,0.00849753,0.0111014,0.0141556,0.0176916,0.0217599,0.0267476,0.0312084,0.0360909,0.0367064,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,refined liquids (CC CCS),0.0,0.0,0.0,0.0,0.0,0.018911,0.043033100000000005,0.06596969999999999,0.0915497,0.11605080000000001,0.14191024,0.17018694999999998,0.21193153,0.25687611,0.3227946,0.38869900000000007,0.45427949999999995,0.5373374,0.5734368,0.5503591000000001,0.44344780000000006,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,refined liquids (CC),0.0,0.0,0.0,0.0138551,0.029307100000000003,0.03576891,0.04871080999999999,0.06405193,0.08050705,0.0963049,0.11226961,0.11776974000000001,0.11862826,0.11190067000000001,0.09308998,0.06797692,0.046989500000000003,0.022211471,0.009187953,0.0036716531,0.00102576973,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,refined liquids (steam/CT),0.119832,0.219264,0.220659,0.22857339999999998,0.23594739999999997,0.22674170000000002,0.21145615999999998,0.18929228000000003,0.16215571999999998,0.13483810999999998,0.11081301999999998,0.08902217999999999,0.05448354,0.031912196,0.014181163,0.008716585,0.005227778999999999,0.0023390235,9.130051E-4,3.3827270000000005E-4,8.6322832E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,rooftop_pv,0.0,0.0,0.0,0.00115094,0.00312403,0.00683257,0.0117655,0.018144,0.0270813,0.0383921,0.0540452,0.0758117,0.103009,0.13374,0.16807,0.205475,0.249753,0.294486,0.34862,0.405162,0.462045,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,wind,0.0,9.144E-4,0.00207,0.012181999999999998,0.029354599999999998,0.0536978,0.097329,0.1522609,0.2198594,0.2889723,0.36342979999999997,0.43996559999999996,0.5342434,0.6317915000000001,0.7602380000000001,0.8939761,1.016804,1.1465020000000001,1.2412770000000002,1.313008,1.4252740000000002,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,wind_storage,0.0,0.0,0.0,6.86428E-5,1.977958E-4,3.9972079999999995E-4,8.039847999999999E-4,0.0013699378,0.0021593918,0.0030616410000000004,0.004147518,0.005377563,0.007065299000000001,0.008965186,0.011635692,0.01464114,0.0176559,0.02103852,0.02399954,0.026538970000000002,0.030341639999999996,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,CSP,0.0,0.0,0.0,6.50716E-5,1.6301E-4,2.597294E-4,4.662954E-4,7.240193999999999E-4,0.0011507114,0.0016314038,0.0021491514,0.0029030139999999998,0.0037265479999999997,0.004149043999999999,0.004577408,0.004956713,0.0050791939999999995,0.005208532,0.005128919,0.005298169,0.005476533,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,CSP_storage,0.0,0.0,0.0,0.0,0.0,3.21533E-4,0.001594503,0.003841443,0.007782643,0.013184913,0.019747033,0.02898382,0.04572775,0.06471661,0.10072691,0.14558754000000002,0.18271492,0.23816969999999998,0.2896533,0.33698680000000003,0.3931721,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,Gen_III,0.0,0.0,0.0,0.0762759,0.11556160000000001,0.14682030000000001,0.2054928,0.27294430000000003,0.3562472,0.44144330000000004,0.5218107000000001,0.6173328,0.749274,0.8641943,1.0387426,1.1535119,1.2615417000000002,1.4249390000000002,1.5545266,1.6564728,1.7891491,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,Gen_II_LWR,0.0,0.00977756,0.00896395,0.00828395,0.00789541,0.00732869,0.00655317,0.00557969,0.00448197,0.00338425,0.00241077,0.00163525,0.00106852,6.79985E-4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,PV,0.0,0.0,0.0,0.00160117,0.0033848100000000002,0.004747390000000001,0.007166500000000001,0.0097648,0.01361066,0.0166177,0.01974476,0.024837249999999998,0.02892222,0.029878729999999996,0.030023179999999997,0.029627729999999998,0.028089339999999997,0.02606835,0.02386067,0.02415485,0.024827019999999998,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,PV_storage,0.0,0.0,0.0,2.66837E-5,5.62132E-5,7.88471E-5,1.188452E-4,1.621047E-4,2.26418E-4,2.76683E-4,3.307238E-4,4.279059E-4,6.117228E-4,8.321023E-4,0.001264482,0.0018173052999999998,0.002285805,0.002995872,0.003664068,0.004291237,0.005055344,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,biomass (IGCC CCS),0.0,0.0,0.0,0.0,0.0,3.168E-5,1.159961E-4,2.459747E-4,5.143198E-4,9.246856E-4,0.0014719313,0.0024753331999999998,0.0044717396,0.006803039799999999,0.011586774599999999,0.017865080499999998,0.023410835399999996,0.0317819757,0.04048101,0.048476741999999996,0.058060036999999995,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,1.62794E-4,4.96388E-4,8.97936E-4,0.001490636,0.002152731,0.002792545,0.003413779,0.0039959109999999996,0.0040489137,0.0032511813,0.0019113855,9.763314999999999E-4,2.5835971E-4,6.887957E-5,2.1829043E-5,4.71865827E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,biomass (conv CCS),0.0,0.0,0.0,0.0,0.0,1.10398E-4,4.11064E-4,8.756348E-4,0.0018459695999999998,0.0033051738,0.0052145538000000005,0.008865681,0.016428156,0.025603779,0.046290792,0.07403487,0.09846719200000001,0.13832879199999998,0.17813914900000002,0.210224442,0.23945326,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,biomass (conv),0.0,0.0,0.0,0.00133329,0.002350036,0.002886293,0.004322554,0.0056957480000000005,0.007261439999999999,0.008586341,0.009492766,0.009753284,0.009430003999999999,0.007895888,0.004658451,0.001981841,8.177368999999999E-4,1.8316421E-4,4.4292375399999994E-5,1.2959299929999998E-5,2.5001454389999998E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,coal (IGCC CCS),0.0,0.0,0.0,0.0,0.0,9.18537E-5,3.116409E-4,6.253382000000001E-4,0.0012638415,0.0022276074,0.0034828443000000002,0.0057860229,0.0103890557,0.015559740399999999,0.025435088699999997,0.037615016200000004,0.0474352349,0.060696805000000006,0.073654457,0.084982501,0.099381569,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.00220096,0.00585281,0.009569330000000001,0.014048050000000001,0.01827431,0.02178996,0.02430391,0.02578104,0.024774550000000003,0.017358334,0.009273198,0.004390085300000001,9.571902399999998E-4,2.52585004E-4,8.143146150000003E-5,1.776451184E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,coal (conv pul CCS),0.0,0.0,0.0,0.0,0.0,2.37501E-4,7.65951E-4,0.001472153,0.002822532,0.004727406,0.007071151999999999,0.011169321999999999,0.019041915,0.027708109,0.043743950000000004,0.063168006,0.078555582,0.09898045199999998,0.11876812099999999,0.13582171,0.15726596,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,coal (conv pul),0.257637,0.202024,0.264001,0.365612,0.39950810000000003,0.4018029,0.402991,0.393722,0.37725149999999996,0.3553533,0.332189,0.297782,0.25933592,0.21228243000000002,0.11081587000000002,0.03397769700000001,0.0121407448,0.00231423824,5.41172401E-4,1.5610662739999997E-4,3.0149895E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,gas (CC CCS),0.0,0.0,0.0,0.0,0.0,0.0252759,0.067661,0.1100672,0.16336699999999998,0.21581609999999998,0.2618861,0.3166492,0.39533450000000003,0.4651317,0.5587536,0.6558256,0.7225897,0.8190632,0.9090186,0.9828518,1.0693279,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,gas (CC),0.0,0.0,0.0,0.0432161,0.07568630000000001,0.0898672,0.1171306,0.14925500000000003,0.1916951,0.235753,0.2761236,0.31090290000000004,0.3061948,0.292622,0.2716432,0.2209013,0.16208377,0.07949097,0.03452787200000001,0.0147252235,0.0043387453,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,gas (steam/CT),0.270924,0.259231,0.289064,0.330154,0.3567547,0.3583425,0.34822739999999996,0.32586699999999996,0.28950960000000003,0.25251727999999996,0.21773687,0.17170173,0.06972131,0.031313429999999996,0.014975846000000001,0.006509971,0.0028661166999999995,8.083217999999999E-4,2.4608848E-4,8.417886200000002E-5,2.16055385E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,gas cogen,0.0,6.27014E-4,0.0015317,0.00129887,0.00146861,0.00174655,0.00172969,0.00165458,0.00150499,0.00134947,0.00121154,0.00101333,8.41372E-4,6.84252E-4,4.83128E-4,3.49624E-4,2.63105E-4,1.60745E-4,1.06779E-4,7.45486E-5,4.38424E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,geothermal,0.0,0.0,0.0,0.00790414,0.01474361,0.019910280000000002,0.0282155,0.036360489999999995,0.0460826,0.049207589999999996,0.053294259999999996,0.06067992,0.06731799,0.06731799000000001,0.06731806000000001,0.06731806,0.06731904999999999,0.06731802,0.06731811,0.06731804000000001,0.06731802,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,hydro,0.183715,0.211439,0.217472,0.23678,0.256088,0.275396,0.294704,0.314012,0.33546,0.356908,0.378356,0.399804,0.421252,0.4427,0.464148,0.485596,0.507045,0.528493,0.549941,0.571389,0.571389,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,hydrogen cogen,0.0,0.0,0.0,0.0,3.59783E-4,6.92709E-4,0.00108214,0.00154001,0.00209873,0.00283233,0.00369792,0.0044542,0.00560777,0.00699402,0.00884593,0.0107079,0.012797,0.016592,0.0190813,0.0209542,0.0194205,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,refined liquids (CC CCS),0.0,0.0,0.0,0.0,0.0,9.20935E-4,0.001810379,0.002312412,0.003295085,0.004104834,0.004805457,0.006125583,0.00844258,0.010107106000000001,0.014822518,0.019710299,0.023306523,0.032855,0.037880155,0.03818805,0.031474103,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,refined liquids (CC),0.0,0.0,0.0,0.00208115,0.002269183,0.0019493879999999998,0.0023295,0.0026169879999999998,0.003096453,0.003519405,0.003819637,0.003992142,0.0039994403000000005,0.0033948201,0.0029643335,0.0020939363,0.0012923398,6.231394E-4,2.4180475E-4,9.428748099999999E-5,2.60333721E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,refined liquids (steam/CT),0.162338,0.0429694,0.00578517,0.00614446,0.00565388,0.005367429999999999,0.005074464,0.004686666,0.004259799,0.0038808090000000003,0.0035489949,0.0030897607000000007,0.0012861194,6.177868E-4,3.992616E-4,2.3442110000000002E-4,1.3763840000000001E-4,6.107361E-5,2.2384644000000006E-5,8.2107223E-6,2.01482566E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,refined liquids cogen,0.0,0.0,4.6779E-5,4.42577E-5,4.19872E-5,4.6689E-5,4.62173E-5,4.54596E-5,4.49213E-5,4.44892E-5,4.41771E-5,4.21726E-5,4.02725E-5,3.75137E-5,3.28899E-5,2.79717E-5,2.39021E-5,1.80852E-5,1.24226E-5,8.44047E-6,4.54514E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,rooftop_pv,0.0,0.0,0.0,5.1968E-5,2.09451E-4,5.51044E-4,0.00106143,0.00184187,0.00311221,0.00489102,0.00737973,0.0113426,0.0162803,0.0215852,0.0283955,0.0349449,0.0418045,0.0509993,0.0605236,0.0714086,0.0848671,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,wind,0.0,0.0,2.87998E-5,0.0074202398,0.0156802498,0.0232777098,0.0390397098,0.0585082098,0.08844481,0.11823776999999999,0.15128296000000002,0.200641,0.2744246,0.3424401,0.4581437,0.5955583,0.7025191,0.8577676000000001,0.9890519999999999,1.114983,1.259579,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,wind_storage,0.0,0.0,0.0,4.06655E-5,8.702699999999999E-5,1.305073E-4,2.22697E-4,3.39723E-4,5.24348E-4,7.166725E-4,9.355920000000001E-4,0.0012667997000000001,0.001776531,0.002259357,0.0031080020000000003,0.004146972,0.0049788309999999995,0.006217053,0.0073235520000000005,0.008394680000000002,0.00968699,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,CSP,0.0,0.0,0.0,2.52356E-4,8.72418E-4,0.002261578,0.005211938,0.009488798,0.015243087999999998,0.020465112,0.024548689999999998,0.028964539999999997,0.033235169999999994,0.03726599,0.046562799999999994,0.05615942,0.061868480000000003,0.06725737000000001,0.06777736,0.06455775,0.05854066,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,CSP_storage,0.0,0.0,0.0,0.0,0.0,0.00461901,0.02283241,0.060822509999999996,0.12175580999999999,0.22256481,0.36931881,0.5880568,0.8730104000000001,1.2090843,1.901459,2.616577,3.067209,3.537229,3.7465119999999996,3.7317009999999997,3.6736879999999994,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,Gen_III,0.0,0.0,0.0,0.183669,0.41317499999999996,0.776623,1.395265,2.172853,3.1654709999999997,4.32906,5.60972,7.1295,8.843287,10.659527,13.813673,16.633981000000002,18.362572000000004,20.024169999999998,20.763868,20.858703999999996,21.410444000000002,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,Gen_II_LWR,0.0,0.191116,0.265967,0.245791,0.234263,0.217448,0.194438,0.165554,0.132984,0.100413,0.0715296,0.0485192,0.031704,0.0201758,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,PV,7.19999E-6,2.74E-4,0.00338849,0.027859790000000002,0.07236119,0.14947259000000002,0.28542259000000003,0.45266559000000006,0.6324951,0.7240018,0.751418,0.7518349,0.7071268,0.6420948,0.6369418,0.6955667999999999,0.7440382,0.7938549,0.7900261000000001,0.7450855000000001,0.6676855000000002,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,PV_storage,0.0,0.0,0.0,4.07837E-4,0.0011446590000000001,0.0024260590000000004,0.004681389,0.007563829,0.011482379000000001,0.016733272,0.02336182,0.03311422,0.04570069,0.061119450000000006,0.0941089,0.12873857,0.15112160000000002,0.1749678,0.1860454,0.18613690000000002,0.18516390000000002,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,biomass (IGCC CCS),0.0,0.0,0.0,0.0,0.0,0.00129221,0.00426004,0.00911981,0.01721526,0.029117410000000003,0.045407840000000005,0.07533522,0.12337624,0.19102817,0.34849425,0.52716522,0.65949993,0.81391108,0.92257176,0.98950152,1.0970297,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,0.00678117,0.01901805,0.03535829,0.05563664,0.07801637,0.09997112999999999,0.12161886000000001,0.13784308,0.14540082,0.13042102,0.08866381,0.051262367,0.014626333,0.0039432129000000005,0.0012289681500000003,2.482320418E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,biomass (conv CCS),0.0,0.0,0.0,0.0,0.0,0.00446321,0.014865960000000001,0.03196604,0.06031253,0.10145239,0.15750976,0.26582928,0.44641791000000003,0.7099624999999999,1.38043067,2.15322117,2.7198524299999995,3.4278589999999998,3.9031141000000003,4.1520187,4.4236799,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,biomass (conv),1.49641E-6,0.00866158,0.0410615,0.0363795,0.0673688,0.0986683,0.15192309999999998,0.2101286,0.2676592,0.31916500000000003,0.35839168,0.37988053,0.37143072000000005,0.334262819,0.22350863,0.10749058000000002,0.048298360000000005,0.010995818700000003,0.0026493969099999994,7.566077270000001E-4,1.3801959392E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,coal (IGCC CCS),0.0,0.0,0.0,0.0,0.0,0.00743601,0.02353217,0.04818119,0.08900059,0.14915114999999998,0.23220027000000001,0.39021068999999997,0.64501271,0.9887750399999999,1.72992953,2.5117990800000003,3.0334546000000002,3.567231,3.9096870000000004,4.0985394,4.416827700000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.183902,0.46665599999999996,0.786242,1.115211,1.4193440000000002,1.676387,1.871972,1.97933,1.978395,1.6103598000000001,1.0298558000000002,0.56125137,0.13370923199999998,0.03587420819999999,0.011418202859999999,0.002406513889,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,coal (conv pul CCS),0.0,0.0,0.0,0.0,0.0,0.0191092,0.0574401,0.11216699999999999,0.1968715,0.3137142,0.4673263,0.7478848,1.1824219,1.7564338,2.9540599,4.1927127,5.0031498,5.812547100000001,6.3192639,6.582709100000001,7.023327999999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,coal (conv pul),1.69735,7.20575,11.8677,13.98244,15.31883,16.18631,17.074780000000004,17.5301,17.443700000000003,17.005899999999997,16.414004,15.556818999999999,14.43288,12.902118000000002,8.466920499999999,3.8947352,1.69978877,0.3412089190000001,0.0801571008,0.022348964,0.0041437727932,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,gas (CC CCS),0.0,0.0,0.0,0.0,0.0,0.0353099,0.0898571,0.151129,0.21695540000000002,0.2820763,0.343525,0.4207127,0.5153377,0.6277176,0.845038,1.1040911,1.3007862000000001,1.5910452,1.8143292,1.9552885999999998,2.2722566000000004,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,gas (CC),0.00682159,0.0496339,0.0453922,0.0714828,0.0994919,0.1191785,0.1517642,0.19308160000000002,0.2400106,0.28903840000000003,0.336655,0.38193550000000004,0.39426612999999994,0.39984073,0.4007132,0.3671898,0.3094256,0.20238463,0.11427093,0.058708731,0.019763128499999998,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,gas (steam/CT),0.00312522,0.03391,0.254969,0.2068844,0.23186549999999997,0.239996,0.2379295,0.2236185,0.19938630000000002,0.17067714,0.14137345999999998,0.10903534000000001,0.06335943999999999,0.03702776,0.019269982,0.01083891,0.00588716,0.0021992579000000003,8.056264999999999E-4,3.1181565E-4,8.7365462E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,geothermal,0.0,4.13999E-4,5.83199E-4,0.048443425000000005,0.093926064,0.115798999,0.11579900000000001,0.115798967,0.1157991,0.115799,0.11579906000000001,0.115799,0.11583568999999999,0.11586433000000002,0.11579858,0.11579903,0.11568865,0.11579902,0.11579903,0.11579905,0.115799,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,hydro,0.45643,1.4296,2.60038,2.6427,2.68502,2.72734,2.76966,2.81198,2.90904,3.00611,3.10317,3.20023,3.29729,3.39435,3.49142,3.58848,3.68554,3.7826,3.87966,3.97673,3.97673,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,hydrogen cogen,0.0,0.0,0.0,0.0,0.0021679,0.00450617,0.00760615,0.0114798,0.0168962,0.0241556,0.0326807,0.0423935,0.0550383,0.0704738,0.0918306,0.113348,0.136849,0.172584,0.191243,0.198128,0.17036,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,refined liquids (CC CCS),0.0,0.0,0.0,0.0,0.0,0.0085397,0.01600097,0.022721289999999998,0.031306360000000005,0.040416240000000006,0.049544750000000005,0.06346916,0.07917052,0.09647173,0.13834446,0.17511493,0.19618916,0.23752549,0.24227020999999996,0.21870273999999998,0.16440738,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,refined liquids (CC),0.0,0.0,0.0,0.00521691,0.00842311,0.00943701,0.014154569999999998,0.01944556,0.025441529999999997,0.03159956,0.03676018,0.04036848,0.04011883,0.03751532,0.03364371,0.023893570000000003,0.01527881,0.007346873,0.0028844424000000002,0.00110482652,2.81996151E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,refined liquids (steam/CT),0.177202,0.221325,0.0483861,0.0312623,0.03696387,0.038258719999999996,0.037598290000000006,0.03547347,0.03293622000000001,0.02989741,0.026640009000000003,0.023003645000000003,0.014255523999999999,0.008599869,0.004929594,0.002958938,0.0017323078000000003,7.827969E-4,2.9501140999999996E-4,1.0740846600000001E-4,2.49607229E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,rooftop_pv,0.0,0.0,0.0,8.12497E-4,0.00500757,0.0165419,0.0390707,0.0801894,0.161701,0.287412,0.459698,0.723873,1.01631,1.31104,1.62846,1.94555,2.28549,2.59094,2.86995,3.14162,3.37558,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,wind,7.19999E-6,0.00730149,0.160644,0.268867,0.42501900000000004,0.685798,1.137769,1.7063869999999999,2.245875,2.932515,3.6273619999999998,4.478883,5.397641999999999,6.391144,8.469082,10.423219000000001,11.49097,12.4897,12.64378,12.151040000000002,11.44261,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,wind_storage,0.0,0.0,0.0,7.83639E-4,0.001984899,0.0041517889999999995,0.008249329,0.013872988999999999,0.021262088999999998,0.029422169999999997,0.03841941,0.050419719999999994,0.06470558,0.08114712,0.11661692000000001,0.15301199999999998,0.1755716,0.198725,0.2075711,0.20442839999999998,0.1979243,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,CSP,0.0,0.0,0.0,2.05736E-5,5.5329300000000006E-5,8.83871E-5,1.9600610000000001E-4,3.567221E-4,5.978861E-4,9.123655E-4,0.0013680798,0.001996269,0.00330652,0.004848684,0.00714304,0.009722007,0.011950937,0.01449305,0.016363660000000002,0.01753143,0.01895335,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,CSP_storage,0.0,0.0,0.0,0.0,0.0,1.09892E-4,7.73027E-4,0.002173797,0.004398437,0.007700777,0.012855647,0.019640595,0.03374406,0.05060658999999999,0.07919264999999999,0.12117551,0.16899683999999998,0.2329833,0.2902025,0.3372803,0.40140809999999993,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,Gen_III,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00159673,0.00515262,0.011664299999999999,0.01909442,0.0327265,0.04743759,0.06873667,0.09502294,0.12133801999999999,0.15254874000000002,0.18220059,0.20732564000000003,0.23986868,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,PV,0.0,0.0,0.0,2.61376E-4,5.88185E-4,8.286439999999999E-4,0.0014793999999999999,0.0023160959999999997,0.0034390459999999994,0.00464108,0.006345991,0.008776852,0.013763255999999998,0.01967911,0.02832233,0.03756332,0.04523599,0.05377427,0.05985031,0.06343196,0.06797749,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,PV_storage,0.0,0.0,0.0,4.35587E-6,9.766359999999999E-6,1.3760489999999999E-5,2.451889E-5,3.844349E-5,5.718738999999999E-5,7.711852E-5,1.0560442999999999E-4,1.46236E-4,2.3019260000000004E-4,3.33339E-4,5.123771E-4,7.810600999999999E-4,0.0010928077,0.001515357,0.001897688,0.002218917,0.002664018,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,biomass (IGCC CCS),0.0,0.0,0.0,0.0,0.0,2.03032E-5,8.721150000000001E-5,1.9248599999999999E-4,3.655476E-4,6.241955999999999E-4,0.0010303699,0.001682771,0.0032835228,0.0054530081,0.0094495977,0.015051207700000001,0.021147259600000003,0.0290056146,0.036639374,0.042920858,0.050687221000000005,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,1.04464E-4,3.701874E-4,6.954217999999999E-4,0.0010756913,0.0015041801000000002,0.0020211685,0.0024589915,0.0030511436000000003,0.0033441131999999998,0.0029716248000000002,0.0019900515000000002,0.0011414273,3.143659E-4,8.520244800000001E-5,2.7929419900000004E-5,6.154498540000001E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,biomass (conv CCS),0.0,0.0,0.0,0.0,0.0,7.07143E-5,3.097274E-4,6.842161E-4,0.0013079737,0.0022263815,0.0036373113,0.0060131507999999995,0.012069452599999999,0.0205895659,0.037801881499999995,0.062401227200000006,0.0890032144,0.12586121600000003,0.16011015099999998,0.184759521,0.20832236599999998,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,biomass (conv),9.86411E-4,0.00181081,0.00179639,0.00314446,0.0037146,0.00402687,0.00510551,0.006041517999999999,0.006826532000000001,0.007513503999999999,0.008234307,0.00837771,0.008467193000000001,0.007658566,0.004973329,0.0022519241,9.913756E-4,2.2062856000000001E-4,5.351777000000001E-5,1.613731551E-5,3.2234008790000007E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,coal (IGCC CCS),0.0,0.0,0.0,0.0,0.0,1.80955E-5,8.601999999999999E-5,2.045319E-4,4.238489E-4,7.829241E-4,0.0013836224999999999,0.0024411564,0.0052304902,0.009082819,0.0160339792,0.0255944846,0.0354675965,0.0473033084,0.058500366,0.067544758,0.079629603,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,coal (IGCC),0.0,0.0,0.0,0.0,0.0,4.34425E-4,0.001566331,0.0029780040000000002,0.004532382,0.0061422809999999994,0.007911952,0.009189684,0.010571013,0.011055241,0.009093481,0.005777745,0.00310857,7.344300999999999E-4,2.0320797400000002E-4,7.034232390000001E-5,1.6729567630000005E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,coal (conv pul CCS),0.0,0.0,0.0,0.0,0.0,4.67712E-5,2.100103E-4,4.765993E-4,9.398170999999999E-4,0.0016479335,0.0027654395,0.0046467382,0.0094151946,0.015867136,0.0271415713,0.0423603563,0.05779014959999999,0.076021727,0.093142906,0.10677586100000001,0.12484413800000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,coal (conv pul),0.0133489,0.00888839,0.0135144,0.0335918,0.04202875,0.04497722,0.051449789999999995,0.05765049,0.06237691000000001,0.06599331,0.06930465999999999,0.06925489,0.06772667700000001,0.06230361500000001,0.041368707,0.017615311999999998,0.0076241426000000015,0.0015826965299999998,3.9482363200000006E-4,1.2335927179999998E-4,2.6547711410000003E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,gas (CC CCS),0.0,0.0,0.0,0.0,0.0,0.00441523,0.01643156,0.031575809999999996,0.04951746,0.06941931,0.0927386,0.11989343999999999,0.17270346,0.23243893000000002,0.3247626,0.4423545,0.5614484,0.7107045999999999,0.8515686,0.9601395000000001,1.1085918000000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,gas (CC),0.00176041,0.0144738,0.0156616,0.0447883,0.061089000000000004,0.06640964999999999,0.07969599000000001,0.09562475999999999,0.11272944000000001,0.13118144,0.15343774,0.17194088999999999,0.16982137,0.17381254000000002,0.17619300000000002,0.16021149999999998,0.13414436,0.08326278,0.044399987,0.022206288999999997,0.0077559111,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,gas (steam/CT),0.014436,0.0121625,0.0260878,0.0472455,0.0540241,0.055728520000000004,0.059087810000000004,0.060085,0.05861979999999999,0.05578925,0.05262909,0.046795659999999996,0.027703729999999996,0.018079405,0.011279453000000002,0.005973696,0.0030394619999999997,9.733574000000001E-4,3.3749421E-4,1.2816809799999997E-4,3.7199979599999995E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,geothermal,0.0,0.0,0.0,0.00153437,0.00324063,0.00465041,0.0085088,0.013360339999999998,0.018975480000000003,0.02387135,0.029897669999999998,0.03676535,0.04641002,0.05471003,0.058849,0.05884897,0.058850490000000005,0.05884896,0.058848960000000006,0.05884895,0.05884903,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,hydro,0.0989892,0.143291,0.145444,0.15207,0.158696,0.165322,0.171948,0.178574,0.190273,0.201972,0.213671,0.22537,0.237068,0.248767,0.260466,0.272165,0.283864,0.295563,0.307262,0.318961,0.318961,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,hydrogen cogen,0.0,0.0,0.0,0.0,3.42518E-5,7.02842E-5,1.17916E-4,1.81532E-4,2.81006E-4,4.28203E-4,6.36419E-4,8.91775E-4,0.00131132,0.00189025,0.00278232,0.00379688,0.00505127,0.0070662,0.00879642,0.0105307,0.0106163,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,refined liquids (CC CCS),0.0,0.0,0.0,0.0,0.0,0.00101141,0.002914901,0.004310851,0.0060756560000000005,0.008158805000000002,0.011080556,0.014994088,0.024269856,0.033490879,0.05213806,0.07548413,0.10009455,0.14205266,0.16835851,0.17350158999999998,0.15013264,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,refined liquids (CC),0.0,0.0,0.0,0.0018924,0.00219083,0.0018040439999999999,0.002752553,0.0037099610000000003,0.004814968,0.0061857449999999994,0.008109245000000001,0.009190809999999999,0.011818286,0.012217609,0.011417426,0.008915814,0.006281583,0.003033245,0.0012412835,5.1414426E-4,1.5266530699999998E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,refined liquids (steam/CT),0.00136439,4.10394E-4,0.00180719,0.004664435,0.004546692,0.004317375,0.004463108,0.004417328,0.004389013,0.004357542,0.0043477080000000005,0.0041560109,0.0024082800000000005,0.0015680265,0.0012352291,8.291527999999999E-4,5.425480000000001E-4,2.6396730000000004E-4,1.0895942000000001E-4,4.4230340000000005E-5,1.21761721E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,rooftop_pv,0.0,0.0,0.0,2.04255E-5,8.31912E-5,2.34031E-4,4.59587E-4,8.19568E-4,0.00154149,0.00267742,0.00452759,0.00783614,0.0127141,0.0187548,0.0270445,0.0350316,0.0443637,0.0528995,0.0624845,0.075093,0.0886578,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,wind,0.0,1.764E-4,1.404E-4,8.908099999999999E-4,0.0016802409999999999,0.002345033,0.0042852129999999995,0.006958183,0.010292253,0.013938723,0.019051532,0.025541499999999998,0.03725902,0.04986905,0.06872838,0.0921462,0.11474815999999999,0.1418007,0.1613724,0.17512579999999997,0.19293319999999997,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,wind_storage,0.0,0.0,0.0,6.62012E-6,1.4272979999999999E-5,2.117445E-5,4.359375E-5,7.781965E-5,1.2636795E-4,1.8578343E-4,2.7435937E-4,3.933629E-4,6.341226E-4,9.181387E-4,0.0013785924000000002,0.0020000788,0.002654064,0.003488917,0.004198726999999999,0.004753613,0.005497781,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,CSP,0.0,0.0,0.0,8.71065E-5,2.169335E-4,4.1668550000000003E-4,8.193705E-4,0.0013460685,0.0022387035,0.0032326870000000006,0.00436333,0.005278077999999999,0.005899983,0.006180419999999999,0.006746625,0.007124735,0.006894635,0.006923614999999999,0.006896945000000001,0.0070584160000000005,0.0068377360000000005,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,CSP_storage,0.0,0.0,0.0,0.0,0.0,6.64074E-4,0.003145844,0.0077397740000000005,0.015996574,0.026829874,0.041455174,0.058151100000000004,0.08273663,0.10664589999999999,0.16261340000000002,0.2234772,0.26334700000000005,0.31311789999999995,0.35018839999999996,0.3900779,0.42508369999999995,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,Gen_III,0.0,0.0,0.0,0.0722065,0.121338,0.1734341,0.2540558,0.3406432,0.4542461,0.5681908999999999,0.6877089,0.7977439,0.9274646,1.0412365,1.2616542,1.4076035999999998,1.507102,1.6192808999999997,1.6819425999999997,1.73589,1.809693,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,Gen_II_LWR,0.268826,0.348192,0.3271,0.302287,0.288109,0.267429,0.239129,0.203606,0.16355,0.123494,0.0879707,0.0596713,0.0389912,0.0248132,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,PV,0.0,3.60007E-6,0.00240838,0.003340893,0.004369573,0.005593913,0.007645653,0.009955773,0.011047412999999999,0.01407789,0.01735022,0.01960333,0.020395919999999998,0.020225279999999998,0.0204815,0.02027502,0.01866385,0.0181793,0.0179705,0.01842132,0.01800782,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,PV_storage,0.0,0.0,0.0,1.55398E-5,3.25695E-5,5.2906100000000005E-5,8.683040000000001E-5,1.253076E-4,1.839232E-4,2.3551330000000001E-4,2.9951239999999996E-4,3.7384509999999996E-4,4.8619980000000004E-4,6.016666E-4,8.904129999999998E-4,0.0012140921,0.0014326363,0.001710759,0.001922596,0.00215519,0.002373975,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,biomass (IGCC CCS),0.0,0.0,0.0,0.0,0.0,1.56526E-4,4.94633E-4,9.997349999999999E-4,0.0019863299999999997,0.003335676,0.005192209999999999,0.00766295,0.011447203999999999,0.015503803,0.025649012,0.037003298,0.045183240000000006,0.054801252,0.062192729,0.06735717000000001,0.068314683,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,9.17501E-4,0.002520928,0.004410109000000001,0.007070124,0.009761424999999999,0.012532407999999998,0.014459787000000002,0.016019578,0.016423720000000003,0.014891361,0.010383337,0.006101969999999999,0.0018231520000000002,5.0426052E-4,1.59888301E-4,3.38766227E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,biomass (conv CCS),0.0,0.0,0.0,0.0,0.0,5.16122E-4,0.00163514,0.0033328890000000003,0.006697316,0.011227737000000002,0.017352712,0.025823936,0.038713248,0.052216942,0.08649796600000001,0.121987387,0.144869174,0.170297991,0.18407532999999998,0.18456037999999997,0.15806167999999998,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,biomass (conv),1.65607E-4,0.009839,0.0341529,0.03613682,0.04023962,0.04249285999999999,0.04690006,0.050194169999999996,0.053913630000000004,0.05593413999999999,0.05720267000000001,0.05487252,0.05039152,0.04304453,0.02729293,0.012979290999999999,0.005795501,0.0013648295,3.3156360000000004E-4,9.47901099E-5,1.746200721E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,biomass cogen,8.85281E-4,0.00496363,0.00829689,0.00834349,0.0136473,0.0173506,0.019763,0.0208703,0.0220573,0.0221477,0.02159,0.0200506,0.0170557,0.0138085,0.00922516,0.00556402,0.00356957,0.0016876,8.55626E-4,4.82698E-4,2.13239E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,coal (IGCC CCS),0.0,0.0,0.0,0.0,0.0,3.457E-4,0.001167974,0.002492027,0.005380307,0.009705932,0.016020054,0.025098357,0.039276579000000006,0.053855325999999995,0.087935179,0.12352818100000001,0.146429437,0.168939112,0.18385210999999999,0.19338412000000002,0.20109536999999997,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.0100937,0.027593200000000002,0.0476385,0.0735179,0.0977417,0.12060781,0.13441117,0.14339621,0.14351484999999997,0.11937871,0.07851473,0.04341185,0.010898533,0.00301315676,9.727481450000001E-4,2.0781884289999998E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,coal (conv pul CCS),0.0,0.0,0.0,0.0,0.0,8.60533E-4,0.002755707,0.005626526,0.011533907999999999,0.019827967000000002,0.031296068999999996,0.047038838,0.070304327,0.09331354900000001,0.14435690499999998,0.195340993,0.22654304700000003,0.25504126,0.27132018,0.27885705000000005,0.28104032999999995,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,coal (conv pul),0.859385,0.892792,0.885689,1.04794,1.12419,1.1569116,1.1988239,1.2119898,1.2116238,1.1845812999999998,1.1517169,1.0877107000000001,1.0090526000000002,0.9000279000000001,0.5884716600000001,0.27250674,0.12185997999999999,0.0260520476,0.006389894929999999,0.001843033529,3.4632553120000003E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,coal cogen,0.0571659,0.0509867,0.0372456,0.0353812,0.0310362,0.0330369,0.0291927,0.0252709,0.0199965,0.0153951,0.0120406,0.00722667,0.00444372,0.00282854,0.00131122,7.01765E-4,4.16513E-4,1.73833E-4,8.83241E-5,5.16075E-5,2.45281E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,gas (CC CCS),0.0,0.0,0.0,0.0,0.0,0.00992204,0.02710384,0.04668084,0.07318387,0.09916422999999999,0.12502458,0.14908549999999998,0.17725723999999998,0.20131595999999996,0.24306250000000001,0.2798931,0.2969806,0.3139828,0.3249111,0.33345089999999994,0.35387690000000005,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,gas (CC),0.0,0.0,0.0,0.00748856,0.015061350000000001,0.02147154,0.03448033,0.051900230000000006,0.07678552999999999,0.10259488,0.12973822000000002,0.14909633000000003,0.15970983,0.16345009,0.16566210000000003,0.15109640000000002,0.12523952000000002,0.07684290999999999,0.039755952,0.018158178,0.0058389662,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,gas (steam/CT),0.140306,0.12755,0.123565,0.1434749,0.15236960000000002,0.15168515999999999,0.14982481,0.14211928,0.13057138000000001,0.11561224000000002,0.10022375000000001,0.08236917,0.04981938999999999,0.030918886,0.013277554,0.0067761789999999985,0.0033241057,0.0010241310000000002,3.2784971000000005E-4,1.0950938500000002E-4,2.9125463000000003E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,gas cogen,0.0112803,0.0180645,0.0206726,0.0206164,0.0259103,0.0296733,0.0296612,0.0283513,0.0270699,0.0246017,0.0219884,0.018097,0.0145946,0.0115065,0.008049,0.00582224,0.00434003,0.00257135,0.00164815,0.00111033,6.13303E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,geothermal,0.0,0.0,0.0,0.00605472,0.01280914,0.02117207,0.033485999999999995,0.04550802,0.057236949999999995,0.05723704000000001,0.057237039999999996,0.05723703000000001,0.05723466,0.05723696,0.057236999999999996,0.05723698000000001,0.05723809,0.05723701,0.05723701,0.05723698,0.05723702,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,hydro,0.092826,0.14841,0.159804,0.159292,0.158992,0.158692,0.158392,0.158092,0.163653,0.169214,0.174776,0.180337,0.185898,0.191459,0.19702,0.202581,0.208143,0.213704,0.219265,0.224826,0.224826,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,hydrogen cogen,0.0,0.0,0.0,0.0,6.53617E-5,1.20773E-4,1.87128E-4,2.63392E-4,3.6646E-4,4.96011E-4,6.46506E-4,7.7223E-4,9.20576E-4,0.00108382,0.00125002,0.00138019,0.001496,0.00170745,0.00195137,0.00227856,0.00233275,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,refined liquids (CC CCS),0.0,0.0,0.0,0.0,0.0,0.00581831,0.01174449,0.01654961,0.02504835,0.03197361,0.03934986,0.04642464,0.05438279,0.05844922,0.07211092,0.07699291,0.07190563,0.06798496000000001,0.057549569999999994,0.043592530000000004,0.028154739999999998,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,refined liquids (CC),0.0,0.0,0.0,0.00555554,0.00809972,0.00877527,0.0126091,0.01650764,0.02245583,0.027411940000000003,0.03235611,0.03285956,0.031804718,0.027816983,0.024216339999999996,0.016704815999999997,0.010084066999999999,0.004309822,0.0017040687999999998,6.5603176E-4,1.86498096E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,refined liquids (steam/CT),0.0841881,0.0370123,0.0384476,0.0377238,0.04017557,0.03915667,0.03741681,0.03441963,0.03138481,0.02790748,0.024613443,0.021009411,0.012294946000000001,0.007387736000000001,0.0038141779999999997,0.0022020063000000004,0.0012227564000000003,4.62932E-4,1.6659866999999999E-4,5.6598813E-5,1.3775448E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,refined liquids cogen,0.0149473,0.012935,0.0093774,0.00936832,0.0107349,0.0114054,0.0112115,0.0109181,0.011038,0.0109947,0.0109164,0.0103216,0.00961648,0.0086338,0.00708273,0.00568166,0.00454296,0.00302351,0.00204972,0.00137579,7.19205E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,rooftop_pv,0.0,0.0,0.0,2.11469E-5,9.77982E-5,2.58161E-4,5.16819E-4,9.16855E-4,0.00168633,0.00276267,0.00427306,0.00653156,0.00910421,0.0114874,0.0145109,0.0170861,0.0194386,0.0221574,0.0244247,0.0267167,0.0287467,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,wind,0.0,0.00100802,0.0147851,0.023158980000000003,0.032935070000000004,0.04766427,0.07713167,0.11566487,0.16120827000000001,0.22303239000000002,0.2965414,0.3680365,0.45160009999999995,0.5221869,0.6858864,0.8519794,0.9435263,1.063941,1.143249,1.2344240000000002,1.294078,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,wind_storage,0.0,0.0,0.0,5.4591E-5,1.203563E-4,2.237133E-4,4.416063E-4,7.433133E-4,0.0012389723,0.0017892143,0.0024805350000000003,0.0031946730000000003,0.00408761,0.004891773,0.0068056340000000005,0.008862491,0.010120835,0.01176404,0.01298876,0.01435745,0.015524310000000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,CSP,0.0,0.0,0.00249109,0.003416158,0.004311073,0.0056171730000000005,0.008292113,0.010577113,0.012641993,0.014562084999999999,0.01615258,0.01782516,0.01870513,0.01973693,0.020536,0.02244829,0.023655230000000003,0.02509626,0.025723760000000002,0.02623124,0.02553586,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,CSP_storage,0.0,0.0,0.0,0.0,0.0,0.00448389,0.02501929,0.07429559,0.17100069,0.27200069000000004,0.37780969000000003,0.5102998,0.6642163999999999,0.7875081000000002,0.993042,1.180223,1.312981,1.492265,1.6477,1.808441,1.977435,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,Gen_III,0.0,0.0,0.0,0.302516,0.46298700000000004,0.640007,0.964058,1.337314,1.9604709999999999,2.464302,2.922943,3.428364,3.9860330000000004,4.474831,5.238568000000001,5.592236000000001,5.923606,6.3366169999999995,6.578069,6.733554000000001,6.800371000000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,Gen_II_LWR,2.59272,3.24344,2.97257,2.74707,2.61822,2.43029,2.17312,1.8503,1.48628,1.12226,0.799444,0.54227,0.354337,0.225492,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,PV,4.32005E-5,0.00524505,0.0781778,0.0901165,0.09864562,0.10819888,0.12346158,0.13275038,0.07178477999999999,0.06904455999999999,0.06805419,0.06725181000000001,0.06222541000000001,0.06246058000000001,0.06054358,0.0649855,0.06817955,0.07230167,0.07433737,0.0761561,0.07477339999999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,PV_storage,0.0,0.0,0.0,2.00448E-4,3.4383899999999997E-4,5.098139999999999E-4,8.491109999999999E-4,0.001347978,0.002177787,0.0027338279999999998,0.00329901,0.00403591,0.004836183,0.005463885999999999,0.0066099570000000005,0.007752168,0.008628795,0.00984874,0.01093558,0.01208598,0.013359860000000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,biomass (IGCC CCS),0.0,0.0,0.0,0.0,0.0,6.6414E-4,0.002436595,0.0052762,0.011701216,0.018143989,0.025214153,0.035858635,0.050734931000000004,0.066481476,0.099245004,0.130890708,0.15540273799999998,0.18726794,0.21110021999999998,0.22227098,0.21072408999999998,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,0.00402458,0.01247686,0.0232449,0.041040179999999996,0.05391727,0.0644139,0.07331232,0.0791492,0.07866842,0.06480604,0.039295718,0.020730521,0.005700192000000001,0.001531614,4.7410148E-4,9.8819766E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,biomass (conv CCS),0.0,0.0,0.0,0.0,0.0,0.00215989,0.00806768,0.017572900000000002,0.03919559,0.06023009,0.08270826,0.11663457,0.16259759000000001,0.20919398000000003,0.30770076,0.3929698,0.44920262999999994,0.51933083,0.54443813,0.5165789399999999,0.40111008000000004,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,biomass (conv),0.028465,0.159297,0.259185,0.1683142,0.2005827,0.2183546,0.242738,0.2591723,0.28169479999999997,0.27993519999999994,0.27101980000000003,0.2497839,0.21874647,0.17760903000000003,0.10444263999999999,0.044388699999999996,0.018705751,0.0042575483,0.00101524085,2.8241438700000006E-4,4.95232611E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,biomass cogen,0.0378044,0.076501,0.1013,0.104769,0.141326,0.166829,0.177292,0.176757,0.16567,0.151984,0.136363,0.11762,0.0959588,0.0764166,0.0499925,0.03014,0.0192565,0.00918693,0.00466621,0.00260728,0.00115558,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,coal (IGCC CCS),0.0,0.0,0.0,0.0,0.0,3.2766E-4,0.001311219,0.0030342240000000003,0.007418851000000001,0.012278643,0.017928766999999998,0.026819711,0.03954332,0.052690337999999996,0.07889383,0.10363788200000001,0.121324627,0.140290565,0.15379217999999997,0.16187867,0.16926248,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.0100547,0.03111,0.0575961,0.0983344,0.12728817,0.14978044999999998,0.16648401,0.17558928,0.17184799000000003,0.12865950999999998,0.07325991999999999,0.035941206,0.0082268711,0.0022029029599999997,6.93265439E-4,1.3994292410000005E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,coal (conv pul CCS),0.0,0.0,0.0,0.0,0.0,8.07981E-4,0.003072702,0.006799965,0.015723809999999998,0.024964211,0.035096749,0.050080299,0.070226673,0.09017351800000001,0.12785173800000002,0.16166847,0.184182528,0.20578653000000002,0.21810718,0.22258475,0.22408447000000004,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,coal (conv pul),2.83949,2.63263,2.14461,2.255947,2.269625,2.2220617,2.1786104,2.0895976,1.9953579999999997,1.8260660999999998,1.6492599000000001,1.4577567,1.2593476,1.0398714,0.5706029,0.23319564,0.09660816600000001,0.019474111299999996,0.0046838604999999995,0.0013193764449999997,2.2676601649999995E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,coal cogen,0.0231679,0.0224157,0.027054,0.0298603,0.0185693,0.0178252,0.0142435,0.0113249,0.00754634,0.00516825,0.00366521,0.00203778,0.00120847,7.59972E-4,3.47112E-4,1.84003E-4,1.07876E-4,4.49475E-5,2.26073E-5,1.29637E-5,6.11386E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,gas (CC CCS),0.0,0.0,0.0,0.0,0.0,0.0345185,0.1096191,0.2045309,0.3583051,0.4711344,0.561173,0.6549822,0.753836,0.8345220999999999,0.9491430999999999,1.0170996,1.0348685,1.0464993,1.0925108,1.1453552,1.2411757000000003,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,gas (CC),0.280897,1.64617,1.12349,1.2241579999999999,1.2677183,1.2646741,1.2862682,1.3008331999999998,1.3584851,1.3548892,1.3375906,1.3181833,1.1326187,1.0274532,0.8773896999999999,0.7178266000000001,0.5382992,0.27528848,0.12757137,0.05573579299999999,0.016545221800000003,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,gas (steam/CT),0.182548,0.279272,1.15728,1.077905,1.046232,1.0030622,0.9329590000000001,0.8286127,0.6954136000000001,0.5465682999999999,0.41483,0.28726559,0.15721169000000002,0.09329293000000001,0.04071969000000001,0.020713448,0.010089899,0.0028835715000000003,9.162723000000001E-4,3.191469E-4,8.2567694E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,gas cogen,0.0770739,0.369884,0.424487,0.44987,0.441499,0.461924,0.423238,0.376484,0.312168,0.255706,0.208545,0.158839,0.123387,0.0966842,0.0677936,0.0502955,0.0381584,0.0233331,0.0150812,0.0100679,0.00556809,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,geothermal,0.0116137,0.0194286,0.0201663,0.0490891,0.0742527,0.10771220000000001,0.1657846,0.2251201,0.254926,0.25492590000000004,0.2549259,0.2549266,0.2549233,0.2549257,0.2549259,0.254926,0.25493299999999997,0.254926,0.2549261,0.254926,0.2549256,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,hydro,0.939621,0.95855,1.17152,1.14714,1.13525,1.12336,1.11147,1.09957,1.10415,1.10873,1.11331,1.11789,1.12247,1.12705,1.13163,1.13621,1.14078,1.14536,1.14994,1.15452,1.15452,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,hydrogen cogen,0.0,0.0,0.0,0.0,0.015437,0.0268826,0.0392198,0.0524388,0.0654426,0.0808282,0.0958025,0.10136,0.111227,0.12599,0.135807,0.144652,0.152352,0.167672,0.186655,0.209995,0.208195,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,refined liquids (CC CCS),0.0,0.0,0.0,0.0,0.0,0.0111672,0.02754778,0.04232473,0.07177231,0.08080723,0.08940554,0.10077433,0.11184048,0.11491511,0.13433647,0.1316393,0.11792162,0.11392006999999998,0.10224991,0.08109827,0.05936063,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,refined liquids (CC),0.0,0.0,0.0,0.0122626,0.01601784,0.017908590000000002,0.02786292,0.039452310000000004,0.060624349999999994,0.06775220000000001,0.07328931,0.07471203,0.07142991,0.06196926999999999,0.05120367,0.03272676,0.019373179999999997,0.00830119,0.0033701052,0.0013515347,4.161346899999999E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,refined liquids (steam/CT),0.625719,0.358867,0.20094,0.149855,0.1449914,0.13802143,0.12431434000000001,0.10757708999999999,0.08993903,0.07242124,0.057962299999999994,0.04407922,0.024675877000000002,0.015170120999999998,0.007681582999999999,0.004274929,0.0022769485,7.701308000000001E-4,2.7519674E-4,9.862229800000001E-5,2.4703402000000004E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,refined liquids cogen,0.0730513,0.0956435,0.064278,0.0621766,0.0610079,0.0613351,0.0570042,0.0530377,0.0488126,0.0451616,0.0416636,0.0368806,0.0326708,0.0283978,0.0219249,0.0169831,0.0132275,0.00853358,0.0056921,0.00373048,0.00192084,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,rooftop_pv,0.0,0.0,0.0,2.24955E-4,7.8604E-4,0.00182534,0.00324409,0.00520848,0.00801929,0.0115211,0.0158368,0.0216973,0.0282326,0.0345362,0.0419172,0.0482892,0.0540577,0.0610415,0.0668517,0.0723089,0.076607,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,wind,0.00280083,0.25258,0.521819,0.6170332000000001,0.6888747000000001,0.7931827,1.0313407,1.3582957000000002,1.4371227,1.8564265000000002,2.274589,2.767783,3.255623,3.624248,4.185352,4.7403640000000005,5.1173660000000005,5.626664,6.023896000000001,6.436665999999999,6.797175999999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,wind_storage,0.0,0.0,0.0,5.95923E-4,0.0010525880000000001,0.0017323490000000002,0.0033394590000000004,0.005651969,0.009969799,0.013226686,0.016608071,0.02081109,0.025333869999999998,0.029054309999999996,0.03524798,0.04140277,0.045846189999999995,0.05187831,0.057073719999999994,0.062426369999999995,0.06795257,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,CSP,0.0,0.0,0.0,2.14988E-4,4.62097E-4,7.25347E-4,0.001398748,0.002263365,0.0036756749999999998,0.005224576999999999,0.0069586679999999995,0.008885147999999999,0.010034446999999998,0.01042556,0.010457580000000001,0.01003423,0.009058549999999999,0.008121090000000001,0.00751834,0.0074123999999999995,0.007301150000000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,CSP_storage,0.0,0.0,0.0,0.0,0.0,8.20318E-4,0.004710138,0.011776238,0.024014637999999998,0.040489937999999996,0.061114638,0.08851452,0.1244353,0.1580571,0.21527,0.2764989,0.3185751,0.3764143,0.4285216,0.4841935,0.5436942,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,Gen_III,0.0,0.0,0.0,0.0685085,0.0964858,0.1224364,0.1891865,0.2767683,0.38702020000000004,0.500459,0.612541,0.7353729,0.8712107,0.9867543,1.154672,1.2516415,1.343034,1.4641358999999998,1.5405574,1.5906840000000002,1.6495959999999998,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,Gen_II_LWR,0.274249,0.319511,0.32094,0.296594,0.282683,0.262392,0.234626,0.199772,0.16047,0.121168,0.0863139,0.0585475,0.0382568,0.0243458,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,PV,0.0,0.0,0.0,4.12937E-4,7.64233E-4,0.001053737,0.0016693769999999999,0.002349937,0.003344358,0.004097141,0.004991985,0.006069641,0.006623301,0.006774779,0.006766289,0.006540386,0.006018178,0.00557023,0.005318557,0.005378075,0.0054606839999999995,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,PV_storage,0.0,0.0,0.0,6.88127E-6,1.269681E-5,1.7505330000000002E-5,2.768303E-5,3.901153E-5,5.564193E-5,6.830245999999999E-5,8.435962E-5,1.090089E-4,1.400142E-4,1.707503E-4,2.2602280000000001E-4,2.87557E-4,3.3166289999999996E-4,3.9368529999999995E-4,4.50744E-4,5.129264000000001E-4,5.818555E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,biomass (IGCC CCS),0.0,0.0,0.0,0.0,0.0,2.65633E-5,1.1689960000000001E-4,2.722119E-4,5.998028E-4,0.0011101536999999998,0.0018331115,0.0030675361000000005,0.0050127832,0.0072155575,0.011501165099999999,0.0164869152,0.0205065183,0.0260584549,0.03149291,0.036158923,0.039172769999999996,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,1.45472E-4,5.64074E-4,0.0011413220000000002,0.002004412,0.002982648,0.003986422,0.004877134,0.00550903,0.0055793489,0.0046102553,0.002858281,0.0015362197000000001,4.2566347E-4,1.1673461700000001E-4,3.74153599E-5,8.16693197E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,biomass (conv CCS),0.0,0.0,0.0,0.0,0.0,9.01138E-5,3.9701860000000005E-4,9.233378E-4,0.002047266,0.0037818345,0.006212242199999999,0.010554130299999999,0.017584708900000003,0.025719906200000003,0.0423297205,0.0609018395,0.0748922104,0.094085607,0.110330597,0.11996114799999999,0.11366734099999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,biomass (conv),0.0,0.0,2.62796E-4,0.001741327,0.0025085610000000003,0.0031174659999999997,0.0049606960000000005,0.007049967,0.009529932,0.011747209800000002,0.013501711999999999,0.0140957002,0.0134399437,0.011438912900000002,0.006962483,0.0030932096999999998,0.0013394833000000001,3.0972701999999996E-4,7.6471753E-5,2.2332908099999998E-5,4.24941871E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,biomass cogen,0.0,1.04308E-4,0.00147812,0.00148258,0.00222666,0.00285219,0.00316812,0.00324678,0.00318429,0.00305614,0.00288596,0.00259364,0.00218483,0.00178743,0.00119862,7.37579E-4,4.84144E-4,2.35853E-4,1.22061E-4,6.93601E-5,3.11268E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,coal (IGCC CCS),0.0,0.0,0.0,0.0,0.0,4.54969E-5,1.803199E-4,3.976151E-4,8.625357E-4,0.0015960301999999999,0.0026366100999999998,0.0044693743000000005,0.0073718169,0.010531295100000001,0.0161917866,0.022282164,0.0266751767,0.031889738,0.036504011,0.040192742999999996,0.043594353,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.00119971,0.00395443,0.007182900000000001,0.01121107,0.01510156,0.01856355,0.021014869999999998,0.022261180000000002,0.02173071,0.016213896000000002,0.009314948,0.004654849900000001,0.00107009479,2.88656574E-4,9.21122708E-5,1.9546812180000004E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,coal (conv pul CCS),0.0,0.0,0.0,0.0,0.0,1.15481E-4,4.28379E-4,9.0087E-4,0.001856117,0.003272088,0.005179772,0.008395941,0.013270158,0.018444438,0.027310446,0.036517799999999996,0.042917112,0.050191259,0.05629023400000001,0.060767483,0.06416851000000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,coal (conv pul),0.428483,0.180041,0.245558,0.2979123,0.3085208,0.3034745,0.30077269999999995,0.29156099999999996,0.2777471,0.2599295,0.2417339,0.21870726999999998,0.19209656,0.16024466999999998,0.08869842700000001,0.03138103,0.0127169651,0.0025889757199999996,6.24576884E-4,1.7832797759999996E-4,3.346646869E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,coal cogen,0.0,1.43898E-5,0.0049572,0.00468648,0.00345341,0.00375638,0.00317492,0.00260174,0.00182462,0.0013166,9.90106E-4,5.76887E-4,3.5543E-4,2.31446E-4,1.09848E-4,6.05359E-5,3.69989E-5,1.60572E-5,8.35205E-6,4.92249E-6,2.38027E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,gas (CC CCS),0.0,0.0,0.0,0.0,0.0,0.00608126,0.01956784,0.03496062,0.05497638,0.07519853000000001,0.09425565,0.11545472,0.13943534999999999,0.16007265999999998,0.1864625,0.2063623,0.21451949999999997,0.2240767,0.23107370000000005,0.23502640000000002,0.2374298,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,gas (CC),0.0754138,0.0,0.0,0.0115105,0.018428899999999998,0.022048560000000002,0.03185731,0.04523265,0.06342012,0.08261061,0.10132877000000001,0.11669205,0.11799560999999999,0.11718134000000002,0.11092990999999999,0.09235703,0.06930163,0.035228582,0.015528595000000001,0.0063927829,0.00178835929,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,gas (steam/CT),0.173775,0.224147,0.177037,0.2049694,0.2071847,0.20030304000000002,0.19122448,0.17545385000000002,0.15369992999999996,0.12954076,0.10610149999999999,0.08056094000000001,0.03940690600000001,0.022261734000000002,0.006790408,0.0030826539,0.0013788138000000003,3.8758754999999997E-4,1.1737456500000001E-4,3.8426455000000006E-5,9.433909799999999E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,gas cogen,0.0292656,0.0203419,0.0138646,0.0137794,0.0154051,0.0178226,0.0172945,0.015964,0.013977,0.0120924,0.0104657,0.00830995,0.00660557,0.00522468,0.00358995,0.00257355,0.00192308,0.00115227,7.47907E-4,5.06911E-4,2.8547E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,geothermal,0.0,0.0,0.0,0.00419121,0.00659056,0.00840968,0.009836000000000001,0.009836000000000001,0.009835896,0.009836002,0.009836008,0.009835995,0.009835427,0.009835785,0.009835996999999999,0.009836003,0.009835091,0.009836005,0.009836009,0.009836003,0.009836001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,hydro,0.0388476,0.0448632,0.0479592,0.0480941,0.0483945,0.048695,0.0489954,0.0492959,0.0496296,0.0499634,0.0502971,0.0506309,0.0509646,0.0512984,0.0516321,0.0519659,0.0522996,0.0526334,0.0529671,0.0533009,0.0533009,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,hydrogen cogen,0.0,0.0,0.0,0.0,8.24588E-5,1.52047E-4,2.30633E-4,3.17846E-4,4.19375E-4,5.51302E-4,7.05316E-4,8.2812E-4,0.0010042,0.00122073,0.00143878,0.00162293,0.00179558,0.00208136,0.00229497,0.00251751,0.00244208,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,refined liquids (CC CCS),0.0,0.0,0.0,0.0,0.0,3.25865E-4,8.49473E-4,0.001251676,0.001886102,0.0024508110000000002,0.0030014324,0.0037354581,0.0045868987,0.0051896373,0.00657345,0.007395748000000001,0.0074081239999999994,0.008109887999999999,0.007620768000000001,0.006225092,0.004098109,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,refined liquids (CC),0.0,0.0,0.0,7.38927E-4,8.1291E-4,7.96646E-4,0.0010922249,0.001387568,0.0017877901,0.0021542945,0.002470715,0.002560803,0.0023906153,0.0020468673,0.0016613465,0.0011122567999999999,6.650077E-4,2.9519141000000003E-4,1.1645497E-4,4.5776806E-5,1.31200701E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,refined liquids (steam/CT),0.255453,0.00542502,0.0047411,0.0053828999999999995,0.0052617440000000005,0.005036569,0.004713525799999999,0.0042343295999999996,0.0036748199,0.0031138019999999997,0.0026052904,0.0020848849000000003,0.0010541029999999998,6.257742E-4,2.486724E-4,1.4206446000000002E-4,7.852764000000002E-5,3.0512804999999997E-5,1.0772337999999997E-5,3.7179575999999997E-6,8.766716899999999E-7,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,refined liquids cogen,2.52062E-4,0.0,3.27453E-4,2.96023E-4,3.13204E-4,3.33899E-4,3.20976E-4,3.05833E-4,2.94523E-4,2.85545E-4,2.784E-4,2.58766E-4,2.40033E-4,2.17991E-4,1.80745E-4,1.46804E-4,1.19227E-4,8.20502E-5,5.50068E-5,3.64263E-5,1.89839E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,rooftop_pv,0.0,0.0,0.0,9.55449E-6,3.82899E-5,1.00055E-4,1.92314E-4,3.28903E-4,5.51135E-4,8.58922E-4,0.0012825,0.00189587,0.00260617,0.00332618,0.00417333,0.00499273,0.00583863,0.00681107,0.00768968,0.00855673,0.00942219,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,wind,0.0,1.40396E-4,1.87196E-4,0.004942956,0.009102226,0.013498036,0.025712536,0.042594136000000005,0.06849094,0.09590757999999999,0.12877681,0.17098159999999998,0.2172104,0.2559638,0.3184886,0.3821285,0.4214176,0.477128,0.5261277,0.5815197,0.6386689,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,wind_storage,0.0,0.0,0.0,3.06186E-5,5.83109E-5,8.853729999999999E-5,1.763302E-4,3.034572E-4,5.083382E-4,7.384265999999999E-4,0.0010222153,0.0013973039,0.001830332,0.0022096150000000003,0.0028380920000000004,0.0034999059999999997,0.003932289,0.004545284,0.005109423,0.005736843,0.006422375,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,CSP,0.0,0.0,0.0,6.04955E-5,1.296596E-4,2.500606E-4,4.503336E-4,7.100086E-4,0.0010242156,0.0013914481,0.001816696,0.00242835,0.004093487,0.004804209,0.0056434119999999996,0.006483283999999999,0.006761326,0.006942004999999999,0.006001034,0.005804416,0.005574453,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,CSP_storage,0.0,0.0,0.0,0.0,0.0,4.00267E-4,0.001634467,0.0038982870000000003,0.0067977870000000004,0.011016137,0.016220467000000002,0.02349803,0.04635133,0.06791751,0.11879631,0.18379476,0.22446943,0.2771355,0.3186785,0.354586,0.3804934,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,Gen_III,0.0,0.0,0.0,0.0877664,0.12183730000000001,0.15550250000000002,0.1934075,0.23018670000000002,0.2654764,0.3061072,0.34733970000000003,0.39815150000000005,0.5241183,0.6121970000000001,0.7610814000000001,0.8396699000000001,0.9035211000000001,0.9844484000000001,1.059944,1.1176908,1.1977682,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,PV,0.0,0.0,0.0,0.00189009,0.00348946,0.005643179999999999,0.008621209999999999,0.011945389999999998,0.015542709999999998,0.018245380000000002,0.021678460000000004,0.02677554,0.040327009999999996,0.04366055,0.04644019,0.04864051,0.04775172,0.045342640000000003,0.03372439,0.03118661,0.02971099,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,PV_storage,0.0,0.0,0.0,3.14992E-5,5.7978399999999994E-5,9.375489999999999E-5,1.429952E-4,1.983364E-4,2.584139E-4,3.032073E-4,3.6088449999999996E-4,4.4731199999999995E-4,7.780116999999999E-4,0.0010983175,0.001887178,0.0029120754,0.003564033,0.004419885,0.0051094949999999995,0.005719253,0.0061972550000000005,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,biomass (IGCC CCS),0.0,0.0,0.0,0.0,0.0,4.27548E-5,1.235568E-4,2.558699E-4,4.596427E-4,7.946388000000001E-4,0.0012511376,0.0021243132999999997,0.0051744836999999995,0.007912254300000001,0.014107818299999998,0.0222369415,0.0274979498,0.034327914900000006,0.040888745,0.04526960099999999,0.046991225000000005,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,2.55679E-4,6.31839E-4,0.00111176,0.0016262989999999999,0.002267734,0.0029078460000000004,0.003586552,0.005091414,0.005598494000000001,0.005383971,0.0039834806,0.0023939385,7.499048000000001E-4,2.2059095E-4,7.324351599999999E-5,1.6734364299999997E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,biomass (conv CCS),0.0,0.0,0.0,0.0,0.0,1.39811E-4,3.9713050000000005E-4,8.316949999999999E-4,0.001523983,0.002658352,0.0041794119999999995,0.007217225,0.017987953,0.027491774000000004,0.049490689000000004,0.076451356,0.09225702699999999,0.111934269,0.12715430100000003,0.13157422,0.117059188,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,biomass (conv),0.0,3.23995E-4,5.00385E-4,0.002005778,0.002489504,0.0034131680000000003,0.005027206,0.006691379000000001,0.008052618999999999,0.009475309000000001,0.0105375646,0.0111216024,0.0127081396,0.011653942,0.008311613,0.004292894,0.0019862138,4.901939E-4,1.2698288E-4,3.843214330000001E-5,7.85886944E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,biomass cogen,0.0,2.1581E-5,8.991E-5,1.45989E-4,2.2717E-4,2.9042E-4,3.45288E-4,3.88853E-4,4.3644E-4,4.69272E-4,4.84081E-4,4.87163E-4,4.54028E-4,3.98265E-4,2.86845E-4,1.84085E-4,1.2376E-4,6.18989E-5,3.25784E-5,1.88532E-5,8.5632E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,coal (IGCC CCS),0.0,0.0,0.0,0.0,0.0,2.61991E-4,7.354379999999999E-4,0.001437029,0.002493454,0.004217508,0.006540568,0.011042698,0.026560315,0.039329437,0.065165268,0.095539569,0.112493225,0.130392563,0.144961304,0.15303920799999998,0.15863946,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.00788198,0.01795132,0.02851882,0.03781254,0.04716492,0.055125060000000004,0.06127573,0.07124089,0.07241572000000002,0.059452710000000006,0.03897676,0.021697612999999998,0.0054695325999999985,0.00154426742,5.124406919999999E-4,1.1784909689999999E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,coal (conv pul CCS),0.0,0.0,0.0,0.0,0.0,6.48468E-4,0.001739502,0.003261348,0.005425350000000001,0.008740300999999999,0.012977295,0.020827871999999997,0.046647042,0.067107807,0.10644196,0.15075321600000002,0.17436797699999998,0.197831737,0.21540801999999998,0.22317120000000001,0.22557592,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,coal (conv pul),0.231522,0.307824,0.36616,0.669815,0.7472197,0.7926992,0.8283404,0.8453229000000001,0.8361837,0.818871,0.7960790999999999,0.751695,0.7038123,0.6209745000000002,0.38877416000000004,0.13868926,0.059159086,0.012248587999999998,0.00299673331,8.721270970000001E-4,1.7994508439999997E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,coal cogen,0.00156515,0.00241029,0.0029088,0.00550388,0.00498058,0.00548522,0.00547624,0.00545158,0.00503445,0.00448539,0.00392904,0.00272585,0.00191194,0.00134065,6.70093E-4,3.76015E-4,2.30935E-4,9.96846E-5,5.16921E-5,3.06202E-5,1.47431E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,gas (CC CCS),0.0,0.0,0.0,0.0,0.0,0.00456744,0.01155915,0.02036478,0.03064836,0.044330339999999996,0.05953373,0.08276217,0.15066041,0.20102127999999997,0.29370956,0.40241896,0.4606571,0.5325952,0.5972325,0.6407571,0.6849581,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,gas (CC),0.0370173,0.233934,0.247603,0.543115,0.6346229999999999,0.7111912,0.7849573000000001,0.8413729999999999,0.8721315000000001,0.8952042,0.9083530000000001,0.9149007,0.6578799,0.5691686,0.47352069999999996,0.37815370000000004,0.28340515,0.17274762000000002,0.09185384000000002,0.046130814,0.015902323500000003,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,gas (steam/CT),0.0103584,0.024693,0.1046,0.1050926,0.10225627,0.10002419,0.09503887,0.08699420000000001,0.07618634,0.06484503,0.05401775000000001,0.04335957,0.028133879999999997,0.019728835000000004,0.009268884,0.005593544,0.003108851,0.0011999037999999998,4.7234322E-4,1.9863899999999997E-4,6.0606239E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,gas cogen,7.66171E-4,0.0136033,0.0129492,0.0222999,0.0276711,0.0326453,0.0352824,0.0371407,0.0390193,0.0391373,0.0378618,0.0344187,0.030597,0.0260107,0.0191071,0.0142012,0.0108236,0.00656835,0.00428751,0.00293468,0.00164629,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,geothermal,2.87998E-4,3.38395E-4,0.00240475,0.01206867,0.01812234,0.02559318,0.03481069,0.04409365,0.050555300000000004,0.0519584,0.0569444,0.06331529,0.08007888,0.0800803,0.08008013,0.08007992,0.08008205999999998,0.08008007,0.08008003999999999,0.08008004,0.08008008999999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,hydro,0.154156,0.263261,0.335171,0.322883,0.311124,0.299366,0.287607,0.275848,0.291875,0.307902,0.323929,0.339956,0.355983,0.37201,0.388037,0.404064,0.420091,0.436118,0.452145,0.468172,0.468172,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,hydrogen cogen,0.0,0.0,0.0,0.0,5.13855E-5,9.77807E-5,1.58652E-4,2.36341E-4,3.4568E-4,4.94366E-4,6.73384E-4,8.57176E-4,0.00111485,0.00138874,0.001681,0.00191936,0.0021376,0.00250337,0.00288396,0.00339353,0.0035111,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,refined liquids (CC CCS),0.0,0.0,0.0,0.0,0.0,0.00202677,0.002980529,0.003716385,0.0045266130000000005,0.005904716000000001,0.007194215,0.009577991999999999,0.016879258,0.019389653,0.02732329,0.033784747,0.033195382,0.035391569,0.033556986999999996,0.026901266000000004,0.017598468,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,refined liquids (CC),0.0,0.0,0.0,0.00346653,0.002847332,0.002647813,0.0033468150000000004,0.004078395,0.004717379,0.005716176,0.006500987,0.007177078999999999,0.009668492,0.008422744000000001,0.008017055,0.006147374000000001,0.003671439,0.0017437639,7.688602000000001E-4,3.2550828000000003E-4,9.959818200000001E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,refined liquids (steam/CT),0.0262079,0.0251024,0.00900702,0.01176216,0.00973869,0.009281243,0.008932612999999999,0.008466494,0.008084354,0.007644115000000001,0.007130607000000001,0.0064188518,0.0029997824000000005,0.0017281824000000003,9.555216999999999E-4,5.848579E-4,3.3940060000000005E-4,1.5228346999999998E-4,6.410387999999999E-5,2.6456565E-5,7.3607931E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,refined liquids cogen,0.0107523,0.00468467,0.00174882,0.0023754,0.00267094,0.00295533,0.00306295,0.003164,0.0033596,0.00352103,0.00362695,0.00363056,0.00359144,0.00339127,0.00289312,0.00237864,0.00193907,0.0013235,9.01884E-4,6.06934E-4,3.18522E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,rooftop_pv,0.0,0.0,0.0,7.63078E-5,3.24781E-4,8.41554E-4,0.00172246,0.00319768,0.00604408,0.0103196,0.016431,0.0263566,0.0393558,0.0532087,0.0697745,0.0854399,0.101359,0.118501,0.134355,0.151756,0.165605,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,wind,0.0,2.48396E-4,0.0110014,0.0259092,0.03471684,0.04652144,0.06343444,0.08332454,0.09371074000000001,0.10591024,0.12652570000000002,0.1551112,0.2437862,0.30325399999999997,0.4205903999999999,0.5545571,0.62677,0.7122769,0.7399129,0.7785070000000001,0.793096,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,wind_storage,0.0,0.0,0.0,1.07242E-4,1.731093E-4,2.656917E-4,4.0496170000000004E-4,5.777047000000001E-4,7.688767000000001E-4,9.103767000000001E-4,0.0011261983999999998,0.0014374479999999998,0.0024439780000000003,0.003175089,0.004691267,0.006559075,0.007655786,0.009025994,0.009784914,0.01059132,0.011140569999999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,Gen_III,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00767983,0.02037052,0.03822322,0.06422741,0.0911908,0.11721259,0.13955677,0.15580864,0.16805520000000002,0.18325083999999997,0.19767697999999997,0.21181129000000004,0.2178693,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,Gen_II_LWR,0.0850906,0.0840297,0.094822,0.0876289,0.0835189,0.077524,0.0693204,0.0590228,0.0474109,0.0357991,0.0255015,0.0172979,0.011303,0.00719298,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,PV,3.60004E-6,6.84017E-5,2.98805E-4,3.8487410000000004E-4,7.786581E-4,0.0015316311,0.0027257411,0.0036633741,0.0038124551,0.004156328,0.004226351,0.004236721,0.003933758,0.003950167,0.004383501,0.004647653999999999,0.0047522020000000005,0.004738138,0.004598774,0.004421008000000001,0.004312105,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,PV_storage,0.0,0.0,0.0,1.43419E-6,7.95288E-6,2.046618E-5,4.118218E-5,7.765858E-5,9.777667999999999E-5,1.1687788999999998E-4,1.335028E-4,1.607879E-4,1.880522E-4,2.0442779999999997E-4,2.3627149999999998E-4,2.584346E-4,2.713428E-4,2.819874E-4,2.866958E-4,2.9037269999999997E-4,2.992346E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,biomass (IGCC CCS),0.0,0.0,0.0,0.0,0.0,1.19551E-4,3.41194E-4,6.4758E-4,8.49052E-4,0.001094926,0.0014135509999999999,0.002116944,0.0031266370000000003,0.004397007,0.005853906,0.007077157000000001,0.008091995,0.009385046000000001,0.010493195000000002,0.011334941,0.011279718999999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,6.44776E-4,0.001615427,0.0027403569999999997,0.003190119,0.00357415,0.0038985190000000005,0.0041815689999999996,0.004142227,0.003773888,0.002490398,0.0012138147,5.545488699999999E-4,1.2860840999999996E-4,3.0151970999999996E-5,7.98183179E-6,1.5310458770000001E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,biomass (conv CCS),0.0,0.0,0.0,0.0,0.0,4.08186E-4,0.0011661459999999998,0.0021928570000000003,0.0028740840000000003,0.0037149390000000004,0.004791532,0.00729869,0.010990699999999999,0.015756485,0.021677656,0.026531378,0.030345871000000003,0.035370331,0.039067089000000006,0.040677099,0.03601145,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,biomass (conv),0.00161282,0.00203766,0.00243364,0.001644735,0.004822175,0.007673599,0.011675799,0.015430822,0.015908910999999998,0.01592657,0.015480549,0.013944069799999998,0.0113423721,0.008422599780000001,0.0040966783,0.0015314187999999995,5.703640500000001E-4,1.12395526E-4,2.29051567E-5,5.05800437E-6,8.572083770000001E-7,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,biomass cogen,0.00186413,0.00639876,0.00725394,0.00563964,0.00762031,0.00836479,0.00831511,0.00754592,0.00679952,0.0058685,0.00499912,0.00396735,0.00304016,0.00231382,0.00144834,8.4874E-4,5.32115E-4,2.49501E-4,1.25199E-4,6.90498E-5,3.03653E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,coal (IGCC CCS),0.0,0.0,0.0,0.0,0.0,6.03054E-6,1.909647E-5,3.976312E-5,5.6873009999999996E-5,8.200888E-5,1.2129061E-4,2.2728762000000002E-4,4.0956882E-4,6.6995323E-4,9.9627866E-4,0.0012959104599999998,0.00155613596,0.0019118933000000001,0.0022712197,0.0026253193,0.0029544269,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,coal (IGCC),0.0,0.0,0.0,0.0,0.0,1.55407E-4,4.04286E-4,7.09365E-4,8.551380000000001E-4,9.84617E-4,0.001108964,0.0012340750000000003,0.001277804,0.0012067430000000001,7.585380999999999E-4,3.594012E-4,1.5589521000000003E-4,3.1293987999999996E-5,7.612846400000001E-6,2.11989972E-6,4.5038656E-7,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,coal (conv pul CCS),0.0,0.0,0.0,0.0,0.0,1.53746E-5,4.6061400000000006E-5,9.1042E-5,1.262401E-4,1.748404E-4,2.470051E-4,4.335333E-4,7.408581E-4,0.0011696177,0.0016881892000000002,0.0021502705,0.0025387359,0.0030479662,0.0035442623,0.0040132360999999995,0.0044187642000000004,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,coal (conv pul),3.38404E-4,4.7522E-4,3.81602E-4,8.41123E-4,0.002017705,0.00336365,0.005021736,0.006650246,0.007208158999999999,0.007583130999999999,0.0078588692,0.0078766171,0.007376141439999999,0.006249009240000001,0.0032324127,0.0012749412,4.6426581000000007E-4,8.0230722E-5,1.66777152E-5,3.7496106529999996E-6,7.153653500000002E-7,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,coal cogen,1.00746E-4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,gas (CC CCS),0.0,0.0,0.0,0.0,0.0,5.71292E-4,0.0015345860000000001,0.002728923,0.003404292,0.0041284450000000006,0.0049666400000000005,0.006579317,0.008699721,0.011194304,0.013434398,0.014977223999999999,0.015965232,0.018490188999999997,0.021119914,0.023724089999999996,0.025607480000000002,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,gas (CC),0.0,0.00174519,0.0180938,0.01995417,0.02765525,0.036726850000000005,0.04700952,0.055908280000000005,0.057462570000000004,0.05776303,0.057609230000000004,0.05719541,0.052849030000000005,0.04340555,0.029769195000000002,0.017486441,0.008601723,0.0036925688,0.0014739218000000003,5.7149119E-4,1.3930180600000002E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,gas (steam/CT),2.69998E-4,1.05273E-4,1.08859E-5,1.7873308999999998E-4,5.7685184E-4,0.00103051116,0.0015412006000000002,0.00194604626,0.00197086494,0.0019143752099999997,0.00178951876,0.001495792384,0.00110686178,7.2078174E-4,3.4330570000000004E-4,1.4472590000000002E-4,5.6149609999999996E-5,1.8028634000000005E-5,6.185029600000001E-6,2.2820135E-6,5.3933405E-7,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,gas cogen,0.00120861,0.00317471,0.0040509,0.00285797,0.0028115,0.00267321,0.00224732,0.00177741,0.0014098,0.00107544,8.25721E-4,5.69207E-4,4.07745E-4,2.98938E-4,1.92716E-4,1.32376E-4,9.4787E-5,5.45603E-5,3.39999E-5,2.2117E-5,1.20517E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,geothermal,0.00108001,0.00596895,0.0160743,0.01908162,0.0266405,0.03491262,0.03547397,0.03547396,0.03547204,0.035474,0.035474,0.03547401,0.03547401,0.0354742,0.03547392,0.035474,0.03547526,0.03547401,0.035474,0.035474,0.035474,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,hydro,0.558752,0.626339,0.598385,0.583929,0.569578,0.555226,0.540875,0.526524,0.53205,0.537576,0.543103,0.548629,0.554155,0.559681,0.565207,0.570734,0.57626,0.581786,0.587312,0.592839,0.592839,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,hydrogen cogen,0.0,0.0,0.0,0.0,0.00165478,0.00273241,0.0037925,0.0047059,0.00571587,0.00678492,0.00783319,0.00808632,0.00876954,0.0096777,0.010496,0.0109415,0.0112161,0.0119012,0.0120003,0.0119862,0.0105772,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,refined liquids (CC CCS),0.0,0.0,0.0,0.0,0.0,3.43881E-5,6.11193E-5,7.886279999999999E-5,7.16269E-5,7.407875999999999E-5,7.710192E-5,8.730869999999999E-5,9.584829999999999E-5,1.0373179999999999E-4,1.0804795999999999E-4,9.812935999999999E-5,8.543918E-5,9.146854E-5,8.01969E-5,6.12084E-5,3.441871E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,refined liquids (CC),0.0,0.0,0.0,5.39448E-6,2.616331E-5,3.417247E-5,5.124345E-5,6.66375E-5,6.0704630000000004E-5,5.9461709999999994E-5,5.816189E-5,5.535979E-5,4.793392E-5,3.767185E-5,2.3191179999999998E-5,1.227422E-5,6.214918E-6,2.6134216000000003E-6,9.598819E-7,3.5844686000000003E-7,8.5303392E-8,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,refined liquids (steam/CT),0.0010152,2.62807E-4,1.83584E-4,1.727403E-4,1.8990571000000001E-4,1.8410119E-4,1.7374158E-4,1.5415983E-4,1.2823868000000002E-4,1.02721E-4,8.018712900000001E-5,5.809761999999999E-5,3.8117099999999995E-5,2.0223658000000003E-5,5.856062999999999E-6,2.3451953E-6,8.078780000000001E-7,2.8540125E-7,9.385073599999999E-8,3.0961771E-8,6.117359999999999E-9,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,refined liquids cogen,4.21305E-4,6.08071E-4,1.87116E-4,1.1752E-4,1.14233E-4,1.08651E-4,9.65328E-5,8.25241E-5,7.32094E-5,6.43231E-5,5.6784E-5,4.69582E-5,3.95404E-5,3.31924E-5,2.53216E-5,1.92161E-5,1.47341E-5,9.65879E-6,6.10806E-6,3.84591E-6,1.93005E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,rooftop_pv,0.0,0.0,0.0,4.64166E-7,2.34406E-6,4.68771E-6,7.99073E-6,1.17454E-5,1.79775E-5,2.46155E-5,3.23253E-5,4.06196E-5,4.90547E-5,5.60449E-5,6.47623E-5,7.14099E-5,7.6966E-5,8.33499E-5,8.74753E-5,9.04013E-5,9.2113E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,wind,0.0,0.00182525,0.00335526,0.0053507,0.0159873,0.0374301,0.0727811,0.1163589,0.13577444,0.15653340000000002,0.17107150000000002,0.1919806,0.2070375,0.21836080000000002,0.2475555,0.2666021,0.2763393,0.28147089999999997,0.2800203,0.2770259,0.2791625,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,wind_storage,0.0,0.0,0.0,1.06483E-5,6.911310000000001E-5,1.917641E-4,4.018811E-4,6.721071E-4,8.157520999999999E-4,9.505758E-4,0.0010560069999999999,0.001213673,0.001339389,0.0014378309999999999,0.001651257,0.001796242,0.001875813,0.001929539,0.0019387480000000001,0.001934917,0.001961905,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,CSP,0.0,0.0,0.0,1.82759E-4,7.74116E-4,0.002345106,0.0057109959999999994,0.011201236,0.018848676,0.026529307000000002,0.03308498,0.03861529,0.04451364,0.050037899999999996,0.061308760000000004,0.08208657,0.10448654,0.13387184,0.14834640000000002,0.1551378,0.1553819,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,CSP_storage,0.0,0.0,0.0,0.0,0.0,0.00522612,0.02606442,0.07546872,0.15907192,0.30652892,0.54559192,0.8495737999999999,1.2740975,1.7990021999999999,2.814579,4.497292,6.313449,8.855961,10.459609,11.574240000000001,12.55934,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,Gen_III,0.0,0.0,0.0,0.0640601,0.1339705,0.23428539999999998,0.3747984,0.5441374,0.7524234,1.0005093999999999,1.2869563999999998,1.5824853999999997,1.9386854,2.3363794,3.0018184000000003,3.9232834,4.849323,5.996130000000001,6.683002,7.151979,7.681642999999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,Gen_II_LWR,0.0221076,0.0623663,0.0945575,0.0873845,0.0832859,0.0773078,0.069127,0.0588582,0.0472787,0.0356993,0.0254304,0.0172497,0.0112715,0.00717295,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,PV,0.0,6.83999E-5,8.27999E-5,0.0114319999,0.0386095999,0.0944354999,0.19356689989999998,0.3301238999,0.4853731,0.5872199,0.6355128999999999,0.6446769000000001,0.6259231000000001,0.5824936,0.5821676,0.6992995999999999,0.8603419999999999,1.0818451,1.1860564999999998,1.230648,1.221602,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,PV_storage,0.0,0.0,0.0,1.89158E-4,6.39227E-4,0.001567728,0.003220268,0.005620898,0.009064118,0.01417596,0.021409881,0.03026386,0.04257462,0.058168990000000004,0.08921536999999999,0.14178956999999998,0.19965088,0.2817416,0.33415120000000004,0.3715336,0.40603290000000003,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,biomass (IGCC CCS),0.0,0.0,0.0,0.0,0.0,9.10627E-4,0.003027962,0.006960959,0.013814736,0.024302187,0.038184058,0.057298907999999996,0.086150085,0.12399332500000002,0.20836016000000002,0.35490409700000003,0.523301652,0.7824908099999999,0.96298422,1.09138995,1.1914238999999998,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,0.00558506,0.01586965,0.03146245,0.05172378,0.0766823,0.10651599,0.13606264,0.16979170999999998,0.20449011,0.23592858999999997,0.24101165,0.20321372,0.08797314,0.026285777,0.0083254835,0.00172961915,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,biomass (conv CCS),0.0,0.0,0.0,0.0,0.0,0.00294679,0.00994484,0.02304276,0.04572718,0.07922866,0.12004139,0.17483066,0.25222926,0.34522972,0.5439243899999999,0.84824442,1.1691650999999998,1.6713924100000002,2.0023237199999997,2.1944180999999996,2.2129663,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,biomass (conv),0.0,0.00692279,0.00740519,0.014516683,0.034426078,0.060640827999999994,0.10570423400000001,0.164624931,0.22744822599999998,0.292896329,0.35958091400000003,0.41105621400000003,0.45430470850000004,0.4802507479,0.44276206,0.32604266,0.19901395000000002,0.05702199,0.013844124,0.0039600506,7.51670486E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,coal (IGCC CCS),0.0,0.0,0.0,0.0,0.0,0.00415359,0.013562290000000001,0.03030197,0.059954850000000004,0.10477101999999999,0.15968090000000001,0.23209645,0.33428062000000003,0.45325601000000004,0.6929568500000001,1.07489378,1.4754504099999999,2.02766689,2.3958144999999993,2.6536084,2.9159973,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.12977,0.336397,0.606776,0.9039699999999999,1.210518,1.5182149999999999,1.7549080000000001,1.966855,2.1310070000000003,2.1249749999999996,1.8831822,1.4097491000000002,0.4930166,0.14648609999999998,0.048148562000000006,0.010804174109999998,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,coal (conv pul CCS),0.0,0.0,0.0,0.0,0.0,0.0102077,0.0317787,0.06772210000000001,0.1274582,0.211285,0.30622510000000003,0.42295609999999995,0.5761235,0.74504861,1.06431246,1.54709368,2.0346573999999995,2.6916091,3.1239824,3.4176852,3.7022508999999997,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,coal (conv pul),0.68977,1.69899,2.35082,3.5071000000000003,4.4748,5.4686900000000005,6.6664699999999995,7.88954,8.85083,9.613844,10.248442,10.510430000000001,10.617939,10.517361600000001,9.196058,6.341814999999999,3.8031761000000004,1.0375831000000002,0.26774952999999996,0.07807180080000001,0.01566188538,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,gas (CC CCS),0.0,0.0,0.0,0.0,0.0,0.0904466,0.23932689999999998,0.4334167,0.6555496000000001,0.8881167999999999,1.1035396,1.3044774,1.5274507999999998,1.7529621999999998,2.057255,2.513916,2.975786,3.770005,4.318839,4.742659,5.319451,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,gas (CC),0.0,0.247169,0.0386551,0.08943090000000001,0.160648,0.2390563,0.37501070000000003,0.577633,0.8214678,1.1013587,1.4171741000000002,1.69000694,1.9191548700000003,2.12016107,2.323772,2.4529250000000005,2.386306,1.9731910000000001,1.374013,0.8271971200000001,0.34451785,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,gas (steam/CT),0.0358488,0.0245121,0.385385,0.465995,0.570398,0.6364382,0.6983557,0.7387203,0.7473061999999999,0.7362679,0.7147667000000001,0.6776535,0.5292177,0.401819,0.27987749999999995,0.18367515999999998,0.10996501,0.04467174,0.016339200999999998,0.0061324565,0.00175367724,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,geothermal,0.0,0.0,0.0,0.022071,0.0475766,0.056582,0.056581980000000004,0.05658185,0.05658537,0.05658196,0.056582049999999995,0.05658198,0.056581980000000004,0.05656318,0.056581948,0.05659077,0.05659674,0.056581998,0.056581808,0.056582015,0.056581967,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,hydro,0.257962,0.366228,0.411926,0.447853,0.48378,0.519707,0.555634,0.591561,0.654843,0.718125,0.781406,0.844688,0.90797,0.971252,1.03453,1.09782,1.1611,1.22438,1.28766,1.35094,1.35094,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,hydrogen cogen,0.0,0.0,0.0,0.0,5.03314E-4,0.00120779,0.00227874,0.00383242,0.00625721,0.00977749,0.0138511,0.0182346,0.0238233,0.0319023,0.0401274,0.0488005,0.0579165,0.0694891,0.0836229,0.099971,0.10158,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,refined liquids (CC CCS),0.0,0.0,0.0,0.0,0.0,0.169002,0.321948,0.48831410000000003,0.6818055000000001,0.8819434000000002,1.0415924,1.2131759,1.3729126,1.4775298,1.618919,1.7380760000000002,1.755859,1.8059630000000002,1.649314,1.3389281999999998,0.8871271000000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,refined liquids (CC),0.0,0.0,0.0,0.0781665,0.1590166,0.2051231,0.3113994,0.4502864,0.6039989,0.7791649999999999,0.9609281999999999,1.0841287,1.1659923,1.1803113,1.108233,0.9540764999999999,0.7064024999999999,0.3388424,0.13678684,0.052452909,0.013610085,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,refined liquids (steam/CT),0.0361728,0.0836639,0.0951875,0.17719969000000002,0.27265914999999996,0.31062999,0.35244961,0.38190046,0.40485229,0.42175729,0.4307032,0.43185908000000006,0.31778870000000004,0.21915878000000003,0.15991877000000002,0.10773571,0.06786046000000001,0.03119279,0.012780007999999999,0.0047673182,0.00119563021,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,rooftop_pv,0.0,0.0,0.0,0.00164147,0.00957993,0.0313654,0.0730212,0.14922,0.307544,0.567722,0.951132,1.66447,2.56686,3.56152,4.80084,5.78414,6.47067,6.86251,7.13194,7.40183,7.62168,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,wind,1.152E-4,0.0237708,0.0716795,0.1179991,0.1870741,0.3087591,0.5058530999999999,0.7700480999999999,1.0231616,1.358288,1.721658,2.063533,2.456905,2.879575,3.6968620000000003,4.954426,6.1561710000000005,7.673421,8.406845,8.76519,8.86721,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,wind_storage,0.0,0.0,0.0,4.67883E-4,0.001234631,0.0027485310000000002,0.005509351000000001,0.009666431,0.015238881,0.021904138,0.02991978,0.03846058,0.049290259999999995,0.061885779999999994,0.08674303,0.12787539,0.1711684,0.2299021,0.2641806,0.2859908,0.3021674,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,CSP,0.0,0.0,0.0,1.00245E-4,3.63002E-4,9.37745E-4,0.0020426949999999998,0.003664245,0.006076465,0.00924957,0.013051113,0.017479059999999998,0.023371740000000002,0.027037330000000002,0.029786109999999998,0.03393383,0.03753488,0.04237954,0.042785569999999995,0.04316539,0.044230399999999996,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,CSP_storage,0.0,0.0,0.0,0.0,0.0,0.00170154,0.007765340000000001,0.02035324,0.04017694,0.06894143999999999,0.10712614,0.1529222,0.2265144,0.3375345,0.5765608,1.0037793000000002,1.4862116,2.177916,2.6884360000000003,3.0422140000000004,3.359586,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,Gen_III,0.0,0.0,0.0,0.00385367,0.007324300000000001,0.01630153,0.034313830000000003,0.061235830000000005,0.09613203000000001,0.13938422,0.18970331,0.24276091,0.31451611,0.39400361,0.5206505100000001,0.71211684,0.90869601,1.1565811,1.3282794,1.4448859,1.5722275000000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,PV,0.0,0.0,0.0,0.0015181,0.00446322,0.00944654,0.01741081,0.027473209999999998,0.040860509999999996,0.056378410000000004,0.07347859,0.09242567,0.1157152,0.125319,0.1282482,0.1341688,0.1380023,0.1447483,0.1367591,0.1351163,0.1387463,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,PV_storage,0.0,0.0,0.0,2.52997E-5,7.40585E-5,1.5683640000000002E-4,2.885124E-4,4.560014E-4,6.795644E-4,9.374207E-4,0.0012247419,0.0015534440000000002,0.002105639,0.00299871,0.004999217,0.008664551,0.012875021,0.018984721,0.02353579,0.026761419999999998,0.029760049999999996,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,biomass (IGCC CCS),0.0,0.0,0.0,0.0,0.0,9.57418E-5,3.186514E-4,7.072261E-4,0.0013552541000000002,0.0022522845,0.0033478227,0.004876407399999999,0.0073887137000000006,0.010657789499999999,0.018656481099999997,0.0346163404,0.0564014749,0.09365662899999999,0.122438254,0.14268104999999998,0.158580156,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,5.95367E-4,0.001721785,0.00338012,0.005666071999999999,0.008692648,0.012387144000000001,0.016431166,0.022039105,0.028004318,0.033443465,0.034933048,0.028089306,0.0110106602,0.0031101500999999995,9.4744986E-4,2.0265115100000003E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,biomass (conv CCS),0.0,0.0,0.0,0.0,0.0,3.0806E-4,0.001037684,0.002295579,0.004292158,0.0067779780000000005,0.009454813999999999,0.013085472999999999,0.018525156,0.024915179,0.041037511,0.070191594,0.11067158700000002,0.184622326,0.237894638,0.26903826999999997,0.27661079,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,biomass (conv),0.0,7.91916E-5,3.42008E-4,0.0016047729999999999,0.003855012,0.006728651,0.011645522,0.017892969,0.0249374147,0.0327945224,0.0409299611,0.0479757787,0.05593784240000001,0.06152754708,0.058158906999999996,0.043428751,0.024991659,0.006619014,0.0015542297,4.3355731000000006E-4,8.555326070000001E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,coal (IGCC CCS),0.0,0.0,0.0,0.0,0.0,5.46509E-4,0.001693693,0.003511109,0.006358842,0.009884393,0.013675081999999998,0.018535002000000002,0.025892114,0.034437986,0.054429458,0.092855428,0.144127449,0.225592087,0.28497015,0.32622795,0.36976799,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.01743,0.0439793,0.0764042,0.1126994,0.1513289,0.19001220000000002,0.22227880000000003,0.25693520000000003,0.2850322,0.2875484,0.25471063,0.18125331,0.05732101,0.016090881,0.0051238308000000005,0.001189224926,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,coal (conv pul CCS),0.0,0.0,0.0,0.0,0.0,0.00133788,0.00394505,0.0077896400000000005,0.013344950000000001,0.019569529999999998,0.02570042,0.03298542,0.043189620000000005,0.054404640000000004,0.07958942,0.12626667,0.18839637,0.28673723,0.35718795000000003,0.40531421,0.45533185000000004,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,coal (conv pul),0.0351648,0.186455,0.24521,0.46773200000000004,0.6171059999999999,0.755283,0.9144220000000001,1.065305,1.188373,1.2909620000000002,1.3757192999999999,1.4175130000000002,1.4457864999999999,1.4385059,1.2415615000000004,0.8088715000000001,0.45078190000000007,0.11157977,0.027475164000000003,0.00787399009,0.00165436044,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,gas (CC CCS),0.0,0.0,0.0,0.0,0.0,0.0444506,0.1118723,0.19034230000000002,0.2730166,0.3490322,0.41122899999999996,0.46585,0.5282366000000001,0.5862731,0.6469661999999999,0.7499107,0.8742947,1.1062067,1.2621335,1.3594761,1.4632083999999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,gas (CC),1.566E-5,0.0351839,0.0227519,0.0641766,0.107459,0.14573260000000002,0.2058991,0.286459,0.38344490000000003,0.49720383,0.62094939,0.72959408,0.8134134,0.8861599400000001,0.9492781,0.9747249999999998,0.903154,0.6492014,0.3725661,0.18665307999999997,0.066815959,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,gas (steam/CT),0.00262674,0.0335258,0.121385,0.1867877,0.2349824,0.2619375,0.2850329,0.29659060000000004,0.2953146,0.2862994,0.2718074,0.24961435,0.17713418,0.12525013,0.08083444,0.04860485999999999,0.02625483,0.009193585000000002,0.0030266417,0.0010691935999999997,3.0760144000000004E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,geothermal,0.00405,0.0237744,0.0336852,0.059615,0.0806917,0.1046074,0.13171100000000002,0.15489379999999997,0.1548961,0.154894,0.15489389999999997,0.1549072,0.154894,0.1548985,0.1548938,0.1548939,0.1549035,0.15489409999999998,0.1548941,0.154894,0.154894,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,hydro,0.0205488,0.03861,0.0636336,0.0643101,0.0649865,0.065663,0.0663395,0.0670159,0.0690624,0.071109,0.0731555,0.075202,0.0772485,0.079295,0.0813415,0.083388,0.0854345,0.0874811,0.0895276,0.0915741,0.0915741,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,hydrogen cogen,0.0,0.0,0.0,0.0,5.64109E-4,0.00126425,0.00217303,0.00328819,0.00471863,0.00650822,0.00844209,0.010197,0.0130074,0.0178887,0.0232383,0.0299348,0.036904,0.0490125,0.0632539,0.0790425,0.090495,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,refined liquids (CC CCS),0.0,0.0,0.0,0.0,0.0,0.0618509,0.1163623,0.1662555,0.2168895,0.2544869,0.2766283,0.3052112,0.33771300000000004,0.35353110000000004,0.3867655,0.41689129999999996,0.4347799,0.46567309999999995,0.4136701,0.3171151,0.2071482,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,refined liquids (CC),0.0,0.0,0.0,0.0391023,0.07302249999999999,0.0920698,0.1292569,0.17308279999999998,0.2228193,0.28037259999999997,0.3366013,0.37637550000000003,0.4119444,0.4174795,0.386178,0.3258292,0.2249929,0.09977653,0.03827225000000001,0.014009784,0.00371546014,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,refined liquids (steam/CT),0.0551952,0.140904,0.124218,0.171029,0.2090421,0.2199328,0.22230870000000003,0.21690320000000002,0.20902340000000003,0.20029321,0.19102161,0.18217929,0.1225705,0.08030623,0.05416116,0.035732959999999994,0.02176307,0.009388008,0.0036339587,0.00130275726,3.3211768999999995E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,rooftop_pv,0.0,0.0,0.0,2.63166E-4,0.00133749,0.00417645,0.00890645,0.0166458,0.0313342,0.0540747,0.0870395,0.152651,0.245497,0.355166,0.501971,0.625906,0.70229,0.759282,0.784563,0.802495,0.850038,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,wind,0.0,0.0,0.0,0.00267997,0.0071959,0.01533241,0.02878791,0.04635731,0.06832911,0.09206914,0.11732400999999999,0.1425489,0.1766758,0.21382159999999997,0.2779129,0.3773139,0.4714741,0.5857187,0.6449583,0.6723047999999999,0.6820280999999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,wind_storage,0.0,0.0,0.0,2.77223E-5,8.29575E-5,1.992805E-4,4.2167750000000003E-4,7.520235000000001E-4,0.0012137145,0.0017949502,0.00248772,0.003272237,0.00443322,0.0058114640000000006,0.008321143,0.012615125,0.0172153,0.02348715,0.02764697,0.030342959999999995,0.03262986,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,CSP,0.0,0.0,0.0,0.00181957,0.00294948,0.003628833,0.005268113,0.007557293,0.011501003,0.014392253,0.018302623,0.02368121,0.03622703,0.044040050000000004,0.05444074,0.05953431000000001,0.06034437,0.06060523,0.05407458,0.05058779,0.04529959,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,CSP_storage,0.0,0.0,0.0,0.0,0.0,8.58567E-4,0.004698797,0.012284217,0.026114517,0.043765917,0.063904917,0.08706005,0.13973672,0.1740733,0.23434690000000002,0.2912932,0.3285756,0.3897332,0.416428,0.44995830000000003,0.4739624,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,Gen_III,0.0,0.0,0.0,0.0,0.0,0.0115153,0.0591665,0.14786549999999998,0.2744413,0.40517729999999996,0.5291313,0.6583242,0.927441,1.105882,1.3770428,1.6048857,1.7573424,1.9415017,2.0797448,2.1476879999999996,2.2142589999999998,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,Gen_II_LWR,0.728178,1.09712,1.03763,0.958912,0.913937,0.848336,0.758565,0.645879,0.518812,0.391746,0.27906,0.189289,0.123688,0.0787122,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,PV,3.6E-6,0.00537479,0.0136764,0.01714957,0.018745869999999998,0.019488325999999997,0.020977675999999997,0.022768315999999997,0.011851125999999998,0.011469666,0.013011006,0.01594766,0.02296244,0.02727487,0.03333958,0.036536040000000006,0.0373029,0.03796716,0.03471615,0.03324969,0.03083824,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,PV_storage,0.0,0.0,0.0,5.78794E-5,8.43063E-5,9.66385E-5,1.212598E-4,1.510591E-4,1.971104E-4,1.905342E-4,2.1644159999999998E-4,2.6553249999999997E-4,3.841732E-4,4.605739E-4,6.025146E-4,7.419354E-4,8.376601E-4,9.98084E-4,0.00107275,0.0011665690000000001,0.001241125,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,biomass (IGCC CCS),0.0,0.0,0.0,0.0,0.0,8.15228E-5,3.115787E-4,6.745433E-4,0.0014231744,0.0024600933,0.0037314908,0.0056269721,0.010803712600000001,0.0150568388,0.023259648100000002,0.0309317656,0.0363884137,0.043844779,0.050664424,0.055571566,0.058617401,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,4.29941E-4,0.001388496,0.00268076,0.004602147,0.006520074999999999,0.008209927,0.009500757,0.011562483,0.011664826,0.00980782,0.0061866735,0.0034070098,9.530037E-4,2.6006081E-4,8.2090141E-5,1.68898115E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,biomass (conv CCS),0.0,0.0,0.0,0.0,0.0,2.80985E-4,0.001079167,0.0022992909999999997,0.004874168,0.008417085999999999,0.012721964999999998,0.019469982,0.038368642999999994,0.054268881000000005,0.087153166,0.116904751,0.136792303,0.164068658,0.18601566,0.19723032,0.19015446,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,biomass (conv),0.037872,0.0795455,0.0844343,0.08792699999999999,0.08574011999999999,0.08292054,0.0814937,0.07765693,0.07275825,0.06644136,0.05958221999999999,0.05179262,0.04558199,0.035983496,0.018328075,0.007413037000000001,0.0031373843999999997,7.251144299999999E-4,1.78186318E-4,5.158780949999999E-5,9.45904967E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,coal (IGCC CCS),0.0,0.0,0.0,0.0,0.0,1.60411E-4,6.83764E-4,0.001572658,0.00365154,0.006916901,0.011321527,0.018625043,0.040121826,0.058086263,0.091842019,0.122084517,0.141876376,0.16592068199999999,0.18652536500000003,0.20082433000000002,0.21418342,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.00399693,0.013369510000000001,0.026006210000000002,0.04375287,0.06076525,0.07509922999999999,0.08461055,0.09665313000000002,0.09660574,0.07638198,0.04670404,0.024557089000000004,0.0059076676,0.0016509922900000001,5.504653339999998E-4,1.2164049469999998E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,coal (conv pul CCS),0.0,0.0,0.0,0.0,0.0,4.11631E-4,0.00165379,0.0035994779999999997,0.007879188,0.014196394,0.022291272,0.035146651,0.07138007499999999,0.100933536,0.15439897700000002,0.200706316,0.22997004100000001,0.26421687000000005,0.29230670999999997,0.31042956,0.32489872,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,coal (conv pul),0.420141,1.09279,1.09618,1.366932,1.4176989000000002,1.3831409000000001,1.3514097000000003,1.3009401,1.2392616999999997,1.1600168999999998,1.0771702,0.978618,0.8838686000000001,0.7533076000000001,0.42960362,0.15246137,0.06374932999999999,0.013579932500000001,0.00344687728,0.001040442211,2.0366414810000003E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,gas (CC CCS),0.0,0.0,0.0,0.0,0.0,0.00360276,0.01371709,0.02885438,0.05653587,0.09176257,0.13082746,0.18175662999999997,0.3083592,0.40232122000000003,0.5675601100000001,0.710209,0.7983602,0.9103498999999999,1.0061909999999998,1.0705132,1.141065,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,gas (CC),0.550414,0.734881,0.709121,1.119144,1.23832,1.2596948000000001,1.3231742,1.3862332999999998,1.4639324,1.5145304000000004,1.5413986,1.5451685,1.1535724,1.0079307,0.8874743999999999,0.7243459,0.5431988299999999,0.29237911000000005,0.13666103999999998,0.06075114799999999,0.0191815634,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,gas (steam/CT),0.0510872,0.125658,0.387131,0.31220289999999995,0.29768028,0.28774004999999997,0.26605103999999996,0.23488802,0.19554391,0.15607083,0.12102643,0.08912078000000001,0.055118999999999994,0.03599475,0.016823716,0.009766572000000001,0.00538,0.0018382134000000001,6.511777399999999E-4,2.4905104000000003E-4,7.1141013E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,geothermal,0.00626759,0.0116136,0.00947519,0.01764907,0.02219298,0.025019189999999997,0.031361270000000004,0.03917945,0.04223009,0.0472237,0.05436586,0.05658201,0.05657989000000001,0.056581980000000004,0.05658199,0.05658208,0.0565832,0.05658201,0.05658198,0.05658201,0.05658204,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,hydro,0.321498,0.275292,0.295963,0.294981,0.293999,0.293016,0.292034,0.291052,0.294216,0.29738,0.300544,0.303708,0.306872,0.310036,0.3132,0.316365,0.319529,0.322693,0.325857,0.329021,0.329021,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,hydrogen cogen,0.0,0.0,0.0,0.0,1.38099E-4,2.57207E-4,4.10178E-4,5.93435E-4,8.21252E-4,0.00112597,0.00148302,0.00183468,0.00230193,0.00281768,0.00338254,0.00377284,0.00413049,0.0047059,0.00511751,0.00561868,0.0054313,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,refined liquids (CC CCS),0.0,0.0,0.0,0.0,0.0,0.00672818,0.01685337,0.02503686,0.0402263,0.05251752,0.06394891999999999,0.08028409,0.1231449,0.13813921,0.18362994,0.20158781,0.2009186,0.21642260000000002,0.19916716,0.15897714000000002,0.10059231000000002,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,refined liquids (CC),0.0,0.0,0.0,0.0263883,0.02066024,0.01638967,0.02236051,0.02933206,0.03991253,0.0484624,0.05483928,0.056962663999999996,0.065435678,0.053526484,0.045499870000000005,0.02980626,0.018196681,0.008215604,0.0031977642,0.00122576692,3.355774390000001E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,refined liquids (steam/CT),0.892385,0.495089,0.350827,0.32580230000000004,0.2879154,0.27469363,0.25236390999999997,0.22205325,0.18659827,0.15113669,0.11906888000000002,0.090860044,0.04649322,0.026689981000000005,0.0064171110000000005,0.003893262,0.0022476355999999998,9.072555999999999E-4,3.2326834E-4,1.15528372E-4,2.88098628E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,rooftop_pv,0.0,0.0,0.0,4.17595E-5,1.58638E-4,4.0929E-4,8.21086E-4,0.00147,0.00254565,0.00405754,0.0060711,0.00930441,0.0129743,0.016254,0.0198107,0.0227133,0.0256321,0.0284923,0.0311979,0.0345546,0.0377163,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,wind,0.0,0.00631439,0.0142632,0.0258423,0.03324238,0.03837575,0.05218245,0.07294355,0.09362184999999999,0.12315915,0.15894376999999998,0.2029636,0.2945839,0.3482563,0.4296638,0.4912544,0.522165,0.5729925,0.5706585000000001,0.5887177,0.5944277,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,wind_storage,0.0,0.0,0.0,8.51054E-5,1.4185659999999998E-4,1.8269229999999997E-4,2.9907729999999996E-4,4.8752329999999995E-4,8.240703E-4,0.0011616759,0.0015828157,0.00212662,0.0034075349999999997,0.004267549,0.0057139520000000004,0.006958041,0.00771867,0.00888609,0.009304739999999999,0.00991221,0.01034831,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,CSP,0.0,0.0,0.0,2.05713E-6,1.562253E-5,4.625853E-5,1.0923903E-4,2.1012803E-4,3.8705403E-4,6.081549E-4,8.753105E-4,0.0010979755000000001,0.001403972,0.001835309,0.002469651,0.003215994,0.003960163000000001,0.004950042,0.0057979450000000005,0.006394189,0.006994571,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,CSP_storage,0.0,0.0,0.0,0.0,0.0,1.01848E-4,4.89991E-4,0.001370009,0.0030115289999999998,0.005335138999999999,0.009537338999999999,0.016571851,0.030450308,0.052493490000000004,0.08927226999999999,0.13639746000000003,0.18825846,0.2559233,0.3216741,0.38000700000000004,0.4581097,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,Gen_III,0.0,0.0,0.0,0.00137158,0.00443017,0.0086401,0.01487587,0.02280472,0.034550899999999996,0.047985589999999995,0.06589289,0.08585189,0.11634817,0.15799576,0.21854536000000002,0.28611805,0.35290823,0.43200196999999996,0.5070226499999999,0.5751816,0.6635689,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,Gen_II_LWR,0.0105732,0.038898,0.0211644,0.0195589,0.0186415,0.0173034,0.0154724,0.0131739,0.0105822,0.0079904,0.00569197,0.00386091,0.00252285,0.00160549,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,PV,3.6E-6,3.24E-5,1.116E-4,5.05172E-4,0.002426042,0.005781722,0.011515752,0.019418532000000002,0.031638532,0.04513476,0.05577719,0.05907225,0.06102057,0.06354369,0.06639669000000001,0.07017659,0.07605608999999999,0.09110194999999999,0.10418039999999999,0.11262149999999999,0.12016379999999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,PV_storage,0.0,0.0,0.0,6.5593E-6,3.83624E-5,9.410819999999999E-5,1.889366E-4,3.206736E-4,5.289506E-4,7.797323E-4,0.0011640342,0.0018038353999999999,0.003086997,0.00516801,0.008673633,0.013233621999999999,0.018325717,0.025054180000000002,0.03166129,0.037656270000000006,0.04582417,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,biomass (IGCC CCS),0.0,0.0,0.0,0.0,0.0,1.05022E-4,2.918473E-4,5.79073E-4,0.0011028104000000002,0.0017954245,0.002890719,0.0046288349999999995,0.008176946,0.014262183000000001,0.025526897,0.040097005,0.056127807,0.076834402,0.09740511600000001,0.115859789,0.13719109200000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,5.43399E-4,0.001285959,0.002207531,0.003453075,0.004711134,0.0061658519999999994,0.007365941000000001,0.008627839,0.009555101999999998,0.008539118999999998,0.0057116219999999995,0.0032659357,8.916007E-4,2.4303234999999994E-4,8.0960759E-5,1.8494659900000003E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,biomass (conv CCS),0.0,0.0,0.0,0.0,0.0,3.64914E-4,0.001015329,0.002028902,0.003880447,0.006265077,0.010041300999999999,0.016351447,0.029705085,0.053425622,0.10140041,0.164372999,0.232826713,0.327037291,0.41501955,0.48192324,0.53794937,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,biomass (conv),0.0,0.0109656,0.00929879,0.0032140299999999997,0.006788536,0.008803161,0.011844439,0.014749715,0.017774854,0.020134273999999997,0.022516442999999997,0.023303913,0.023184747999999995,0.0214762648,0.014191871,0.00666835,0.002913993,6.3253977E-4,1.5375912500000002E-4,4.6904664800000006E-5,9.57754493E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,coal (IGCC CCS),0.0,0.0,0.0,0.0,0.0,7.00862E-5,2.140364E-4,4.519103E-4,9.343609000000001E-4,0.0016293041999999999,0.0028309770999999997,0.0049602433,0.0096483524,0.017865984,0.032830942700000004,0.051895040200000006,0.07187557950000001,0.095971292,0.11925063899999999,0.139619369,0.165251849,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.00169685,0.00414574,0.0071038099999999995,0.01081667,0.014313560000000001,0.01802762,0.02065954,0.022944720000000005,0.024139590000000002,0.020048972999999998,0.012782721,0.0068535900000000005,0.0015922281000000003,4.4133549E-4,1.5381003400000002E-4,3.729044390000001E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,coal (conv pul CCS),0.0,0.0,0.0,0.0,0.0,1.80854E-4,5.25541E-4,0.001057063,0.0020645100000000003,0.00341482,0.005638173,0.00942008,0.017417777,0.031143037,0.055327208,0.08552363,0.116544818,0.153309201,0.188424728,0.218465237,0.25551749,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,coal (conv pul),0.0279864,0.118998,0.117129,0.1189286,0.1314083,0.13888640000000002,0.1453026,0.14869219999999997,0.1497558,0.1471073,0.1448032,0.13821690999999997,0.13048513,0.11923494,0.07979473,0.04053773299999999,0.017608914,0.0034822515999999993,8.68124556E-4,2.732118327E-4,5.921891449999999E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,gas (CC CCS),0.0,0.0,0.0,0.0,0.0,0.00596492,0.0163628,0.031027069999999997,0.05438819,0.08210138,0.12105278,0.17459499,0.27256294999999997,0.42442077999999994,0.6785073,0.9968638000000001,1.3294962,1.7424032,2.1414354,2.4811631,2.9052672000000004,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,gas (CC),0.0269085,0.312594,0.31265,0.3422076,0.43548739999999997,0.5216556,0.6180601,0.7082350000000001,0.8009567999999999,0.8700484,0.9396814,0.9865024000000001,0.9881309,0.9376478,0.8322755,0.6920548,0.5365897000000001,0.30521734,0.15392822,0.07364649300000001,0.025739612799999995,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,gas (steam/CT),0.0251475,0.0299315,0.195244,0.16317617,0.15680528999999999,0.14957902,0.13825089999999998,0.12282133,0.10433801000000001,0.08559062999999999,0.06986287000000001,0.05502422,0.042518419999999994,0.03182932,0.01746046,0.010412316,0.00592221,0.0020443380999999997,7.608431999999999E-4,3.1134932E-4,9.735383100000001E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,geothermal,0.0184464,0.0262764,0.0238248,0.02651748,0.03305847,0.04082691000000001,0.05055003,0.060954259999999996,0.05390381999999999,0.06639525,0.07689688,0.08689795,0.09696379999999999,0.096966,0.0969662,0.096966,0.0969677,0.09696600000000001,0.09696603000000001,0.0969659,0.096966,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,hydro,0.0845208,0.0995724,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,hydrogen cogen,0.0,0.0,0.0,0.0,1.89611E-4,3.57137E-4,5.91478E-4,8.98625E-4,0.00133413,0.00195723,0.00284971,0.00386426,0.00532638,0.00715271,0.00947691,0.0117718,0.0144374,0.0183464,0.0212667,0.0240085,0.0239682,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,refined liquids (CC CCS),0.0,0.0,0.0,0.0,0.0,0.0217458,0.03607055,0.04954117,0.07115083999999999,0.08818556,0.11484876000000001,0.14802731,0.20259481000000001,0.27217463,0.3869987,0.5001447,0.6069092,0.7712512,0.8276867,0.7717991,0.5907647,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,refined liquids (CC),0.0,0.0,0.0,0.00687523,0.02134996,0.02114577,0.02990762,0.04028447,0.05480852,0.0670228,0.08333962,0.09066853,0.10126024,0.10386339,0.09017176999999998,0.06448445,0.04313727999999999,0.019741639,0.007768029000000001,0.0030800874,8.852255899999999E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,refined liquids (steam/CT),0.223423,0.240426,0.157964,0.1288578,0.12571846,0.11324367,0.10437465,0.09329252000000002,0.08197307,0.07090732000000001,0.06153252000000001,0.052126940000000004,0.037609630000000005,0.022525002,0.011992038999999998,0.0073609669999999995,0.004458357,0.0019567358,7.487228E-4,2.8147705999999995E-4,7.4906748E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,rooftop_pv,0.0,0.0,0.0,2.71915E-4,9.87624E-4,0.00233688,0.00462912,0.0083787,0.015324,0.0261529,0.0434327,0.072351,0.111161,0.156391,0.212261,0.267643,0.331568,0.392554,0.464504,0.553943,0.663084,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,wind,3.6E-6,6.83999E-5,0.00446039,0.00571256,0.010643,0.01878362,0.03226502,0.05061282,0.07365413,0.10399426,0.14094072,0.1834167,0.2528415,0.35258769999999995,0.49961999999999995,0.6708586999999999,0.8408387999999999,1.0471072,1.2197639999999998,1.3478269999999999,1.502523,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,wind_storage,0.0,0.0,0.0,8.40847E-6,4.354557E-5,1.0576097E-4,2.1651597E-4,3.7910897E-4,6.3953697E-4,9.499135000000001E-4,0.0013672234,0.0018858309999999997,0.002793566,0.004199113,0.006477635,0.009348559999999999,0.012440873000000002,0.01645553,0.02023246,0.023429329999999998,0.02753721,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,CSP,0.0,0.0,0.0,1.91008E-5,7.24674E-5,1.7259140000000002E-4,4.158874E-4,8.081784E-4,0.0013913114,0.0020652876,0.002676028,0.003208143,0.004007107,0.004768466,0.005782983,0.007039106,0.008417609,0.01041164,0.01209268,0.013563619999999998,0.015060559999999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,CSP_storage,0.0,0.0,0.0,0.0,0.0,3.32875E-4,0.001832775,0.005263335,0.010810855000000001,0.019167035,0.032446035,0.05192416,0.08907156,0.131712,0.19497678000000002,0.2765208,0.3645938,0.4886228,0.6139025,0.7419565,0.9102252,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,Gen_III,0.0,0.0,0.0,0.00781418,0.02243178,0.04515268,0.09194468,0.15810098,0.23705198,0.32171987999999996,0.41100407,0.50494647,0.65230027,0.80286787,0.99847766,1.2162689,1.4277288000000001,1.6899267999999998,1.9369204000000002,2.1560360000000003,2.4297414,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,PV,0.0,0.0,2.52E-4,0.006151299999999999,0.0183502,0.0360532,0.0717955,0.121237,0.1845997,0.23721029999999999,0.2592829,0.2631578,0.2582007,0.24128180000000005,0.2208855,0.21353480000000002,0.2317739,0.27501449999999994,0.3092661,0.33753410000000006,0.3624136,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,PV_storage,0.0,0.0,0.0,9.83186E-5,3.002946E-4,5.944165999999999E-4,0.0011859715999999998,0.0020149905999999997,0.0031512505999999997,0.004546882,0.006467545999999999,0.009290434,0.014724869,0.02107491,0.030676549999999997,0.043320800000000007,0.05727296,0.07720165,0.09758316,0.118797,0.14708459999999998,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,biomass (IGCC CCS),0.0,0.0,0.0,0.0,0.0,1.44112E-4,5.1135E-4,0.001173383,0.002366335,0.004143073,0.006623753999999999,0.010645514,0.019658667999999997,0.031928782,0.053449069999999994,0.08277606,0.11569933299999999,0.162080068,0.21159885499999997,0.25812558999999996,0.30737916,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,7.86827E-4,0.002509584,0.004997568,0.008175958,0.01164122,0.015183541000000002,0.018298808,0.022167708,0.024411545,0.022439528,0.016202062,0.009982094,0.0029969917999999995,8.491653099999999E-4,2.8063269E-4,6.5498615E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,biomass (conv CCS),0.0,0.0,0.0,0.0,0.0,4.89514E-4,0.0017406180000000002,0.004007459,0.008105105000000001,0.01415917,0.022530485,0.036729981,0.06952572300000001,0.115322967,0.20164165,0.31655201699999996,0.439058857,0.6133164,0.78170721,0.91317212,1.0009206800000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,biomass (conv),0.0,0.0,4.32068E-5,0.0021639385,0.0063650673,0.0101678329,0.0176960287,0.027056737770000002,0.03661041344,0.04503657277,0.05203621241999999,0.05559357841,0.058061319865,0.054842747819000004,0.038472663000000004,0.019691169999999997,0.009263044,0.0021540803,5.369796900000001E-4,1.6065442300000003E-4,3.3194663E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,coal (IGCC CCS),0.0,0.0,0.0,0.0,0.0,5.83642E-5,1.8659000000000001E-4,4.074203E-4,8.251879E-4,0.0014762376999999998,0.0024238541,0.0040869965,0.0080310423,0.013494572199999999,0.0230066022,0.0358188408,0.0496601661,0.06802177000000001,0.087542776,0.106307856,0.129808549,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.001532,0.00418926,0.00747701,0.01110455,0.01456311,0.01772055,0.02002746,0.022341530000000002,0.023283989999999997,0.019976343,0.013671051,0.007855512,0.0019712003,5.520286200000001E-4,1.8492216200000002E-4,4.44759676E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,coal (conv pul CCS),0.0,0.0,0.0,0.0,0.0,1.48271E-4,4.45156E-4,9.252279999999999E-4,0.001783458,0.003040484,0.004778999,0.007702017,0.014342712,0.023325148,0.038397842,0.058082141000000004,0.07869611400000001,0.105257234,0.13286403800000002,0.158721454,0.19026954,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,coal (conv pul),0.0379187,0.132671,0.124711,0.1422198,0.1558899,0.1615107,0.1687669,0.1732075,0.17317970000000002,0.1696356,0.16493945000000002,0.15736472,0.14942671000000002,0.13708295,0.09462322999999999,0.04724485900000001,0.021476099000000002,0.0045173122999999996,0.0011170111999999999,3.31060815E-4,7.05925607E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,gas (CC CCS),0.0,0.0,0.0,0.0,0.0,0.122577,0.321477,0.556141,0.8176140000000001,1.069613,1.303522,1.553393,1.9603469999999998,2.3893260000000005,2.883571,3.4351220000000002,3.958156,4.677559,5.418146,6.086315000000001,6.89443,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,gas (CC),0.0,0.0,0.0,0.0746055,0.1788879,0.25813579999999997,0.41542359999999995,0.6344292,0.8881877999999999,1.1415339,1.3833767000000001,1.5772262000000001,1.73642,1.8045356,1.793775,1.6232213,1.3475287,0.8553509,0.46312862,0.22971916999999997,0.08334985000000002,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,gas (steam/CT),0.38072,1.3344,1.95927,2.106113,2.251776,2.2263260000000002,2.1575610000000003,2.011264,1.7891350000000001,1.5433542999999998,1.3160142000000001,1.083649,0.6781291000000002,0.40098655000000005,0.19556783000000003,0.09607834999999999,0.044380353,0.012987433000000001,0.0041402972,0.0014689458999999998,4.2291784E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,geothermal,0.0,0.0,0.0,0.0110436,0.025027300000000002,0.0388179,0.056530500000000004,0.056581719999999995,0.05658319,0.05658197,0.056581980000000004,0.056581950000000006,0.056581990000000006,0.05658226,0.05658216,0.05658204,0.05658495,0.05658203,0.05658199999999999,0.056581969999999995,0.05658204,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,hydro,0.04293,0.0992016,0.064242,0.0855464,0.106966,0.128386,0.149805,0.171225,0.202866,0.234507,0.266148,0.297789,0.329429,0.36107,0.392711,0.424352,0.455993,0.487634,0.519275,0.550916,0.550916,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,hydrogen cogen,0.0,0.0,0.0,0.0,0.00199527,0.00366716,0.00532045,0.00714426,0.00940418,0.0126506,0.016922,0.0213305,0.0278249,0.0359631,0.0457159,0.054297,0.0632574,0.0765602,0.0889921,0.103974,0.113641,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,refined liquids (CC CCS),0.0,0.0,0.0,0.0,0.0,0.188709,0.395818,0.5771562,0.7609037000000001,0.9161111999999999,1.0622267,1.2460008999999999,1.5620228999999999,1.8249469,2.182569,2.426966,2.5651390000000003,2.8075479999999997,2.6866760000000003,2.262229,1.5728460000000002,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,refined liquids (CC),0.0,0.0,0.0,0.163447,0.32127700000000003,0.3702459,0.4830238,0.6032008,0.7113031000000001,0.8009906999999999,0.8746399,0.8825913000000001,0.8799252000000001,0.7836744,0.6223996,0.42723000000000005,0.27282,0.11914988000000001,0.045521233999999994,0.017179106,0.0047987136,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,refined liquids (steam/CT),0.402346,0.720668,1.02737,1.104466,1.166343,1.1339973,1.0418357,0.9311787999999999,0.8204722000000002,0.730545,0.6618126000000001,0.5877260600000002,0.33827116999999995,0.18458606,0.11267403,0.06295081,0.03371154400000001,0.013222314999999998,0.004641662300000001,0.0016293719700000001,4.200356899999999E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,rooftop_pv,0.0,0.0,0.0,0.00945009,0.0276518,0.0572138,0.0873317,0.124539,0.180628,0.255564,0.359979,0.514749,0.69277,0.866402,1.04023,1.18415,1.32886,1.44043,1.56,1.69537,1.87287,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,wind,3.59999E-6,3.05999E-4,6.26399E-4,0.009818789,0.027263588999999998,0.052063789,0.10083518899999999,0.167650589,0.25298539,0.3421393,0.4337395,0.5370173,0.7094719,0.8883365000000001,1.1419033,1.458673,1.791563,2.2450970000000003,2.64822,3.033242,3.496997,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,wind_storage,0.0,0.0,0.0,6.69638E-5,2.0574280000000003E-4,4.183208E-4,8.710268000000001E-4,0.0015404738,0.0024588898,0.003496996,0.004646647,0.006014869,0.008425853,0.011078506,0.015004090000000001,0.0201133,0.02571106,0.033645350000000004,0.04136626,0.04903626,0.05872536,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,CSP,0.0,0.0,0.0,1.14171E-4,2.96932E-4,6.07996E-4,0.0011192749999999999,0.0018958179999999999,0.003001098,0.004413477,0.0060676459999999995,0.008107791999999999,0.011020822999999999,0.01402044,0.01796755,0.0227355,0.027275019999999997,0.032597709999999995,0.035995410000000005,0.037950920000000006,0.038855940000000005,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,CSP_storage,0.0,0.0,0.0,0.0,0.0,0.00196893,0.011757279999999998,0.03536428,0.07430828,0.13609278,0.22069287999999998,0.33405295,0.5030306,0.6889066,0.9550266,1.3029521000000002,1.665632,2.155809,2.576835,2.927053,3.3022530000000003,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,Gen_III,0.0,0.0,0.0,0.0206179,0.0317186,0.0457923,0.0688351,0.1012254,0.1419251,0.1939961,0.253789,0.3255836,0.420305,0.5177368999999999,0.6436956,0.7759886,0.9175237,1.0926857,1.2455277,1.3696882,1.5107161999999998,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,Gen_II_LWR,0.0010548,0.0089424,0.012312,0.011378,0.0108444,0.010066,0.00900079,0.00766372,0.006156,0.00464828,0.00331121,0.00224602,0.00146763,9.33965E-4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,PV,0.0,0.0,0.0,0.0128966,0.0275299,0.0387346,0.0498055,0.06380960000000001,0.08129230000000001,0.0906303,0.1009816,0.1202399,0.1518276,0.183934,0.2265606,0.2780136,0.3272254,0.383695,0.416849,0.43348659999999994,0.43667910000000004,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,PV_storage,0.0,0.0,0.0,2.15319E-4,4.79034E-4,0.001115942,0.002529272,0.004617812,0.007538082,0.011366783,0.016053988,0.02206025,0.03085162,0.04071378,0.055221610000000004,0.07476698999999999,0.09578777,0.12466179999999999,0.1498313,0.17129339999999998,0.19486099999999998,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,biomass (IGCC CCS),0.0,0.0,0.0,0.0,0.0,2.28977E-4,8.27968E-4,0.002014501,0.004038015000000001,0.007036471999999999,0.01071509,0.016048192,0.024233814,0.03386392,0.053512632,0.086496974,0.130813711,0.201473913,0.26950349,0.32635703,0.37731223999999997,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,0.00142112,0.00444343,0.00952174,0.016748370000000002,0.02719032,0.040405170000000004,0.056358309999999995,0.07814104999999999,0.09973418,0.11461315999999999,0.11172641999999999,0.08990072999999998,0.038287192000000005,0.012152733,0.0040049615,8.647702900000002E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,biomass (conv CCS),0.0,0.0,0.0,0.0,0.0,7.37348E-4,0.002727945,0.00662275,0.012895107,0.021234687,0.030197578999999995,0.042375363,0.059094895,0.076625355,0.114512641,0.174733482,0.258702137,0.39993438000000003,0.5290854599999999,0.62453932,0.67610072,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,biomass (conv),0.0,0.0,0.0,0.00562305,0.01176994,0.01887822,0.03232292,0.052027409999999996,0.07501842,0.1032007,0.13376175999999998,0.16306629,0.19574053,0.21759246,0.20278691,0.14644169,0.08708442799999999,0.025093237999999993,0.006598305399999999,0.00198731822,3.9733261099999997E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,coal (IGCC CCS),0.0,0.0,0.0,0.0,0.0,1.75233E-5,6.39166E-5,1.6011790000000002E-4,3.391753E-4,6.119738E-4,9.509945000000001E-4,0.0014790086,0.0023430712,0.0034105451999999997,0.0058765020000000005,0.010725360199999999,0.0182267301,0.0313055427,0.04549487569999999,0.059262720000000005,0.076689405,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,coal (IGCC),0.0,0.0,0.0,0.0,0.0,5.5726E-4,0.001624949,0.003334079,0.005628686,0.008725345999999998,0.012469351,0.016572741,0.021770216,0.026675111999999997,0.029094543,0.027562888,0.021664085,0.008309416000000002,0.0027096787,9.642946099999998E-4,2.3848829399999996E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,coal (conv pul CCS),0.0,0.0,0.0,0.0,0.0,4.29213E-5,1.48462E-4,3.5211849999999996E-4,7.012699E-4,0.0011812707,0.0017261254,0.0025100391,0.0036934583,0.0050801874,0.0081627803,0.014092731899999999,0.0232551072,0.0392075847,0.056458104999999995,0.073209049,0.094322981,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,coal (conv pul),1.36804E-4,4.64397E-4,3.16794E-4,0.0114731,0.016648255,0.021539815,0.028766485,0.038098749,0.047794595999999995,0.0585360434,0.0695741424,0.07895863443,0.08845787153,0.09511007148200001,0.08960349,0.06706205,0.04429162,0.013767797,0.0040413202,0.0013395720499999996,3.1021537999999997E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,gas (CC CCS),0.0,0.0,0.0,0.0,0.0,0.0220785,0.0587098,0.1070749,0.1598149,0.2125035,0.2569261,0.29922940000000003,0.3461143,0.38765099999999997,0.4291423,0.485014,0.5529712,0.6838200999999999,0.8202081,0.9473339000000001,1.1023999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,gas (CC),0.00153787,0.0520253,0.0,0.0207192,0.0374848,0.0526922,0.0819212,0.1297834,0.19247999999999998,0.2756025,0.3720302,0.468977,0.5615152999999999,0.6454538000000001,0.7066342,0.7259286,0.6893688,0.5486355,0.36718658000000004,0.21261545,0.08361765500000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,gas (steam/CT),0.0440705,0.0966043,0.0931644,0.17344379999999998,0.2051282,0.2187217,0.23209650000000004,0.2408785,0.2412231,0.2374667,0.2303602,0.21549896000000002,0.13582168000000003,0.09873927000000002,0.0686356,0.04454521,0.02639325,0.010500981,0.0039211396999999995,0.0015000684,4.2524612999999997E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,geothermal,0.0,0.0,0.0,0.0244259,0.0430174,0.0641288,0.08072589999999999,0.0807259,0.080725,0.0807261,0.08072591,0.08072406,0.08072595,0.08072186,0.08072601000000001,0.08072601,0.08068447000000001,0.08072603,0.08072602,0.08072602999999999,0.08072597,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,hydro,0.06093,0.111103,0.11452,0.117706,0.120892,0.124078,0.127264,0.13045,0.140089,0.149728,0.159367,0.169006,0.178645,0.188284,0.197923,0.207562,0.217201,0.22684,0.23648,0.246118,0.246118,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,hydrogen cogen,0.0,0.0,0.0,0.0,2.91778E-4,6.72638E-4,0.00125798,0.00208738,0.00324463,0.00489398,0.00695318,0.00854918,0.0110733,0.0154684,0.0195173,0.02539,0.0323622,0.0423659,0.0547866,0.0695657,0.0762217,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,refined liquids (CC CCS),0.0,0.0,0.0,0.0,0.0,0.0336937,0.0735139,0.1187598,0.1619982,0.1986304,0.2212478,0.2407203,0.25993679999999997,0.2668851,0.2829874,0.300776,0.3176153,0.3404372,0.3362626,0.2935621,0.2140244,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,refined liquids (CC),0.0,0.0,0.0,0.0453975,0.0669693,0.0796803,0.10437389999999999,0.1389517,0.1778935,0.2285525,0.28115080000000003,0.3205206,0.34525298,0.35294727,0.31846449999999993,0.26104930000000004,0.1896742,0.09180777000000001,0.040235770000000004,0.016096361,0.0042317301,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,refined liquids (steam/CT),0.0278928,0.0686556,0.119718,0.204624,0.2227135,0.22584429999999997,0.22397219999999998,0.21652839999999998,0.20466404,0.19286269999999997,0.18164565,0.16815645999999998,0.08982476000000002,0.05908894,0.04036704,0.028213500000000002,0.018416513,0.008876946999999998,0.0038384933,0.0014935915,3.786280899999999E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,rooftop_pv,0.0,0.0,0.0,0.0013461,0.00448133,0.0116422,0.0232419,0.0413377,0.0725135,0.120895,0.192807,0.308065,0.449732,0.60778,0.791581,0.977845,1.16108,1.35325,1.52113,1.67725,1.83313,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,wind,0.0,0.0,0.0,0.0221021,0.0459892,0.0842639,0.15455649999999999,0.2586655,0.3930085,0.5457563999999999,0.7229823,0.9271275999999999,1.190111,1.4403439999999998,1.766287,2.146879,2.499194,2.926769,3.2112730000000003,3.4057420000000005,3.5772830000000004,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,wind_storage,0.0,0.0,0.0,1.75336E-4,3.85594E-4,7.61241E-4,0.001539209,0.002841749,0.004714109,0.007211383,0.010370605,0.014409818,0.02022284,0.02644967,0.03522511,0.0465387,0.05816941999999999,0.07344265999999999,0.08581927,0.0955963,0.10542690000000002,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,CSP,0.0,0.0,0.0,8.71975E-4,0.003464685,0.0055499550000000005,0.009772655000000002,0.014625345000000001,0.022263355000000002,0.03040151,0.037843600000000005,0.04757063,0.05563922999999999,0.0592255,0.05912205,0.056073330000000005,0.05097657,0.045000059999999995,0.038108470000000005,0.034572530000000004,0.03271292,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,CSP_storage,0.0,0.0,0.0,0.0,0.0,0.00302123,0.014362429999999999,0.032801529999999995,0.06356012999999999,0.10256162999999999,0.14979842999999998,0.2071816,0.2810282,0.35819300000000004,0.4931704,0.6335599,0.7578521,0.9322716999999999,1.0907929,1.244005,1.4177149999999998,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,Gen_III,0.0,0.0,0.0,0.112233,0.233686,0.3272702,0.5235431,0.7567571000000001,1.041473,1.3183509999999998,1.5848049999999998,1.8649119,2.1837768,2.4731407,2.8829796000000005,3.1561384,3.3620019999999995,3.6689679999999996,3.8509339999999996,3.971706,4.12968,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,Gen_II_LWR,0.425914,0.537994,0.613461,0.566925,0.540334,0.50155,0.448476,0.381854,0.30673,0.231606,0.164985,0.111911,0.0731261,0.0465358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,PV,0.0,0.0,0.0,2.03327E-4,6.50797E-4,9.29203E-4,0.001397892,0.001861657,0.002514871,0.003035883,0.003358945,0.0039942730000000004,0.004569684,0.0049518340000000004,0.00522607,0.00531676,0.005264604,0.005246257,0.005072336,0.005060520999999999,0.005164321,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,PV_storage,0.0,0.0,0.0,3.38816E-6,1.079554E-5,1.541954E-5,2.316743E-5,3.0886020000000004E-5,4.1799120000000006E-5,5.048966E-5,5.616208E-5,6.800138E-5,8.326289E-5,1.013512E-4,1.352395E-4,1.720326E-4,2.060806E-4,2.547922E-4,2.997934E-4,3.442705E-4,3.962638E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,biomass (IGCC CCS),0.0,0.0,0.0,0.0,0.0,9.20836E-5,3.633906E-4,7.829846E-4,0.0016084359,0.0028419954,0.0045710084,0.007444175399999999,0.0121438296,0.0178596953,0.0288203503,0.0411775178,0.053186707300000004,0.0699316,0.086759693,0.10251924300000001,0.11992361,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,4.77954E-4,0.001590656,0.00299025,0.005074815,0.007276049999999999,0.00944236,0.011176598999999999,0.012323253000000003,0.012239129,0.009581423,0.0054917538000000005,0.0028117766,7.404063E-4,1.9692278300000003E-4,6.21535364E-5,1.3146598319999996E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,biomass (conv CCS),0.0,0.0,0.0,0.0,0.0,3.19533E-4,0.001279527,0.00273939,0.005574958,0.009807857,0.015720663000000003,0.026106449,0.04371964,0.065897512,0.112388442,0.165617229,0.21686492300000001,0.29335254699999996,0.36658141,0.42499323,0.46852895999999994,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,biomass (conv),0.0,0.0,0.0,0.00191305,0.00586344,0.007398490000000001,0.0121961,0.01711532,0.02288546,0.02746887,0.0307811,0.031142737,0.028959808,0.024072836,0.013967254000000002,0.005914868,0.0024626594999999996,5.524031099999999E-4,1.3349004699999997E-4,3.870150509999999E-5,7.252355709999999E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,biomass cogen,1.33152E-4,0.00948844,0.00997641,0.0098715,0.0131007,0.0154556,0.0163052,0.0163294,0.0157844,0.0150159,0.014158,0.01293,0.0111666,0.00930316,0.00643163,0.00404595,0.00268769,0.00135087,7.17657E-4,4.17717E-4,1.94237E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,coal (IGCC CCS),0.0,0.0,0.0,0.0,0.0,1.11821E-4,4.05166E-4,8.221260000000001E-4,0.0016156809999999999,0.002814611,0.004511886,0.007443597,0.012338626,0.018163476,0.028777067000000003,0.040276137000000004,0.050719242,0.064053915,0.07700918200000001,0.08884012699999999,0.1035353,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.00272014,0.0078077500000000005,0.01322856,0.01985353,0.02590063,0.03110755,0.03437892,0.035674620000000004,0.034082509999999996,0.023800463,0.012680704,0.0060237356,0.0013231484999999999,3.49746704E-4,1.1188388470000003E-4,2.3917708260000007E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,coal (conv pul CCS),0.0,0.0,0.0,0.0,0.0,2.88283E-4,9.88402E-4,0.00191368,0.003551947,0.0058794929999999995,0.00901593,0.014215216,0.022551340000000003,0.032262306,0.049386049,0.067577324,0.083781123,0.104050332,0.12347607,0.14081733999999999,0.16187064,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,coal (conv pul),0.54613,0.551288,0.556386,0.5870021,0.621376,0.610094,0.5964225,0.5655277,0.5248059,0.47633980000000004,0.42895370000000005,0.37822504,0.32468367,0.2638649699999999,0.12491530000000002,0.046957627,0.017072301900000003,0.0033100510300000004,7.76811936E-4,2.216041801E-4,4.171662667E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,coal cogen,0.0191956,0.0442918,0.0415224,0.0413546,0.0248726,0.0242152,0.0192129,0.0154973,0.0109279,0.0079603,0.00607431,0.00370752,0.00237611,0.00158008,7.68608E-4,4.25066E-4,2.59085E-4,1.13552E-4,5.96139E-5,3.55641E-5,1.75637E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,gas (CC CCS),0.0,0.0,0.0,0.0,0.0,0.0699931,0.19892490000000002,0.32873430000000003,0.4840485,0.6304312,0.7635852000000001,0.9038483,1.0654593,1.2112802,1.3705589999999999,1.4685930000000003,1.531617,1.609478,1.669263,1.701885,1.7223680000000003,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,gas (CC),0.0,0.0,0.0,0.0579784,0.1502891,0.1877529,0.2690569,0.36907280000000003,0.5024373,0.6324259000000001,0.7522689,0.8380588999999999,0.8477372999999999,0.7882809,0.7015785,0.5385722000000001,0.37436329999999995,0.16805689000000001,0.06833158200000002,0.027150316,0.007582959999999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,gas (steam/CT),1.69041,1.4949,1.7391,1.7269960000000002,1.8053409999999999,1.7190157,1.6054386999999999,1.4302406,1.2012088,0.9610683999999999,0.7428571,0.52712185,0.29247767,0.14545773999999997,0.035310834,0.014771162999999997,0.0063130687000000005,0.0016809534000000001,4.8961688E-4,1.57616355E-4,3.9291249E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,gas cogen,0.153428,0.0866757,0.134862,0.134515,0.131304,0.139747,0.128951,0.116775,0.101064,0.0869038,0.0752512,0.0608564,0.0494006,0.039527,0.0275342,0.0197342,0.0146806,0.00887789,0.00582495,0.00400907,0.00231867,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,geothermal,1.00804E-4,0.00147597,0.0018179,0.0143041,0.03633956,0.05223414999999999,0.07983891,0.10700672,0.13691330000000002,0.1558271,0.1663991,0.1842953,0.19384,0.19384010000000002,0.1938395,0.19384,0.1938444,0.19384,0.19384,0.19383999999999998,0.1938399,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,hydro,0.597301,0.621637,0.599339,0.636624,0.673909,0.711195,0.74848,0.785765,0.827183,0.868601,0.910019,0.951437,0.992855,1.03427,1.07569,1.11711,1.15853,1.19994,1.24136,1.28278,1.28278,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,hydrogen cogen,0.0,0.0,0.0,0.0,0.00146142,0.00256336,0.00374684,0.00504113,0.00646828,0.00835401,0.0105969,0.012554,0.0154732,0.0189855,0.023569,0.0280089,0.032705,0.0411207,0.0461152,0.0486912,0.0439676,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,refined liquids (CC CCS),0.0,0.0,0.0,0.0,0.0,0.00298651,0.006493267,0.008494539,0.011822202,0.014470082,0.017185805,0.021134542,0.026460279,0.030940433999999996,0.04221152,0.05075368000000001,0.05835102,0.07682584,0.08373085,0.07896592999999999,0.059278779999999996,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,refined liquids (CC),0.0,0.0,0.0,0.00331758,0.00630871,0.00531624,0.007032395,0.008474679,0.010612039,0.012177653,0.013456925,0.013496612000000002,0.012876119,0.01085948,0.008945769,0.005892832000000001,0.003716071,0.0017220776,6.541348000000001E-4,2.4584224E-4,6.574035899999999E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,refined liquids (steam/CT),0.463118,0.0644098,0.025717,0.02489717,0.02567199,0.023782180000000003,0.021877541,0.019408827,0.01675493,0.014260174,0.012106686,0.009846221999999998,0.005735935,0.0029284054999999995,0.0013986773999999998,7.881419999999999E-4,4.4696730000000004E-4,1.8575670999999998E-4,6.4630942E-5,2.1830833E-5,5.0399437E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,refined liquids cogen,0.0,0.0119671,0.0078013,0.00849256,0.00716971,0.00727058,0.00674906,0.00630815,0.00595506,0.00568011,0.00546403,0.00507068,0.00473475,0.00432119,0.00369427,0.00307623,0.00257069,0.00189367,0.0012759,8.43032E-4,4.4154E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,rooftop_pv,0.0,0.0,0.0,5.69411E-6,2.2853E-5,5.79014E-5,8.447E-5,1.40499E-4,2.29145E-4,3.46119E-4,5.03034E-4,7.41331E-4,0.00102284,0.00129326,0.00162557,0.00191026,0.00218912,0.00254247,0.00286944,0.00324279,0.00368021,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,wind,0.0,2.51994E-5,1.43992E-5,0.0116699992,0.0381866992,0.0613787992,0.1137791992,0.1792416992,0.2769396,0.37873799999999996,0.4793523,0.6093152000000001,0.7539808,0.8877443,1.09731,1.2994080000000001,1.46616,1.70099,1.896741,2.09078,2.306355,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,wind_storage,0.0,0.0,0.0,6.8964E-5,2.35419E-4,3.86691E-4,7.45439E-4,0.0012163299999999998,0.001952924,0.002770394,0.0036358990000000006,0.0047732469999999996,0.006119538999999999,0.007417897999999999,0.009519594,0.01163182,0.01344696,0.01603031,0.01832664,0.020625900000000003,0.02333591,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,CSP,0.0,0.0,0.0,0.0,0.0,8.77123E-6,3.5732030000000005E-5,8.499473E-5,1.5460423E-4,2.2378473E-4,3.0141923E-4,3.9779E-4,5.015982E-4,6.006355E-4,7.92446E-4,9.740454999999999E-4,0.001104853,0.001240509,0.00128483,0.001287518,0.001245932,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,CSP_storage,0.0,0.0,0.0,0.0,0.0,2.91593E-5,1.953143E-4,6.266253E-4,0.0014732872999999999,0.0034681673,0.0061496273,0.010027018,0.015005003000000001,0.020736722,0.03166726,0.04175668,0.04981722,0.05967907,0.06553213000000001,0.0697541,0.0752849,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,Gen_III,0.0,0.0,0.0,0.0,0.0,0.00137177,0.006056239999999999,0.01446718,0.02494718,0.03857218,0.05376897,0.07211087,0.09238046,0.11338195999999999,0.14832345,0.18007995000000002,0.20530223000000003,0.23270913,0.24891707999999996,0.25866730000000004,0.27588900000000005,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,Gen_II_LWR,0.0304164,0.0406546,0.0435562,0.0358408,0.0376813,0.0356104,0.0318421,0.027112,0.0217781,0.0164442,0.0117141,0.00794576,0.00519202,0.00330409,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,PV,0.0,7.55997E-5,7.55997E-5,6.73147E-5,7.42541E-5,0.0026238397,0.0091340697,0.019311069700000003,0.028221789999999997,0.031804549999999994,0.035292569999999995,0.03709038,0.03567743,0.03108518,0.03148876,0.036628060000000004,0.04024559999999999,0.043723700000000004,0.04410957,0.043105580000000004,0.04003628,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,PV_storage,0.0,0.0,0.0,0.0,0.0,4.23302E-5,1.499942E-4,3.212382E-4,6.061522000000001E-4,0.0011921142,0.0018963312,0.002863831,0.0040739570000000004,0.005480533,0.008214999,0.010751357,0.01284625,0.015460660000000001,0.017053480000000003,0.018257790000000003,0.01991924,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,biomass (IGCC CCS),0.0,0.0,0.0,0.0,0.0,2.0868E-5,8.4929E-5,2.138828E-4,4.438539E-4,8.379615E-4,0.0013913486,0.0023974534999999996,0.0039017224,0.0058626292,0.0101646608,0.014651955099999999,0.0184356521,0.023134611500000003,0.026126305,0.027965247999999998,0.028525205,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,1.16754E-4,4.20294E-4,9.03788E-4,0.001523529,0.002330153,0.003177866,0.0040710155000000005,0.0048550133,0.0054280097999999995,0.0054273724999999995,0.0041983784,0.0027723403,9.652023E-4,2.7894423E-4,8.8056716E-5,1.9291568099999997E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,biomass (conv CCS),0.0,0.0,0.0,0.0,0.0,7.01604E-5,2.830104E-4,7.182304E-4,0.0015022896000000002,0.0028301853,0.004657596,0.0080945522,0.013158673700000002,0.0195226732,0.0333459858,0.046283253499999996,0.0557030612,0.066417815,0.070735401,0.070134648,0.059997017,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,biomass (conv),0.0,9.54006E-4,0.00101159,2.29819E-4,3.91413E-4,0.001085471,0.002385566,0.004126774,0.0059455739999999995,0.007970206,0.009712507,0.011058610900000002,0.011600337799999999,0.011258850199999998,0.008651751,0.0048319200999999996,0.0024767738999999997,6.581826999999998E-4,1.6600338999999995E-4,4.77271234E-5,9.271878729999999E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,coal (IGCC CCS),0.0,0.0,0.0,0.0,0.0,1.32738E-4,4.89017E-4,0.001153592,0.002335531,0.0043455939999999995,0.007121496999999999,0.012229006,0.019505567,0.028045972000000002,0.044608703,0.059886005,0.070807409,0.081490382,0.08668748,0.08924987699999999,0.09141022,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.00361439,0.0111618,0.02118768,0.03173932,0.042988179999999994,0.05305111,0.06119713,0.06661912,0.0687659,0.06030214,0.04266291,0.025712786999999997,0.007313284,0.0020932251,6.669663250000001E-4,1.444417154E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,coal (conv pul CCS),0.0,0.0,0.0,0.0,0.0,3.34846E-4,0.001156615,0.0025983179999999996,0.005016807,0.00887217,0.013914721000000001,0.022766468999999998,0.034655853,0.048012320000000004,0.07242337400000001,0.093758283,0.10807790399999999,0.12086987999999999,0.12562995,0.12660608,0.12562146999999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,coal (conv pul),0.561333,0.824519,0.870765,0.716006,0.75103,0.7413345,0.7167829,0.6766596,0.6131255999999999,0.5439921,0.47737009999999996,0.41277030000000003,0.3566959,0.30846066,0.20938513,0.12958557,0.069733882,0.0167967055,0.00426984944,0.001205102276,2.3236462370000005E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,gas (CC CCS),0.0,0.0,0.0,0.0,0.0,1.73594E-4,5.95909E-4,0.0012622990000000001,0.00213959,0.003305824,0.004607503000000001,0.006467191999999999,0.00884053,0.011619294999999998,0.017100688000000003,0.022684887,0.027320944,0.033711689999999996,0.03842932,0.042787780000000004,0.0506732,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,gas (CC),0.0,0.0,0.0,0.0,0.0,1.07011E-4,4.29248E-4,0.00103331,0.001878765,0.003073671,0.004486354,0.006089280000000001,0.007757978999999999,0.009383788,0.011008462,0.011431628,0.010854711,0.008358408999999999,0.00530111,0.0029152959999999995,0.00105910579,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,gas (steam/CT),0.0,0.0,0.0,0.0,0.0,1.44348E-4,3.8343700000000004E-4,6.32152E-4,8.305449999999999E-4,9.98916E-4,0.001105856,0.001146394,0.0011212192000000002,0.0010440249,7.874948E-4,5.064954000000001E-4,3.047812E-4,1.2579296000000002E-4,4.770923E-5,1.8755809999999998E-5,5.473546499999999E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,geothermal,0.0,0.0,0.0,0.0,0.0,0.00371366,0.00905247,0.014153699999999998,0.01553899,0.015538999999999999,0.015539,0.01553901,0.015539349999999999,0.015538940000000001,0.015539,0.015538989999999999,0.015538989999999999,0.015538999999999999,0.015538989999999999,0.015539,0.015539009999999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,hydro,0.003636,0.0047952,0.0076968,0.00702266,0.00793343,0.0082674,0.0084576,0.0086478,0.0090258,0.0094037,0.0097816,0.0101596,0.0105375,0.0109155,0.0112934,0.0116714,0.0120493,0.0124272,0.0128052,0.0131831,0.0131831,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,hydrogen cogen,0.0,0.0,0.0,0.0,6.25412E-5,1.28693E-4,2.11293E-4,3.12523E-4,4.58253E-4,6.58673E-4,8.70038E-4,0.00109872,0.00133591,0.00160913,0.0018651,0.00208524,0.00229815,0.00273738,0.00317819,0.00361227,0.00356339,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,refined liquids (CC CCS),0.0,0.0,0.0,0.0,0.0,4.13085E-5,9.579280000000001E-5,1.527105E-4,2.209547E-4,3.1200879999999996E-4,3.9577730000000004E-4,5.21398E-4,6.378186E-4,7.362259E-4,9.423184000000001E-4,0.001015075,9.932443999999998E-4,0.0010023047,8.731489E-4,6.876518E-4,4.6127220000000005E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,refined liquids (CC),0.0,0.0,0.0,0.0,0.0,2.16324E-5,5.872552E-5,1.0586113999999999E-4,1.5666385E-4,2.2525124E-4,2.8578909E-4,3.3888864E-4,3.6930927E-4,3.7442439999999997E-4,3.466319E-4,2.513695E-4,1.6906269999999998E-4,8.178289E-5,3.3610576E-5,1.3360316000000002E-5,3.8716901E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,refined liquids (steam/CT),0.0,0.0,7.09205E-4,2.75049E-4,2.89484E-4,3.2979060000000004E-4,3.1580720000000005E-4,2.836422E-4,2.490705E-4,2.098231E-4,1.6791111999999998E-4,1.3125998E-4,1.0224140000000001E-4,8.129714E-5,4.479050999999999E-5,2.8334219999999995E-5,1.7066111E-5,7.654178000000002E-6,3.0611738999999998E-6,1.1437167000000002E-6,2.8333136000000005E-7,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,rooftop_pv,0.0,0.0,0.0,8.20842E-5,4.24098E-4,0.0013304,0.00285722,0.00528581,0.0099723,0.0168324,0.0253366,0.0386592,0.0525646,0.0652081,0.0715774,0.0759272,0.0841205,0.0952383,0.103868,0.110011,0.113864,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,wind,0.0,1.15199E-4,1.152E-4,1.02575E-4,1.13149E-4,0.00483551,0.01627441,0.03373251,0.056026309999999996,0.08580470999999999,0.11949690999999998,0.1596291,0.20321879999999998,0.2480628,0.3348368,0.4101404,0.4647488,0.5232193,0.5470965,0.5574458,0.5656518,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,wind_storage,0.0,0.0,0.0,0.0,0.0,3.12393E-5,1.1449E-4,2.5233600000000003E-4,4.40905E-4,7.06282E-4,0.001024347,0.0014386177,0.001924389,0.002456267,0.003521128,0.004531271,0.0053500760000000005,0.006370936,0.006959504,0.00736591,0.00785613,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,CSP,0.0,0.0,0.0,7.50417E-5,1.866747E-4,3.664287E-4,6.987607E-4,9.865117E-4,0.0012978617,0.0016126369999999999,0.001921847,0.002209252,0.002633807,0.003050586,0.003664923,0.004274039,0.0048050490000000005,0.005389270000000001,0.005655373,0.00574983,0.005898853000000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,CSP_storage,0.0,0.0,0.0,0.0,0.0,6.00276E-4,0.002888046,0.008208535999999999,0.018162376,0.033119576,0.051674076,0.0729664,0.10856383,0.14069454,0.1837739,0.2297273,0.27288270000000003,0.32543,0.3658558,0.39484520000000006,0.443796,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,Gen_III,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00970766,0.03095946,0.061507049999999994,0.09172654999999999,0.13581045,0.17363945,0.22067554,0.26884823,0.31272532000000003,0.3604053,0.40649949,0.44280727000000003,0.4847188,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,PV,0.0,0.0,0.0,0.00426863,0.00896723,0.014800629999999999,0.02310389,0.02728949,0.03050352,0.0298762,0.02884489,0.026908019999999998,0.024692730000000003,0.026085459999999998,0.03007184,0.034147250000000004,0.03785605,0.0420147,0.043729590000000006,0.04422852000000001,0.04508173,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,PV_storage,0.0,0.0,0.0,7.11439E-5,1.489851E-4,2.4667440000000003E-4,4.1286040000000006E-4,6.496724E-4,0.0010251854,0.0014465755,0.0019150153,0.002451765,0.0033735990000000006,0.004211687,0.005360444000000001,0.006632270000000001,0.007888719,0.00945103,0.01068662,0.01160719,0.01317498,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,biomass (IGCC CCS),0.0,0.0,0.0,0.0,0.0,8.38835E-5,2.7997039999999996E-4,5.715275E-4,0.0010945756,0.0019373048999999998,0.0031099765999999997,0.0048903642,0.0086131771,0.0128701048,0.0199649358,0.0286099347,0.037529116,0.048405302,0.059486904,0.068170515,0.079781794,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,4.33815E-4,0.001237934,0.0022119870000000003,0.003508489,0.00512966,0.006757116,0.008077323,0.009559002,0.010198925,0.009322434999999999,0.00680452,0.0042036026,0.0012392390999999999,3.4389476E-4,1.11604478E-4,2.4048534E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,biomass (conv CCS),0.0,0.0,0.0,0.0,0.0,2.91525E-4,0.001000033,0.002051954,0.003912854,0.006827803,0.010864616,0.01730994,0.031341045000000005,0.047992988,0.078403054,0.11617269399999999,0.154887781,0.20567042300000002,0.25519964,0.28919711,0.32488612,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,biomass (conv),1.28437E-4,1.46781E-4,1.53303E-4,0.0024993178,0.0049088936,0.007026671700000001,0.010580704,0.0143085167,0.0182896482,0.0223899484,0.025697614770000002,0.0271670422,0.0278794528,0.025960329473999996,0.01837206,0.009344105999999998,0.004314269400000001,9.686916800000001E-4,2.3678405E-4,7.056354809999999E-5,1.3827157970000001E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,coal (IGCC CCS),0.0,0.0,0.0,0.0,0.0,6.65971E-6,2.281588E-5,4.881966E-5,1.0329297E-4,2.040465E-4,3.6905156E-4,6.7313649E-4,0.00142051168,0.00238064388,0.00411860409,0.006427601160000001,0.00894362124,0.0121352663,0.015679721299999998,0.0187399068,0.0236417384,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,coal (IGCC),0.0,0.0,0.0,0.0,0.0,1.6112E-4,4.3668799999999996E-4,7.61477E-4,0.00117998,0.001689126,0.002203887,0.002601205,0.003019305,0.003208188,0.002889162,0.0021118236000000003,0.0012768056999999998,3.3324593000000005E-4,9.575595699999998E-5,3.35708723E-5,8.212017960000002E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,coal (conv pul CCS),0.0,0.0,0.0,0.0,0.0,1.71874E-5,5.58621E-5,1.1394239999999999E-4,2.2778080000000002E-4,4.236652E-4,7.290546E-4,0.0012694308,0.0025454938,0.004151246900000001,0.006965864699999999,0.0106355694,0.0145615199,0.0194691448,0.024887187600000003,0.029507596,0.036861325,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,coal (conv pul),0.0,0.0,0.0,0.00423969,0.00610072,0.0075223799999999995,0.00939684,0.01117812,0.01295339,0.01471594,0.0162122,0.016994847,0.017441217000000002,0.016965534,0.013181868000000001,0.0067986799,0.003321459,7.2624235E-4,1.87191268E-4,5.99477431E-5,1.3325389680000001E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,gas (CC CCS),0.0,0.0,0.0,0.0,0.0,0.00743355,0.01858157,0.02972734,0.04255043,0.0564331,0.06973722,0.08362073,0.10573359000000002,0.12644227,0.1492414,0.17364909999999997,0.19816629999999996,0.2288511,0.2608785,0.285355,0.3287058,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,gas (CC),0.0,0.0,0.0,0.00845691,0.014874189999999999,0.01945998,0.02725581,0.03656706,0.048104360000000006,0.06167128,0.07487967999999999,0.0851134,0.08858455,0.08978188999999999,0.08843272999999999,0.08003663,0.06781529,0.044894935,0.02479138,0.012345207900000002,0.00437536231,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,gas (steam/CT),0.0559019,0.0568119,0.0896734,0.1184296,0.128337,0.12856681,0.126351,0.12021071000000001,0.11032554999999998,0.09910864999999999,0.08807765000000001,0.07582209700000002,0.038036027,0.021538419000000003,0.010927010000000001,0.005436624,0.0026365328000000003,7.918248000000001E-4,2.4617745E-4,8.380654399999998E-5,2.26643404E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,geothermal,0.0,0.0,0.0,0.0123549,0.02217442,0.03242452,0.04561882,0.05755463,0.06838256,0.06837503,0.06837492,0.0683811,0.06837499,0.06837679,0.06837528,0.06837491999999999,0.06837759,0.06837503,0.06837499999999999,0.06837493,0.06837498,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,hydro,0.135365,0.280561,0.279418,0.282905,0.286392,0.289879,0.293366,0.296853,0.303009,0.309166,0.315323,0.321479,0.327636,0.333792,0.339949,0.346105,0.352262,0.358418,0.364575,0.370731,0.370731,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,hydrogen cogen,0.0,0.0,0.0,0.0,0.00102193,0.00187458,0.00290118,0.00419114,0.00551458,0.00707682,0.00905016,0.0108992,0.0139115,0.01768,0.0221043,0.0269936,0.0327653,0.0413847,0.0487914,0.0559736,0.0549809,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,refined liquids (CC CCS),0.0,0.0,0.0,0.0,0.0,0.0130139,0.027312660000000002,0.03958214,0.054306349999999996,0.06943550000000001,0.08376436000000001,0.09986215,0.12840082000000003,0.15170092,0.1865623,0.22081309999999998,0.2549246,0.3101591,0.3432095,0.3427707,0.3048118,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,refined liquids (CC),0.0,0.0,0.0,0.0181884,0.0273299,0.03069496,0.03782353,0.04535421,0.053544299999999996,0.06295071,0.07069808,0.07253903,0.07077024,0.06371663999999999,0.05243403,0.03782941000000001,0.025922630000000002,0.01242765,0.0050058042,0.0019599309000000002,5.3186988E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,refined liquids (steam/CT),0.0549622,0.0959904,0.110144,0.13737169999999999,0.1427685,0.13848359999999998,0.13080672000000002,0.11997830999999998,0.10590717,0.09148278000000001,0.07846287000000002,0.06599851300000002,0.032644609,0.018009939,0.008234718,0.004932951,0.0029844327,0.0013633163000000002,5.145848000000001E-4,1.8917193E-4,4.819041499999999E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,rooftop_pv,0.0,0.0,0.0,7.89031E-4,0.00225284,0.00488494,0.00847588,0.0139029,0.0211106,0.0297054,0.0412153,0.057688,0.0783784,0.0998741,0.121019,0.140781,0.161136,0.175078,0.192991,0.214733,0.239856,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,wind,0.0,0.0,0.0,0.0090067,0.018092320000000002,0.03000212,0.04984742,0.07224542,0.10127632,0.12892882,0.1593526,0.19011669999999997,0.2374756,0.27707859999999995,0.32911270000000004,0.3800371,0.42508039999999997,0.4783513,0.5083595,0.5267440999999999,0.5633961,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,wind_storage,0.0,0.0,0.0,7.25768E-5,1.536113E-4,2.702603E-4,4.850653E-4,7.503493000000001E-4,0.0011241603,0.0015553675,0.002054877,0.002601557,0.0034986619999999996,0.004311638,0.0054339869999999995,0.006625753,0.007744538999999999,0.0090945,0.01007288,0.01074788,0.01189953,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,CSP,0.0,0.0,0.0,6.70847E-6,1.8979870000000002E-5,4.4677970000000006E-5,1.0891697000000001E-4,2.0449127E-4,3.3988527E-4,5.135618E-4,7.490514E-4,0.0010379853,0.0014332263,0.001745702,0.00214387,0.002592364,0.00296317,0.003310047,0.003498077,0.003651602,0.003891592,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,CSP_storage,0.0,0.0,0.0,0.0,0.0,8.54319E-5,4.813129E-4,0.0013146148999999998,0.0025651249,0.0043507849,0.0070029349,0.010503063,0.018094262,0.02906246,0.04827185,0.07337049,0.09921224000000001,0.12884168000000001,0.1558598,0.17674760000000003,0.2072454,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,Gen_III,0.0,0.0,0.0,0.0,0.0,6.33224E-4,0.0026195339999999998,0.0057435739999999996,0.011841003,0.021197213,0.035124903,0.050619293,0.07517518200000001,0.101510372,0.138513741,0.18099801000000001,0.221142869,0.26239306,0.30077859999999995,0.33253143999999996,0.3763847800000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,PV,0.0,0.0,1.08005E-5,8.985905E-4,0.0021005405,0.0040476205,0.0080934905,0.0132746405,0.01982322,0.027109519999999998,0.03642557,0.04674009,0.05529372,0.058055459999999996,0.06031931,0.06207985,0.06119808,0.058977480000000006,0.056059479999999995,0.05641633,0.0586798,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,PV_storage,0.0,0.0,0.0,1.47955E-5,3.46951E-5,6.70389E-5,1.33938E-4,2.202212E-4,3.299672E-4,4.519617E-4,6.137121E-4,8.230903000000001E-4,0.0012898022000000001,0.001991482,0.0032497360000000005,0.004924536,0.0066792859999999996,0.008717774,0.010600393,0.01209636,0.01432247,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,biomass (IGCC CCS),0.0,0.0,0.0,0.0,0.0,1.18941E-4,3.81379E-4,7.47348E-4,0.001276415,0.001996571,0.00301666,0.004592492,0.007868834,0.012200601,0.019810145,0.029565291,0.039429941,0.050362342,0.060898203,0.06952085,0.080468616,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,6.12367E-4,0.001667728,0.0028359279999999997,0.0040380799999999994,0.005256571,0.006553863000000001,0.007549919999999999,0.008596733999999998,0.008921572000000001,0.007476647000000001,0.004673193000000001,0.0025017624000000004,6.288219E-4,1.58485255E-4,4.767354769999999E-5,1.011186393E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,biomass (conv CCS),0.0,0.0,0.0,0.0,0.0,4.1415E-4,0.0013585160000000002,0.002676627,0.004580801000000001,0.007125910000000001,0.010649394,0.016385638,0.028782262,0.04580123,0.07861104,0.121548942,0.164775701,0.216541128,0.26445106999999995,0.29871730999999996,0.3314001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,biomass (conv),7.38012E-4,0.00187927,0.00589348,0.01030537,0.01377744,0.01640205,0.02038663,0.02377522,0.02606961,0.027625939999999998,0.028782365000000004,0.027993023000000002,0.026335721,0.022544614000000004,0.013656311,0.005701686,0.0023401125,4.7788634999999997E-4,1.07075231E-4,2.92076176E-5,5.558345605000001E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,biomass cogen,0.0036131,0.00638438,0.0103109,0.0132472,0.0194785,0.0247321,0.0253163,0.0243282,0.023313,0.021871,0.0204717,0.0186026,0.0160414,0.0131245,0.00851292,0.00498727,0.00315436,0.00142017,7.05415E-4,3.91058E-4,1.77976E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,coal (IGCC CCS),0.0,0.0,0.0,0.0,0.0,1.02485E-4,3.63848E-4,7.758089999999999E-4,0.001470348,0.00253083,0.004165391,0.007002489,0.013449898,0.022274586,0.037678123,0.05731842,0.076392724,0.096346295,0.11534092700000001,0.130809014,0.15249508,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.00246276,0.006841989999999999,0.01180356,0.01680832,0.021659,0.02656647,0.029972400000000003,0.03292351,0.0334573,0.026555040000000002,0.016003093,0.008102390000000001,0.0017515597000000002,4.50298705E-4,1.4243103809999998E-4,3.26577604E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,coal (conv pul CCS),0.0,0.0,0.0,0.0,0.0,2.64842E-4,8.92405E-4,0.00181765,0.0032816,0.0053682,0.008402444,0.013449025000000002,0.024470787,0.03925185,0.064243616,0.09552892099999999,0.12537447999999998,0.156089094,0.18508240199999998,0.2083223,0.24070841,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,coal (conv pul),0.0234905,0.0288587,0.0638058,0.1190174,0.1435371,0.1612104,0.1854287,0.2056264,0.21876550000000003,0.2272071,0.23367980000000002,0.23122352999999998,0.22266278,0.20191949999999997,0.12968296,0.053747718,0.022070830999999996,0.0041130818,9.35504934E-4,2.6216499419999995E-4,5.3723033E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,gas (CC CCS),0.0,0.0,0.0,0.0,0.0,0.0212892,0.0601796,0.1039898,0.1504415,0.1977541,0.24815440000000002,0.3050284,0.39987449999999997,0.5060608,0.651724,0.8211611,0.9812715,1.1578194000000002,1.3285166,1.4601143999999997,1.6607568,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,gas (CC),9.8948E-4,0.0455514,0.0115326,0.0398393,0.060885499999999995,0.07672364,0.10668957,0.14422608,0.18474886999999998,0.22772018,0.27602079999999996,0.31586221000000003,0.33571283,0.35048572499999997,0.3463205,0.3063342,0.24666806,0.14256597,0.069775022,0.031506175,0.0103308514,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,gas (steam/CT),0.00377339,0.0350843,0.0949676,0.15648810000000002,0.1840869,0.1945212,0.20480540000000003,0.2062152,0.1980217,0.18453605,0.16915148,0.14606164,0.08481468,0.052754930000000005,0.028146070000000006,0.013169036000000002,0.005949235,0.0016917698999999997,5.315572E-4,1.81074749E-4,4.9819014799999996E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,gas cogen,0.0,0.0,2.55884E-4,3.69139E-4,3.82914E-4,4.29643E-4,3.687E-4,3.1207E-4,2.66335E-4,2.25411E-4,1.94507E-4,1.5762E-4,1.29774E-4,1.03574E-4,6.95424E-5,4.79913E-5,3.49094E-5,1.93858E-5,1.21425E-5,8.09442E-6,4.67385E-6,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,geothermal,0.0,0.0,0.0,0.00340536,0.0074727100000000005,0.013729310000000002,0.02554447,0.039337510000000006,0.0544125,0.06757371000000001,0.08261592,0.09751560000000001,0.11797260000000001,0.1373372,0.1643358,0.19112620000000002,0.198568,0.19856790000000002,0.1985679,0.1985679,0.1985679,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,hydro,0.215035,0.400529,0.415487,0.446642,0.478199,0.509757,0.541315,0.572873,0.628591,0.684309,0.740027,0.795745,0.851463,0.907181,0.962899,1.01862,1.07434,1.13005,1.18577,1.24149,1.24149,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,hydrogen cogen,0.0,0.0,0.0,0.0,0.0034067,0.00647095,0.00961515,0.013051,0.0174399,0.0230417,0.0297165,0.0360246,0.0460809,0.0578696,0.0715923,0.0842924,0.0985561,0.117105,0.127039,0.133306,0.122527,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,refined liquids (CC CCS),0.0,0.0,0.0,0.0,0.0,0.0261885,0.056965600000000005,0.0801397,0.10301035,0.12459608999999999,0.14836948,0.17879938,0.23654719000000002,0.28795165,0.3768454,0.4576048,0.5228557,0.6215451,0.6361119000000001,0.5732485999999999,0.43324279999999993,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,refined liquids (CC),0.0,0.0,0.0,0.0267335,0.0402565,0.045342299999999995,0.059954839999999995,0.07390290000000001,0.08589661,0.09766452,0.11075098,0.11238255999999999,0.1155596,0.10533597,0.08497870999999999,0.05759011,0.03615406,0.015666811,0.005860324199999999,0.00215094151,5.71807432E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,refined liquids (steam/CT),0.0240485,0.0371498,0.0619949,0.1026289,0.1149888,0.11549119000000001,0.11216219,0.10481698000000002,0.09590805000000001,0.08723573000000001,0.07964451,0.07018674,0.03744216,0.021835346999999998,0.013534301,0.007528081000000001,0.004139341,0.0017181462999999995,6.0948016E-4,2.0982920200000003E-4,5.1430247200000006E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,refined liquids cogen,0.0,0.0,0.00306942,0.00348542,0.00351067,0.00381269,0.00356692,0.00333862,0.00322328,0.00311935,0.00306015,0.00288983,0.00277142,0.00257362,0.00218013,0.00179968,0.00150602,0.00106285,6.98987E-4,4.56646E-4,2.42526E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,rooftop_pv,0.0,0.0,0.0,3.03752E-4,0.0010797,0.00257128,0.00436734,0.00677022,0.0107679,0.0160752,0.0236086,0.0351305,0.0504878,0.0667807,0.0854944,0.101367,0.117887,0.128859,0.140058,0.153464,0.17384,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,wind,0.0,2.88011E-5,0.00145447,0.00552456,0.010032760000000002,0.01724654,0.03239654,0.05234894,0.07579266999999999,0.10241007999999999,0.13756448,0.17928239999999998,0.24941619999999998,0.32840179999999997,0.4498096,0.5955471,0.7321515000000001,0.8756358000000001,0.983962,1.06,1.1718899999999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,wind_storage,0.0,0.0,0.0,2.30552E-5,4.94396E-5,9.32922E-5,1.89619E-4,3.22922E-4,4.9622E-4,6.943208000000001E-4,9.672244000000001E-4,0.0013078518,0.0019133,0.00263249,0.003802262,0.005293836,0.006780288,0.008435258000000001,0.009848013,0.01094127,0.01256722,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,CSP,0.0,0.0,0.0,4.12065E-5,1.469835E-4,3.708585E-4,8.117885000000001E-4,0.0013940215000000002,0.0020227825000000005,0.0027247670000000003,0.0035187380000000004,0.0045299630000000006,0.005844103,0.00729231,0.009262869,0.011739498000000001,0.01428919,0.01735218,0.019509870000000002,0.02072552,0.021293150000000004,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,CSP_storage,0.0,0.0,0.0,0.0,0.0,7.46553E-4,0.003590523,0.010654663,0.025225163000000002,0.050877563,0.088531863,0.14393521,0.22742314000000002,0.32816300000000004,0.4662615,0.6474661,0.8511148,1.1364579000000001,1.3988500000000001,1.6133840000000002,1.829238,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,Gen_III,0.0,0.0,0.0,0.00484375,0.0094728,0.020231890000000002,0.04137649,0.07284478,0.11463398,0.17081417999999998,0.24100047999999996,0.32827127999999994,0.44104087,0.56284876,0.7133866600000001,0.8893766299999999,1.0735343,1.3016427,1.5032546999999998,1.6622860999999998,1.8216309000000002,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,PV,0.0,5.012E-4,5.476E-4,0.00402675,0.01063526,0.02142706,0.03847326,0.05409046,0.06393225999999999,0.0701561,0.07414129,0.07705619000000001,0.07860189000000001,0.08394259000000001,0.09955149,0.1214179,0.1443841,0.17139189999999999,0.189208,0.19808260000000003,0.20046280000000002,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,PV_storage,0.0,0.0,0.0,5.79857E-5,1.674547E-4,3.477897E-4,6.544297E-4,0.0011211247,0.0019370137,0.003132848,0.004668899,0.006903814,0.010277284,0.014403158999999999,0.02010033,0.02774025,0.03655773,0.049100580000000005,0.06077877,0.0705557,0.08062704,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,biomass (IGCC CCS),0.0,0.0,0.0,0.0,0.0,1.02037E-4,3.393968E-4,7.552330999999999E-4,0.0014524482,0.0024787965,0.0037736273000000004,0.0058754537,0.0090347372,0.0129975393,0.0213236289,0.035572648,0.0560137936,0.09041407700000001,0.123600173,0.14980436,0.166782132,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,6.33836E-4,0.001836289,0.00362332,0.006184785,0.009914929,0.014848982,0.021286025,0.029762868999999997,0.038132232,0.041400877,0.035498321,0.024504130499999995,0.0084318886,0.0024268455,7.7449006E-4,1.7043020399999998E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,biomass (conv CCS),0.0,0.0,0.0,0.0,0.0,3.28462E-4,0.001096439,0.002414825,0.004473998,0.007136409,0.009972367,0.014474007,0.020407025000000002,0.027014942,0.042781233,0.068347675,0.106415444,0.174666027,0.235393099,0.27514689000000003,0.278763056,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,biomass (conv),5.77679E-5,7.19828E-6,0.0,0.00132102,0.0038326700000000003,0.006742069999999999,0.01185083,0.01834765,0.025788206,0.034858323,0.044929466,0.054997826,0.065190177,0.07052465299999999,0.058862569000000003,0.036427646,0.019151163000000002,0.0049722799,0.0012483934,3.69437456E-4,7.523839720000001E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,coal (IGCC CCS),0.0,0.0,0.0,0.0,0.0,1.89119E-5,6.0236100000000004E-5,1.296982E-4,2.4485580000000004E-4,4.081421E-4,6.06618E-4,9.227214000000001E-4,0.0014063544,0.0020144876,0.0033533245999999997,0.006008219,0.0102334281,0.017674446200000003,0.0256375349,0.033010787900000005,0.041481307,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,coal (IGCC),0.0,0.0,0.0,0.0,0.0,6.02201E-4,0.001564263,0.0028260530000000002,0.004402021,0.006395702,0.008761305,0.011351818999999999,0.014303199999999999,0.016851811999999997,0.016396112,0.013040739999999999,0.008426290999999999,0.0024831159,7.296353E-4,2.4864563999999997E-4,6.11104313E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,coal (conv pul CCS),0.0,0.0,0.0,0.0,0.0,4.63113E-5,1.401308E-4,2.866648E-4,5.091417E-4,7.934818E-4,0.0011083961,0.0015701560999999999,0.0022178874,0.0029865043,0.0046323153,0.0078579787,0.0129958296,0.022018171000000003,0.0316131484,0.040485623,0.050607658,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,coal (conv pul),0.0,0.00107293,0.00306897,0.01061151,0.01626408,0.02137594,0.02763857,0.03420186,0.04044232,0.046867870000000006,0.053307517,0.05817010599999999,0.061854548,0.0626146002,0.04981937,0.03040215,0.016141414,0.003988176,0.00107763109,3.44717196E-4,7.970486960000001E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,gas (CC CCS),0.0,0.0,0.0,0.0,0.0,0.0836405,0.206925,0.3480901,0.4955596,0.6378523,0.7567923999999999,0.8742042,0.9948507,1.1007662,1.188966,1.31505,1.4891640000000002,1.825955,2.1517049999999998,2.410264,2.657507,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,gas (CC),0.00718271,0.0264569,0.0,0.0422615,0.10202439999999999,0.1585014,0.25612240000000003,0.3959964,0.5770706999999999,0.8123912,1.0892792999999998,1.3765475999999999,1.6493208,1.8647615999999998,1.9585277000000003,1.9020609999999998,1.693277,1.1430135000000001,0.6362192,0.31527532,0.10779071600000002,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,gas (steam/CT),0.0162713,0.0598219,0.139214,0.29906699999999997,0.41364199999999995,0.4664649,0.5104508999999999,0.5314687,0.5242198,0.5030335000000001,0.4717245,0.4164024,0.28518395999999996,0.19271787999999998,0.1203747,0.06993593999999999,0.038595620000000004,0.014130784,0.005022148,0.0018545051,5.1281359E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,geothermal,0.0,0.0,0.0,0.00832162,0.02110724,0.03805757,0.05953401,0.08133233,0.09971895,0.0997191,0.0997189,0.0997189,0.099719,0.0997188,0.09971906999999999,0.09971906999999999,0.09969691,0.09971896999999999,0.09971896,0.099719,0.09971893,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,hydro,0.0268079,0.0463089,0.0710383,0.0749133,0.0787882,0.0826631,0.0865381,0.090413,0.102136,0.113859,0.125581,0.137304,0.149027,0.16075,0.172473,0.184196,0.195918,0.207641,0.219364,0.231087,0.231087,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,hydrogen cogen,0.0,0.0,0.0,0.0,0.00235651,0.00545641,0.00962989,0.015227,0.0225729,0.0325469,0.0446717,0.054838,0.0703776,0.0959502,0.119663,0.149606,0.182105,0.225364,0.273714,0.325315,0.344502,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,refined liquids (CC CCS),0.0,0.0,0.0,0.0,0.0,0.0400222,0.0703964,0.0941967,0.1151432,0.12997979999999998,0.13563246,0.14677755,0.15722882000000002,0.15932723,0.17482639,0.19217660000000003,0.2065939,0.2272439,0.2128735,0.16446898,0.1078065,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,refined liquids (CC),0.0,0.0,0.0,0.0289845,0.0525027,0.0605473,0.07916980000000001,0.10046050000000001,0.12447783,0.15689962,0.19034564,0.21650416,0.23805261,0.23602203,0.19806455,0.15042508,0.10135686,0.045264360000000003,0.018351985999999997,0.006916636300000001,0.0018130796799999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,refined liquids (steam/CT),0.00879917,0.0428959,0.0412827,0.09172,0.11407439999999999,0.11747070000000001,0.1164635,0.11186929999999999,0.10599257999999999,0.10107168,0.09656406000000001,0.09027758,0.058951211,0.038423852,0.02622878,0.016875781,0.010329036000000002,0.004428458000000001,0.0017696989000000002,6.495675399999999E-4,1.5951760999999997E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,rooftop_pv,0.0,0.0,0.0,1.9787E-4,7.57071E-4,0.00202743,0.00387872,0.00684444,0.0122449,0.0208585,0.034443,0.0605231,0.10053,0.154281,0.236495,0.32076,0.392169,0.45424,0.505936,0.564578,0.643253,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,wind,0.0,4.92E-5,1.312E-4,0.00794378,0.02394728,0.053317180000000006,0.10669178000000001,0.18275878,0.28774858000000003,0.424906,0.5914975,0.8087806,1.098994,1.415504,1.8100530000000001,2.277206,2.746676,3.319348,3.7425390000000003,4.018756,4.2393920000000005,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,wind_storage,0.0,0.0,0.0,4.09068E-5,1.269749E-4,2.9116790000000004E-4,6.030409000000001E-4,0.0010727419000000002,0.0017583409,0.0027168621,0.003975754,0.005757121,0.008357138,0.011465537000000001,0.015752618,0.021400549999999997,0.0277209,0.03638934,0.044119649999999996,0.05023377999999999,0.0561572,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,CSP,0.0,0.0,0.0,7.78489E-5,2.485219E-4,4.5233990000000004E-4,8.643639E-4,0.0014722159000000001,0.0024657739,0.0036451649999999997,0.004858292,0.006529994,0.00856878,0.010540088000000001,0.01464959,0.01928469,0.022449959999999998,0.02570351,0.027141469999999997,0.0279235,0.02743967,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,CSP_storage,0.0,0.0,0.0,0.0,0.0,5.4297E-4,0.0025775499999999996,0.006823109999999999,0.01416738,0.02409621,0.03574671,0.05085504,0.06910516,0.0862595,0.12170783,0.1621768,0.19131209999999998,0.2258033,0.24609070000000002,0.2618884,0.2694517,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,Gen_III,0.0,0.0,0.0,0.0721375,0.1291929,0.1779253,0.2568401,0.3565651,0.4780649,0.5996529,0.7092058,0.8330428,0.9712005,1.0994594,1.3271134,1.4947838,1.6109152,1.7504784999999998,1.8092621000000002,1.824702,1.848573,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,Gen_II_LWR,0.1904,0.528419,0.534944,0.494364,0.471177,0.437356,0.391075,0.332981,0.267472,0.201963,0.143868,0.0975873,0.0637668,0.0405798,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,PV,3.60012E-6,5.40015E-5,0.00277919,0.003353445,0.004285263,0.005146077,0.006592697,0.008430126999999999,0.008337237,0.010951542,0.013348464,0.01688864,0.021112270000000002,0.02526821,0.03444211,0.04508275,0.05262361,0.06042062,0.06405001,0.06618391,0.06569061,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,PV_storage,0.0,0.0,0.0,9.56995E-6,2.499645E-5,3.929475E-5,6.320975E-5,9.378735E-5,1.3862065E-4,1.819565E-4,2.2203520000000003E-4,2.811316E-4,3.5148389999999996E-4,4.202949E-4,5.744866E-4,7.578088000000001E-4,8.951046000000001E-4,0.0010611559000000001,0.0011616916,0.0012430850000000001,0.001291115,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,biomass (IGCC CCS),0.0,0.0,0.0,0.0,0.0,2.28483E-6,7.2975969999999995E-6,1.6479611E-5,4.0052272999999995E-5,8.0816874E-5,1.4214031E-4,2.9727881E-4,5.9041106E-4,0.00102498389,0.00258129392,0.00507451373,0.007453293519999999,0.010979277329999999,0.0136003636,0.0155902879,0.017009172700000002,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,1.50984E-4,4.8502399999999997E-4,0.001026803,0.001911997,0.003018532,0.004200541,0.005612356,0.007077844000000001,0.008117674,0.008609002800000001,0.0068401794,0.0042898806000000005,0.0013519413999999999,3.7172912000000007E-4,1.1714211399999998E-4,2.48440072E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,biomass (conv CCS),0.0,0.0,0.0,0.0,0.0,3.19666E-6,1.0779694E-5,2.4062930000000002E-5,5.7601725E-5,1.1303168E-4,1.93937795E-4,4.36664201E-4,9.17184057E-4,0.0016452817299999999,0.004576480589999999,0.00918754952,0.013541836750000001,0.0205368182,0.025206034,0.027997334000000002,0.0277270886,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,biomass (conv),0.0,1.62005E-4,0.0012456,0.001380582,0.002097897,0.002639467,0.0040163279999999996,0.005906039,0.008438138999999999,0.011039416,0.013314974,0.015352089,0.016613908,0.0162971665,0.013004425100000001,0.007306639699999999,0.0034854804999999997,8.494166999999999E-4,2.0770708999999997E-4,6.0905821400000006E-5,1.182765369E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,biomass cogen,0.0,4.28023E-4,8.23576E-4,8.7149E-4,0.00124362,0.00149236,0.00169358,0.00181162,0.00188598,0.00190569,0.00185811,0.00180848,0.0015997,0.00133473,8.80764E-4,5.11932E-4,3.15307E-4,1.3961E-4,6.64418E-5,3.535E-5,1.49909E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,coal (IGCC CCS),0.0,0.0,0.0,0.0,0.0,4.43949E-6,1.513925E-5,3.523184E-5,8.314215E-5,1.6807588E-4,2.9284243E-4,5.9620069E-4,0.0012226825999999999,0.00218076162,0.00583601761,0.01196352142,0.01762317322,0.025202756970000004,0.030623737900000003,0.0349448631,0.040093594600000004,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.00403218,0.011082970000000001,0.020340360000000002,0.0323509,0.04465288,0.05573022,0.06591491,0.07431084,0.07825225,0.07052911,0.050126510000000006,0.029055933,0.007621302000000001,0.0021334315,7.031848129999999E-4,1.591538955E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,coal (conv pul CCS),0.0,0.0,0.0,0.0,0.0,6.45356E-6,2.142957E-5,4.9125640000000006E-5,1.1529595E-4,2.2901676999999998E-4,3.9257814E-4,7.8810486E-4,0.0015845750400000002,0.00279360747,0.00734996721,0.01488415244,0.02175293961,0.030940820600000002,0.0374198258,0.0425667864,0.0486210304,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,coal (conv pul),0.0423734,0.482673,0.721766,0.748941,0.7754491,0.7649565999999999,0.7499338000000001,0.7217709,0.6825611,0.6346647000000001,0.5862787,0.5360332999999999,0.4876875,0.4337232,0.2916158,0.15034403999999998,0.06978198,0.015568671000000001,0.0039507823,0.001182342427,2.4007708349999996E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,coal cogen,0.0211961,0.0529509,0.067626,0.0762502,0.0527979,0.0515645,0.0469196,0.0425085,0.033964,0.0271102,0.0217658,0.0141812,0.00931419,0.00622065,0.00290536,0.00152555,8.80973E-4,3.51018E-4,1.69703E-4,9.43859E-5,4.3526E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,gas (CC CCS),0.0,0.0,0.0,0.0,0.0,1.41938E-4,4.47118E-4,9.38434E-4,0.001823281,0.003080391,0.004582552,0.007157028,0.011142504,0.015938963,0.029037305,0.047815631,0.064529703,0.08902396000000001,0.10856436,0.1253887,0.1473092,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,gas (CC),0.0269822,0.20285,0.255413,0.2824354,0.3113068,0.32542530000000003,0.3468082,0.36726549999999997,0.3886229,0.40417030000000004,0.4137568,0.42261619999999994,0.3858487,0.35230149999999993,0.31574990000000003,0.2718933,0.21491087,0.1303285,0.06697188600000001,0.031536665,0.010037955900000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,gas (steam/CT),0.0075934,0.0102148,0.110062,0.09209488,0.08763639000000001,0.0827737,0.07557858,0.06616258,0.05488292,0.04372453999999999,0.03393695,0.025471458000000002,0.017998889,0.012764191000000003,0.006803615,0.004409335,0.0025867880000000005,9.672042999999999E-4,3.498514499999999E-4,1.3496388499999998E-4,3.7471398E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,gas cogen,0.0,0.0111745,0.00791079,0.0085724,0.00907211,0.00973397,0.0097877,0.0095717,0.00906502,0.00836503,0.0075397,0.00655535,0.00553113,0.00451158,0.00312996,0.00219269,0.00157447,8.78745E-4,5.31043E-4,3.38558E-4,1.80391E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,hydro,0.0228996,0.0132228,0.0139644,0.0151472,0.0170392,0.0189311,0.0208231,0.0227151,0.0258792,0.0290433,0.0322074,0.0353714,0.0385355,0.0416996,0.0448637,0.0480278,0.0511919,0.054356,0.0575201,0.0606842,0.0606842,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,hydrogen cogen,0.0,0.0,0.0,0.0,0.00276619,0.00484647,0.00740307,0.0103732,0.0137533,0.0177537,0.0217189,0.0236409,0.0268612,0.0330247,0.0363885,0.0413117,0.046681,0.054101,0.0629318,0.0729587,0.073839,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,refined liquids (CC CCS),0.0,0.0,0.0,0.0,0.0,6.48728E-4,0.0012850154,0.0017845862,0.0025361274,0.0030162222,0.0033597417999999997,0.0044741951999999995,0.0058730881,0.0070233909999999995,0.011728081,0.015916039,0.017451646,0.021397288,0.021195875000000003,0.01862201,0.01422203,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,refined liquids (CC),0.0,0.0,0.0,0.00193801,0.003572638,0.0043841769999999995,0.0074290450000000004,0.011236675,0.016201617,0.020627161999999997,0.023994392,0.026634464,0.027775426,0.026155350999999997,0.023580604999999998,0.017381591000000002,0.010854193000000002,0.004675987,0.0018239749999999998,7.060033000000001E-4,1.9111073699999996E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,refined liquids (steam/CT),0.0678875,0.0757497,0.0538667,0.04036515,0.03995426,0.038186780000000003,0.03525586,0.03132218,0.02690431,0.022485469,0.018491893,0.014909816999999999,0.010300019000000002,0.0068835170000000005,0.003390149,0.0020873423,0.0011948967,4.602587E-4,1.7108882999999998E-4,6.2065446E-5,1.5017969400000003E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,refined liquids cogen,0.0,0.017814,0.0142928,0.0131006,0.0135557,0.0138379,0.0134182,0.0130282,0.0128292,0.0126741,0.012408,0.0120046,0.0113861,0.0103875,0.00826056,0.00651998,0.00510974,0.00321749,0.00211236,0.00135494,6.85642E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,rooftop_pv,0.0,0.0,0.0,4.88425E-5,1.72502E-4,4.01848E-4,7.66852E-4,0.00133523,0.00231008,0.00370448,0.00561091,0.00883024,0.0127927,0.0169515,0.0219317,0.0260242,0.0296462,0.0335194,0.0362981,0.0390343,0.0417751,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,wind,0.0,4.68013E-4,0.00294119,0.003925068,0.005568278,0.007453148000000001,0.011162458,0.016509058,0.021518418,0.029884920000000002,0.03800093,0.048331059999999995,0.05954775,0.06926505,0.0892286,0.11070412,0.12477300000000001,0.1399986,0.1465056,0.1506231,0.1488266,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,wind_storage,0.0,0.0,0.0,8.53182E-6,2.381292E-5,4.2443119999999995E-5,8.180932E-5,1.4317942E-4,2.4007562E-4,3.534998E-4,4.7375870000000004E-4,6.352355E-4,8.271613E-4,0.0010092702000000001,0.001396458,0.001841781,0.002161091,0.002526606,0.002730255,0.002881024,0.0029388929999999997,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,CSP,0.0,0.0,0.0,7.53117E-5,2.731467E-4,6.463837E-4,0.0014825917,0.0027843217,0.0047696017,0.0074499100000000006,0.010842215,0.015473068,0.022574040000000004,0.02868027,0.034372940000000005,0.03973717,0.043271540000000004,0.04766211,0.04798666,0.04709246,0.04760355,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,CSP_storage,0.0,0.0,0.0,0.0,0.0,0.00124077,0.00639372,0.01774112,0.03606352,0.06326382,0.10116712,0.15310435,0.24135230000000002,0.3528089,0.5654085,0.8800191999999999,1.1931899,1.6585959,2.0595120000000002,2.3638939999999997,2.7390630000000002,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,Gen_III,0.0,0.0,0.0,0.00961864,0.01955332,0.0377576,0.0764791,0.13429319,0.21110119,0.30835739,0.42681819,0.56712008,0.76968707,0.9759880700000001,1.25865787,1.5918211500000001,1.8895081000000002,2.2761896,2.5903011,2.8136322,3.1046555,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,PV,0.0,2.509E-4,3.334E-4,0.00397496,0.01105503,0.02138773,0.04063153,0.06642113,0.10125913,0.14338077,0.1927435,0.2584761,0.35105030000000004,0.41276349999999995,0.4464621,0.4648372,0.4626452,0.4563327,0.4053657,0.3655079,0.3557147,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,PV_storage,0.0,0.0,0.0,6.06883E-5,1.779053E-4,3.495423E-4,6.677142999999999E-4,0.0010970252999999998,0.0016845692999999998,0.002385229,0.003216579,0.004354872,0.0063167499999999994,0.008883409,0.013937475000000001,0.021592107,0.029361160000000004,0.04105943,0.05124658,0.059156310000000004,0.0691346,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,biomass (IGCC CCS),0.0,0.0,0.0,0.0,0.0,6.55964E-4,0.001903744,0.0038776,0.007118977,0.011885481,0.018470123,0.029346090000000002,0.049702257,0.074336242,0.116423693,0.172694889,0.22523407899999998,0.2973237,0.35534065,0.39192188,0.41630721,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,0.00364778,0.00951398,0.01673231,0.025037920000000005,0.03407868,0.04330939,0.05168572,0.06029267999999999,0.06534416,0.06068463,0.04558426999999999,0.03009613,0.010205942,0.0031115201999999996,0.00106415962,2.40418737E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,biomass (conv CCS),0.0,0.0,0.0,0.0,0.0,0.00221104,0.00625139,0.01282381,0.02386689,0.03998984,0.06195476,0.09984986,0.17190592999999998,0.25750092,0.40685071000000006,0.59356779,0.7521971900000001,0.9598680500000001,1.09682164,1.1444020400000001,1.07892411,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,biomass (conv),0.00220873,0.00903599,0.0205776,0.026811777000000002,0.042918990000000004,0.057326230000000006,0.08259169999999999,0.10741476,0.129106866,0.14792936999999998,0.162795422,0.16888130599999998,0.16827838369999998,0.1569631933,0.11200138,0.058759769999999996,0.029314198,0.007560560000000001,0.0019932252200000004,6.14827707E-4,1.2352232329999999E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,coal (IGCC CCS),0.0,0.0,0.0,0.0,0.0,5.4812E-4,0.0017357800000000001,0.003821324,0.007770055999999999,0.014337600999999998,0.024323736999999998,0.042699247999999995,0.07971147,0.12397033699999999,0.196641105,0.28983678,0.37005153300000004,0.46773895,0.5408141399999999,0.58584713,0.6329919900000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.0147895,0.0399013,0.07115550000000001,0.105857,0.1415064,0.17600700000000002,0.20263209999999998,0.2254213,0.2347829,0.20338856,0.14564537,0.09083506,0.026182333999999998,0.008064787099999998,0.00289598296,6.990752380000001E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,coal (conv pul CCS),0.0,0.0,0.0,0.0,0.0,0.00138511,0.00412521,0.00865359,0.0167485,0.029385170000000002,0.04761016,0.07966382,0.14128736,0.21220185,0.32281659,0.45884119999999995,0.5710134200000001,0.70150836,0.79366263,0.84504079,0.8927459999999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,coal (conv pul),0.104596,0.279376,0.448595,0.66678,0.815113,0.916779,1.0478239999999999,1.169339,1.258086,1.321805,1.3677119999999998,1.3611959999999999,1.3246038,1.2409452,0.9042882999999998,0.4819051,0.24316635,0.058540954,0.015984554900000003,0.0051276635,0.001107068181,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,gas (CC CCS),0.0,0.0,0.0,0.0,0.0,0.107753,0.287889,0.516713,0.791813,1.0972169999999999,1.416724,1.803762,2.380324,2.955386,3.685828,4.549143,5.236097,6.1846890000000005,6.886124,7.290974,7.791570999999999,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,gas (CC),0.0449317,0.556474,0.456895,0.737706,0.991137,1.1510010000000002,1.393557,1.674429,1.968377,2.27531,2.593613,2.8755827,2.8949895000000003,2.8844738,2.81561,2.5794539999999992,2.2147240000000004,1.5450166,0.9383700999999999,0.51840259,0.19647889700000007,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,gas (steam/CT),0.0446902,0.251628,0.603728,0.705983,0.80975,0.8699381,0.9175945999999999,0.9271418,0.8929977000000001,0.8369698999999999,0.7725715,0.6831446,0.4775852999999999,0.33541,0.20699358,0.11817209999999999,0.06477593000000001,0.023490827,0.008704214,0.0034216371999999996,9.916037100000002E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,gas cogen,0.0,0.00126484,0.00152089,0.00225978,0.0029911,0.00430623,0.0048576,0.00520481,0.005456,0.00553042,0.00549679,0.00529199,0.00498062,0.00463858,0.00373877,0.00299485,0.00246478,0.0015859,0.00109868,7.86758E-4,4.65643E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,geothermal,0.0196812,0.0356543,0.0357516,0.0604215,0.08595069999999999,0.1139699,0.1531995,0.19357829999999998,0.20796610000000001,0.2336731,0.23367309999999997,0.2336758,0.23367300000000002,0.2336728,0.233673,0.2336731,0.2336723,0.233673,0.23367300000000002,0.233673,0.23367290000000002,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,hydro,0.141032,0.19957,0.254132,0.26494,0.275747,0.286555,0.297363,0.30817,0.338521,0.368871,0.399221,0.429571,0.459921,0.490271,0.520621,0.550971,0.581321,0.611671,0.642021,0.672371,0.672371,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,hydrogen cogen,0.0,0.0,0.0,0.0,9.79546E-4,0.00218105,0.00379684,0.00595002,0.00897394,0.0132756,0.0188493,0.025581,0.0356316,0.0489372,0.0666565,0.0846915,0.104901,0.136518,0.174616,0.226581,0.262177,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,refined liquids (CC CCS),0.0,0.0,0.0,0.0,0.0,0.0268472,0.048830460000000006,0.06808331000000001,0.09179392,0.11790494,0.14641025,0.1897431,0.25492954,0.30503956,0.3769571,0.4297922,0.4446365,0.465054,0.42220070000000004,0.3350665,0.21800759999999997,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,refined liquids (CC),0.0,0.0,0.0,0.019772,0.0318526,0.03225918,0.04701263,0.0629488,0.07973186,0.09836481,0.11675480999999999,0.12877634,0.14124771,0.13722409,0.11859014000000001,0.08933632999999999,0.06104775,0.02898307,0.012375855,0.0051085245,0.0014626974299999998,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,refined liquids (steam/CT),0.193341,0.11442,0.101648,0.09048629999999999,0.09867429999999999,0.0994782,0.09655308,0.09048292999999999,0.08422553000000002,0.07835285,0.07308900999999998,0.06713761,0.04391939999999999,0.02781761,0.017971606999999997,0.011159641,0.0067276,0.0029396329999999997,0.0012031351000000002,4.7526566E-4,1.2500541799999998E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,rooftop_pv,0.0,0.0,0.0,2.19188E-4,9.88781E-4,0.00315187,0.0068067,0.0131226,0.02545,0.045643,0.0773962,0.137779,0.224914,0.344237,0.509104,0.678918,0.873307,1.07627,1.28198,1.50498,1.71684,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,wind,0.0,8.32999E-5,2.845E-4,0.00758565,0.020022850000000002,0.03851795,0.07265865,0.11833825,0.17601785,0.2394061,0.30976339999999997,0.39479729999999996,0.5163436,0.635342,0.8050729,1.0117325,1.1843050000000002,1.4177560000000002,1.562503,1.646125,1.751385,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,wind_storage,0.0,0.0,0.0,6.58021E-5,1.972921E-4,4.2146709999999995E-4,8.998190999999999E-4,0.0016301171,0.0026687471,0.003995645,0.005649105,0.00785225,0.011357388,0.015164959999999998,0.02097338,0.02863424,0.035696120000000005,0.0457918,0.05344301,0.05875088,0.06554893,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,CSP,0.0,0.0,0.0,1.87402E-4,8.50444E-4,0.001588288,0.002718888,0.004220538,0.006326298,0.008689826000000001,0.010803893999999998,0.01359941,0.02036532,0.029688569999999997,0.03956721,0.04614665,0.05006408,0.053488669999999995,0.05092371999999999,0.04564537999999999,0.04316572,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,CSP_storage,0.0,0.0,0.0,0.0,0.0,7.16642E-4,0.002752162,0.006576392,0.012252392,0.019599852,0.028129492,0.03817775,0.06018473,0.0917081,0.15794930000000001,0.28149184,0.4017922,0.5374913,0.6100357000000001,0.6468726,0.6669314,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,Gen_III,0.0,0.0,0.0,0.00202633,0.00463418,0.00813972,0.013852719999999999,0.02170095,0.03138714,0.04216643,0.053195929999999995,0.06509812999999999,0.08790672999999999,0.11686142,0.16151712,0.22033018999999998,0.26954992,0.31927225,0.34704274,0.36417074000000005,0.38648170000000004,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,Gen_II_LWR,0.118319,0.143918,0.149865,0.138496,0.132,0.122525,0.10956,0.0932845,0.0749322,0.0565799,0.0403048,0.0273391,0.0178643,0.0113684,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,PV,0.0,3.60046E-6,8.28002E-5,4.668252E-4,0.0014724652,0.0023381692,0.0034409291999999998,0.0047019591999999995,0.0062008490000000005,0.0076141839999999995,0.008464534000000001,0.009902560000000001,0.013879240000000001,0.01964656,0.02617877,0.03097867,0.03414331,0.037134349999999997,0.03612903,0.03332802,0.03243243,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,PV_storage,0.0,0.0,0.0,6.39973E-6,2.304843E-5,3.742803E-5,5.565902999999999E-5,7.664603E-5,1.0304773E-4,1.264799E-4,1.407953E-4,1.6488039999999998E-4,2.3178480000000002E-4,3.358878E-4,5.643511000000001E-4,0.0010020012,0.0014350811,0.0019295464,0.002197777,0.002340001,0.0024289760000000002,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,biomass (IGCC CCS),0.0,0.0,0.0,0.0,0.0,1.16221E-4,2.4542680000000003E-4,3.4584169999999997E-4,4.0819070000000003E-4,4.248084E-4,4.6410819999999993E-4,7.088249E-4,0.0013370995,0.0024473973,0.0055576595,0.011691429,0.0182711857,0.026728407999999995,0.031945018,0.0353551239,0.037894732,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,7.8576E-4,0.0017119269999999998,0.002892557,0.004394995,0.006068,0.007709539,0.009446796,0.012581134,0.015900432,0.018223317,0.016984385,0.012390330999999997,0.004364563899999999,0.0012449382,3.9696023E-4,8.18654993E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,biomass (conv CCS),0.0,0.0,0.0,0.0,0.0,3.61342E-4,6.79169E-4,8.13356E-4,7.961859999999999E-4,6.912084E-4,6.80452E-4,0.0011179482,0.002266802,0.004252919000000001,0.010229459,0.021788979,0.034140116,0.050935696,0.060407939,0.065387485,0.065076442,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,biomass (conv),0.0,0.0118311,0.0131472,0.00923329,0.01645437,0.01861993,0.022826850000000003,0.02652937,0.030013939999999996,0.033040770000000004,0.03523598,0.036980439999999996,0.040076129999999995,0.041631786999999996,0.03609778,0.022565986,0.011348125,0.0027705988000000003,6.709525400000001E-4,1.9600614500000002E-4,3.719831819999999E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,coal (IGCC CCS),0.0,0.0,0.0,0.0,0.0,1.89049E-4,4.33977E-4,6.34705E-4,7.78955E-4,8.47056E-4,9.0248E-4,0.001142868,0.00199355,0.0037511280000000003,0.009470905,0.021950793,0.035622807,0.052469585,0.06281990300000001,0.0701189826,0.0789171929,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.00682912,0.01535798,0.02514313,0.03589838,0.04637094,0.05564915,0.06364596,0.07621149,0.08789280999999999,0.08999079,0.07731466999999999,0.05304723,0.015930975000000003,0.0046302644,0.00156956679,3.61190851E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,coal (conv pul CCS),0.0,0.0,0.0,0.0,0.0,4.52171E-4,9.725179999999999E-4,0.001337249,0.0015421319999999999,0.001570165,0.001581983,0.001912462,0.0030217200000000003,0.005258922,0.012400859,0.027783228,0.044457521,0.064802846,0.077125958,0.08582702400000002,0.09624938200000002,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,coal (conv pul),0.07806,0.333201,0.340766,0.441574,0.5465450000000001,0.5848425,0.6129334000000001,0.6291203,0.6315806,0.6243727,0.6123262,0.5921683,0.5801632000000001,0.5612581,0.4561771,0.2653812,0.12844123000000002,0.030133529,0.0076925710000000005,0.0023443033600000006,4.8761001520000003E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,coal cogen,0.0100818,0.11292,0.11021,0.0697294,0.0652054,0.0727544,0.0735199,0.0732783,0.0689455,0.0637953,0.0584771,0.0460467,0.035465,0.0269885,0.0145954,0.00773529,0.00437643,0.00165258,7.90195E-4,4.39909E-4,2.00913E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,gas (CC CCS),0.0,0.0,0.0,0.0,0.0,0.00267275,0.0059355499999999995,0.00878485,0.011048780000000001,0.01266634,0.01403847,0.01654016,0.02322699,0.03420297,0.05745215,0.10194972,0.1492176,0.21387052,0.25840518,0.29241893999999996,0.33657169000000003,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,gas (CC),0.00209861,0.11464,0.124031,0.20634039999999998,0.3050219,0.35879930000000004,0.4113899,0.4597079,0.5027246,0.5376519000000001,0.5639819,0.5849411,0.5347731,0.47464969,0.4446688,0.40815120000000005,0.34963299999999997,0.25001002,0.15591979,0.08909776,0.034890332600000004,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,gas (steam/CT),0.00162746,0.0156036,0.0805969,0.06429392,0.06617742,0.06540958,0.062163800000000005,0.05687923000000001,0.05017371,0.04313927,0.03663066,0.03103695,0.024406969999999997,0.018857930000000002,0.01276853,0.009481307,0.006190149999999999,0.0025593100000000004,0.0010164008,4.3680468E-4,1.3647742699999998E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,gas cogen,7.51783E-4,0.00285039,0.001802,0.00159454,0.00207088,0.00250781,0.00277282,0.0029632,0.00321827,0.00337997,0.00343533,0.0035384,0.00347526,0.00323699,0.00261948,0.00184131,0.00128021,6.61023E-4,3.89779E-4,2.47162E-4,1.28748E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,geothermal,1.08002E-5,0.0,0.0,0.0017586,0.003461,0.003461008,0.003461,0.003460997,0.003460997,0.003460999,0.003461004,0.0034609899999999997,0.003461003,0.003461594,0.0034609981000000003,0.0034610009,0.0034578588,0.0034610025,0.0034610018,0.003461005,0.003460996,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,hydro,0.0229716,0.0143496,0.0150984,0.0154475,0.0157965,0.0161456,0.0164946,0.0168437,0.0178996,0.0189556,0.0200116,0.0210676,0.0221236,0.0231796,0.0242355,0.0252915,0.0263475,0.0274035,0.0284595,0.0295155,0.0295155,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,hydrogen cogen,0.0,0.0,0.0,0.0,2.60083E-5,4.91115E-5,7.97026E-5,1.19013E-4,1.74503E-4,2.48603E-4,3.3398E-4,4.12483E-4,5.31527E-4,7.41255E-4,9.72726E-4,0.00117419,0.00135401,0.00154564,0.00181737,0.00215808,0.0021783,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,refined liquids (CC CCS),0.0,0.0,0.0,0.0,0.0,0.0045534,0.006103951,0.006537952,0.006487675,0.005895813,0.005679186,0.00737171,0.011806690000000002,0.016882657,0.027521679,0.042909141,0.053638434,0.067874348,0.068721619,0.062264814,0.047075723,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,refined liquids (CC),0.0,0.0,0.0,0.00382567,0.0078166,0.00632897,0.00846102,0.01170755,0.016394739999999998,0.021637370000000003,0.02620973,0.03048824,0.03959039,0.045305513,0.0478696,0.04339653,0.03115693,0.01427873,0.00586735,0.0024417415000000005,6.970840899999999E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,refined liquids (steam/CT),0.0780744,0.0395547,0.0298225,0.02461641,0.026860540000000002,0.02504635,0.02414732,0.022824240000000003,0.021740719000000002,0.020457985,0.019036728,0.017881214000000003,0.012612126999999999,0.007591579,0.005056420000000001,0.003732846,0.002507029,0.0011530309999999999,4.979365E-4,2.0883558E-4,5.7810795000000005E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,refined liquids cogen,0.00623675,0.0154824,0.00922986,0.00690975,0.00694677,0.00756211,0.00777508,0.00797477,0.00853372,0.00911552,0.00962383,0.0102997,0.0107762,0.0107752,0.00967517,0.00786214,0.00616623,0.00377234,0.00246862,0.0015897,7.98899E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,rooftop_pv,0.0,0.0,0.0,8.8277E-6,5.47579E-5,1.63023E-4,3.56053E-4,6.83157E-4,0.00134052,0.00238021,0.00390087,0.0070694,0.0115991,0.0173487,0.0263679,0.0318548,0.0351554,0.0365683,0.0381914,0.0402953,0.0414631,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,wind,0.0,3.27642E-4,0.00351361,0.0061588,0.01134642,0.01604939,0.02238309,0.029993980000000003,0.03577885,0.04322016,0.048243339999999996,0.05521706999999999,0.07096247,0.08959518,0.1140845,0.13752910000000002,0.1488247,0.1541886,0.1477618,0.13824209999999998,0.1309457,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,wind_storage,0.0,0.0,0.0,2.14559E-5,6.8772E-5,1.158043E-4,1.8558030000000002E-4,2.785978E-4,4.009228E-4,5.233169E-4,6.311568E-4,7.750405E-4,0.0011181015,0.0016020309999999999,0.002425723,0.0035802229999999996,0.0045169070000000006,0.005414741000000001,0.005819601000000001,0.005952311,0.006013964,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,CSP,0.0023869,0.00214559,0.00316435,0.003500704,0.003821048,0.004524983,0.005904373,0.008039123,0.008788223000000001,0.013275159000000002,0.018303595000000002,0.02238074,0.02674866,0.029964160000000004,0.03503038,0.03900866000000001,0.04035869,0.04328167,0.04476102,0.045977010000000006,0.04557488,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,CSP_storage,0.0,0.0,0.0,0.0,0.0,0.00234053,0.01084483,0.02949173,0.06573213,0.11449563,0.18281963,0.2890721,0.49700479999999997,0.7019559,1.0850685,1.482806,1.776452,2.124545,2.369373,2.597208,2.831365,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,Gen_III,0.0,0.0,0.0,0.422486,0.5946750000000001,0.847442,1.2244650000000001,1.7051850000000002,2.3722760000000003,3.043282,3.7355590000000003,4.494648,5.616515,6.6121609999999995,8.23596,9.343778,10.281037,11.279075,12.052944,12.606785,13.312513000000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,Gen_II_LWR,2.20139,2.91859,3.0201,2.791,2.66009,2.46915,2.20787,1.87989,1.51005,1.14021,0.812229,0.550942,0.360004,0.229099,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,PV,1.08004E-5,0.00188639,0.0109978,0.0228084,0.03113363,0.04528463,0.06833183,0.09901183,0.13827603,0.18393422999999998,0.23126230000000003,0.25469600000000003,0.2684063,0.2709592,0.2749805,0.2701868,0.2548516,0.2632083,0.26954120000000004,0.275581,0.27243259999999997,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,PV_storage,0.0,0.0,0.0,1.96841E-4,3.34686E-4,5.69801E-4,9.51121E-4,0.001463424,0.00230733,0.00310166,0.004205495,0.00591288,0.00936836,0.012817337000000002,0.019413211,0.026405360000000003,0.03169071,0.03806698,0.042678259999999996,0.04708597,0.05187639000000001,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,biomass (IGCC CCS),0.0,0.0,0.0,0.0,0.0,7.72793E-4,0.002355493,0.0050962460000000005,0.010808433000000001,0.018650031999999997,0.029333551,0.046848796,0.08238287,0.123024352,0.209552955,0.304444096,0.381086033,0.47693022999999996,0.56899401,0.6506097399999999,0.74746791,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,0.00396598,0.01012742,0.018639459999999997,0.03163447,0.04508029,0.0590042,0.07059692,0.08230962,0.08450548000000001,0.07138375,0.04427049599999999,0.023676163,0.006368007000000001,0.00170192815,5.37639273E-4,1.1155627920000001E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,biomass (conv CCS),0.0,0.0,0.0,0.0,0.0,0.0026945,0.00825906,0.018085280000000002,0.03870589000000001,0.06628833,0.10300201,0.16675398000000002,0.30095543999999996,0.4601822,0.8315781099999999,1.24628088,1.5787735400000003,2.02590186,2.4363091999999997,2.7530703,3.0261601000000002,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,biomass (conv),0.0791349,0.110634,0.115436,0.0636048,0.0760847,0.09688640000000001,0.12411739999999999,0.1504564,0.1808206,0.2036917,0.22208239999999999,0.22430505,0.21701452,0.18561172999999997,0.11466862000000001,0.04942373,0.021103663999999998,0.004702847100000001,0.0011405183899999998,3.3272640479999993E-4,6.207412681999999E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,biomass cogen,0.222713,0.122415,0.120684,0.113981,0.168274,0.211941,0.249698,0.280858,0.310474,0.332783,0.347326,0.347579,0.320321,0.279042,0.201065,0.131077,0.0905571,0.0469498,0.0258119,0.0155883,0.00755832,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,coal (IGCC CCS),0.0,0.0,0.0,0.0,0.0,0.00234581,0.007649319999999999,0.017140219999999998,0.038488350000000005,0.06934836,0.11253131999999999,0.18855177,0.3493843,0.53125621,0.89939988,1.2840386499999998,1.56999931,1.89185757,2.18274155,2.4267336999999998,2.7319915999999997,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.056099,0.14392,0.2565577,0.40938800000000003,0.5522354,0.6842229999999999,0.7748457,0.8450566,0.8401911,0.6504030999999999,0.383358,0.19377938,0.04436830300000001,0.012081871899999999,0.0039883952399999995,8.761255362E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,coal (conv pul CCS),0.0,0.0,0.0,0.0,0.0,0.00606774,0.01882628,0.04018808,0.08522246,0.14583614,0.22579880000000002,0.3609654,0.6357161,0.9400345999999999,1.53643374,2.14775296,2.5937682200000003,3.0863515,3.5265792,3.8881579,4.3310847,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,coal (conv pul),6.02909,7.68047,7.10527,8.2163,8.394077,8.434813,8.410566,8.249797000000001,8.00554,7.60139,7.179962,6.59806,5.961428,5.1168133000000005,3.0213635,1.2178536,0.52006658,0.10403261399999998,0.025657553969999993,0.007648592555000002,0.001488820542,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,coal cogen,0.0898471,0.0736722,0.07371,0.0603306,0.0514775,0.0562577,0.055229,0.0543299,0.0478812,0.0415163,0.0361285,0.0243644,0.0165397,0.0113654,0.00566583,0.00322392,0.00203524,9.1477E-4,4.96135E-4,3.06951E-4,1.5796E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,gas (CC CCS),0.0,0.0,0.0,0.0,0.0,0.0257806,0.0748465,0.14936899999999997,0.2798175,0.4344396,0.6144013,0.859425,1.2919081,1.7264880000000002,2.5519659,3.4155207,4.050098,4.793215999999999,5.468326,6.023253,6.736033,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,gas (CC),0.5903,1.90249,1.84213,2.71834,2.9905829999999995,3.303711,3.683818,4.0606089999999995,4.493787,4.803004,5.047294999999999,5.178451,4.3743,4.062575999999999,3.4656539999999993,2.745355,1.9934186000000003,1.0090263,0.45045419,0.19137624399999995,0.057189175,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,gas (steam/CT),0.435995,0.666933,1.54243,1.1620827,1.1100870999999999,1.0648,0.9690259000000001,0.8424779,0.6911742000000001,0.5392644999999999,0.40840459999999995,0.2891378899999999,0.18427812,0.12162614999999999,0.05490429,0.03103915,0.016664498,0.005599485000000001,0.0019690535000000003,7.426186599999999E-4,2.0690547700000003E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,gas cogen,0.356442,0.272225,0.315357,0.286555,0.333902,0.386219,0.409642,0.426195,0.433065,0.426307,0.41196,0.367687,0.320424,0.269865,0.200092,0.1529,0.120772,0.0766911,0.0524358,0.0375229,0.0225596,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,geothermal,0.0576456,0.0604004,0.0632762,0.1168401,0.15225090000000002,0.21265969999999998,0.3033226,0.4112845,0.4998686,0.5954888,0.703889,0.7947583,0.7947537,0.7947630000000001,0.7947580000000001,0.794758,0.794774,0.7947588,0.7947594,0.7947580000000001,0.7947594,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,hydro,0.983347,0.981803,0.945313,0.954109,0.96406,0.974012,0.983963,0.993915,0.998283,1.00265,1.00702,1.01139,1.01576,1.02013,1.02449,1.02886,1.03323,1.0376,1.04197,1.04634,1.04634,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,hydrogen cogen,0.0,0.0,0.0,0.0,0.00121175,0.00226711,0.00365413,0.0054632,0.00797356,0.0114594,0.0158348,0.0206225,0.0274255,0.0356182,0.0468852,0.0586374,0.0721307,0.0951968,0.111602,0.125705,0.119016,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,refined liquids (CC CCS),0.0,0.0,0.0,0.0,0.0,0.011247,0.020752430000000002,0.031372910000000004,0.0508263,0.06636376,0.08396893,0.11008554000000001,0.15573539000000003,0.19020164,0.28129397,0.35737113,0.407901,0.5155583,0.5589436,0.5436388999999999,0.4327828,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,refined liquids (CC),0.0,0.0,0.0,0.0121606,0.01110305,0.01219464,0.01783218,0.02548792,0.03801553,0.04876714,0.06011419,0.06617549,0.07422067,0.06827605,0.06147333,0.04225893,0.026455,0.012432669,0.004920732800000001,0.0019400931000000002,5.307658200000001E-4,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,refined liquids (steam/CT),0.450767,0.454965,0.144545,0.0990186,0.09400707,0.09224048,0.08582105999999998,0.07739387,0.06835956000000001,0.058601490000000006,0.04959091,0.04044084,0.022900266000000002,0.014836409000000002,0.007636483999999999,0.004800854,0.0029062090000000003,0.0012886621,4.84372E-4,1.7849991E-4,4.430223499999999E-5,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,refined liquids cogen,0.0195925,0.053647,0.0285496,0.0243475,0.0265594,0.0290589,0.0299773,0.0310502,0.0327113,0.034392,0.0360425,0.0362064,0.0359559,0.0344238,0.0307177,0.0266649,0.0232321,0.0177741,0.012499,0.00869732,0.00479859,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,rooftop_pv,0.0,0.0,0.0,3.69505E-4,0.00150634,0.00380087,0.00752665,0.0136185,0.0247015,0.0409753,0.0640475,0.0999225,0.141402,0.180242,0.223236,0.258984,0.296372,0.33544,0.374612,0.425123,0.480646,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,wind,0.0110381,0.0643712,0.342527,0.456803,0.5228832,0.6400992,0.8426412,1.1303682,1.2612002000000002,1.6906512,2.250318,2.8913390000000003,3.9054270000000004,4.78474,6.313311000000001,7.771864,8.709967,9.827739999999999,10.44834,11.035420000000002,11.4986,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,wind_storage,0.0,0.0,0.0,7.72404E-4,0.001227418,0.0020596620000000003,0.0035480320000000004,0.005759532,0.009478242000000001,0.013149308,0.018067074,0.02403228,0.033970810000000004,0.04314201,0.0601056,0.07724153,0.08913065,0.1036964,0.1135398,0.1227081,0.13144699999999998,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,CSP,0.0,0.0,0.0,1.03119E-5,4.3850399999999996E-5,1.2317749999999998E-4,2.0479769999999997E-4,3.8292769999999994E-4,7.160407E-4,0.0012661318,0.0021011923,0.0033169852,0.005049585,0.007231015,0.010341172,0.014274109,0.019555450000000002,0.025693419999999998,0.03095827,0.03443175,0.03774649,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,CSP_storage,0.0,0.0,0.0,0.0,0.0,3.03956E-4,0.001962166,0.007641556000000001,0.019716856,0.042668656,0.08238335599999999,0.1435164,0.23126329,0.3472699,0.5238846,0.7613768,1.1052070999999999,1.5456951,1.971332,2.301129,2.6783269999999995,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,Gen_III,0.0,0.0,0.0,8.87704E-4,0.001845105,0.011209435,0.032728125000000004,0.072768325,0.135899725,0.234068025,0.37903792399999997,0.566924924,0.797380924,1.069327923,1.4396958229999999,1.8930950100000001,2.48764051,3.1801702,3.8176024,4.3145452,4.8791219,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,PV,0.0,3.59999E-6,7.2E-6,0.0045103899999999995,0.01523219,0.037715990000000005,0.059947890000000004,0.07675859,0.09767299,0.1236355,0.1562063,0.19480039999999998,0.2537349,0.3394482,0.4663606,0.6253808999999999,0.8364282999999999,1.0828594,1.292149,1.431389,1.568347,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,PV_storage,0.0,0.0,0.0,4.03627E-5,1.370399E-4,3.413939E-4,8.391348999999999E-4,0.0018804549,0.0037620449,0.0068397622,0.011565805,0.018708201,0.028818459999999997,0.04223204,0.06272834999999999,0.09082727,0.13226035,0.18593389999999999,0.2385309,0.2800696,0.3284465,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,biomass (IGCC CCS),0.0,0.0,0.0,0.0,0.0,1.11037E-4,3.43642E-4,8.261270000000001E-4,0.001925452,0.004219687,0.008578177999999999,0.017349207999999998,0.032584491,0.055571939,0.099882347,0.165741749,0.255659882,0.376054606,0.491417968,0.59311814,0.7218858499999998,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,9.1099E-4,0.002524176,0.0052402920000000006,0.009737883999999999,0.016866862,0.027101917000000003,0.039559479,0.053611659,0.06906209199999999,0.082062749,0.088541278,0.086381469,0.04714396999999999,0.017390369,0.006110053,0.00150221585,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,biomass (conv CCS),0.0,0.0,0.0,0.0,0.0,2.46064E-4,7.62164E-4,0.001859964,0.004398891,0.00972731,0.019663071,0.040349963,0.076742006,0.130552361,0.238412079,0.38951338999999996,0.565794574,0.782488755,0.968094796,1.13544369,1.35383649,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,biomass (conv),7.23594E-4,0.00113761,0.00113761,0.00288726,0.006126182,0.010208478,0.016693595999999998,0.026531566,0.040323729999999995,0.059393798,0.08288891200000001,0.10665554000000001,0.12959049300000003,0.1504005943,0.15604617599999998,0.13895816,0.10260161000000001,0.034560319,0.009665413,0.0030170951999999997,6.8497788E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,coal (IGCC CCS),0.0,0.0,0.0,0.0,0.0,1.8939E-5,5.6392E-5,1.3520630000000001E-4,3.354235E-4,7.976853999999999E-4,0.0017574106,0.0038977215999999996,0.0077664353,0.013424652200000001,0.0232380509,0.036509156200000004,0.0539623071,0.0760767443,0.097807502,0.118810043,0.14619100399999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,coal (IGCC),0.0,0.0,0.0,0.0,0.0,4.94297E-4,0.00126076,0.002434428,0.004182754,0.006689664,0.01006185,0.013540172,0.016903886,0.020105884,0.021329235,0.020162332,0.017388788,0.007595805999999999,0.0027374887,9.837042E-4,2.4099020099999996E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,coal (conv pul CCS),0.0,0.0,0.0,0.0,0.0,4.8161E-5,1.350538E-4,3.064097E-4,7.176514000000001E-4,0.0016090441,0.0033630746,0.0070927514,0.0134532155,0.0222958694,0.036621158,0.0547884218,0.0772437603,0.1044453295,0.130339343,0.155899692,0.188878896,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,coal (conv pul),0.00125084,0.00237117,0.00341519,0.0078375,0.01173911,0.01588445,0.02080323,0.02687477,0.03390101,0.04224086,0.051887646,0.05970754700000001,0.065752419,0.070147114,0.06614104,0.05213098,0.03747146,0.012956203999999999,0.0041270078000000005,0.00138281679,3.1620108500000004E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,gas (CC CCS),0.0,0.0,0.0,0.0,0.0,0.00115979,0.003073,0.0062413,0.01168975,0.02064594,0.034315769999999995,0.05578529,0.08686673,0.12752512,0.19106751,0.27687512,0.39394296,0.55518428,0.7267728,0.8923049000000001,1.1164422,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,gas (CC),0.0,1.3375E-4,9.03294E-5,0.0016339638,0.0035284418,0.0054826491000000005,0.008386392,0.012970492,0.0200161138,0.0309675966,0.0474400966,0.0671112905,0.08815343869999999,0.11209972783999998,0.13443735,0.15303309999999998,0.17040731,0.16114382000000002,0.13214631999999998,0.09299139000000001,0.04535687699999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,gas (steam/CT),0.0,5.13479E-5,1.28255E-4,0.0013230700000000002,0.002537907,0.003568229,0.0048014782,0.0062177207,0.0076950952999999996,0.0092390877,0.0108209527,0.011986339500000002,0.0118375827,0.01148882029,0.010322320999999999,0.008689677,0.007147608999999999,0.003895945,0.0018707354,8.242705E-4,2.586297299999999E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,geothermal,0.0011736,0.00361079,0.0052956,0.0145074,0.027060459999999998,0.043779860000000004,0.06251043,0.07361597,0.07361704,0.07361696,0.07361705,0.07361698,0.07361703,0.07361701000000001,0.07361703,0.07361705,0.07361703,0.07361695,0.07361704,0.07361699,0.07361702,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,hydro,0.0219597,0.0353919,0.0539216,0.0712437,0.0885658,0.105888,0.12321,0.140532,0.174952,0.209372,0.243792,0.278212,0.312632,0.347051,0.381471,0.415891,0.450311,0.484731,0.519151,0.553571,0.553571,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,hydrogen cogen,0.0,0.0,0.0,0.0,8.2425E-4,0.00185558,0.00405542,0.0084448,0.0158191,0.0280243,0.0471673,0.0721746,0.11214,0.166217,0.231966,0.315975,0.430284,0.608354,0.859984,1.16712,1.33163,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,refined liquids (CC CCS),0.0,0.0,0.0,0.0,0.0,0.0222249,0.044568899999999995,0.0755002,0.1210543,0.181391,0.25805259999999997,0.3588286,0.47876280000000004,0.6038179,0.7553036000000001,0.8853451,0.8186372,0.9186816,0.8765801,0.8467884,0.8264265000000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,refined liquids (CC),0.0,0.0,0.0,0.0102206,0.02406753,0.032132680000000004,0.04604934,0.067692,0.09868869,0.14296694,0.20177260000000002,0.25654249,0.3039779,0.34235433,0.33247049,0.29172368,0.19807337,0.11653521,0.05538633,0.024826626,0.0089224018,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,refined liquids (steam/CT),0.00813914,0.0265001,0.0368684,0.0554666,0.0702091,0.07334246,0.0757848,0.07730727,0.07732828,0.07650541000000001,0.07555604,0.07306944,0.05516701,0.04125412,0.03165448,0.024359109999999996,0.015201069999999999,0.008712369000000001,0.004148495,0.001892109,6.6510569E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,rooftop_pv,0.0,0.0,0.0,0.00133657,0.00446278,0.0107599,0.0154403,0.0190266,0.0319015,0.0553952,0.0927362,0.156705,0.254502,0.386207,0.557692,0.767516,1.04353,1.2938,1.54118,1.74684,1.92724,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,wind,0.0,1.11E-5,2.327E-4,0.00596267,0.01894717,0.04583917,0.08928247,0.14923117,0.22702217,0.3281292,0.46095969999999997,0.6183427,0.7905203999999999,0.9809867000000001,1.246061,1.571153,2.0006909999999998,2.505758,2.945513,3.242596,3.552717,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,wind_storage,0.0,0.0,0.0,1.96943E-5,6.64594E-5,1.697874E-4,3.636374E-4,7.508254E-4,0.0015836014000000002,0.0031800871000000003,0.0059171020000000005,0.010471664,0.017708434,0.028063645999999998,0.044326569999999996,0.06656779,0.09916151000000001,0.14070062,0.18059530000000001,0.2114348,0.24641159999999998,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,CSP,0.0,0.0,0.0,3.83822E-6,2.654872E-5,8.429132E-5,2.1643532E-4,4.2852731999999997E-4,7.4580832E-4,0.0011596791,0.0016193115999999998,0.001823394,0.0019413399999999997,0.002114085,0.0025222530000000003,0.003105544,0.003800231,0.004819996,0.005995706,0.006940868999999999,0.00786281,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,CSP_storage,0.0,0.0,0.0,0.0,0.0,1.91956E-4,0.001006229,0.002854769,0.005781439,0.009904159,0.015245979,0.022135152999999998,0.032287579999999996,0.048676239999999996,0.08248247,0.13254805,0.19650193,0.27240200000000003,0.36132860000000006,0.44277639999999996,0.5386845,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,Gen_III,0.0,0.0,0.0,4.0566E-4,0.001200763,0.008464012,0.026861202,0.055956702,0.09210460200000001,0.13389949099999998,0.17957979000000002,0.229647589,0.286480279,0.353670479,0.452630579,0.569828119,0.69992681,0.8328924,0.9687562,1.0825824,1.2245357000000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,PV,0.0,0.0,0.0,0.00201261,0.0107302,0.0279509,0.0604921,0.10594780000000001,0.1667356,0.23979039000000002,0.3171524,0.4076187,0.48079249999999996,0.5195937,0.5313872,0.5178397,0.49576590000000004,0.4565879,0.4263669,0.41320860000000004,0.4314895,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,PV_storage,0.0,0.0,0.0,1.80392E-5,9.66447E-5,2.516047E-4,5.450847E-4,9.520456999999999E-4,0.0014996197,0.0021540895,0.002854367,0.003716147,0.004985067,0.007179306,0.011862531999999999,0.018988783000000002,0.028244400000000003,0.03934076,0.05249766,0.06474105999999999,0.07942355999999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,biomass (IGCC CCS),0.0,0.0,0.0,0.0,0.0,6.71299E-5,2.3476670000000002E-4,5.35818E-4,0.001085537,0.001940226,0.0031086526,0.0050416489,0.0081171157,0.0129202475,0.023697081,0.040379463000000004,0.06102221249999999,0.086501539,0.11503898100000001,0.140286575,0.175914024,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,6.16603E-4,0.0018195709999999999,0.003539945,0.005800371,0.008472853,0.011243203000000002,0.014104058,0.017212007999999997,0.020696011,0.022956533,0.021475506,0.016871317,0.007089736,0.0023897903000000002,8.775463599999999E-4,1.8843177600000002E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,biomass (conv CCS),0.0,0.0,0.0,0.0,0.0,1.42866E-4,4.999679999999999E-4,0.001150935,0.002369945,0.004273455,0.006774472,0.011013093000000002,0.017744277,0.028132167,0.053030175,0.091013203,0.13332175999999998,0.182593736,0.231966958,0.26966205,0.32874727,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,biomass (conv),0.0,0.0,0.0,5.56396E-4,0.002684539,0.005217029,0.009831529,0.015509272000000001,0.021549599,0.027494846000000003,0.031993727,0.035072689000000004,0.03795164,0.040713763,0.037807923,0.027501438,0.016270228,0.004853803,0.0013659127999999998,4.5340030000000006E-4,8.883171400000001E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,coal (IGCC CCS),0.0,0.0,0.0,0.0,0.0,4.29949E-5,1.405236E-4,3.028074E-4,5.952358E-4,0.0010479709,0.0016583516,0.0026441988,0.0041536828999999996,0.0063174421,0.0105135562,0.0162086521,0.0227429323,0.0299172224,0.037714240999999996,0.044060294,0.053195027,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.00134196,0.0034735499999999997,0.006053650000000001,0.00887073,0.0116592,0.014241979999999998,0.01620929,0.01760208,0.01844715,0.015954201,0.011430392999999999,0.0076098389999999985,0.0025825795,8.622458E-4,3.1246173E-4,6.3758785E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,coal (conv pul CCS),0.0,0.0,0.0,0.0,0.0,1.05671E-4,3.29423E-4,6.78686E-4,0.0012708630000000001,0.002128337,0.003215989,0.004869892000000001,0.0072505140000000004,0.010517957,0.016511951,0.024258283300000003,0.0327353837,0.04161954500000001,0.050943976,0.058082313999999996,0.068646705,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,coal (conv pul),0.00796861,0.0473972,0.0399414,0.04538135,0.056130179999999995,0.06542231,0.0764179,0.08616241999999999,0.09301057,0.09742142,0.10008653999999999,0.09855592999999999,0.09438940999999999,0.08802129,0.06299063,0.0358799,0.019374040000000002,0.0054756123,0.00159754752,5.125068940000001E-4,9.309345159999999E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,gas (CC CCS),0.0,0.0,0.0,0.0,0.0,0.0793893,0.20522240000000003,0.3519021,0.5134744,0.6741607000000001,0.8196007,0.9717280000000001,1.1391554000000002,1.3279406999999999,1.543664,1.769077,1.997808,2.246045,2.5243089999999997,2.7460500000000003,3.055427,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,gas (CC),0.0753821,0.198188,0.0832847,0.11274250000000001,0.19173099999999998,0.2623534,0.37744010000000006,0.5275046,0.6968133999999999,0.8729695,1.0465229,1.1964784000000002,1.29866078,1.3519323399999998,1.3586010000000002,1.268546,1.1225158,0.8222993,0.5235241,0.29700383,0.10003384800000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,gas (steam/CT),0.0604314,0.28426,0.552887,0.5585431,0.6465412,0.6837696,0.7029445,0.6893588,0.6383143,0.571348,0.5030752,0.4203515,0.31798882999999994,0.21686449000000002,0.12476707000000001,0.06803572000000001,0.03738890999999999,0.01443354,0.005458187000000001,0.0021211278,5.126089E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,geothermal,0.0,0.0,0.0,0.00369739,0.014821800000000001,0.029767179999999997,0.048370090000000004,0.06587228,0.07266707,0.07266705,0.0726671,0.07266707,0.0726671,0.07266701,0.07266701,0.07266704,0.072667,0.07266697,0.07266701,0.07266697999999999,0.07266696,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,hydro,0.0408238,0.0516204,0.0603183,0.0632959,0.0662735,0.0692511,0.0722286,0.0752062,0.0811228,0.0870394,0.092956,0.0988726,0.104789,0.110706,0.116622,0.122539,0.128456,0.134372,0.140289,0.146205,0.146205,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,hydrogen cogen,0.0,0.0,0.0,0.0,2.25754E-4,4.91077E-4,8.25877E-4,0.00124677,0.00178408,0.0025151,0.00338761,0.00414606,0.00547004,0.00752591,0.0102694,0.0132874,0.0174459,0.0255656,0.035217,0.0466159,0.047588,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,refined liquids (CC CCS),0.0,0.0,0.0,0.0,0.0,0.0468151,0.0847267,0.11109039999999999,0.1376454,0.1571061,0.17041545000000002,0.18989553000000003,0.21762961,0.25028496,0.29837630000000004,0.3129326,0.23730420000000002,0.2605097,0.2388411,0.20012907000000002,0.18672221,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,refined liquids (CC),0.0,0.0,0.0,0.0145645,0.04674871,0.05698578,0.08022731999999999,0.10147451,0.12023634,0.13486424,0.14489557,0.14449224,0.14520395,0.14361290999999998,0.12485315,0.09233123,0.05160658,0.028270339999999998,0.013243960999999999,0.0060686327,0.0019793483000000002,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,refined liquids (steam/CT),0.11773,0.126766,0.200053,0.1828302,0.2041122,0.1996969,0.1822877,0.1569993,0.13234671,0.10987696,0.09205284999999999,0.07524733000000002,0.055290759999999994,0.03486595,0.020028075,0.011453253999999998,0.005085519,0.0025516056000000004,0.0010744895,4.6441221000000007E-4,1.3811784999999998E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,rooftop_pv,0.0,0.0,0.0,0.00101279,0.00358803,0.00958546,0.0177943,0.0296179,0.0485084,0.0746476,0.110446,0.163891,0.202088,0.205545,0.187187,0.179243,0.220165,0.297692,0.355886,0.401948,0.38326,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,wind,0.0,0.0028801,0.0082198,0.012747209999999998,0.028229809999999998,0.05581601,0.10456661,0.16920001,0.24294011000000001,0.33471490000000004,0.4258563,0.5272201000000001,0.6405915,0.7835731,1.0232562,1.321749,1.622529,1.844309,2.024702,2.132352,2.294058,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,wind_storage,0.0,0.0,0.0,1.96942E-5,9.19637E-5,2.320187E-4,4.993807E-4,8.820927E-4,0.0013990357,0.0020213835,0.002697466,0.00350825,0.004485408,0.005773095999999999,0.008022383,0.011095771,0.015467449000000001,0.02205151,0.03097879,0.03980779,0.04927136,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,CSP,0.0,0.0,0.0,1.83372E-6,5.9646500000000006E-6,1.838945E-5,5.025225E-5,1.1051615000000001E-4,2.1985315E-4,4.1927243E-4,7.656795E-4,0.0013354737,0.0019395049000000002,0.0022397500000000004,0.0027889340000000003,0.003790941,0.005594753,0.008150284,0.01103234,0.013886691,0.01616507,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,CSP_storage,0.0,0.0,0.0,0.0,0.0,4.13043E-5,2.376433E-4,7.628883000000001E-4,0.0017714083,0.0037546283,0.0074370583,0.013467904,0.023583265,0.03806972,0.0682565,0.12645608,0.23684064999999999,0.4059785,0.6011868,0.7807311000000001,0.9379608000000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,Gen_III,0.0,0.0,0.0,1.8157E-4,3.1710600000000005E-4,0.0017862260000000001,0.005969646,0.013791276,0.025592766,0.044665066,0.074620166,0.116709666,0.17690245599999999,0.24425715599999998,0.347571056,0.5050604860000001,0.74468395,1.06790862,1.41244,1.7163992000000001,1.9867735999999998,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,PV,0.0,0.0,0.0,8.55557E-4,0.002266477,0.005563567,0.012545217000000001,0.024037517,0.042676217,0.07395476000000001,0.12543974,0.20856945,0.3433748,0.4741525,0.6117547999999999,0.7583307,0.8995538000000001,1.062208,1.191065,1.3122660000000002,1.398948,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,PV_storage,0.0,0.0,0.0,7.66841E-6,2.039051E-5,5.005911E-5,1.1302421E-4,2.1591321E-4,3.8380821E-4,6.639928E-4,0.0011290227000000002,0.0018751271,0.003119322,0.004921593,0.008706338000000001,0.016125345,0.030344893,0.05232652,0.07796506,0.1018391,0.12305686,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,biomass (IGCC CCS),0.0,0.0,0.0,0.0,0.0,1.48676E-5,5.46661E-5,1.406618E-4,3.318425E-4,7.519685E-4,0.0016085773,0.0034970324,0.007322402,0.012860628399999999,0.025067238399999997,0.0478781388,0.0842000419,0.1399565673,0.20108699079999998,0.260130608,0.318268016,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,1.23316E-4,4.05194E-4,8.8847E-4,0.001666861,0.002968689,0.004969092,0.0076159999999999995,0.011115354000000001,0.014803802,0.018459543199999998,0.021355344800000002,0.0230730652,0.0136765877,0.0052023291,0.0016823555,4.0749043E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,biomass (conv CCS),0.0,0.0,0.0,0.0,0.0,3.2818E-5,1.201759E-4,3.140233E-4,7.528776E-4,0.0017237363000000001,0.003665649,0.0081026896,0.0171713967,0.0300806515,0.059865926099999994,0.11264736310000001,0.1846278749,0.285810863,0.385032734,0.482191431,0.581048036,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,biomass (conv),0.0,0.0,0.0,2.49038E-4,6.03124E-4,0.0011679540000000001,0.002303159,0.004023274,0.006361242999999999,0.009771908,0.014217431,0.019039050000000002,0.02443683,0.029366154,0.032093023,0.030693204999999994,0.025662699,0.009412846899999999,0.0026698553999999998,7.560522399999999E-4,1.6901030200000005E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,coal (IGCC CCS),0.0,0.0,0.0,0.0,0.0,1.45673E-4,4.64772E-4,0.001087255,0.0024369070000000003,0.005310996,0.010920934,0.022895138000000002,0.044842980000000005,0.071718418,0.118167933,0.18681497,0.27797344,0.391993378,0.501368935,0.6006744,0.6854146,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.00386841,0.01061579,0.01995719,0.031877459999999996,0.0476852,0.06768774,0.08713549000000001,0.10593004,0.11997868,0.12129625999999999,0.11141816,0.09704334,0.041953721,0.014521329999999999,0.0046545703,0.00112259111,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,coal (conv pul CCS),0.0,0.0,0.0,0.0,0.0,3.69209E-4,0.0011054390000000002,0.002457164,0.005224568,0.010755150000000002,0.02098518,0.041809795999999996,0.0777698,0.11969432699999999,0.187540353,0.281740997,0.39938724,0.539760124,0.66950921,0.7893514100000001,0.88946837,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,coal (conv pul),0.0215065,0.0200021,0.0180461,0.0734835,0.1039436,0.13690449999999998,0.1811775,0.2303857,0.27861555,0.33112149999999996,0.38782377,0.42868007,0.45647424400000003,0.46753617199999997,0.4179785,0.30747019999999997,0.22478773000000005,0.07669311000000001,0.023098124000000005,0.006794579300000001,0.0015270951900000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,gas (CC CCS),0.0,0.0,0.0,0.0,0.0,0.0105831,0.0284572,0.053384100000000004,0.0871934,0.13501269999999999,0.1996794,0.2919759,0.42252839999999997,0.5607603999999999,0.7638744000000001,1.0567868999999999,1.4569122,2.0006009,2.5645867000000004,3.074819,3.512906,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,gas (CC),0.0,8.11349E-4,0.0,0.00510608,0.01081919,0.01780302,0.03234728,0.05620843,0.09015649,0.14058343999999998,0.21230087,0.29279126,0.380649,0.4611304799999999,0.5309652,0.5891145,0.642022,0.5965848,0.47602020000000006,0.31029914,0.14400045,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,gas (steam/CT),0.0,0.00338992,0.00619505,0.028023970000000002,0.04100294,0.05007815,0.06092673,0.07068452,0.07795292999999999,0.08394149,0.08871820199999998,0.08929857699999999,0.070837317,0.060813136000000004,0.050121620000000006,0.03873188,0.03041704,0.015683529999999998,0.006993331,0.0026828856999999997,8.002601799999998E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,geothermal,0.0,0.0,0.0,0.00173777,0.00418911,0.00901773,0.01712302,0.02739295,0.0396905,0.053431610000000004,0.06925853,0.07071998,0.07071993,0.07071998,0.07071997,0.07072003,0.07071996,0.07072001,0.07072001,0.07072002999999999,0.07072002,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,hydro,0.0549063,0.1228,0.143803,0.152226,0.160649,0.169072,0.177496,0.185919,0.202656,0.219393,0.236131,0.252868,0.269606,0.286343,0.30308,0.319818,0.336555,0.353293,0.37003,0.386767,0.386767,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,hydrogen cogen,0.0,0.0,0.0,0.0,4.53162E-4,0.00103592,0.00183557,0.00296623,0.00475528,0.00764835,0.0119899,0.0173942,0.0248768,0.0389338,0.06183,0.0912677,0.133882,0.18187,0.235173,0.276585,0.30861,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,refined liquids (CC CCS),0.0,0.0,0.0,0.0,0.0,0.0318876,0.0675109,0.1068599,0.1582945,0.2263386,0.3117195,0.4278877,0.5691896000000001,0.7041136,0.9039864,1.0958762,1.0446262000000002,1.1635384,1.050907,0.9048438000000001,0.7997920000000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,refined liquids (CC),0.0,0.0,0.0,0.0215672,0.0377252,0.048843,0.0702787,0.0976771,0.1322785,0.18133186,0.24468503,0.29698217,0.34172380999999996,0.37348081,0.37339007999999996,0.3455867,0.24966877,0.14688942,0.06630480999999999,0.026146352999999997,0.0089649812,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,refined liquids (steam/CT),0.00267763,0.00666428,0.00933526,0.05205519,0.07182614999999999,0.07996784000000001,0.08694829999999999,0.09045527,0.0924828,0.0933913,0.093460754,0.090118594,0.0610916228,0.0479933767,0.03953487000000001,0.03056121,0.019649029999999998,0.011279185999999998,0.005139010000000001,0.0020855754000000002,7.1740738E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,rooftop_pv,0.0,0.0,0.0,4.55756E-4,0.0019445,0.00532535,0.0105784,0.0190063,0.0348897,0.0605178,0.100847,0.171532,0.270188,0.384157,0.487257,0.594434,0.71336,0.856184,0.990132,1.07082,1.18957,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,wind,0.0,2.4E-6,3.54999E-5,7.720769E-4,0.0019120068999999998,0.004557516899999999,0.0101955369,0.0194955869,0.034288887000000004,0.058543010000000006,0.09755948,0.15730287,0.24307114999999999,0.2968304,0.35791429999999996,0.4435616,0.5682972000000001,0.7330733,0.891446,1.0590567,1.194777,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,wind_storage,0.0,0.0,0.0,2.40157E-6,6.18848E-6,1.530351E-5,3.5324810000000005E-5,6.973591E-5,1.2685291E-4,2.2454634E-4,3.9000543000000003E-4,6.591174E-4,0.0011347721,0.002154511,0.004446673999999999,0.008706979,0.016320963,0.027816636000000002,0.04109766,0.05323851,0.06377812999999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,CSP,0.0,0.0,0.0,2.15125E-6,1.084003E-5,4.694003E-5,1.4790703E-4,3.5520403E-4,7.404750300000001E-4,0.00141945678,0.002474778,0.0031282249999999997,0.004070438,0.005587241,0.00825321,0.012091567000000001,0.017315357,0.026583210000000003,0.03799453,0.04788353,0.05685639000000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,CSP_storage,0.0,0.0,0.0,0.0,0.0,1.20008E-4,7.42164E-4,0.0025489040000000003,0.006102684000000001,0.012822064000000001,0.025062264,0.047468156,0.0913647,0.16931565999999998,0.31744288000000004,0.5504065,0.8994453,1.4902984,2.2549107,2.966745,3.693139,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,Gen_III,0.0,0.0,0.0,1.80289E-4,4.22554E-4,0.004073324,0.015480714,0.038767214,0.074852013,0.13104011299999999,0.21735091299999998,0.33800471299999996,0.503517613,0.727151613,1.059007613,1.4982653240000001,2.07797406,2.9628631999999997,4.0310715,4.993746000000001,5.9800222000000005,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,PV,0.0,1.44E-5,1.08E-5,8.46742E-4,0.003318362,0.011296782,0.029722282000000003,0.062646282,0.117335782,0.20716024,0.34973162,0.5376491999999999,0.7054997,0.8477927000000001,0.9708663999999999,1.075264,1.177139,1.372614,1.6782650000000001,1.9700770000000003,2.285708,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,PV_storage,0.0,0.0,0.0,7.49257E-6,2.9778769999999998E-5,1.0157177E-4,2.6774477E-4,5.6250777E-4,0.0010552417700000001,0.0018600142,0.0031603179999999996,0.005485385,0.010019362,0.018154909,0.033668775,0.058419509999999994,0.09586642,0.15982276,0.24347640999999998,0.3224028,0.4040872,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,biomass (IGCC CCS),0.0,0.0,0.0,0.0,0.0,8.10864E-5,2.792009E-4,6.91063E-4,0.0015476239,0.0032308946,0.0063820286,0.0129224509,0.0247348097,0.044331833200000004,0.0845707112,0.14784968780000002,0.2345586452,0.38723109099999997,0.585954266,0.77514312,0.98558382,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,6.74285E-4,0.002075964,0.00438013,0.007826736,0.012974760000000002,0.020227267,0.029339152,0.0409311,0.055399061,0.068359201,0.075296981,0.075617496,0.04036054100000001,0.013647921999999998,0.004542935800000001,0.00110481658,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,biomass (conv CCS),0.0,0.0,0.0,0.0,0.0,1.78821E-4,6.10015E-4,0.001530743,0.003483801,0.007346972,0.014422167999999999,0.029603966,0.056751684999999996,0.10048988,0.193041779,0.329143902,0.49027163100000004,0.754601414,1.085169286,1.39636154,1.7543374699999998,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,biomass (conv),1.692E-4,6.11997E-4,8.28003E-4,0.001459749,0.003287097,0.006310878000000001,0.01180175,0.0197523464,0.029615193999999997,0.0423480899,0.05718834839999999,0.07206927485,0.08884223761,0.10637449581,0.111381793,0.099063156,0.077696769,0.026669481000000002,0.006986049999999999,0.0020741835000000004,4.6595056999999997E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,coal (IGCC CCS),0.0,0.0,0.0,0.0,0.0,1.69629E-5,5.9593700000000005E-5,1.5452480000000002E-4,3.763337E-4,8.558203000000001E-4,0.0018240772,0.0039947083,0.007923831400000001,0.014091907800000001,0.0252649079,0.0409084079,0.0613124474,0.0949782229,0.1409765658,0.18691500500000002,0.23878907900000002,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,coal (IGCC),0.0,0.0,0.0,0.0,0.0,4.52297E-4,0.001354654,0.0027845250000000004,0.004760679,0.0074407580000000004,0.010987769,0.014685571,0.018528503,0.022450704000000002,0.023103577000000004,0.020970236,0.018512906,0.0078589988,0.0025981393,8.850643000000001E-4,2.16796192E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,coal (conv pul CCS),0.0,0.0,0.0,0.0,0.0,4.29586E-5,1.412994E-4,3.4732320000000004E-4,8.01544E-4,0.0017221049,0.0034814591,0.0072321471,0.013578293,0.0230288292,0.038998954200000005,0.059941724499999995,0.0857243311,0.1266582274,0.182342002,0.238219181,0.30089703,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,coal (conv pul),0.00130875,0.00250043,0.003599,0.00580396,0.00818375,0.01194652,0.01777196,0.02522456,0.03317868,0.042053099999999996,0.052100428,0.059989106,0.066181965,0.070539783,0.06211065,0.047139294000000005,0.03578556,0.012178842999999998,0.0035712018,0.00113959126,2.64193415E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,gas (CC CCS),0.0,0.0,0.0,0.0,0.0,0.042827,0.1217936,0.2409719,0.4047899,0.6249876999999999,0.911867,1.3084954,1.8221254,2.4561079999999995,3.325772,4.361473,5.572247000000001,7.456021000000001,9.82095,11.875522,13.818406000000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,gas (CC),0.00907156,0.0219692,8.15672E-4,0.009407584,0.026254322,0.053644399999999995,0.115344921,0.224909819,0.383856315,0.610327779,0.9243441130000001,1.273745376,1.6584226594999998,2.0822365841,2.4191805,2.6417270999999998,2.7997560000000004,2.4511369999999997,1.7475632,1.0465556,0.43395417999999997,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,gas (steam/CT),0.0175865,0.0425327,0.0790683,0.1063861,0.1392549,0.1687884,0.2069323,0.24230269999999998,0.2647352,0.2786658,0.286817,0.27794366000000004,0.24851214,0.21782388000000003,0.16701400000000002,0.12365805,0.09698434,0.046542810000000004,0.018998189,0.007485665000000001,0.0022263341000000004,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,geothermal,0.0,0.0,0.0,0.00176604,0.00627838,0.01829707,0.03931463,0.06658992,0.09823169000000001,0.13245718,0.144519,0.144519,0.1445189,0.144519,0.144519,0.14451901,0.14451898000000002,0.14451912,0.14451935999999999,0.14451876,0.14451932,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,hydro,0.0814254,0.10931,0.113792,0.139788,0.165784,0.191781,0.217777,0.243773,0.295429,0.347085,0.398742,0.450398,0.502054,0.55371,0.605366,0.657022,0.708678,0.760334,0.81199,0.863646,0.863646,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,hydrogen cogen,0.0,0.0,0.0,0.0,9.82174E-4,0.00238731,0.00460418,0.00808634,0.0135799,0.0226021,0.0367117,0.0552866,0.0858288,0.131518,0.202798,0.313897,0.526124,0.862173,1.2501,1.68714,2.05153,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,refined liquids (CC CCS),0.0,0.0,0.0,0.0,0.0,0.046066,0.1018104,0.1667638,0.24737330000000002,0.3457093,0.4676112,0.6405304999999999,0.8518044,1.0796051,1.3885017,1.6201035,1.450444,1.7458171999999998,1.752885,1.5763588,1.4998,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,refined liquids (CC),0.0,0.0,0.0,0.0123254,0.03126685,0.048759620000000004,0.08360115,0.13130724,0.18827736,0.26275876,0.35676589000000003,0.43299741,0.51966804,0.5997748300000001,0.5864137,0.5241353,0.3708635,0.23336954000000001,0.10594390000000001,0.04396589,0.015514849999999997,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,refined liquids (steam/CT),0.0179558,0.0344399,0.0455212,0.0633107,0.0823281,0.0917636,0.0993379,0.1022327,0.1019579,0.10050097,0.09908354999999999,0.09480018999999999,0.08251642000000001,0.07102385,0.057492999999999995,0.04454688,0.028464549999999998,0.016667169000000003,0.007379235,0.0031696079,0.0011183196999999998,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,rooftop_pv,0.0,0.0,0.0,0.00117718,0.00404767,0.0111689,0.0229214,0.0431145,0.0808163,0.143612,0.245171,0.379054,0.474791,0.568127,0.686449,0.929579,1.50991,2.05224,2.40462,2.69999,3.07312,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,wind,0.0,1.17E-5,1.769E-4,0.00153216,0.0052972,0.017197200000000003,0.0443455,0.0920098,0.16794599999999998,0.28712474,0.4682117,0.7343337,1.1144984,1.6383630999999999,2.3993889999999998,3.268716,3.9614089999999997,4.911127,6.047784,6.965165,7.779596,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,wind_storage,0.0,0.0,0.0,4.53677E-6,1.765327E-5,6.195876999999999E-5,1.6945877E-4,3.7218177000000003E-4,7.1908577E-4,0.0013020879999999999,0.0022626805,0.003817325,0.006280404999999999,0.010096741999999999,0.016732408,0.027878469,0.051615259999999996,0.09524031,0.15086503,0.20224027,0.2542967,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,CSP,0.0,0.0,0.0,3.48679E-6,7.58477E-6,2.823697E-5,7.938887E-5,1.5671366999999998E-4,2.6272466999999997E-4,3.9264388E-4,5.416569E-4,7.317527E-4,0.0010031848000000001,0.001233624,0.001410875,0.001521577,0.001603795,0.001643689,0.001577878,0.001479333,0.0014478950000000003,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,CSP_storage,0.0,0.0,0.0,0.0,0.0,6.8655E-5,3.83854E-4,0.001057798,0.002035642,0.0033502819999999996,0.004958751999999999,0.007085566999999999,0.010239928,0.013822074,0.022789880000000002,0.03359154,0.04485597,0.057548100000000005,0.07025784,0.07987645,0.08769,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,Gen_III,0.0,0.0,0.0,0.00270251,0.00375911,0.00701549,0.01283216,0.01985984,0.027987849999999998,0.03707819,0.04659637999999999,0.057671419999999994,0.07216087,0.08528701,0.10426393,0.12065142000000001,0.13753505000000002,0.15288981,0.16560889,0.17335071,0.18283372,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,Gen_II_LWR,0.0262116,0.0247428,0.0258156,0.0238573,0.0227383,0.0211062,0.0188727,0.0160691,0.0129078,0.00974641,0.00694286,0.0047094,0.00307728,0.00195831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,PV,0.0,0.0,0.0,6.05715E-4,0.0011268530000000001,0.0031673530000000004,0.007340523000000001,0.012830903000000001,0.019559643,0.026885028000000002,0.03496605,0.04454065,0.05640977999999999,0.060820299999999994,0.058881489999999995,0.05485461,0.04991531,0.042120889999999994,0.02991492,0.02311966,0.0220188,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,PV_storage,0.0,0.0,0.0,5.42879E-6,1.0127569999999999E-5,2.848787E-5,6.612217E-5,1.1527396999999999E-4,1.7588207E-4,2.4149498000000002E-4,3.1449060000000005E-4,4.005613E-4,5.26678E-4,6.786302E-4,0.0010872041,0.0015938414,0.002133688,0.0027492000000000003,0.003375232,0.003858605,0.004272683,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,biomass (IGCC CCS),0.0,0.0,0.0,0.0,0.0,5.7996E-5,1.877262E-4,3.806931E-4,6.703614E-4,0.0010658793,0.0015571405,0.0024024462,0.0039374657,0.0057824936,0.0096279231,0.014408158,0.019333115300000002,0.024913108,0.030614256,0.035124874,0.040729459999999995,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,4.49994E-4,0.001215702,0.002094239,0.003003324,0.0039060860000000005,0.004647531,0.005276049,0.005830907,0.005902626,0.005107443,0.0033830246000000003,0.0017268065,4.306094899999999E-4,1.0569626999999999E-4,3.18576423E-5,6.78423863E-6,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,biomass (conv CCS),0.0,0.0,0.0,0.0,0.0,1.31147E-4,4.26638E-4,8.74643E-4,0.001570064,0.0025321140000000002,0.003706167,0.005844923,0.009893907,0.015015422,0.027677916999999996,0.045440487,0.06364798099999999,0.08576835499999999,0.10778726699999999,0.124518662,0.14641408,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,biomass (conv),3.85201E-4,0.0046368,0.007902,0.00745499,0.00771596,0.00954641,0.011750402,0.013698347999999999,0.014992301,0.015894824999999998,0.015796751,0.015031418,0.013984251,0.012110684,0.008286742,0.0040521316,0.0016332424999999998,3.3258499000000003E-4,7.29643485E-5,2.0103376549999996E-5,3.920883295999999E-6,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,coal (IGCC CCS),0.0,0.0,0.0,0.0,0.0,1.11705E-5,4.00221E-5,8.8002E-5,1.7030700000000002E-4,2.962947E-4,4.694646E-4,7.924901E-4,0.0014118347999999999,0.0021566209,0.0035896475000000002,0.005314514,0.0071207746,0.0091651058,0.0113682152,0.0131822494,0.015490466000000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,coal (IGCC),0.0,0.0,0.0,0.0,0.0,2.6676E-4,7.43049E-4,0.001304585,0.001867677,0.0023960479999999996,0.0028463470000000004,0.003158612,0.0033262099999999996,0.0031874499999999997,0.002178004,0.0011065363,5.187485000000001E-4,1.1685371899999999E-4,3.079356270000001E-5,9.48717407E-6,1.9554864590000003E-6,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,coal (conv pul CCS),0.0,0.0,0.0,0.0,0.0,2.88987E-5,9.834319999999999E-5,2.065821E-4,3.8132300000000004E-4,6.319534999999999E-4,9.584349E-4,0.0015401883,0.0026065019,0.0038578447,0.006191348899999999,0.0089509719,0.011792155800000002,0.014958290300000001,0.018348940999999997,0.021098860999999997,0.024572365999999998,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,coal (conv pul),0.0016128,0.00567,0.00806399,0.01155799,0.012370270000000001,0.01418517,0.01666102,0.01877797,0.019943340000000004,0.02050982,0.02071184,0.019958086,0.018571328,0.0159860914,0.008891308000000002,0.003412199500000001,0.0014163341500000003,2.8256637199999997E-4,6.611535659999999E-5,1.79467645E-5,3.2768321100000003E-6,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,gas (CC CCS),0.0,0.0,0.0,0.0,0.0,0.0186567,0.052336099999999997,0.0913661,0.1322199,0.1725109,0.20922169999999998,0.253139,0.3131605,0.3693161,0.44237750000000003,0.5078831,0.5636202,0.6220625,0.6796143000000001,0.7167790999999999,0.7565495999999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,gas (CC),0.0177817,0.143583,0.0614012,0.0871053,0.0965687,0.1133515,0.1417119,0.17462139999999998,0.20629470000000003,0.23660699999999998,0.263955,0.2869633,0.2809163,0.28006401999999997,0.2506982,0.1980235,0.14133030000000002,0.07063421000000002,0.030402041999999997,0.012461175299999998,0.0033787505699999997,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,gas (steam/CT),0.053761,0.0556123,0.163188,0.1793197,0.17820779999999997,0.1834342,0.1835326,0.17506549999999999,0.15682212,0.13537046,0.11439327000000002,0.09001931,0.05306517,0.035447080000000006,0.016158387,0.006776397000000001,0.0027899792000000002,7.6004751E-4,2.2239409000000002E-4,7.1202407E-5,1.63569896E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,geothermal,0.0,0.0,0.0,0.00210656,0.00373143,0.00956199,0.02002392,0.032013879999999995,0.04439694000000001,0.05491558999999999,0.06536143,0.0738578,0.0825865,0.088623,0.10125920000000001,0.112894,0.12305340000000001,0.1317527,0.1363069,0.13812850000000002,0.138494,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,hydro,0.0643536,0.122414,0.120913,0.123868,0.126823,0.129777,0.132732,0.135687,0.140903,0.14612,0.151337,0.156554,0.16177,0.166987,0.172204,0.177421,0.182637,0.187854,0.193071,0.198288,0.198288,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,hydrogen cogen,0.0,0.0,0.0,0.0,1.05916E-4,2.04576E-4,3.09858E-4,4.29188E-4,5.733E-4,7.61041E-4,9.78602E-4,0.0011636,0.00142773,0.00177043,0.00242173,0.00337306,0.00424785,0.00620201,0.00690647,0.0075556,0.00741496,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,refined liquids (CC CCS),0.0,0.0,0.0,0.0,0.0,0.0108497,0.02165372,0.02853879,0.03463165,0.03935047,0.04266031,0.049257430000000005,0.05908308,0.06371038,0.07701991,0.08289893,0.07386818,0.09005642000000001,0.08533597,0.07559246,0.07399032,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,refined liquids (CC),0.0,0.0,0.0,0.00720386,0.0077199799999999996,0.01108409,0.01655249,0.021122349999999998,0.02435584,0.02665249,0.027424413,0.026452536,0.025126335,0.020520804999999996,0.015068887,0.008998364,0.004634533,0.0020583725,7.786080199999999E-4,3.0017911E-4,9.364384500000001E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,refined liquids (steam/CT),0.0178164,0.0206892,0.0597456,0.0588863,0.05471271,0.053776380000000006,0.04803217,0.040523729999999994,0.03326265,0.02665228,0.02128977,0.016193237,0.008622813,0.005501838,0.0025498673,0.0012268619999999998,5.15299E-4,2.1320314E-4,7.2702979E-5,2.6709752000000002E-5,7.7380616E-6,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,rooftop_pv,0.0,0.0,0.0,1.14364E-4,3.27907E-4,8.32309E-4,0.0014535,0.00229625,0.00359513,0.00524077,0.00734007,0.0103914,0.0130247,0.011051,0.00472477,0.0039811,0.00415361,0.0045368,0.00467811,0.00472006,0.00453491,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,wind,0.0,2.7E-4,9.0E-5,0.00200281,0.0036469399999999996,0.01044474,0.025243639999999998,0.04582224,0.07140323999999999,0.10019273,0.1324258,0.17067349999999998,0.22316180000000002,0.2709361,0.3535741,0.4414648,0.5251886,0.6020271,0.6602159000000001,0.697181,0.725441,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,wind_storage,0.0,0.0,0.0,6.02309E-6,1.120957E-5,3.320407E-5,8.190567E-5,1.5135727E-4,2.3978687000000002E-4,3.4090478E-4,4.562593E-4,5.978918E-4,7.971372E-4,9.835136E-4,0.001311822,0.001675054,0.002061397,0.002519047,0.002961176,0.003300211,0.003620794,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,CSP,0.0,3.60003E-6,1.44E-5,1.877667E-5,2.6917030000000002E-5,4.8390030000000005E-5,9.859703000000001E-5,1.7857883E-4,3.0765583000000004E-4,4.8009916E-4,6.032558E-4,6.729536E-4,8.094186E-4,9.566218E-4,0.0011413287999999999,0.0013230168,0.0015698958,0.001915398,0.0021152700000000003,0.002192824,0.00217235,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,CSP_storage,0.0,0.0,0.0,0.0,0.0,7.13839E-5,3.807609E-4,0.0010778639,0.0024013239000000002,0.0041514239,0.0064485139,0.010372300000000001,0.019020463,0.03002696,0.0471004,0.0666053,0.08774051000000001,0.11254414,0.1303172,0.14057360000000002,0.1459159,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,Gen_III,0.0,0.0,0.0,0.0,0.0,6.27608E-4,0.002387407,0.005236297,0.012540645999999999,0.022974726,0.036507726000000004,0.052627415999999996,0.073871415,0.096269295,0.126930295,0.15858869399999997,0.19019586300000002,0.22503523,0.25395849000000004,0.27496189,0.29209179999999996,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,PV,0.0,2.80802E-4,9.82801E-4,0.0032028810000000003,0.006225671,0.012420691000000001,0.024381091,0.040963591,0.06657259,0.09517441,0.12731241999999998,0.1519302,0.1545831,0.1501477,0.140171,0.12717399999999998,0.110898,0.1022028,0.1074693,0.111479,0.1117096,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,PV_storage,0.0,0.0,0.0,1.98987E-5,4.7154600000000004E-5,1.0289980000000001E-4,2.1076580000000002E-4,3.592258E-4,5.987608E-4,8.550261000000001E-4,0.0011517742,0.0016509510000000001,0.002777585,0.004243945,0.00653865,0.009221666,0.012180092,0.01569186,0.01826756,0.019816189999999997,0.020729599999999997,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,biomass (IGCC CCS),0.0,0.0,0.0,0.0,0.0,3.97047E-5,1.339842E-4,2.991237E-4,6.579528E-4,0.0011759742999999999,0.0019025608,0.003241038,0.005818298899999999,0.009552826600000001,0.0171391195,0.027150694099999997,0.0384238185,0.052678931400000004,0.06568859299999999,0.07600380699999999,0.087056705,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,3.07525E-4,8.548080000000001E-4,0.0015963460000000002,0.0027479310000000003,0.003946145,0.005112007,0.006307658000000001,0.007566801,0.008335833,0.008330723000000002,0.0069062479999999985,0.0042456212,0.0011496475,2.5483365000000005E-4,7.014385099999998E-5,1.4258809039999997E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,biomass (conv CCS),0.0,0.0,0.0,0.0,0.0,8.98426E-5,3.027335E-4,6.87408E-4,0.0015577497,0.0028268390000000003,0.0045828712,0.0079971859,0.0148680482,0.025302780400000002,0.0502852102,0.0874810243,0.129110066,0.185291773,0.23499505499999998,0.2726234,0.31502650000000004,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,biomass (conv),0.0,0.00150481,0.0014688,0.0013501326999999998,0.0020230516,0.0031581292,0.0052320168,0.0076173728,0.0107370122,0.0132978907,0.014975907,0.0161314626,0.01686946363,0.01613928694,0.013720113999999999,0.00897204,0.004120085,8.381388E-4,1.64561414E-4,4.212473669999999E-5,7.921803385999998E-6,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,biomass cogen,0.00399456,0.0112041,0.0107029,0.0124066,0.0184013,0.0232357,0.0264067,0.0291371,0.0320697,0.0342061,0.0338525,0.0348087,0.0344876,0.0326994,0.0312798,0.0252525,0.0168077,0.00785058,0.00379835,0.00211014,0.00102162,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,coal (IGCC CCS),0.0,0.0,0.0,0.0,0.0,3.04176E-4,0.001005607,0.002164248,0.0046535199999999995,0.008222356,0.013122837999999998,0.021849659,0.037592292,0.057806170000000004,0.091341457,0.129372555,0.16793227800000002,0.210615724,0.24630607999999998,0.27150759999999996,0.29447849,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.0072434,0.01872217,0.03205491,0.04866262,0.06311725,0.07533534,0.08357735999999999,0.08818111000000001,0.08621023,0.06769294,0.044352442,0.023787875,0.0053520458,0.0012222120400000001,3.341173151E-4,6.253466242999998E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,coal (conv pul CCS),0.0,0.0,0.0,0.0,0.0,7.87354E-4,0.002478082,0.005098556000000001,0.010402723999999999,0.017535222,0.026824148,0.042630597000000006,0.069888117,0.10396090599999999,0.158579852,0.21943114,0.280070092,0.34606534,0.40069007,0.43837419999999994,0.47156822,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,coal (conv pul),0.439003,0.672518,0.655517,0.743751,0.7801795999999999,0.8021066000000001,0.822514,0.8233334,0.8100645,0.7749166,0.7327652,0.6693523,0.5964714000000001,0.5051872,0.32023389999999996,0.15481943999999997,0.06850441200000001,0.013185451300000003,0.002673518670000001,6.51386591E-4,1.0707446978999998E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,coal cogen,7.08817E-4,0.00236353,0.0024372,0.0030547,0.00293089,0.00335796,0.00313882,0.00286988,0.00235183,0.00189808,0.00153844,0.00105404,7.46003E-4,5.32091E-4,3.17582E-4,2.03964E-4,1.31213E-4,5.69682E-5,2.82341E-5,1.58632E-5,7.6043E-6,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,gas (CC CCS),0.0,0.0,0.0,0.0,0.0,0.0095981,0.02515693,0.04337534,0.06773952999999999,0.0907357,0.11251673000000001,0.13869657,0.17441744,0.21292975999999997,0.2634459,0.3174267,0.3738649,0.44089030000000007,0.4998142,0.5407252,0.5779065,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,gas (CC),0.0392458,0.0623957,0.0181282,0.02642467,0.03320698,0.038972099999999996,0.048863050000000005,0.061686290000000005,0.07932322,0.09614410999999999,0.11248127,0.12700531,0.13251580999999998,0.13557054000000002,0.13193382,0.11929483999999999,0.09840073,0.05774613,0.026251223000000004,0.010575530599999999,0.0028804346700000002,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,gas (steam/CT),0.0328841,0.0559444,0.143944,0.1279989,0.1314713,0.13119097,0.12486919,0.11359903000000002,0.09774723999999999,0.08019398,0.06430481,0.04921022,0.028580263999999998,0.017122805,0.008738898999999998,0.004945088999999999,0.0024866898999999997,7.181529E-4,1.9832284000000002E-4,5.9512426E-5,1.3426592299999997E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,gas cogen,6.22289E-4,0.00413685,0.00788556,0.00933545,0.0119809,0.0144413,0.0149309,0.014946,0.0144884,0.0136029,0.0126246,0.0115033,0.0103353,0.00889939,0.0076504,0.00662504,0.00540619,0.00332324,0.00205525,0.00132021,7.28915E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,geothermal,0.00746642,0.0111493,0.0209844,0.02850728,0.03524572,0.04602399,0.06271225999999999,0.08166974000000002,0.08793163,0.10671937999999999,0.1256793,0.1445326,0.1658422,0.185619,0.2090109,0.2321142,0.24239699999999997,0.242397,0.242397,0.2423971,0.24239709999999998,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,hydro,0.134392,0.138895,0.133859,0.139576,0.145294,0.151011,0.156728,0.162446,0.169607,0.176768,0.18393,0.191091,0.198253,0.205414,0.212575,0.219737,0.226898,0.23406,0.241221,0.248382,0.248382,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,hydrogen cogen,0.0,0.0,0.0,0.0,1.65664E-4,3.20971E-4,5.15088E-4,7.55948E-4,0.00108143,0.00152718,0.00206418,0.00268942,0.00359975,0.00469433,0.00786757,0.0136659,0.0183374,0.0263929,0.0261537,0.0258536,0.0239963,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,refined liquids (CC CCS),0.0,0.0,0.0,0.0,0.0,0.00168181,0.003119494,0.004311341,0.006507581,0.007889001,0.009206146,0.01168392,0.015440739000000002,0.0185758,0.025615107,0.03155674,0.03070076,0.03971456,0.03895232,0.03490315,0.03465326,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,refined liquids (CC),0.0,0.0,0.0,0.0012087,0.001568507,0.0017059850000000001,0.0024935950000000004,0.0033194239999999996,0.004610296,0.005371488,0.005937489,0.006285334,0.0066312,0.006123803,0.005272516,0.003791081,0.002116382,0.0010067206999999998,3.5957388000000003E-4,1.32225068E-4,4.0187748000000006E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,refined liquids (steam/CT),0.012816,0.0102421,0.0113868,0.00620156,0.00654907,0.006459586000000001,0.006016270000000001,0.00540134,0.0048798339999999996,0.004199901,0.0035622550000000003,0.0030002583999999997,0.0018118919,0.0011354441999999998,7.233315E-4,4.5469220000000004E-4,2.1842787E-4,9.476571E-5,3.1516579E-5,1.1011838599999999E-5,3.2453649000000005E-6,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,rooftop_pv,0.0,0.0,0.0,1.90742E-4,8.2152E-4,0.00211984,0.0040265,0.00687315,0.0115071,0.0176578,0.0251356,0.0267987,0.0154122,0.0151247,0.0214075,0.0285885,0.0327503,0.0340153,0.0313953,0.0293069,0.0274089,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,wind,0.0,0.00539644,0.0231552,0.03165261,0.0403685,0.0564098,0.0858096,0.1251649,0.1629833,0.22279999,0.2904458,0.3741030000000001,0.48974819999999997,0.6115889,0.7383023,0.8333131999999999,0.9270445,1.0369359999999999,1.114607,1.159643,1.208577,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,wind_storage,0.0,0.0,0.0,3.05869E-5,6.23419E-5,1.226337E-4,2.361137E-4,3.937077E-4,6.447626999999999E-4,9.034237999999999E-4,0.0012058108,0.0015977370000000001,0.002168309,0.002848536,0.004176651,0.006117973,0.008292401,0.010809823,0.012526950999999998,0.013452549999999999,0.01364962,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,CSP,0.0,0.0,0.0,1.58238E-5,5.0761E-5,2.0085E-4,4.67692E-4,8.41028E-4,0.0013396509999999999,0.0020018392,0.002866954,0.003963505,0.005841193,0.008011467,0.011801294,0.016325222,0.02108012,0.02613973,0.030295839999999997,0.03292224,0.03466888,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,CSP_storage,0.0,0.0,0.0,0.0,0.0,4.98927E-4,0.002143147,0.005396907,0.009995997,0.016677087,0.026131697000000002,0.03861077,0.05910095,0.08214639,0.1221743,0.16972990999999998,0.21971590000000002,0.2735208,0.3185889,0.3477575,0.3684041,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,Gen_III,0.0,0.0,0.0,3.94153E-4,0.0023429230000000002,0.008462443,0.017414413,0.028478413,0.041177413,0.056759003,0.075893793,0.098314592,0.131113792,0.165403672,0.217406562,0.27395029,0.32728348,0.37472007,0.4137974,0.43970480000000006,0.46917,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,Gen_II_LWR,0.00805313,0.0354779,0.0522827,0.0483166,0.0460504,0.042745,0.0382217,0.0325438,0.0261413,0.0197388,0.014061,0.00953768,0.00623223,0.00396606,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,PV,0.0,0.0,0.0,8.41185E-4,0.0022007850000000002,0.006738735,0.013400695,0.021512685,0.031197715,0.04269163,0.05680713,0.07332068,0.10217632000000001,0.13611613,0.1984883,0.2732757,0.3433998,0.3946896,0.4182914,0.423464,0.4147242,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,PV_storage,0.0,0.0,0.0,7.53934E-6,1.979824E-5,6.063124E-5,1.2071103999999999E-4,1.9333373999999998E-4,2.8057183999999997E-4,3.835245E-4,5.110296000000001E-4,6.591206E-4,9.187498E-4,0.0012264321,0.001783489,0.002464383,0.003197291,0.003996737,0.004680978,0.005138121,0.0054873610000000005,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,biomass (IGCC CCS),0.0,0.0,0.0,0.0,0.0,0.00125982,0.00320832,0.0057756100000000005,0.00919029,0.01375198,0.019677180000000002,0.02869724,0.04485723,0.06447322999999999,0.10175258000000001,0.14516672,0.18435098,0.21794353,0.2422553,0.25563385,0.2662595,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,0.00978411,0.02133465,0.033296919999999994,0.04455666,0.05580049000000001,0.06610251,0.07435255,0.08198539,0.08441485,0.07658960000000001,0.05551971,0.030450369,0.0073741881999999995,0.00169368366,4.72838017E-4,9.849799200000001E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,biomass (conv CCS),0.0,0.0,0.0,0.0,0.0,0.00284787,0.00730162,0.013363380000000001,0.021659480000000002,0.03284501,0.04711981,0.06993676,0.11257998999999999,0.16699362,0.28967645,0.45084548,0.59546738,0.72982046,0.8254789699999999,0.87736388,0.922555,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,biomass (conv),0.0138923,0.0489274,0.113382,0.1451885,0.16355550000000002,0.19984210000000002,0.2342239,0.2617817,0.2778972,0.2886709,0.28942710000000005,0.27947299999999997,0.2631573,0.23297743999999998,0.16342499,0.08343272,0.033170203,0.0060647514,0.001216880517,3.072571089E-4,5.858538549E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,coal (IGCC CCS),0.0,0.0,0.0,0.0,0.0,1.64279E-4,4.80058E-4,9.76979E-4,0.0017956410000000002,0.003119467,0.0051616909999999995,0.008804228,0.016165689,0.025750405999999997,0.043866509,0.06599448999999999,0.088218288,0.10990439799999999,0.12928247999999998,0.143364779,0.15893244,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.00392892,0.00914531,0.01495342,0.020540990000000002,0.026097640000000002,0.03148772,0.035494210000000005,0.038736070000000004,0.03933656,0.031691910000000004,0.018964147000000004,0.009537817999999998,0.0020694486000000004,5.186792140000001E-4,1.5163358819999997E-4,3.155046613E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,coal (conv pul CCS),0.0,0.0,0.0,0.0,0.0,4.24874E-4,0.0011848779999999999,0.002306262,0.0040457800000000006,0.006682507,0.010538203000000001,0.017106451,0.029789219,0.045893415,0.075391502,0.11078714299999999,0.145730629,0.179252731,0.20899446000000002,0.23021418000000002,0.25340007999999997,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,coal (conv pul),0.0171142,0.0386711,0.0408167,0.0741503,0.0923147,0.12437290000000001,0.15627609999999997,0.18364260000000002,0.20216849999999997,0.2161162,0.2269213,0.22933741000000002,0.22537184,0.20922307,0.14205695,0.06401039100000001,0.027023414000000006,0.0049367850999999996,0.0010891583579999997,2.80795402E-4,5.226727301999999E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,gas (CC CCS),0.0,0.0,0.0,0.0,0.0,0.00955928,0.025130730000000004,0.04591895,0.07240047,0.10739546,0.15223824,0.21621041,0.32627969,0.45465058,0.6726945,0.9298043,1.1781981000000001,1.4112958,1.6022448,1.7180748999999997,1.822799,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,gas (CC),8.08283E-4,0.0445118,0.0777075,0.1954856,0.2721454,0.4308897,0.6001274,0.7569648,0.8828221,0.9929359,1.0916981,1.1667047999999998,1.1205276,1.08620148,0.9233819,0.7129544,0.5060996000000001,0.25968798,0.11200914999999999,0.044021739,0.012157276500000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,gas (steam/CT),3.65337E-4,0.0232112,0.0536022,0.05359891,0.05432381,0.05838532999999999,0.06134175000000001,0.062232869999999996,0.06038047,0.05752397000000001,0.054422240000000004,0.04944371,0.040516010000000005,0.03252202,0.019051159999999998,0.009981308999999999,0.004996959,0.0015389292,5.030489599999999E-4,1.7218787199999998E-4,4.41479034E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,geothermal,0.0,0.0,0.0,0.00260392,0.00643324,0.01930484,0.03796553,0.06002471,0.08381857000000001,0.10846301,0.13557770000000002,0.1597302,0.1945467,0.2273698,0.2796593,0.3292982,0.36928799999999995,0.3994581,0.40928339999999996,0.4071664,0.3979449,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,hydro,0.744149,1.21485,1.45184,1.4758,1.49977,1.52373,1.5477,1.57166,1.61397,1.65628,1.69859,1.7409,1.78321,1.82552,1.86783,1.91014,1.95245,1.99476,2.03707,2.07938,2.07938,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,hydrogen cogen,0.0,0.0,0.0,0.0,8.79198E-4,0.00163435,0.00255255,0.00364211,0.00507185,0.00695888,0.00911688,0.0110126,0.0134358,0.0160525,0.0210136,0.0281667,0.0338269,0.0452187,0.0460428,0.0458792,0.0424691,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,refined liquids (CC CCS),0.0,0.0,0.0,0.0,0.0,0.056832,0.0980399,0.1336531,0.1703847,0.20842899999999998,0.2454989,0.2911042,0.3568272,0.4023244,0.47396839999999996,0.5143975,0.4571949,0.5062138,0.44905569999999995,0.3795265,0.3549056,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,refined liquids (CC),0.0,0.0,0.0,0.0223794,0.0375404,0.0566517,0.0797311,0.1027923,0.12291579999999999,0.14340625,0.16147689999999998,0.16516172999999998,0.16458371000000002,0.14313276,0.10398383,0.06277862,0.03117554,0.013106347999999999,0.0047680623000000005,0.00180719107,5.822506869999999E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,refined liquids (steam/CT),0.017773,0.0420406,0.0578339,0.09506890000000001,0.11019770000000001,0.1201865,0.1225579,0.11897850000000001,0.11304204,0.10538035999999999,0.09695645,0.0855145,0.05264086,0.03336226,0.017103213,0.0082882,0.00346303,0.0013934328,4.7657104E-4,1.71951105E-4,5.2218597599999996E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,rooftop_pv,0.0,0.0,0.0,0.00100756,0.00330567,0.00780131,0.01441,0.0239511,0.0396371,0.0602609,0.0857596,0.12212,0.160971,0.194582,0.223669,0.237529,0.242718,0.219165,0.201232,0.196616,0.213391,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,wind,0.0,3.34799E-4,0.00783718,0.015298879999999999,0.022571849999999997,0.04371535,0.07349915,0.10936955,0.14232937,0.18476817,0.23830150000000003,0.29466919999999996,0.38810940000000005,0.490301,0.668264,0.8691965,1.0647271999999999,1.246561,1.3660789999999998,1.423846,1.438688,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,wind_storage,0.0,0.0,0.0,2.53097E-5,5.03335E-5,1.263789E-4,2.370349E-4,3.757099E-4,5.381659E-4,7.168182E-4,9.491494E-4,0.001212293,0.0016598609999999999,0.002169893,0.003093127,0.0041927449999999995,0.005317520000000001,0.006431221,0.007264477,0.00774924,0.0080278,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,CSP,0.0,0.0,0.0,3.88959E-4,0.0011418259999999999,0.002234856,0.0042055059999999995,0.0065501959999999994,0.010401836,0.014397717,0.01862086,0.024588000000000002,0.03142168,0.038432720000000004,0.04933128,0.05958554,0.06779473,0.07669426,0.08249823,0.08557719999999999,0.0880795,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,CSP_storage,0.0,0.0,0.0,0.0,0.0,0.00245997,0.010680980000000001,0.024516080000000003,0.04856838,0.07782168,0.11321068000000001,0.16051231,0.2138152,0.26547119999999996,0.3453409,0.41942159999999995,0.4778322,0.5423766,0.5861767,0.6108553999999999,0.6330954,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,Gen_III,0.0,0.0,0.0,0.0554074,0.0997259,0.15332030000000002,0.2475826,0.3587344,0.5019634,0.6370572999999999,0.7671772000000001,0.914525,1.0707907,1.2168083,1.4223799,1.5501242,1.6552455999999998,1.7664743,1.811549,1.8106159999999998,1.810145,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,Gen_II_LWR,0.262681,0.331344,0.326372,0.301614,0.287467,0.266833,0.238597,0.203153,0.163186,0.123218,0.0877747,0.0595384,0.0389043,0.0247578,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,PV,0.0,6.11999E-5,5.68799E-4,7.673280000000001E-4,0.001048639,0.001365958,0.0018383639999999999,0.002327552,0.00247709,0.003042055,0.003415141,0.003204186,0.0028249183,0.0024245096,0.0018304036000000004,0.0011780936,6.168075E-4,6.117505E-4,6.024621E-4,5.794772E-4,5.357447E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,PV_storage,0.0,0.0,0.0,1.77913E-6,4.31523E-6,7.17008E-6,1.142976E-5,1.580855E-5,2.227817E-5,2.73594E-5,3.2241750000000003E-5,3.96592E-5,4.800112E-5,5.705203E-5,7.185851E-5,8.637955E-5,9.84895E-5,1.1220680000000002E-4,1.219181E-4,1.2779380000000002E-4,1.337494E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,biomass (IGCC CCS),0.0,0.0,0.0,0.0,0.0,9.48676E-5,3.1718E-4,6.536868E-4,0.0013211204,0.0022123956,0.0034269282,0.0056068069,0.008996778,0.013392934199999998,0.0225938542,0.0330291714,0.042613674299999994,0.054496474999999996,0.06500608599999999,0.073341907,0.084555958,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,7.43055E-4,0.0020942,0.003728953,0.006140792,0.008545971,0.010765553,0.012729865,0.013974643,0.014173504,0.012250381999999999,0.00815967,0.0040681727,9.591881000000001E-4,2.32979287E-4,7.15343394E-5,1.5715178550000002E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,biomass (conv CCS),0.0,0.0,0.0,0.0,0.0,2.13791E-4,7.17464E-4,0.001488741,0.003048299,0.0051261810000000005,0.007941562999999999,0.013310779000000002,0.022098832,0.034165836000000005,0.063937517,0.10168385699999999,0.135842552,0.180504099,0.21815595000000002,0.24558272999999997,0.28217173,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,biomass (conv),0.0137844,0.0300024,0.0279072,0.02822217,0.03069896,0.03196178,0.03483805,0.03717716,0.04015852,0.04172319,0.04140049,0.03915323999999999,0.0351593,0.02975526,0.019391083,0.009629727000000001,0.0037239820999999994,7.222655600000001E-4,1.5899795299999996E-4,4.5326863699999995E-5,9.103067490999998E-6,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,biomass cogen,4.21048E-4,4.20829E-4,4.24375E-4,4.67594E-4,6.42854E-4,7.76534E-4,8.18079E-4,8.35317E-4,8.26357E-4,8.05274E-4,7.36555E-4,6.59393E-4,5.76783E-4,5.00709E-4,3.84038E-4,2.61349E-4,1.6262E-4,7.36416E-5,3.65154E-5,2.07181E-5,9.99222E-6,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,coal (IGCC CCS),0.0,0.0,0.0,0.0,0.0,1.41184E-4,4.86658E-4,0.001016893,0.00210561,0.003604137,0.005712218,0.009590201,0.015544141000000001,0.022724617,0.035481276,0.048296196,0.059214828,0.07138076,0.08144331099999999,0.08849021000000001,0.09633067000000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.00342263,0.00934012,0.01601451,0.024532110000000003,0.03206913,0.038502259999999996,0.04283641,0.04412739,0.041645100000000004,0.027806960000000002,0.013969608,0.0063189826,0.0013206085599999997,3.4063086899999997E-4,1.0530482700000001E-4,2.142051299E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,coal (conv pul CCS),0.0,0.0,0.0,0.0,0.0,3.64186E-4,0.001190431,0.002373155,0.004642294,0.007555158,0.011458041,0.018351312,0.028517676000000002,0.040523214,0.061161166999999995,0.081480341,0.098445161,0.116890852,0.13178556,0.14168254,0.15188716,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,coal (conv pul),0.295991,0.395942,0.316566,0.36033230000000005,0.3865614,0.3966151,0.40924950000000004,0.4111754999999999,0.407549,0.393204,0.37498240000000005,0.34488859999999993,0.30260881,0.24719558999999997,0.12644029,0.04697678599999999,0.0177409117,0.0032944402900000006,7.61236763E-4,2.1064490760000005E-4,3.7634872005E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,gas (CC CCS),0.0,0.0,0.0,0.0,0.0,0.0116858,0.0322384,0.05512980000000001,0.0853198,0.1132184,0.13979790000000003,0.1716806,0.2076407,0.24316680000000002,0.2888236,0.3247807,0.35027939999999996,0.3762183,0.3960415,0.4047202,0.41579479999999996,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,gas (CC),0.0338351,0.0585332,0.016694,0.0267533,0.0373435,0.04450978,0.05842406,0.07631893,0.10185169,0.12683294,0.1508566,0.17133668,0.17545944,0.17223278,0.15718479999999999,0.12614849,0.09081838,0.042065696,0.017281648000000004,0.006803609299999999,0.0017938476500000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,gas (steam/CT),0.00100203,0.0677619,0.173231,0.1759197,0.1838352,0.18130686999999998,0.17447675999999998,0.16081820000000002,0.14059881000000002,0.11769819000000001,0.09616453999999999,0.07177952,0.039936740000000005,0.021913162,0.009119355000000003,0.0039699775,0.0017096942,4.390512E-4,1.2531621E-4,3.9000897900000004E-5,8.8866205E-6,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,geothermal,0.0,0.0,0.0,0.0040695,0.00817513,0.01222931,0.013231,0.013231030000000001,0.013231000000000001,0.013231,0.013231010000000001,0.013231001000000001,0.013231003,0.013230996999999998,0.013230999,0.013231,0.013231001000000001,0.013231001999999999,0.013231,0.013231,0.013231362,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,hydro,1.06835,1.30916,1.26543,1.30693,1.34854,1.39015,1.43175,1.47336,1.49957,1.52578,1.55199,1.5782,1.60441,1.63062,1.65683,1.68304,1.70925,1.73547,1.76168,1.78789,1.78789,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,hydrogen cogen,0.0,0.0,0.0,0.0,3.25731E-4,6.00301E-4,9.05578E-4,0.00124648,0.0016203,0.00209391,0.00265614,0.00307398,0.00370963,0.00452172,0.00594626,0.00811154,0.00964449,0.0126098,0.0130035,0.0128458,0.0115186,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,refined liquids (CC CCS),0.0,0.0,0.0,0.0,0.0,0.00335007,0.00693924,0.00961693,0.014082227,0.016580133,0.01899144,0.022624567999999998,0.026326663,0.028969597,0.0356835,0.03798604,0.032224840000000005,0.03796067,0.03376233,0.02794783,0.026972250000000003,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,refined liquids (CC),0.0,0.0,0.0,0.00249601,0.00416012,0.00435702,0.006215043,0.008087106,0.010919099,0.012585773,0.013658091,0.01347015,0.012126175000000001,0.009939023,0.007416476,0.004390108,0.0022032529,9.712171000000001E-4,3.5798055E-4,1.4011211099999998E-4,4.6983445000000005E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,refined liquids (steam/CT),0.0592847,0.0551952,0.0266292,0.02152903,0.022274250000000002,0.02115616,0.019202469000000003,0.016755512000000004,0.01416224,0.011529922000000001,0.009276053999999999,0.006957597999999999,0.00386585,0.0021287166000000003,0.0010418123000000001,5.35636E-4,2.3523010999999998E-4,9.098009E-5,3.0735949999999995E-5,1.11554538E-5,3.2881512299999996E-6,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,rooftop_pv,0.0,0.0,0.0,4.54106E-6,1.73373E-5,4.20782E-5,7.46858E-5,1.18904E-4,1.83036E-4,2.61093E-4,3.06543E-4,8.61842E-5,8.46504E-5,9.41611E-5,1.02477E-4,1.07763E-4,1.12707E-4,1.13447E-4,1.11894E-4,1.0915E-4,1.00528E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,wind,0.0,0.00529559,0.0344051,0.047733,0.0645592,0.0884939,0.1358007,0.1964285,0.2560387,0.3465278,0.44416259999999996,0.5665648999999999,0.6928841000000001,0.8112803,0.989883,1.150067,1.271086,1.405022,1.4861870000000001,1.524272,1.553188,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,wind_storage,0.0,0.0,0.0,4.78209E-5,1.0922540000000001E-4,1.995114E-4,3.838024E-4,6.300594E-4,0.0010246524,0.0014274094999999999,0.0018816240000000001,0.002477385,0.003130229,0.0037713880000000005,0.004781325,0.005727937000000001,0.0064800280000000005,0.007340841,0.007930076,0.008264889999999999,0.00857559,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,CSP,0.0,0.0,0.0,5.56983E-5,1.8834830000000001E-4,4.751023E-4,0.0010451233,0.0020129313,0.0028265563,0.003559825,0.004276772,0.005044908,0.005887327,0.006363308999999999,0.007404813999999999,0.008620636999999999,0.00986337,0.01096782,0.011789639999999999,0.012316479999999998,0.0127974,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,CSP_storage,0.0,0.0,0.0,0.0,0.0,9.53253E-4,0.004481673,0.014444013,0.034518213,0.062773513,0.09811731300000001,0.14282896,0.20285384,0.2605488,0.3314684,0.4045881,0.4790443,0.5494854,0.6073061,0.6469028,0.681542,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,Gen_III,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0150031,0.045479,0.08962619999999999,0.1383241,0.1959599,0.24957900000000002,0.3134679,0.37743150000000003,0.4401044,0.5007695,0.5598973000000002,0.6092913,0.6493024999999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,PV,0.0,0.0,4.32E-5,0.00646034,0.017648240000000003,0.03643834,0.06498064,0.07593054,0.08401591000000001,0.08646999999999999,0.08451871,0.07687211,0.06284781,0.06650871,0.07697164000000001,0.08786021,0.09907119999999998,0.1087323,0.1152199,0.11884109999999999,0.12100939999999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,PV_storage,0.0,0.0,0.0,5.75156E-5,1.583916E-4,3.274716E-4,6.068926E-4,0.0010887926,0.0019140326000000002,0.0028692369999999997,0.003900691,0.005172291,0.006882299999999999,0.00852075,0.010542619999999999,0.01273566,0.01509693,0.01738028,0.01932053,0.02070959,0.02200678,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,biomass (IGCC CCS),0.0,0.0,0.0,0.0,0.0,3.04282E-4,8.72744E-4,0.0016603389999999998,0.003003755,0.004987211,0.007660248,0.01210114,0.019706193,0.029376609999999997,0.046258625,0.06745553600000001,0.090396242,0.114671256,0.138683318,0.1583234,0.18033489,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,0.00241605,0.0060396600000000005,0.01023694,0.01556517,0.02137314,0.02699487,0.032166730000000004,0.03696203,0.03981743,0.03889344000000001,0.03276675999999999,0.022496527000000002,0.006975968299999999,0.0018722118200000001,5.982020309999999E-4,1.3229887929999999E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,biomass (conv CCS),0.0,0.0,0.0,0.0,0.0,6.82334E-4,0.001981431,0.003794281,0.00690675,0.011563028999999999,0.017773273,0.028636831,0.048229239,0.07457513800000001,0.12867979300000001,0.20441664799999998,0.285014748,0.37450872,0.45710028,0.5192279999999999,0.5885991199999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,biomass (conv),0.00762288,0.008862,0.0143049,0.01886169,0.03081892,0.0413437,0.055002100000000005,0.06960731,0.0841987,0.09768496299999999,0.10745434699999999,0.11277606600000001,0.114676668,0.1107042622,0.09104066000000001,0.05636460999999999,0.027332487,0.005813705600000001,0.00132646837,3.8599339399999995E-4,7.809643208E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,coal (IGCC CCS),0.0,0.0,0.0,0.0,0.0,2.24708E-5,7.05236E-5,1.457018E-4,2.997271E-4,5.735086999999999E-4,0.0010094464,0.0018653603,0.0035175113,0.0057513484,0.0095364433,0.014333598,0.0198199104,0.0258266016,0.0322066939,0.03772924,0.044166013000000004,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,coal (IGCC),0.0,0.0,0.0,0.0,0.0,5.56716E-4,0.0014228869999999998,0.002458417,0.00376537,0.005170594000000001,0.006554994,0.007703179,0.00863656,0.009075021999999999,0.008177038999999999,0.0060010789999999994,0.0037553367000000004,9.929562600000002E-4,2.82999027E-4,9.420957970000002E-5,2.07029409E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,coal (conv pul CCS),0.0,0.0,0.0,0.0,0.0,5.77196E-5,1.716462E-4,3.3705219999999997E-4,6.546413E-4,0.0011861946,0.0019920491,0.0035106554,0.0063252685999999995,0.0100497648,0.01615389,0.023732749400000003,0.0322260271,0.041348376000000006,0.050874152,0.058929036,0.06809595900000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,coal (conv pul),1.548E-4,0.007992,0.0111816,0.01858878,0.02344143,0.027645739999999995,0.032567780000000005,0.03703385,0.04121046,0.04470853,0.047526889999999995,0.04887049999999999,0.04904486,0.04736920499999999,0.03721193800000001,0.020588240000000004,0.0104546678,0.0022837715100000005,5.784113880000002E-4,1.7384199759999997E-4,3.433308059999999E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,gas (CC CCS),0.0,0.0,0.0,0.0,0.0,0.00891993,0.021891590000000002,0.03582202,0.05267745,0.07081267,0.08901175,0.11086795999999999,0.14012881,0.17086201,0.20603490000000002,0.2447165,0.2868595,0.33011480000000004,0.37483110000000003,0.4110365,0.45254930000000004,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,gas (CC),0.0,0.0,0.0,0.00488508,0.01085479,0.01647692,0.025956319999999998,0.0385388,0.05500476,0.07324924000000001,0.09192104,0.10871099999999999,0.11993407,0.12571960000000001,0.12575534,0.11627403,0.10085336,0.068721954,0.03932044399999999,0.019605095700000002,0.0063532333,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,gas (steam/CT),0.0129143,0.042021,0.0577774,0.0745258,0.0858231,0.08965137,0.09177830000000001,0.09123451,0.08747988,0.08199439,0.07606341999999999,0.0687569,0.04474116,0.029041537000000006,0.016777133000000003,0.008885553,0.0045175253,0.0013429707000000002,4.2148041E-4,1.4040683500000004E-4,3.3359203800000005E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,geothermal,0.002898,0.0094176,0.0117864,0.02106448,0.02996394,0.033792050000000004,0.03379196,0.03379201,0.03379198,0.03379204,0.033791959999999996,0.033791959999999996,0.03379199,0.03379203,0.033791959999999996,0.03379199,0.03379198,0.03379195,0.033791989999999994,0.03379201,0.03379201,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,hydro,0.0486099,0.0767999,0.0855111,0.0891228,0.0927345,0.0963461,0.0999578,0.103569,0.109946,0.116323,0.1227,0.129076,0.135453,0.14183,0.148206,0.154583,0.16096,0.167337,0.173713,0.18009,0.18009,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,hydrogen cogen,0.0,0.0,0.0,0.0,6.01725E-4,0.00115523,0.00179985,0.00285141,0.00384775,0.00521423,0.00690884,0.00854137,0.0110913,0.0144917,0.0200971,0.0285673,0.0370776,0.0485221,0.050048,0.0525992,0.0486668,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,refined liquids (CC CCS),0.0,0.0,0.0,0.0,0.0,0.0287602,0.0587742,0.08602660000000001,0.11749409999999999,0.1469177,0.1737573,0.2067299,0.2492462,0.28591679999999997,0.32601290000000005,0.3582449,0.3502044,0.38708329999999996,0.3666154,0.3327953,0.3050477,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,refined liquids (CC),0.0,0.0,0.0,0.0200856,0.0404166,0.0504924,0.0660272,0.0843197,0.10403570000000001,0.12213187,0.13698529,0.14193513000000002,0.13692311,0.12155824,0.09203707000000001,0.061724520000000005,0.034976900000000005,0.015817,0.006182063,0.0025284982000000006,7.946110199999999E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,refined liquids (steam/CT),0.119832,0.219264,0.220659,0.2432137,0.2568424,0.2494902,0.23365235999999998,0.21308643,0.18552146,0.15684061,0.13110441999999997,0.10710425000000001,0.06299994,0.03589235999999999,0.015529766999999998,0.008698226000000002,0.004308663,0.0017865031000000003,6.2968027E-4,2.3645087999999998E-4,6.9321817E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,rooftop_pv,0.0,0.0,0.0,0.00121063,0.00336923,0.00737228,0.0119477,0.00885383,0.00790233,0.0106478,0.014414,0.0200146,0.0266848,0.0336432,0.0401949,0.0448399,0.0516376,0.0534677,0.0573852,0.0616551,0.0635811,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,wind,0.0,9.144E-4,0.00207,0.0158623,0.0373894,0.0728085,0.1287733,0.19491960000000003,0.2786985,0.36264260000000004,0.4450155,0.5307824,0.6271066000000001,0.7091383000000001,0.8032484,0.892667,0.977218,1.054177,1.109526,1.145326,1.180217,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,wind_storage,0.0,0.0,0.0,5.94052E-5,1.6322019999999999E-4,3.569562E-4,7.022392E-4,0.0011597222,0.0018276242,0.0026186919999999997,0.003517357,0.004603091,0.006025838,0.007464714999999999,0.009381602999999999,0.01142034,0.01358554,0.015525999999999998,0.017016339999999998,0.017952669999999997,0.018642150000000003,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,CSP,0.0,0.0,0.0,5.01303E-5,1.357279E-4,2.431289E-4,4.485719E-4,6.987659E-4,0.0010847409000000001,0.0015104826,0.001923512,0.002591513,0.0036313,0.004646636,0.006492301,0.008643489,0.010787252,0.014432319999999998,0.017583659999999997,0.01997511,0.02307292,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,CSP_storage,0.0,0.0,0.0,0.0,0.0,3.57029E-4,0.0016229390000000001,0.003803509,0.007363629,0.012052909,0.017290809,0.02500613,0.03659292,0.04749735,0.06716083,0.08986445,0.11240575,0.1511787,0.1852835,0.21151199999999998,0.2460544,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,Gen_III,0.0,0.0,0.0,0.0677829,0.1069645,0.1457418,0.2098158,0.28108679999999997,0.36263330000000005,0.44248589999999993,0.5116643000000001,0.6006773000000001,0.7216722,0.8294235999999999,0.9989888,1.1041068,1.2019229,1.3380656,1.4272991000000002,1.4726506000000001,1.5495286,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,Gen_II_LWR,0.0,0.00977756,0.00896395,0.00828395,0.00789541,0.00732869,0.00655317,0.00557969,0.00448197,0.00338425,0.00241077,0.00163525,0.00106852,6.79985E-4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,PV,0.0,0.0,0.0,0.00177343,0.00399019,0.006151200000000001,0.0095645,0.01318227,0.01817139,0.0221594,0.025647950000000003,0.03220069,0.04251199,0.052816819999999993,0.0726959,0.09183146,0.09862625,0.09716775000000001,0.08852257000000001,0.07834504,0.059008580000000005,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,PV_storage,0.0,0.0,0.0,1.58943E-5,3.5881000000000004E-5,5.5325200000000004E-5,8.61062E-5,1.184929E-4,1.634305E-4,1.991421E-4,2.3068079999999998E-4,2.894335E-4,3.8218750000000004E-4,4.7571479999999997E-4,6.538922E-4,8.682632999999999E-4,0.0010881309,0.0014712839999999998,0.001814564,0.002083626,0.00244561,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,biomass (IGCC CCS),0.0,0.0,0.0,0.0,0.0,2.76858E-5,9.31585E-5,1.937073E-4,3.947814E-4,7.000124E-4,0.0010862875,0.0018958116,0.0035354551000000003,0.00560816,0.0105932209,0.0172290223,0.0232955345,0.032242817699999995,0.040749343,0.047575474000000006,0.057751298,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,2.14925E-4,5.988570000000001E-4,0.0010527280000000002,0.001697756,0.00241294,0.0030257179999999997,0.003749184,0.004540784,0.004851403999999999,0.0044965302,0.0031897349,0.0017059487000000001,4.3671899E-4,1.1052817200000001E-4,3.51484641E-5,8.186943550000001E-6,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,biomass (conv CCS),0.0,0.0,0.0,0.0,0.0,6.25946E-5,2.106644E-4,4.430791E-4,9.270632E-4,0.0016688932,0.0025918752,0.0046337133,0.0089454247,0.014694205500000002,0.031098247399999997,0.0557353867,0.07813028150000001,0.113389575,0.145910282,0.170845112,0.20985325900000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,biomass (conv),0.0,0.0,0.0,0.00118043,0.002121742,0.002774726,0.004216305,0.005626225,0.007252771,0.008699306,0.009386785,0.009896013,0.010163296999999998,0.009288703,0.0068558280000000004,0.0036364660000000005,0.0014933031,3.0835083E-4,7.0317133E-5,2.0865908599999998E-5,4.497216997999999E-6,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,coal (IGCC CCS),0.0,0.0,0.0,0.0,0.0,1.13327E-4,3.52976E-4,6.86328E-4,0.0013229079999999998,0.0022583760000000003,0.0034003709999999997,0.005689176,0.010017136,0.014892310000000002,0.024542214,0.03563656,0.044842241,0.056831441999999996,0.067429526,0.07518953099999999,0.085705929,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.00270851,0.006664410000000001,0.01055921,0.01490209,0.0188067,0.021742849999999998,0.023900309999999998,0.02499014,0.023755869999999995,0.016234761,0.008473860000000001,0.0040386598,8.799940899999999E-4,2.2992216899999997E-4,7.253631539999999E-5,1.5472217329999998E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,coal (conv pul CCS),0.0,0.0,0.0,0.0,0.0,2.93136E-4,8.69923E-4,0.00162202,0.002973815,0.004835038999999999,0.006988032,0.011108527,0.018552785000000002,0.026742955,0.04245389199999999,0.060198818,0.07467060199999999,0.093171553,0.109368399,0.12100696999999999,0.13662201000000002,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,coal (conv pul),0.257637,0.202024,0.264001,0.35102,0.3844326,0.39120350000000004,0.39444920000000006,0.3861283,0.3689996,0.3458378,0.32074095,0.28504482,0.2458977,0.19951175000000002,0.10225833999999999,0.03216283500000001,0.011646390599999999,0.0021898734199999994,5.018180780000001E-4,1.401572906E-4,2.6263028943000004E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,gas (CC CCS),0.0,0.0,0.0,0.0,0.0,0.0312931,0.07769519999999999,0.1232139,0.1770733,0.22901200000000002,0.2721366,0.3294818,0.4097311,0.48278860000000007,0.5808502,0.6748711000000001,0.7407615,0.8288082,0.8966059,0.9374461999999999,0.9864709000000002,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,gas (CC),0.0,0.0,0.0,0.0381261,0.0704616,0.0881738,0.1181739,0.1528427,0.1956943,0.2388184,0.27546360000000003,0.31070870000000006,0.310797,0.2989021,0.27765740000000005,0.2250762,0.16480896,0.08000597,0.034297508,0.014683524299999999,0.00425421793,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,gas (steam/CT),0.270924,0.259231,0.289064,0.308789,0.3391884,0.346187,0.33889559999999996,0.3197029,0.2855556,0.25106143,0.21866146999999997,0.17567867999999998,0.07801553,0.03661268,0.017007474,0.0071521829999999995,0.0030592658,8.239956999999998E-4,2.4311707E-4,8.3015801E-5,2.0899249899999997E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,gas cogen,0.0,6.27014E-4,0.0015317,0.00126435,0.00145569,0.00176963,0.00177514,0.00172084,0.00157704,0.00142491,0.00128121,0.00108954,9.16806E-4,7.54574E-4,5.37213E-4,3.86317E-4,2.87919E-4,1.70822E-4,1.10076E-4,7.42998E-5,4.26901E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,geothermal,0.0,0.0,0.0,0.00710471,0.01399969,0.02029949,0.029116620000000003,0.03745308,0.04675791,0.04980148,0.052471380000000005,0.05847798,0.06579733,0.06731805,0.06731786000000001,0.06731801,0.06731793999999999,0.06731793,0.06731801000000001,0.067318,0.067318,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,hydro,0.183715,0.211439,0.217472,0.23678,0.256088,0.275396,0.294704,0.314012,0.33546,0.356908,0.378356,0.399804,0.421252,0.4427,0.464148,0.485596,0.507045,0.528493,0.549941,0.571389,0.571389,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,hydrogen cogen,0.0,0.0,0.0,0.0,3.54755E-4,6.95695E-4,0.00109605,0.00156761,0.00213998,0.00289493,0.00376427,0.00458137,0.00572126,0.00716792,0.0100256,0.0143703,0.0180684,0.0258935,0.0285808,0.0314432,0.0319129,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,refined liquids (CC CCS),0.0,0.0,0.0,0.0,0.0,0.00115682,0.002009046,0.0024186340000000002,0.003209537,0.003769639,0.004130871,0.005209931000000001,0.006806652999999999,0.007701596,0.010551221,0.012890968,0.012379884,0.017260821000000003,0.017519592,0.016832806999999998,0.018886792,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,refined liquids (CC),0.0,0.0,0.0,0.00183235,0.0022732819999999997,0.0020357229999999997,0.002366621,0.002548914,0.002875979,0.003088388,0.0031202979999999996,0.003202468,0.0031212003,0.0025309700000000004,0.0020968347000000003,0.0013830169,7.320060999999999E-4,3.625563E-4,1.3803108E-4,5.622503500000001E-5,1.96597704E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,refined liquids (steam/CT),0.162338,0.0429694,0.00578517,0.005586300000000001,0.00561227,0.005286697999999999,0.004867000000000001,0.004328539,0.0038372100000000006,0.0033777219999999997,0.0029892792,0.0025104543000000006,0.0010927659,4.975168E-4,2.771754E-4,1.4792685999999997E-4,7.072459000000001E-5,3.1336755000000005E-5,1.1344204E-5,4.596943899999999E-6,1.50240028E-6,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,refined liquids cogen,0.0,0.0,4.6779E-5,4.29092E-5,4.4385E-5,4.85114E-5,4.66366E-5,4.41552E-5,4.28305E-5,4.12238E-5,3.97095E-5,3.72746E-5,3.4894E-5,3.18221E-5,2.65445E-5,2.22836E-5,1.7044E-5,1.32621E-5,9.16311E-6,6.54437E-6,4.19376E-6,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,rooftop_pv,0.0,0.0,0.0,4.83841E-5,1.94282E-4,5.30573E-4,0.00103761,0.00179872,0.00298195,0.0045775,0.0066792,0.00999462,0.0141546,0.0187477,0.0247265,0.0277727,0.0227167,0.0141329,0.0129954,0.0135126,0.0155069,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,wind,0.0,0.0,2.87998E-5,0.0066081698,0.014867059799999999,0.0242912698,0.0414967698,0.062068369799999995,0.09145167,0.1199083,0.14753070999999998,0.1917761,0.25771,0.3201932,0.43403909999999996,0.5592291,0.6632338,0.8031812000000002,0.9032818,0.9708969999999999,1.047447,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,wind_storage,0.0,0.0,0.0,2.20165E-5,5.02324E-5,8.33563E-5,1.451318E-4,2.211259E-4,3.3274789999999997E-4,4.4593439999999996E-4,5.591115E-4,7.431776E-4,0.0010253171,0.001300414,0.0018158039999999999,0.002400526,0.002898205,0.003590462,0.004121817,0.004496537,0.004944634999999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,CSP,0.0,0.0,0.0,2.39376E-4,8.64829E-4,0.002365059,0.004981519,0.008183539,0.012574049,0.017641583000000002,0.022518589999999998,0.02944946,0.0375275,0.046296279999999995,0.07029906999999999,0.08120785999999999,0.08336695000000001,0.08303571,0.07982265000000001,0.07527605000000001,0.06269675,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,CSP_storage,0.0,0.0,0.0,0.0,0.0,0.00498723,0.02110973,0.049017530000000004,0.08951513,0.14181083,0.19961363,0.28240529999999997,0.3767488,0.473869,0.8158863999999999,1.3133487,1.5873729,1.842929,1.939118,1.933412,1.742022,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,Gen_III,0.0,0.0,0.0,0.206769,0.47942799999999997,0.932466,1.5521690000000001,2.196351,2.9800000000000004,3.8533060000000003,4.703084,5.783952,6.944139,8.072835,10.336405,12.312390999999998,13.183694000000001,13.805189,13.819857999999998,13.576744,13.546671,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,Gen_II_LWR,0.0,0.191117,0.265967,0.245791,0.234263,0.217448,0.194438,0.165554,0.132984,0.100413,0.0715296,0.0485192,0.031704,0.0201757,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,PV,7.19999E-6,2.74E-4,0.00338849,0.036761590000000004,0.10059549000000001,0.21955549000000002,0.39086849,0.57333449,0.7935969999999999,1.0134289,1.197704,1.452025,1.7432949999999998,2.046289,2.221116,2.133368,1.9718555,1.6884473,1.2956031000000001,0.8931518999999999,0.8806399,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,PV_storage,0.0,0.0,0.0,2.99113E-4,8.746679999999999E-4,0.0019450779999999998,0.003490028,0.005123538,0.007138068000000001,0.009107025000000001,0.010772300000000002,0.013052890000000001,0.01569222,0.01880005,0.03126792,0.050036250000000004,0.06057102,0.07054532,0.07445718,0.07444016,0.06758675,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,biomass (IGCC CCS),0.0,0.0,0.0,0.0,0.0,0.00112573,0.00322756,0.00619253,0.011157819999999999,0.01817565,0.026643769999999997,0.04424739,0.07277967999999999,0.1123048,0.23248434,0.3828377,0.4731208,0.56958878,0.6296827599999999,0.66809733,0.74828319,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,0.00888466,0.02157178,0.03583111,0.053399760000000004,0.07243693000000001,0.08887109,0.10771574,0.12229678999999999,0.12999494,0.13115195999999998,0.10527064,0.06370492,0.017657799999999998,0.0044148718,0.001343986538,2.6898729639999997E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,biomass (conv CCS),0.0,0.0,0.0,0.0,0.0,0.00252993,0.00721084,0.014037830000000001,0.02586359,0.042577710000000005,0.06229569,0.10576848,0.18000283,0.28913084,0.6817828699999999,1.2341344300000001,1.5628812300000001,1.93760657,2.16474909,2.3043313999999997,2.6063649999999994,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,biomass (conv),1.49641E-6,0.00866158,0.0410615,0.0394107,0.0704189,0.1062693,0.1549559,0.20110659999999997,0.2485676,0.29074515999999995,0.31323932,0.32920046,0.3240157,0.300283587,0.2494736,0.14948613000000002,0.06567876000000002,0.013465708200000003,0.0029464032,8.243369819999999E-4,1.5161670000999998E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,coal (IGCC CCS),0.0,0.0,0.0,0.0,0.0,0.00917406,0.02533215,0.04622493999999999,0.08015463,0.12695721,0.18177558,0.29397017,0.46663992,0.68097155,1.21505036,1.78676446,2.09466605,2.3767331,2.5310677000000004,2.6116984999999997,2.7630535,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.225111,0.503475,0.763532,1.01727,1.23981,1.4062620000000001,1.536829,1.590183,1.5498687,1.2444107,0.778436,0.41349982,0.09262544799999999,0.0232727474,0.006869443354999999,0.0012425148887000004,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,coal (conv pul CCS),0.0,0.0,0.0,0.0,0.0,0.023609,0.062211800000000005,0.108893,0.1800498,0.27170880000000003,0.3733,0.5730252,0.8684756,1.2278517,2.095228,3.0065954,3.4885369999999996,3.9147495,4.1379589,4.2448037,4.450563000000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,coal (conv pul),1.69735,7.20575,11.8677,14.30142,15.94453,17.17505,18.033,18.16101,17.752039999999997,17.021814,16.147233999999997,15.074687999999997,13.713969,11.937312,7.714649499999999,3.3423945999999995,1.3668537800000002,0.25039284100000003,0.053695433599999995,0.013725362983,0.002164560043,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,gas (CC CCS),0.0,0.0,0.0,0.0,0.0,0.044574,0.09564819999999999,0.1415056,0.18734779999999998,0.22768200000000002,0.2593602,0.30328,0.3505674,0.39906650000000005,0.49959410000000004,0.6205387,0.6976276,0.8272558,0.9251960000000001,0.9950981999999999,1.171959,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,gas (CC),0.00682159,0.0496339,0.0453922,0.0712792,0.10138999999999998,0.12067270000000001,0.1449305,0.1684888,0.1921891,0.2140617,0.23171869999999997,0.24841152,0.23303604,0.21166484,0.20041189999999998,0.1732082,0.14262132000000002,0.09465033,0.056817308000000004,0.030352330999999996,0.009330341499999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,gas (steam/CT),0.00312522,0.03391,0.254969,0.1612411,0.1781445,0.1768945,0.16630690000000004,0.14629751,0.12025577,0.09368172,0.07229477999999999,0.05176851999999999,0.026436629000000003,0.013130425,0.006585079999999999,0.003600974,0.0019747909,8.501946000000001E-4,3.5331425000000006E-4,1.47586359E-4,3.8346703300000006E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,geothermal,0.0,4.13999E-4,5.83199E-4,0.051467608000000005,0.10041027999999999,0.11580051499999999,0.11580134,0.115804994,0.115799,0.11579899999999999,0.115799,0.1157991,0.11579899,0.11579903000000001,0.11579903,0.11579902,0.11579903000000001,0.11579894,0.11579899999999999,0.115799,0.11579901000000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,hydro,0.45643,1.4296,2.60038,2.6427,2.68502,2.72734,2.76966,2.81198,2.90904,3.00611,3.10317,3.20023,3.29729,3.39435,3.49142,3.58848,3.68554,3.7826,3.87966,3.97673,3.97673,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,hydrogen cogen,0.0,0.0,0.0,0.0,0.00216442,0.00451424,0.00755792,0.0112463,0.0164152,0.0229181,0.0299299,0.0381756,0.0486954,0.0617232,0.0970743,0.142333,0.171031,0.222188,0.21881,0.216605,0.178868,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,refined liquids (CC CCS),0.0,0.0,0.0,0.0,0.0,0.0105133,0.016230500000000002,0.01989187,0.02612523,0.03150575,0.03522279,0.043208189999999994,0.05051087,0.056906649999999996,0.07932574,0.09338505999999999,0.07975561,0.09156087,0.08180266,0.07193899,0.06759244,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,refined liquids (CC),0.0,0.0,0.0,0.00595275,0.00999001,0.01126635,0.01493111,0.01793417,0.02182244,0.02499759,0.0264655,0.02737553,0.024653889999999998,0.020518889999999998,0.018294328,0.011992777,0.005579956,0.0026103795,9.771858999999999E-4,4.029270000000001E-4,1.24174556E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,refined liquids (steam/CT),0.177202,0.221325,0.0483861,0.033910800000000005,0.040191910000000004,0.041049329999999995,0.03922326,0.03595255,0.03299793,0.029087431999999996,0.025099345,0.020737053,0.011675716,0.006048375,0.0029682103000000007,0.0015288112,6.682001E-4,2.8400603E-4,1.0011289199999999E-4,3.9037153E-5,1.08422287E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,rooftop_pv,0.0,0.0,0.0,8.74586E-4,0.00539816,0.0183286,0.0423648,0.0821797,0.154127,0.250915,0.3677,0.523666,0.672244,0.779186,0.464872,0.227973,0.230267,0.245163,0.308083,0.520381,0.944679,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,wind,7.19999E-6,0.00730149,0.160644,0.281059,0.46316599999999997,0.7808539999999999,1.22687,1.6976959999999999,2.0965819999999997,2.588154,2.995151,3.515518,4.065797,4.650231,6.266570999999999,7.838634,8.486350000000002,8.901625,8.712445,8.217722,7.216322,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,wind_storage,0.0,0.0,0.0,5.43645E-4,0.001424294,0.0031126640000000002,0.005690664,0.008634644,0.012343324,0.016086769,0.0195379,0.024348880000000003,0.02983483,0.03582057,0.05228349,0.06974770000000001,0.07811092,0.08479297,0.08521131,0.08209123,0.07373823,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,CSP,0.0,0.0,0.0,1.1125E-5,4.29655E-5,9.24178E-5,2.143968E-4,4.0152579999999996E-4,6.572997999999999E-4,0.0010008488000000002,0.0014309763000000001,0.002023602,0.002980933,0.004143964,0.00590065,0.008112626000000001,0.010413018,0.013155340000000001,0.015379550000000002,0.016771550000000003,0.018152450000000004,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,CSP_storage,0.0,0.0,0.0,0.0,0.0,1.64388E-4,9.15988E-4,0.002546868,0.004905998,0.008400888,0.013253568,0.01977338,0.03016158,0.0424903,0.06107307,0.08433728,0.108509,0.13762459999999999,0.1616608,0.17706779999999997,0.1927732,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,Gen_III,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018155,0.005834300000000001,0.01235443,0.020024160000000003,0.030992730000000003,0.04308722,0.05929881,0.07798958,0.09639903,0.11723556999999998,0.1362612,0.15121715,0.16704019000000003,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,PV,0.0,0.0,0.0,2.03199E-4,6.28941E-4,0.001142682,0.002189042,0.003586112,0.005293122,0.007307023000000001,0.009610440999999999,0.012822169999999999,0.01791781,0.0241904,0.034105289999999996,0.04677889,0.06033163,0.07699136000000001,0.09083916,0.10012480000000001,0.10981569999999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,PV_storage,0.0,0.0,0.0,1.82116E-6,5.65975E-6,1.028229E-5,1.971836E-5,3.222516E-5,4.760046E-5,6.563820000000001E-5,8.644721E-5,1.1525717000000001E-4,1.6110550000000002E-4,2.1795770000000004E-4,3.064654E-4,4.2076149999999997E-4,5.425249E-4,6.911364E-4,8.1641E-4,8.993909999999998E-4,9.87167E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,biomass (IGCC CCS),0.0,0.0,0.0,0.0,0.0,2.37277E-5,8.22012E-5,1.793653E-4,3.303177E-4,5.626843E-4,8.955098000000001E-4,0.0014664736,0.0026114010999999998,0.0043103486,0.0075898684,0.0122643897,0.0173077961,0.023575130899999998,0.029472647,0.034106204,0.039803606,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,1.84537E-4,5.27481E-4,9.684229999999999E-4,0.0014492419999999999,0.002015706,0.0026014230000000003,0.0031699439999999996,0.0038040360000000002,0.004212601,0.0040149127,0.0030808953,0.0018258247,4.98533E-4,1.29223546E-4,4.21122121E-5,9.746625099999999E-6,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,biomass (conv CCS),0.0,0.0,0.0,0.0,0.0,5.36101E-5,1.852197E-4,4.088218E-4,7.702997E-4,0.0013340983,0.0021248530000000003,0.0035471599,0.0065338822000000005,0.0112382284,0.02199885,0.0392760578,0.05777777889999999,0.082266469,0.10457249399999999,0.121286294,0.142750366,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,biomass (conv),9.86411E-4,0.00181081,0.00179639,0.00236758,0.003142278,0.003640464,0.0048215639999999995,0.006047327999999999,0.00707736,0.008143064,0.008866214,0.009268085,0.009553022000000001,0.0091641269,0.007039792000000001,0.003991579,0.0017507627,3.6712798E-4,8.4412398E-5,2.5368382100000005E-5,5.447850132000001E-6,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,coal (IGCC CCS),0.0,0.0,0.0,0.0,0.0,2.98849E-5,1.1385840000000001E-4,2.6386949999999997E-4,5.180823E-4,9.376203E-4,0.0015709679000000002,0.0026937608,0.0049608367,0.0081637447,0.013518401499999999,0.020408258000000002,0.0274275423,0.0354571269,0.042762045,0.048205325,0.054473859000000006,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,coal (IGCC),0.0,0.0,0.0,0.0,0.0,7.16343E-4,0.002109977,0.003880885,0.005646008,0.007456679,0.009199725,0.010469173,0.011423853000000001,0.011559498,0.009030517,0.005438508000000001,0.0028679049,6.759821899999999E-4,1.8531385400000002E-4,6.12291607E-5,1.361687722E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,coal (conv pul CCS),0.0,0.0,0.0,0.0,0.0,7.72577E-5,2.791803E-4,6.1711E-4,0.0011556559,0.001987416,0.0031753171999999996,0.005182215699999999,0.0090655037,0.0144427624,0.0231523343,0.0341575498,0.04517323870000001,0.057585633000000004,0.06878872,0.07699090900000001,0.08634065800000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,coal (conv pul),0.0133489,0.00888839,0.0135144,0.025373,0.03404092,0.03947928,0.047737470000000004,0.05591672,0.06155874,0.06589976,0.0691442,0.06909433,0.066713709,0.060719005,0.039312401999999996,0.017716048999999998,0.0076596792,0.0015762174100000003,3.8647146699999997E-4,1.1334645940000002E-4,2.2614785411999998E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,gas (CC CCS),0.0,0.0,0.0,0.0,0.0,0.00731862,0.0222395,0.04163848,0.06276835,0.08655768999999999,0.11187565,0.14255615,0.18921324,0.24386132,0.31888489999999997,0.4068128,0.49072950000000004,0.58888,0.6739459,0.7314499,0.796237,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,gas (CC),0.00176041,0.0144738,0.0156616,0.0329787,0.0499337,0.0594874,0.0764549,0.09756677,0.11818637,0.14057091,0.16437029,0.18549424999999997,0.19068553000000002,0.19140879,0.18582119999999996,0.16314304000000002,0.13133957,0.07878618000000001,0.040001093999999994,0.018881719300000002,0.0059350804999999986,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,gas (steam/CT),0.014436,0.0121625,0.0260878,0.036833500000000005,0.045836600000000005,0.0498796,0.05489998,0.05778144,0.057291329999999994,0.055424629999999996,0.05277077,0.04770101,0.03358441,0.02271186,0.013423007999999998,0.006789408,0.0032357487,9.785091999999999E-4,3.1638919E-4,1.1210689E-4,2.87063826E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,geothermal,0.0,0.0,0.0,9.54453E-4,0.002730792,0.00502835,0.009623735,0.015369145,0.021355871,0.02708326,0.032550739999999995,0.03846616,0.04510566,0.051174910000000004,0.05884906,0.058849059999999995,0.05884892,0.058849040000000005,0.05884901,0.058848979999999995,0.05884895,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,hydro,0.0989892,0.143291,0.145444,0.15207,0.158696,0.165322,0.171948,0.178574,0.190273,0.201972,0.213671,0.22537,0.237068,0.248767,0.260466,0.272165,0.283864,0.295563,0.307262,0.318961,0.318961,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,hydrogen cogen,0.0,0.0,0.0,0.0,3.13496E-5,6.72434E-5,1.15899E-4,1.82598E-4,2.84759E-4,4.37971E-4,6.45761E-4,8.96157E-4,0.00127987,0.00180738,0.00281166,0.00441645,0.00612531,0.0095444,0.0113755,0.0135182,0.0142873,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,refined liquids (CC CCS),0.0,0.0,0.0,0.0,0.0,0.0016747,0.003650633,0.005269046,0.0068355180000000005,0.008834834,0.011057606000000001,0.014403051,0.020115545,0.025783797,0.035037854,0.04499732000000001,0.04718198,0.06222166,0.06428015,0.06285854,0.06577954,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,refined liquids (CC),0.0,0.0,0.0,0.00115986,0.002024034,0.001874615,0.00289616,0.003989664,0.004952168,0.006202801,0.007488432,0.008263939000000001,0.009324624,0.009035696999999999,0.007374944999999999,0.005258433,0.003076611,0.0014698045,5.853293999999999E-4,2.4825287E-4,8.5333697E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,refined liquids (steam/CT),0.00136439,4.10394E-4,0.00180719,0.003041479,0.0038056770000000004,0.0036644340000000003,0.003822287999999999,0.003761217,0.0036897689999999994,0.003596856,0.0034887094,0.0032520987000000004,0.0022052307,0.0013930866,9.271867E-4,5.507062E-4,2.787515E-4,1.2800959E-4,4.9286518999999995E-5,2.0599321999999998E-5,6.832179700000001E-6,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,rooftop_pv,0.0,0.0,0.0,1.79981E-5,7.49609E-5,2.20696E-4,4.45637E-4,8.09557E-4,0.00151853,0.00262675,0.0043009,0.00727815,0.0113676,0.0161092,0.0219649,0.0269831,0.0329645,0.0385383,0.0438188,0.0500929,0.0550812,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,wind,0.0,1.764E-4,1.404E-4,6.23091E-4,0.001458022,0.002557802,0.0049331919999999994,0.008245882,0.012016642000000001,0.016439941,0.02149129,0.02780422,0.03671913,0.04650384,0.06062448,0.07708669,0.09302861000000001,0.11096489999999999,0.1235839,0.130116,0.1361279,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,wind_storage,0.0,0.0,0.0,2.57136E-6,7.588969999999999E-6,1.495337E-5,3.292587E-5,6.108317E-5,9.761837E-5,1.4473601E-4,2.041623E-4,2.845026E-4,4.1067709999999995E-4,5.620477999999999E-4,7.934906E-4,0.0010849786,0.0013897447,0.001756937,0.0020586700000000003,0.0022527640000000004,0.002452668,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,CSP,0.0,0.0,0.0,6.10928E-5,1.938998E-4,4.123328E-4,8.098908E-4,0.0013370708,0.0020815748,0.0029271740000000003,0.003820807,0.004984324,0.0064499959999999995,0.008140666,0.013282392,0.018657,0.02199874,0.02372951,0.024019299999999997,0.023598109999999995,0.020823119999999997,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,CSP_storage,0.0,0.0,0.0,0.0,0.0,7.26142E-4,0.0031758719999999997,0.007770602,0.014637832,0.023572622,0.034355322,0.04801638,0.06479835,0.08313582,0.13755478999999998,0.1957249,0.2428511,0.3007476,0.3442022,0.3782714999999999,0.40421179999999995,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,Gen_III,0.0,0.0,0.0,0.0614416,0.1200354,0.1850524,0.2742311,0.3703157,0.4742867,0.5773916,0.6758662,0.78704,0.9148118000000001,1.0439105,1.2725741,1.4322891999999998,1.5407110999999998,1.6542187999999998,1.7046045,1.7251495,1.7879051,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,Gen_II_LWR,0.268826,0.348192,0.3271,0.302287,0.288109,0.267429,0.239129,0.203606,0.16355,0.123494,0.0879707,0.0596713,0.0389912,0.0248132,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,PV,0.0,3.60007E-6,0.00240838,0.003348676,0.004845046,0.006757226000000001,0.009630956000000001,0.012947506000000001,0.014726066,0.018561789999999998,0.02217515,0.02701717,0.03298247,0.038182709999999995,0.036014159999999996,0.03293504,0.02913016,0.023818870000000002,0.0161151,0.008555125,0.007863094999999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,PV_storage,0.0,0.0,0.0,8.42687E-6,2.191757E-5,3.912187E-5,6.503547E-5,9.472377E-5,1.3243357E-4,1.6678309999999997E-4,1.994365E-4,2.4286280000000002E-4,2.973651E-4,3.636771E-4,5.821133000000001E-4,8.227938999999999E-4,0.0010227717999999998,0.0012718351999999999,0.0014625253000000002,0.001615664,0.001743873,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,biomass (IGCC CCS),0.0,0.0,0.0,0.0,0.0,1.39662E-4,4.03769E-4,8.107069999999999E-4,0.001491311,0.00244405,0.003674549,0.005792220000000001,0.009239668,0.013869416999999998,0.025565248999999998,0.039502821,0.050824645,0.063871543,0.073700924,0.08112723599999999,0.09167355399999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,0.00120996,0.00306474,0.00529867,0.00796547,0.01075338,0.013327639999999998,0.015791582,0.01787571,0.019132439,0.019032695000000002,0.015488031000000001,0.009700214,0.0028746307000000002,7.6182684E-4,2.42815787E-4,5.669050289999999E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,biomass (conv CCS),0.0,0.0,0.0,0.0,0.0,3.03496E-4,8.63218E-4,0.001761833,0.003324309,0.005534468,0.008340450999999999,0.013417344999999999,0.022011574,0.033940825,0.067432092,0.10851640600000001,0.139032174,0.17259762,0.19443683,0.20773176000000002,0.22482314,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,biomass (conv),1.65607E-4,0.009839,0.0341529,0.03518969,0.039909780000000006,0.04262701,0.04717158,0.051193180000000005,0.05463728,0.05706196000000001,0.05738264,0.05641585,0.05372624,0.049098249999999996,0.037456130000000004,0.022229480000000006,0.009975969000000001,0.0021714978,4.982138400000001E-4,1.4435482200000002E-4,3.051616878E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,biomass cogen,8.85281E-4,0.00496363,0.00829689,0.00836835,0.0129075,0.0160478,0.0180185,0.0195256,0.0214173,0.0224761,0.0216243,0.0209701,0.0189947,0.0166749,0.0130408,0.00885354,0.00545343,0.00241848,0.00116812,6.48269E-4,3.0692E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,coal (IGCC CCS),0.0,0.0,0.0,0.0,0.0,4.41151E-4,0.0013476500000000001,0.002813451,0.005479924000000001,0.009489266,0.014919213,0.024621151,0.040310781000000004,0.059778794,0.10067093799999999,0.142020127,0.171684319,0.200114491,0.21751874,0.22584394,0.23169474000000004,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.012553,0.0317729,0.05377,0.0771722,0.0987791,0.11719919999999999,0.1306958,0.13843650000000002,0.13830893,0.11296500999999998,0.07259783,0.03983883,0.009795295499999997,0.0026741030400000004,8.43833893E-4,1.8143940430000004E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,coal (conv pul CCS),0.0,0.0,0.0,0.0,0.0,0.00110341,0.00319379,0.006376379999999999,0.0118468,0.01957581,0.02951786,0.04652009,0.07281931,0.10449868,0.16776433000000002,0.2290737,0.27111769,0.30899433,0.32963439,0.33595995,0.3350714700000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,coal (conv pul),0.859385,0.892792,0.885689,1.014084,1.112831,1.1672509999999998,1.220875,1.24479,1.2339710000000002,1.1979043,1.1518637999999999,1.0870700000000002,1.0049884000000002,0.8936862000000001,0.57638703,0.2683886300000001,0.116867619,0.0241726064,0.00579047396,0.0016039593739999999,3.023871571E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,coal cogen,0.0571659,0.0509867,0.0372456,0.0358306,0.03243,0.0352855,0.0315429,0.0275329,0.0217051,0.0166635,0.0128565,0.00777981,0.00479029,0.00307922,0.00143962,7.76852E-4,4.69838E-4,1.98462E-4,1.00141E-4,5.6903E-5,2.6976E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,gas (CC CCS),0.0,0.0,0.0,0.0,0.0,0.0127136,0.0318597,0.0537414,0.0782696,0.10234529999999999,0.12460560000000001,0.15078360000000002,0.18214809999999998,0.2146018,0.26473990000000003,0.3100007,0.33753740000000004,0.3682373,0.38556,0.39457149999999996,0.4113255,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,gas (CC),0.0,0.0,0.0,0.00642285,0.0155307,0.02332468,0.03732479,0.056165759999999995,0.07840816,0.10139666,0.12364349000000001,0.14370523999999998,0.15501583999999996,0.15894824999999999,0.15948430000000002,0.14372420000000002,0.11829695000000001,0.07317104,0.038448262,0.018297294000000002,0.0058887767999999995,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,gas (steam/CT),0.140306,0.12755,0.123565,0.1379088,0.1503438,0.15070609999999998,0.14907256,0.14175074999999998,0.12922081,0.1138764,0.09835526,0.08137327000000001,0.051701699999999996,0.031159735000000008,0.012790349,0.006322964,0.0030302255999999994,9.453464E-4,3.0825119999999996E-4,1.0861148100000001E-4,2.88948439E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,gas cogen,0.0112803,0.0180645,0.0206726,0.0203524,0.0263656,0.0306376,0.0310451,0.0303254,0.0292039,0.0269358,0.0244423,0.0210026,0.0172557,0.0138176,0.00968653,0.00707679,0.00540569,0.00323803,0.00206583,0.0013588,7.48554E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,geothermal,0.0,0.0,0.0,0.00528655,0.013252549999999998,0.023123829999999998,0.035865,0.04819082,0.05723691,0.05723699,0.05723705999999999,0.05723694,0.05723698,0.05723695,0.05723696,0.057237020000000007,0.057237039999999996,0.05723703000000001,0.05723695000000001,0.05723698,0.05723701,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,hydro,0.092826,0.14841,0.159804,0.159292,0.158992,0.158692,0.158392,0.158092,0.163653,0.169214,0.174776,0.180337,0.185898,0.191459,0.19702,0.202581,0.208143,0.213704,0.219265,0.224826,0.224826,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,hydrogen cogen,0.0,0.0,0.0,0.0,6.68833E-5,1.26141E-4,1.98389E-4,2.83892E-4,3.97533E-4,5.44406E-4,7.14024E-4,8.81412E-4,0.00109883,0.00134831,0.00169672,0.00204814,0.00218937,0.00246296,0.00257648,0.0027677,0.00274336,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,refined liquids (CC CCS),0.0,0.0,0.0,0.0,0.0,0.00789014,0.01403232,0.01909549,0.02568231,0.031420290000000003,0.03645638,0.04381865,0.05139765,0.05697862,0.06941512999999999,0.07161467,0.050793920000000006,0.048512,0.0352547,0.025557040000000003,0.02136429,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,refined liquids (CC),0.0,0.0,0.0,0.00524199,0.0097287,0.0106014,0.01456828,0.018494700000000003,0.02288014,0.02651832,0.02911581,0.029802040000000002,0.027827869999999998,0.023875594,0.019719129000000002,0.012771985,0.005879141,0.0026483996000000003,9.901595000000002E-4,4.0705635000000005E-4,1.47840575E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,refined liquids (steam/CT),0.0841881,0.0370123,0.0384476,0.0375724,0.04237818,0.04113363,0.0390111,0.035521449999999996,0.032111289999999994,0.028232849,0.024533619999999996,0.020644581999999998,0.012442040000000001,0.006895681,0.0032448649999999996,0.0017028013999999998,6.741941E-4,2.6267253E-4,8.961350999999999E-5,3.380692E-5,1.0552523E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,refined liquids cogen,0.0149473,0.012935,0.0093774,0.0105612,0.0124846,0.0131754,0.0127974,0.0122812,0.0123691,0.012184,0.011893,0.0113003,0.0104816,0.00941855,0.00766554,0.0061109,0.00405267,0.00289938,0.00192344,0.00132672,8.09043E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,rooftop_pv,0.0,0.0,0.0,2.11187E-5,9.94412E-5,2.69388E-4,5.4149E-4,9.63965E-4,0.00171332,0.00272369,0.00402368,0.00603234,0.00818893,0.00910601,0.0021025,0.00204727,0.00217898,0.00228742,0.00236417,0.00239956,0.00239661,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,wind,0.0,0.00100802,0.0147851,0.02203066,0.03382336,0.05223216,0.08470306,0.12709716,0.16742495999999998,0.22390909999999997,0.2815773,0.35139529999999997,0.4316924,0.5141013,0.6924104,0.8689336999999999,0.9953008,1.1303,1.204134,1.246539,1.269082,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,wind_storage,0.0,0.0,0.0,2.9019E-5,7.804280000000001E-5,1.5892330000000002E-4,3.0955330000000006E-4,5.186563E-4,8.035283000000001E-4,0.0011195163,0.0014643135,0.001908148,0.002454675,0.0030476929999999998,0.004365641,0.005756364,0.006823433,0.008028968000000001,0.008808881000000001,0.00934499,0.00981391,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,CSP,0.0,0.0,0.00249109,0.003199166,0.004429986,0.006096046000000001,0.009658506,0.014609206,0.021500316,0.03249054,0.044912219999999996,0.06042616,0.07545679999999999,0.0840336,0.0868141,0.08440754,0.07913740999999999,0.07121336,0.06157076,0.056084459999999996,0.05521726,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,CSP_storage,0.0,0.0,0.0,0.0,0.0,0.00553845,0.02748995,0.07063825,0.15717805,0.27246705000000004,0.41611905000000005,0.5938176,0.8069841,1.0262638000000002,1.389711,1.720124,2.0129040000000002,2.342697,2.62582,2.847448,3.1153459999999997,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,Gen_III,0.0,0.0,0.0,0.29403,0.562306,0.824389,1.261497,1.762279,2.5696190000000003,3.265172,3.9453449999999997,4.681690999999999,5.484844,6.246463,7.360394000000001,8.047258000000001,8.645357,9.307455000000001,9.729627,9.973019999999998,10.188448,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,Gen_II_LWR,2.59272,3.24344,2.97257,2.74707,2.61822,2.43029,2.17312,1.8503,1.48628,1.12226,0.799444,0.54227,0.354337,0.225492,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,PV,4.32005E-5,0.00524505,0.0781778,0.09135030000000001,0.10811230000000001,0.1257407,0.1568629,0.1940694,0.1779318,0.1814716,0.17109171,0.16032929,0.13703872,0.10784004999999999,0.05822455,0.052720249999999996,0.05656724,0.060652359999999995,0.06292352999999999,0.06363215,0.06255735,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,PV_storage,0.0,0.0,0.0,1.18053E-4,2.69177E-4,4.27787E-4,7.08459E-4,0.001045449,0.001619852,0.00216897,0.002760919,0.003535691,0.004443359,0.005434269,0.007133156,0.008741645,0.010240652000000001,0.011964100000000002,0.01348487,0.01471426,0.01626453,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,biomass (IGCC CCS),0.0,0.0,0.0,0.0,0.0,6.90155E-4,0.002397254,0.005189389,0.011522761999999999,0.018537973,0.027091722,0.040830527,0.060741548000000006,0.084760257,0.135704442,0.191446703,0.243780894,0.30426706000000003,0.35569825,0.39471209,0.44393971000000004,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,0.00631042,0.01840205,0.03400623,0.059775629999999996,0.08062872,0.09901449000000001,0.1153253,0.12864900999999998,0.13556109,0.12894395000000003,0.09872025,0.058314635000000004,0.01657686,0.0043734735,0.00137990589,3.1824305700000005E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,biomass (conv CCS),0.0,0.0,0.0,0.0,0.0,0.00147117,0.00514198,0.01128521,0.02565995,0.041567839999999995,0.06055594,0.09227532,0.13829111,0.19369178,0.32084531000000005,0.45933142,0.57533594,0.6997645399999999,0.78341836,0.8293144,0.87397611,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,biomass (conv),0.028465,0.159297,0.259185,0.1719638,0.20848260000000002,0.2282852,0.2616683,0.2940155,0.3410445,0.36216419999999994,0.3658399,0.3550827,0.33497093000000006,0.30224195,0.22636253999999997,0.12802768,0.05619914,0.012294933999999999,0.0028447049,8.20062107E-4,1.674797788E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,biomass cogen,0.0378044,0.076501,0.1013,0.107346,0.138935,0.162556,0.174053,0.181624,0.184152,0.183689,0.170007,0.155686,0.138638,0.121582,0.0945696,0.065491,0.0414984,0.0190659,0.00941095,0.00530144,0.00256943,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,coal (IGCC CCS),0.0,0.0,0.0,0.0,0.0,4.80606E-4,0.0018078360000000002,0.0041333559999999995,0.009922891,0.016887276,0.025806502000000002,0.040628587,0.061760602,0.085357848,0.127981406,0.16810150699999998,0.201542665,0.23219412,0.25205925999999995,0.26116918,0.2612322,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.0148932,0.043313500000000005,0.07889070000000001,0.13170289999999998,0.1716536,0.2048912,0.22862680000000002,0.24155080000000004,0.2386961,0.18269436000000003,0.10828943,0.05629737,0.013640108999999997,0.0037400908000000004,0.0011858075900000001,2.4793278400000004E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,coal (conv pul CCS),0.0,0.0,0.0,0.0,0.0,0.00118282,0.00423839,0.00927304,0.021089669999999998,0.03440621,0.05054874,0.07603243,0.11023411,0.14685741000000002,0.20940971,0.26527290000000003,0.30887761099999994,0.34433763000000006,0.36169049,0.36371855,0.34785601,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,coal (conv pul),2.83949,2.63263,2.14461,2.248265,2.334499,2.329638,2.3363370000000003,2.2972770000000002,2.254705,2.124108,1.9790189999999999,1.8014889999999997,1.6017637,1.3639294000000002,0.795785,0.35481921000000005,0.15225544,0.032199916,0.007912726029999997,0.0022492221819999996,4.0235227869999995E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,coal cogen,0.0231679,0.0224157,0.027054,0.0310187,0.0201671,0.0200438,0.0165031,0.0134686,0.00931085,0.00664608,0.00485521,0.00276166,0.00168588,0.00109117,5.132E-4,2.81155E-4,1.72465E-4,7.40173E-5,3.7568E-5,2.14521E-5,1.03021E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,gas (CC CCS),0.0,0.0,0.0,0.0,0.0,0.0526988,0.1559789,0.2848503,0.48449169999999997,0.6398687999999999,0.7755266000000001,0.9212245,1.0722701,1.2052966999999999,1.3682951,1.475556,1.554989,1.6253039999999999,1.7282730000000002,1.813109,1.956066,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,gas (CC),0.280897,1.64617,1.12349,1.2135420000000001,1.3164580000000001,1.3395222,1.391301,1.4396847,1.5348224,1.5664645,1.5896219999999999,1.5975139999999999,1.4390189,1.2940856000000003,1.1045428000000002,0.9077743000000001,0.7151959000000001,0.4054415,0.20731000000000002,0.09603429,0.030156127000000005,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,gas (steam/CT),0.182548,0.279272,1.15728,1.052192,1.0458506,1.0074734,0.9408506,0.8393845,0.7030491,0.5537044,0.42703259999999993,0.30089323999999995,0.17473613999999998,0.10092234000000001,0.04488831,0.023563542000000003,0.012878472000000002,0.00430559,0.0015162906000000002,5.457076E-4,1.48464043E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,gas cogen,0.0770739,0.369884,0.424487,0.446306,0.453583,0.480934,0.450487,0.412194,0.353191,0.301426,0.259684,0.208888,0.168905,0.136408,0.0978572,0.0765198,0.0639984,0.0430193,0.0293512,0.0199735,0.0113413,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,geothermal,0.0116137,0.0194286,0.0201663,0.0484025,0.0871904,0.1305064,0.1966208,0.2548805,0.25492590000000004,0.254926,0.254926,0.254926,0.2549259,0.254926,0.2549265,0.254926,0.254926,0.2549256,0.254926,0.2549259,0.2549265,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,hydro,0.939621,0.95855,1.17152,1.14714,1.13525,1.12336,1.11147,1.09957,1.10415,1.10873,1.11331,1.11789,1.12247,1.12705,1.13163,1.13621,1.14078,1.14536,1.14994,1.15452,1.15452,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,hydrogen cogen,0.0,0.0,0.0,0.0,0.0166359,0.0298223,0.0449523,0.0621253,0.0810115,0.105072,0.130815,0.148411,0.171438,0.201642,0.23618,0.270881,0.290214,0.326424,0.359281,0.402291,0.40619,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,refined liquids (CC CCS),0.0,0.0,0.0,0.0,0.0,0.0176123,0.039763780000000006,0.05950684,0.09820295000000001,0.11228950000000001,0.1266608,0.14589563,0.16280865,0.17061886999999998,0.19579122999999998,0.18550155000000002,0.12005924999999999,0.11655534000000001,0.09232529,0.07292609,0.06966169,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,refined liquids (CC),0.0,0.0,0.0,0.0130271,0.02455506,0.026615979999999997,0.0397794,0.05469813,0.08164584,0.09179809,0.10034243,0.10070392,0.09580874,0.08368946,0.06763685,0.042810539999999994,0.020586489,0.009750553,0.0040438716,0.0017269107000000001,6.834751500000001E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,refined liquids (steam/CT),0.625719,0.358867,0.20094,0.1559556,0.160114,0.15136494,0.13682711,0.11876984,0.10157659000000001,0.0834017,0.06801275000000001,0.05268434000000001,0.031941520999999994,0.018759278999999997,0.009853824,0.005352609000000001,0.0021101633,8.092841999999999E-4,2.8962612000000003E-4,1.1290656999999999E-4,3.7245977999999995E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,refined liquids cogen,0.0730513,0.0956435,0.064278,0.0710412,0.0724663,0.0730478,0.0683648,0.0639813,0.0613353,0.058273,0.0550125,0.0498455,0.0453068,0.0403019,0.0319278,0.0250175,0.0160088,0.011388,0.00760507,0.00529091,0.00323419,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,rooftop_pv,0.0,0.0,0.0,2.35952E-4,8.48443E-4,0.00201273,0.00365225,0.00595945,0.00935422,0.00538172,0.00348127,0.00435323,0.00536757,0.00633305,0.00737463,0.00828031,0.00929368,0.0102709,0.0107612,0.0109278,0.0106666,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,wind,0.00280083,0.25258,0.521819,0.6152662,0.7358631999999999,0.8901821999999999,1.2094011999999998,1.6428862,1.8815352,2.47744,3.058468,3.740115,4.41873,5.010145,5.8356770000000004,6.615385,7.26913,7.912544,8.3499,8.637039999999999,8.9534,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,wind_storage,0.0,0.0,0.0,3.59542E-4,8.33669E-4,0.001463157,0.0028204470000000002,0.004770427000000001,0.008303657,0.011317215,0.014457948000000002,0.01837521,0.02267859,0.026777899999999997,0.03315564,0.039591169999999995,0.04579634,0.05316588999999999,0.05970412,0.06512183,0.07223395999999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,CSP,0.0,0.0,0.0,4.35297E-5,2.728547E-4,6.103727E-4,0.0012304677,0.0020095087,0.0031960686999999996,0.004561489,0.005868053999999999,0.007697896,0.009693410999999999,0.01179827,0.01575105,0.01941533,0.02278317,0.02722603,0.03076216,0.03357722,0.0362589,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,CSP_storage,0.0,0.0,0.0,0.0,0.0,0.00105172,0.00463331,0.01099773,0.02125663,0.03427083,0.049394230000000004,0.06949251,0.09121682,0.1128026,0.15267570000000003,0.1892415,0.222416,0.2668102,0.3029069,0.3321674,0.3612119,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,Gen_III,0.0,0.0,0.0,0.0151346,0.0433143,0.07944999999999999,0.14460879999999998,0.2271296,0.32334389999999996,0.41642429999999997,0.5022419,0.6025845,0.7051979,0.8040318000000001,0.9520497,1.0598068,1.1370948,1.2295355,1.2744118000000002,1.2862666,1.3105091999999998,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,Gen_II_LWR,0.274249,0.319511,0.32094,0.296594,0.282683,0.262392,0.234626,0.199772,0.16047,0.121168,0.0863138,0.0585475,0.0382568,0.0243458,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,PV,0.0,0.0,0.0,1.20205E-4,5.837969999999999E-4,0.001113918,0.0019181369999999999,0.0027974849999999997,0.003994755,0.00520616,0.006114398000000001,0.007484986999999999,0.008921968,0.01043436,0.01149229,0.010841496,0.009820795000000002,0.008283886,0.006344146000000001,0.004210316,0.002281384,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,PV_storage,0.0,0.0,0.0,1.07727E-6,5.25685E-6,1.002644E-5,1.727838E-5,2.514988E-5,3.593308E-5,4.678241E-5,5.4991330000000005E-5,6.728284E-5,8.02857E-5,9.48114E-5,1.241355E-4,1.522978E-4,1.792026E-4,2.1589550000000003E-4,2.4647279999999997E-4,2.719406E-4,2.986163E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,biomass (IGCC CCS),0.0,0.0,0.0,0.0,0.0,2.64329E-5,9.059359999999999E-5,1.9761349999999997E-4,4.147495E-4,7.42445E-4,0.0011883102,0.0020451758,0.0033711771,0.0051919113,0.009366037300000001,0.0138878739,0.0182832515,0.0243601002,0.02981689,0.034554931000000004,0.040887704,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,2.15921E-4,6.44617E-4,0.0012305950000000001,0.0020702059999999998,0.002997058,0.003881796,0.0048027420000000005,0.005485756,0.005839072999999999,0.0054634644,0.0039947625,0.0022428057,5.975864000000001E-4,1.545337E-4,4.947512219999999E-5,1.143137937E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,biomass (conv CCS),0.0,0.0,0.0,0.0,0.0,5.8669E-5,1.993065E-4,4.361765E-4,9.356929E-4,0.0016988658,0.0027248035,0.0048075354,0.0081876863,0.013074309699999998,0.026154405800000002,0.041758363,0.0561946865,0.076279143,0.09283091400000001,0.105823791,0.122616114,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,biomass (conv),0.0,0.0,2.62796E-4,5.65917E-4,0.001603751,0.002398073,0.004061655999999999,0.006017753,0.008331593,0.0104330959,0.0118648897,0.0127538154,0.0127006905,0.011813056099999998,0.0088876537,0.004922458,0.0020982665,4.404992400000001E-4,1.02005819E-4,3.0230647899999998E-5,6.399953890000001E-6,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,biomass cogen,0.0,1.04308E-4,0.00147812,0.00130535,0.00184926,0.00233829,0.00255267,0.00266618,0.00272632,0.00273049,0.00255357,0.00239863,0.00217895,0.00194132,0.00153306,0.00105138,6.5925E-4,3.01746E-4,1.49576E-4,8.45817E-5,4.06825E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,coal (IGCC CCS),0.0,0.0,0.0,0.0,0.0,6.44195E-5,2.0144309999999997E-4,4.074171E-4,8.181098000000001E-4,0.0014327314,0.0022555158,0.0038165268999999996,0.0061221927,0.0089845687,0.0144292067,0.0195211715,0.023959119100000002,0.029257689,0.033543508,0.036772346000000004,0.040251131,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.00166969,0.00435443,0.007398760000000001,0.01091542,0.01410183,0.01672995,0.01866518,0.01943031,0.018872844,0.013898555,0.00776435,0.0038447462,8.661509600000001E-4,2.3141252700000002E-4,7.286908679999998E-5,1.5318940430000002E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,coal (conv pul CCS),0.0,0.0,0.0,0.0,0.0,1.64034E-4,4.84268E-4,9.32512E-4,0.001777891,0.00296828,0.004484263,0.007242261999999999,0.011149032,0.015889357,0.024595624999999996,0.032546286,0.039262143,0.04698751200000001,0.053007114999999994,0.05729046300000001,0.061482142000000004,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,coal (conv pul),0.428483,0.180041,0.245558,0.2425703,0.2533605,0.2524745,0.2493205,0.23914129999999997,0.2233052,0.20332289999999997,0.18317307,0.16116762999999998,0.13860523,0.11507356999999999,0.064404244,0.028205488999999997,0.011184023200000002,0.00218436613,5.175451690000001E-4,1.4435350130000002E-4,2.6644038770000002E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,coal cogen,0.0,1.43898E-5,0.0049572,0.00405374,0.00310918,0.0034999,0.00299688,0.00245982,0.0017293,0.00124563,9.30817E-4,5.50721E-4,3.4656E-4,2.29912E-4,1.11249E-4,6.13756E-5,3.78952E-5,1.66045E-5,8.60523E-6,4.98753E-6,2.4068E-6,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,gas (CC CCS),0.0,0.0,0.0,0.0,0.0,0.00857598,0.02205974,0.03684526,0.05487558,0.07230491,0.08798017,0.10718133999999999,0.12773975999999998,0.14837525000000001,0.1744738,0.1916128,0.20274690000000004,0.21567560000000002,0.22299639999999998,0.22625150000000002,0.22794599999999998,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,gas (CC),0.0754138,0.0,0.0,0.00254813,0.00962696,0.01470445,0.024325899999999998,0.03730265,0.053843100000000005,0.07048486,0.08587183000000001,0.0998109,0.10742067,0.10676910999999999,0.10075815,0.08313508,0.061817340000000005,0.030856619999999998,0.013402734999999999,0.005557893099999999,0.00153695127,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,gas (steam/CT),0.173775,0.224147,0.177037,0.1663716,0.17376192,0.16861120999999996,0.1599437,0.14530844999999998,0.12548642000000002,0.10387137,0.08357125,0.06352966,0.041947524,0.023959193999999996,0.0071559399999999995,0.0031021606,0.0013231787,3.4813952E-4,1.0121704399999999E-4,3.2823288E-5,7.781408E-6,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,gas cogen,0.0292656,0.0203419,0.0138646,0.0120635,0.0140767,0.0169331,0.016779,0.0158432,0.0141525,0.0124796,0.0109795,0.00903008,0.00738805,0.00595663,0.00411819,0.00291108,0.00214414,0.00125301,7.97084E-4,5.29212E-4,2.96374E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,geothermal,0.0,0.0,0.0,0.00145061,0.00466325,0.00756651,0.009835960000000001,0.009836007,0.009836015,0.00983601,0.009836000000000001,0.009836000000000001,0.009835997999999999,0.009835996999999999,0.009835996,0.009836000000000001,0.009836007,0.009836003,0.009836003,0.009835996999999999,0.009836005,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,hydro,0.0388476,0.0448632,0.0479592,0.0480941,0.0483945,0.048695,0.0489954,0.0492959,0.0496296,0.0499634,0.0502971,0.0506309,0.0509646,0.0512984,0.0516321,0.0519659,0.0522996,0.0526334,0.0529671,0.0533009,0.0533009,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,hydrogen cogen,0.0,0.0,0.0,0.0,7.51942E-5,1.43469E-4,2.20878E-4,3.07438E-4,4.09863E-4,5.43815E-4,6.9909E-4,8.41203E-4,0.00104981,0.0013139,0.00176713,0.00238523,0.00270577,0.00331346,0.00338263,0.00346859,0.00324581,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,refined liquids (CC CCS),0.0,0.0,0.0,0.0,0.0,4.48151E-4,8.646039999999999E-4,0.001176991,0.001649285,0.002008655,0.002316835,0.0028414729999999997,0.003329716,0.0037575942000000005,0.004715347,0.004983855000000001,0.004083987000000001,0.004644954,0.003919342,0.003225596,0.002959106,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,refined liquids (CC),0.0,0.0,0.0,2.14723E-4,6.38281E-4,6.05049E-4,8.600305000000001E-4,0.0011037795999999998,0.0014013043,0.0016199872,0.0017626526000000002,0.0018077157,0.0016678516,0.0014036175,0.0010929415,6.545637E-4,3.305802E-4,1.5545375E-4,5.8773546E-5,2.4267047E-5,8.394025200000001E-6,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,refined liquids (steam/CT),0.255453,0.00542502,0.0047411,0.0045617669999999996,0.0047726489999999995,0.004302098,0.003982317,0.0034897829999999998,0.0029511238000000006,0.0024029523,0.0019167704,0.0014635668000000004,9.444820000000002E-4,5.181596E-4,1.6795681000000002E-4,8.724778E-5,3.7175220000000004E-5,1.4745858000000002E-5,5.013473800000001E-6,1.8862145999999996E-6,5.6788352E-7,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,refined liquids cogen,2.52062E-4,0.0,3.27453E-4,4.04836E-4,3.55435E-4,3.02278E-4,2.93717E-4,2.7436E-4,2.64195E-4,2.52589E-4,2.41697E-4,2.24956E-4,2.09124E-4,1.89605E-4,1.5542E-4,1.2612E-4,8.88602E-5,6.51561E-5,4.35262E-5,3.01044E-5,1.84876E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,rooftop_pv,0.0,0.0,0.0,7.23356E-6,2.92705E-5,8.00015E-5,1.55929E-4,2.66579E-4,4.37383E-4,6.61982E-4,9.51547E-4,0.00137569,0.00188123,0.00237134,0.00197048,0.00101523,7.356E-4,6.97886E-4,7.23101E-4,7.46609E-4,7.69776E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,wind,0.0,1.40396E-4,1.87196E-4,0.001297766,0.005616466,0.011841526,0.023949626,0.040113726,0.06312253000000001,0.08893496,0.11367576,0.14661210000000002,0.18007230000000002,0.2130165,0.2703702,0.3170715,0.3577113,0.4108999,0.45073019999999997,0.4807241,0.5086923999999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,wind_storage,0.0,0.0,0.0,4.17794E-6,2.149014E-5,4.785024E-5,1.0158914E-4,1.7693744E-4,2.8999344E-4,4.2145349999999997E-4,5.553893E-4,7.401072E-4,9.376282999999999E-4,0.00113951,0.0014970040000000001,0.0018006580000000001,0.002071449,0.002433015,0.0027195069999999995,0.0029448820000000002,0.003173429,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,CSP,0.0,0.0,0.0,1.40484E-5,6.10186E-5,1.661656E-4,3.551476E-4,6.254705999999999E-4,9.944335999999998E-4,0.0014617952,0.002022463,0.0028239650000000003,0.004152183,0.00576858,0.008688946999999999,0.012299147,0.016522069,0.02253109,0.02729504,0.03100679,0.03504453,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,CSP_storage,0.0,0.0,0.0,0.0,0.0,3.49536E-4,0.001514016,0.003870026,0.007273236,0.012017096,0.018400136,0.02748934,0.04198466,0.05913645,0.08996544,0.12791577999999998,0.17243104,0.2367093,0.2885542,0.3294828,0.37477590000000005,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,Gen_III,0.0,0.0,0.0,0.0234542,0.0498479,0.08264830000000001,0.12181920000000002,0.1633516,0.20804050000000002,0.2570929,0.3111342,0.3780779,0.4729621,0.5764485,0.7369854,0.8733557,0.9904044,1.1257063,1.2257272000000001,1.3005276,1.4038355,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,PV,0.0,0.0,0.0,6.31037E-4,0.002175557,0.004861877,0.008848597,0.013811786999999999,0.019867436999999998,0.02663703,0.03392049,0.04417107,0.06141695,0.08280736000000001,0.12238301,0.14749338,0.1537284,0.1512879,0.13861147999999998,0.12047872999999999,0.08940872999999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,PV_storage,0.0,0.0,0.0,5.65566E-6,1.958146E-5,4.375246E-5,7.970476E-5,1.2413616E-4,1.7868056E-4,2.393136E-4,3.0511499999999995E-4,3.9704E-4,5.522047E-4,7.461273E-4,0.0011091709,0.0015692502,0.002120911,0.002926637,0.003587614,0.004120235999999999,0.004725418,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,biomass (IGCC CCS),0.0,0.0,0.0,0.0,0.0,2.99157E-5,8.89655E-5,1.980076E-4,3.9413619999999997E-4,7.114618999999999E-4,0.0011956786000000001,0.002174419,0.0042540338,0.0074579233,0.0148450524,0.024214363500000002,0.0335426294,0.0457261176,0.055865686,0.063938524,0.074311925,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,2.62654E-4,6.69923E-4,0.0012505440000000001,0.0019855579999999997,0.0028859920000000004,0.003875252,0.005017074999999999,0.00639286,0.007446374,0.00776956,0.0065411975,0.0043446096,0.0013949813,4.0030196E-4,1.38534187E-4,3.489964750000001E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,biomass (conv CCS),0.0,0.0,0.0,0.0,0.0,6.46998E-5,1.856878E-4,4.20454E-4,8.674981E-4,0.0016055122,0.0027146723,0.0050760088,0.010300073199999999,0.0187005175,0.0403733004,0.0687576713,0.0945334685,0.12647084,0.14944735199999998,0.16465030700000002,0.182297399,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,biomass (conv),0.0,3.23995E-4,5.00385E-4,6.82732E-4,0.001459006,0.002300543,0.003785442,0.005633321,0.007589001,0.009687161,0.011440679300000001,0.012971026399999998,0.0143699645,0.014561367000000002,0.0123737653,0.007992649999999999,0.003988428699999999,9.488908999999998E-4,2.3702910999999998E-4,7.5430114E-5,1.7461841399999998E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,biomass cogen,0.0,2.1581E-5,8.991E-5,1.16999E-4,1.76933E-4,2.30623E-4,2.82282E-4,3.36323E-4,4.09932E-4,4.80794E-4,5.14965E-4,5.58186E-4,5.64122E-4,5.42488E-4,4.72549E-4,3.57954E-4,2.4448E-4,1.1949E-4,6.23444E-5,3.68616E-5,1.84783E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,coal (IGCC CCS),0.0,0.0,0.0,0.0,0.0,2.6304E-4,7.52992E-4,0.001550557,0.002910048,0.005052032,0.008231937,0.014482216,0.026962257,0.043988546,0.075260928,0.107672421,0.135241692,0.164407261,0.184160439,0.19513492000000002,0.20307841,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.00764449,0.0180175,0.02991945,0.0416851,0.05296205,0.06338722,0.07151318,0.07756165000000001,0.07826691999999999,0.062117439999999996,0.039548219999999995,0.022435247,0.0057667191,0.00166663811,5.61476667E-4,1.2973771719999999E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,coal (conv pul CCS),0.0,0.0,0.0,0.0,0.0,6.5528E-4,0.001785109,0.0035177719999999997,0.0063102950000000005,0.010447725000000001,0.016286099,0.027276648,0.048277963,0.07619756800000001,0.12501493,0.173511991,0.21295882500000002,0.2525253,0.27727277,0.28841841,0.29247290000000004,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,coal (conv pul),0.231522,0.307824,0.36616,0.42639459999999996,0.48250950000000004,0.5260903,0.5640738,0.5887333,0.5912428,0.5825142,0.5698108,0.5405816999999999,0.502004,0.44515769999999993,0.28345414,0.13564599,0.061967311,0.013312160999999998,0.0033843708300000004,0.001003967435,2.0617193159999994E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,coal cogen,0.00156515,0.00241029,0.0029088,0.00437919,0.00416203,0.00483852,0.00508711,0.00527592,0.00512357,0.00480621,0.00438445,0.00318938,0.00228749,0.00164395,8.67711E-4,5.18506E-4,3.42251E-4,1.55161E-4,8.2998E-5,4.96413E-5,2.456E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,gas (CC CCS),0.0,0.0,0.0,0.0,0.0,0.00455551,0.011837819999999999,0.02196072,0.035394220000000004,0.05273182,0.07418464,0.10795245,0.16551196,0.23655004000000002,0.35712947,0.48161030000000005,0.5879736,0.7108221,0.7985232,0.8553751,0.9142599,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,gas (CC),0.0370173,0.233934,0.247603,0.3100157,0.38134090000000004,0.4557531,0.5336938,0.6033278999999999,0.6542582,0.6933001,0.7257904999999999,0.7526352999999999,0.70178,0.6421624,0.5460772999999999,0.44077829999999996,0.3351372,0.2007969,0.1057092,0.051716240000000004,0.0171619387,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,gas (steam/CT),0.0103584,0.024693,0.1046,0.09284821,0.09167478,0.08947434,0.08485129999999999,0.07769442,0.06812063,0.05794298,0.04852843,0.039601670000000005,0.03007862,0.022188080000000002,0.010878371000000001,0.006576191999999999,0.0038463589999999997,0.001449935,5.579270699999999E-4,2.2877936999999998E-4,6.7123292E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,gas cogen,7.66171E-4,0.0136033,0.0129492,0.0177869,0.0232712,0.029108,0.0333686,0.0372517,0.0417517,0.0448122,0.0461676,0.0449347,0.0413317,0.0360463,0.0274462,0.0214184,0.0172525,0.010712,0.00713662,0.0049279,0.00283605,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,geothermal,2.87998E-4,3.38395E-4,0.00240475,0.0053888700000000005,0.01085289,0.0191405,0.02965656,0.040808769999999994,0.0497867,0.05849805,0.06543027000000001,0.0726676,0.0800799,0.08008009999999999,0.08008008,0.08007995,0.08008003,0.08008001000000001,0.08007990000000001,0.08008,0.08007994,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,hydro,0.154156,0.263261,0.335171,0.322883,0.311124,0.299366,0.287607,0.275848,0.291875,0.307902,0.323929,0.339956,0.355983,0.37201,0.388037,0.404064,0.420091,0.436118,0.452145,0.468172,0.468172,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,hydrogen cogen,0.0,0.0,0.0,0.0,4.32079E-5,8.70951E-5,1.49511E-4,2.34663E-4,3.6419E-4,5.53166E-4,7.95231E-4,0.00107526,0.00145799,0.00192869,0.00263255,0.00345808,0.00399617,0.00478018,0.00527303,0.00600529,0.00630101,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,refined liquids (CC CCS),0.0,0.0,0.0,0.0,0.0,0.00197735,0.002980287,0.003864497,0.004963108,0.006288959,0.007823972,0.010516138000000001,0.014621827,0.018407856,0.025507269,0.029495900000000002,0.024302993000000002,0.026973525999999998,0.021928926,0.017384963,0.015385667,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,refined liquids (CC),0.0,0.0,0.0,9.07584E-4,0.0017500649999999999,0.001754355,0.00247729,0.003275204,0.0040973699999999995,0.005040823,0.005990944,0.00676965,0.0076071490000000005,0.007355412,0.006604212,0.004680139,0.0025534060000000003,0.0013110517,5.411090999999999E-4,2.4485506E-4,9.5138225E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,refined liquids (steam/CT),0.0262079,0.0251024,0.00900702,0.0060104500000000005,0.006739742,0.0063013470000000005,0.0059091610000000004,0.005385120000000001,0.005000462000000001,0.004543248,0.00407332,0.0035353320000000004,0.0024083011,0.0014713977000000002,7.908484000000001E-4,4.678108999999999E-4,2.173846E-4,9.983598000000001E-5,3.9527556E-5,1.7138745999999998E-5,6.011785999999999E-6,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,refined liquids cogen,0.0107523,0.00468467,0.00174882,0.00184779,0.00227287,0.0025995,0.00277644,0.00293121,0.00326582,0.00354983,0.0037724,0.00391577,0.00394244,0.00378527,0.00331695,0.00284043,0.00201674,0.00151738,0.00105178,7.56026E-4,4.77577E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,rooftop_pv,0.0,0.0,0.0,4.77475E-5,2.03437E-4,5.42612E-4,0.00114103,0.0021714,0.00422171,0.00744571,0.0121254,0.0198978,0.029691,0.0403753,0.053374,0.0509319,0.0372646,0.0287396,0.0317703,0.0385837,0.0533582,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,wind,0.0,2.48396E-4,0.0110014,0.01518622,0.02233629,0.03429259,0.05231859,0.07529669,0.09179179000000001,0.12021267000000001,0.1512123,0.1915576,0.2538697,0.3245079,0.4473444,0.5713796999999999,0.682089,0.8121474,0.8910842999999999,0.9388529999999998,0.9790639999999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,wind_storage,0.0,0.0,0.0,1.77962E-5,4.95423E-5,1.061943E-4,1.96816E-4,3.2024099999999997E-4,4.74472E-4,6.490478E-4,8.544707E-4,0.0011418336999999999,0.001611775,0.002181185,0.003233114,0.004378892,0.005474723,0.0068539280000000005,0.007845585,0.00855493,0.00927579,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,Gen_III,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0148655,0.0446953,0.08251510000000001,0.1320763,0.1904334,0.2365389,0.2783114,0.3127079,0.3424092,0.37524250000000003,0.40713069999999996,0.42857439999999997,0.4362151000000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,Gen_II_LWR,0.0850906,0.0840297,0.094822,0.0876289,0.0835189,0.077524,0.0693204,0.0590228,0.0474109,0.0357991,0.0255015,0.0172979,0.011303,0.00719298,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,PV,3.60004E-6,6.84017E-5,2.98805E-4,0.001393555,0.002475415,0.003550845,0.004154726,0.004725757,0.004804635,0.004145688000000001,0.0034790040000000004,0.003005631,0.0031720850000000003,0.003254905,0.003498568,0.0035993690000000003,0.003672501,0.0036204570000000005,0.003388421,0.003101217,0.002849595,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,PV_storage,0.0,0.0,0.0,9.81046E-6,1.956355E-5,4.673165E-5,1.1072855E-4,1.8020195E-4,2.3111145E-4,2.8470319E-4,3.400365E-4,4.145784E-4,4.921544999999999E-4,5.521941E-4,6.361636E-4,6.998854E-4,7.590429999999999E-4,8.136250000000001E-4,8.42268E-4,8.39607E-4,8.54325E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,biomass (IGCC CCS),0.0,0.0,0.0,0.0,0.0,1.79862E-4,4.4627100000000004E-4,7.63829E-4,0.001063263,0.0015162809999999997,0.002054784,0.0031803580000000003,0.005124144,0.0072602429999999996,0.01017124,0.013207862,0.016111986,0.019519277999999998,0.022820303,0.024838512000000004,0.026998477,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,0.00147425,0.0032335999999999997,0.00493675,0.00596667,0.007141389999999999,0.008003109999999999,0.008833319999999999,0.009383293999999999,0.009111811000000001,0.007493673000000001,0.004930535999999999,0.0024545615,5.2949604E-4,1.12491819E-4,3.0358493399999998E-5,6.564322549999999E-6,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,biomass (conv CCS),0.0,0.0,0.0,0.0,0.0,3.9872E-4,9.6946E-4,0.001658591,0.002345416,0.0034098799999999997,0.0046469300000000005,0.007395417999999999,0.012350344999999999,0.018072161,0.027155013999999998,0.037406339,0.046644700000000004,0.057574427000000004,0.067166481,0.07227025399999999,0.07716007700000002,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,biomass (conv),0.00161282,0.00203765,0.00243364,0.010285459,0.015472504,0.021040432,0.027098472,0.032009942,0.033486462,0.034796898,0.03374686,0.0307928315,0.026922965299999997,0.021960123300000002,0.014366482,0.00678074,0.0025220498,4.3339737999999997E-4,8.02278838E-5,1.9289850860000008E-5,3.831670635999999E-6,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,biomass cogen,0.00186413,0.00639876,0.00725394,0.00678189,0.00826588,0.00836846,0.00797074,0.00772193,0.00751556,0.00705514,0.00619816,0.00519062,0.00432656,0.00362023,0.00275428,0.00185725,0.00114182,4.90495E-4,2.29341E-4,1.25382E-4,6.00956E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,coal (IGCC CCS),0.0,0.0,0.0,0.0,0.0,1.27648E-5,3.48181E-5,6.44518E-5,9.775639999999999E-5,1.5753139999999998E-4,2.4224849999999998E-4,4.48713E-4,8.522975E-4,0.0013235838,0.0019440987999999998,0.0025902345,0.0032276147,0.0039917749,0.0047667394,0.0052293386,0.0056076934000000005,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,coal (IGCC),0.0,0.0,0.0,0.0,0.0,3.3265E-4,7.62928E-4,0.001200336,0.001483576,0.001790848,0.00205697,0.00229899,0.0024258910000000003,0.002300257,0.0015313882,7.893749999999999E-4,3.6668279E-4,7.184968000000003E-5,1.6516230399999998E-5,4.610907099999999E-6,9.96702068E-7,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,coal (conv pul CCS),0.0,0.0,0.0,0.0,0.0,3.24698E-5,8.40456E-5,1.485435E-4,2.171125E-4,3.329035E-4,4.889897E-4,8.536438999999999E-4,0.0015369196,0.0023163021,0.0033062634,0.0043074455,0.0052611059,0.006352657100000001,0.0074158387,0.0079896742,0.0083619403,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,coal (conv pul),3.38404E-4,4.7522E-4,3.81601E-4,0.00591749,0.008756953000000001,0.011664486,0.014552032,0.016900227,0.018019898,0.01896568,0.019561998,0.019370306300000004,0.017963569550000003,0.015030167140000002,0.007980300700000002,0.0028689514999999995,0.0010772027399999998,1.7724650000000002E-4,3.475855190000001E-5,8.295108019999998E-6,1.617156454E-6,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,coal cogen,1.00746E-4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,gas (CC CCS),0.0,0.0,0.0,0.0,0.0,0.00122167,0.0028613700000000002,0.00457074,0.00588237,0.0075968,0.00939912,0.01254539,0.01727501,0.02177369,0.025864550000000004,0.0296153,0.03330867,0.03897027,0.04471581,0.04785241,0.050133250000000004,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,gas (CC),0.0,0.00174519,0.0180938,0.0536793,0.0727424,0.0929091,0.111156,0.12423290000000001,0.12898747,0.13245967,0.13404718,0.13381126,0.09885502,0.07839857,0.05330296000000001,0.03303105900000001,0.019308818,0.008736823,0.0033196886,0.0012481708299999998,3.12603225E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,gas (steam/CT),2.69998E-4,1.05273E-4,1.08859E-5,0.00188179137,0.00268784267,0.00357383163,0.00431980071,0.00476830296,0.004734410829999999,0.00456582037,0.00423388656,0.0034889471930000006,0.0020935572020000003,0.001321670695,6.398542000000001E-4,2.9430418000000005E-4,1.3764892000000002E-4,4.4234703999999996E-5,1.4186952999999998E-5,4.8505532999999985E-6,1.18270128E-6,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,gas cogen,0.00120861,0.00317471,0.0040509,0.00355992,0.00338581,0.00300327,0.00244684,0.00206857,0.0017163,0.0013808,0.00112037,8.08467E-4,6.02087E-4,4.55893E-4,3.09663E-4,2.2306E-4,1.68251E-4,9.57779E-5,5.79238E-5,3.70473E-5,2.05309E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,geothermal,0.00108001,0.00596895,0.0160743,0.034984600000000005,0.03547396,0.035474030000000004,0.035473979999999995,0.03547404,0.03547401,0.035474,0.035474000000000006,0.03547399,0.035474000000000006,0.035474000000000006,0.035474000000000006,0.035474,0.03547399,0.035474,0.035474,0.035474,0.035474,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,hydro,0.558752,0.626339,0.598385,0.583929,0.569578,0.555226,0.540875,0.526524,0.53205,0.537576,0.543103,0.548629,0.554155,0.559681,0.565207,0.570734,0.57626,0.581786,0.587312,0.592839,0.592839,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,hydrogen cogen,0.0,0.0,0.0,0.0,0.00192645,0.0030988,0.00426373,0.00554753,0.00702088,0.00872364,0.0104981,0.0112243,0.0126844,0.0146395,0.0183958,0.0228866,0.0240689,0.0249834,0.0223207,0.0209522,0.0188199,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,refined liquids (CC CCS),0.0,0.0,0.0,0.0,0.0,7.43713E-5,1.080099E-4,1.215268E-4,1.195318E-4,1.3067839999999999E-4,1.342326E-4,1.488755E-4,1.6739309999999998E-4,1.6960849999999997E-4,1.689803E-4,1.5457678E-4,1.0687327999999998E-4,1.0550366E-4,7.945392000000001E-5,5.305268E-5,4.166294E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,refined liquids (CC),0.0,0.0,0.0,6.34026E-5,9.61217E-5,1.06997E-4,1.23548E-4,1.331226E-4,1.256901E-4,1.249026E-4,1.175718E-4,1.0533109E-4,8.539919E-5,6.079679E-5,3.682883E-5,2.0418814E-5,9.257332000000001E-6,3.922952100000001E-6,1.4138384E-6,4.9953925E-7,1.52361694E-7,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,refined liquids (steam/CT),0.0010152,2.62806E-4,1.83584E-4,3.01575E-4,3.3294520000000003E-4,3.25423E-4,3.0444639999999997E-4,2.733617E-4,2.3822113000000002E-4,2.0125018999999996E-4,1.6622901999999997E-4,1.2461309E-4,5.7598063E-5,2.7016737E-5,8.629687E-6,3.4925096999999996E-6,1.1186686E-6,3.9593177999999997E-7,1.1750894800000002E-7,3.933626500000001E-8,1.0512519E-8,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,refined liquids cogen,4.21305E-4,6.08071E-4,1.87116E-4,1.44699E-4,1.40132E-4,1.26074E-4,1.07221E-4,9.4294E-5,8.69149E-5,7.82682E-5,7.04639E-5,5.89838E-5,5.04063E-5,4.27773E-5,3.29782E-5,2.55077E-5,1.70678E-5,1.13687E-5,7.0253E-6,4.63261E-6,2.7868E-6,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,rooftop_pv,0.0,0.0,0.0,4.94831E-7,1.72696E-6,1.68275E-6,8.9261E-7,1.21227E-6,1.73768E-6,2.28506E-6,2.85819E-6,3.37203E-6,3.84873E-6,4.24674E-6,4.8679E-6,5.33662E-6,5.67853E-6,5.32206E-6,4.68164E-6,4.21123E-6,3.71802E-6,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,wind,0.0,0.00182524,0.00335526,0.025362859999999997,0.049991759999999996,0.09418916,0.15293106,0.21314026,0.25209659999999995,0.2814021,0.30779490000000004,0.34063420000000005,0.3845693,0.41471630000000004,0.4587299,0.48320510000000005,0.5030842,0.5142475,0.5095064,0.4924484,0.48913510000000004,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,wind_storage,0.0,0.0,0.0,7.49836E-5,1.615674E-4,3.252094E-4,5.514534000000001E-4,7.934464000000001E-4,9.680474000000001E-4,0.0011081448,0.0012398930000000002,0.00141393,0.0016502319999999997,0.00182746,0.002098696,0.002308407,0.0025063359999999996,0.002664751,0.002703524,0.002640912,0.002598349,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,CSP,0.0,0.0,0.0,1.57652E-4,8.90204E-4,0.002638544,0.006259153999999999,0.011988323999999998,0.020588994,0.032222342,0.04656889,0.06445015,0.08926664000000001,0.12305847,0.20630389999999998,0.3534729,0.49309179999999997,0.5934942,0.6656820999999999,0.7105002999999999,0.7395231999999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,CSP_storage,0.0,0.0,0.0,0.0,0.0,0.00581195,0.028121649999999998,0.07805424999999999,0.15738455,0.27357455,0.43197655,0.6305446,0.9026109,1.2672203,2.18919,3.9956000000000005,6.560358000000001,9.678208,11.672332,12.75182,13.41378,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,Gen_III,0.0,0.0,0.0,0.0638817,0.1632039,0.28863890000000003,0.45476990000000006,0.6440158,0.8747728,1.1478298,1.4593277,1.8065837,2.2234877,2.6855477,3.5304937,4.7377901,6.131005999999999,7.600130999999999,8.477587999999999,8.952167,9.462675999999998,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,Gen_II_LWR,0.0221076,0.0623663,0.0945575,0.0873845,0.0832859,0.0773078,0.069127,0.0588582,0.0472787,0.0356993,0.0254304,0.0172497,0.0112715,0.00717295,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,PV,0.0,6.83999E-5,8.27999E-5,0.0141584999,0.06203819989999999,0.1508208999,0.3026368999,0.5117138998999999,0.7922051,1.1384094,1.5259287000000001,1.9917799999999999,2.5299820000000004,2.889977,3.2066200000000005,3.381485,3.448374,3.426353,3.104609,2.7918070000000004,2.5403089999999997,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,PV_storage,0.0,0.0,0.0,1.26157E-4,5.57866E-4,0.001356743,0.002725873,0.004597643,0.007124923,0.010226006,0.013727007,0.01792497,0.023696989999999998,0.03189302,0.053644739999999996,0.0975329,0.16074599,0.23832665,0.2886047,0.3164206,0.3346605,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,biomass (IGCC CCS),0.0,0.0,0.0,0.0,0.0,8.05851E-4,0.002601449,0.0058466130000000005,0.011679516000000001,0.020946205000000002,0.033948773,0.054264613,0.086375446,0.130248919,0.24413468300000002,0.45424112699999997,0.730656295,1.09740702,1.36461779,1.53814891,1.7446882700000002,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,0.00738826,0.02024099,0.03892716,0.06375723999999999,0.09468018,0.13006320999999998,0.16852665,0.21323096,0.26197316,0.32620561000000003,0.37752824,0.36366884,0.17907035999999998,0.05565942599999999,0.018597809,0.00442659876,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,biomass (conv CCS),0.0,0.0,0.0,0.0,0.0,0.00171615,0.0055529,0.01269031,0.02581508,0.046638849999999996,0.07446639000000001,0.11791441999999999,0.18493041,0.27291964,0.50561894,0.90620262,1.38036418,1.99138809,2.43528159,2.7145558000000003,3.0587815000000003,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,biomass (conv),0.0,0.00692279,0.00740519,0.014547393,0.042195435,0.072349305,0.12304827400000001,0.18802426500000002,0.261238903,0.34013402600000003,0.413558381,0.4782733375,0.5404235325,0.5995055230999999,0.63860594,0.5857136,0.40910227,0.12355516999999999,0.029502439000000005,0.008849561799999999,0.00194869667,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,coal (IGCC CCS),0.0,0.0,0.0,0.0,0.0,0.00521439,0.01645033,0.035567879999999996,0.06972141,0.12321087,0.19433915000000002,0.29878564,0.44866446000000004,0.62384716,0.9911712,1.53749745,2.15971303,2.8498037599999995,3.3207796999999997,3.5840917,3.8337106000000003,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.162278,0.406628,0.708797,1.037506,1.371879,1.6967370000000002,1.958104,2.180264,2.346743,2.339669,2.0978614,1.6227597999999999,0.5831595999999999,0.17410269000000003,0.057833781,0.013066799560000002,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,coal (conv pul CCS),0.0,0.0,0.0,0.0,0.0,0.0128227,0.0386226,0.07980809999999999,0.1490089,0.25024460000000004,0.37619139999999995,0.5492090999999999,0.7806518,1.0371651,1.5395618,2.2409245,3.002828,3.8168670999999996,4.3725009,4.6681387999999995,4.9270271999999995,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,coal (conv pul),0.68977,1.69899,2.35082,3.5033499999999997,4.92376,6.20402,7.65792,9.05507,10.149040000000001,11.004806000000002,11.682281,11.964086000000002,12.020434999999999,11.867447799999999,10.360052000000001,7.306127,4.405698,1.2221359999999997,0.3143563,0.0924967177,0.01864374704,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,gas (CC CCS),0.0,0.0,0.0,0.0,0.0,0.113851,0.292098,0.514653,0.771595,1.047798,1.317687,1.6008169999999997,1.9242640000000002,2.257761,2.768153,3.507629,4.368381,5.4528620000000005,6.200342,6.619136,7.145456,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,gas (CC),0.0,0.247169,0.0386551,0.08939939999999999,0.1918601,0.2913245,0.4548929,0.6875446000000001,0.9673525,1.2873214000000002,1.6412696,1.9729619299999999,2.25979204,2.48483383,2.759138,2.965712,2.9884109999999997,2.5273260000000004,1.8048708999999998,1.12990329,0.4861897,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,gas (steam/CT),0.0358488,0.0245121,0.385385,0.466432,0.626458,0.713379,0.7946310000000001,0.8484959999999999,0.8661007,0.8593268,0.8392734,0.7985094999999999,0.644912,0.4814215,0.344177,0.2330494,0.14589380999999998,0.06054095,0.022420383,0.0086997905,0.00251889309,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,geothermal,0.0,0.0,0.0,0.0220306,0.053614300000000004,0.05658199999999999,0.05658271,0.056637030000000005,0.05658203,0.05658199,0.05658199999999999,0.056582030000000005,0.05658205,0.05658204,0.056582036,0.056582046,0.056582028,0.056581989,0.056582041,0.056581974,0.056582019,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,hydro,0.257962,0.366228,0.411926,0.447853,0.48378,0.519707,0.555634,0.591561,0.654843,0.718125,0.781406,0.844688,0.90797,0.971252,1.03453,1.09782,1.1611,1.22438,1.28766,1.35094,1.35094,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,hydrogen cogen,0.0,0.0,0.0,0.0,5.49518E-4,0.00133979,0.00254583,0.00427966,0.00699999,0.0108812,0.0155596,0.0204711,0.0269073,0.0377919,0.0518591,0.0662156,0.0813614,0.0993756,0.120284,0.143808,0.145988,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,refined liquids (CC CCS),0.0,0.0,0.0,0.0,0.0,0.216093,0.3887919,0.5525613,0.7503633999999999,0.943536,1.1055015,1.2860205,1.4567656000000002,1.6122746000000001,1.8506080000000003,1.9618929999999999,1.4993027,1.4910069000000001,1.2036513,0.9506946,0.7765087,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,refined liquids (CC),0.0,0.0,0.0,0.0824936,0.22202880000000003,0.2720651,0.3887418,0.5212624,0.6692195999999999,0.8193467999999999,0.9616427999999999,1.0503183,1.0970864,1.1018044,1.0697368,0.9196002999999999,0.5130787,0.2540793,0.09422936,0.038870418,0.0132149258,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,refined liquids (steam/CT),0.0361728,0.0836639,0.0951875,0.18992098000000002,0.35961562999999996,0.3997694,0.44181558,0.46211626,0.47911375000000006,0.48400554000000007,0.48122343000000006,0.467712004,0.34999443999999996,0.223775193,0.15946851,0.10334876999999999,0.04917929,0.02275213,0.008602194999999998,0.003500061,0.00114212618,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,rooftop_pv,0.0,0.0,0.0,0.00168302,0.0109694,0.0366883,0.0850022,0.169121,0.335198,0.583805,0.925803,1.50676,2.11159,2.41153,2.33481,2.0073,1.90364,1.92175,1.97342,2.08561,2.34676,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,wind,1.152E-4,0.0237708,0.0716795,0.11844659999999999,0.21564879999999997,0.36533079999999996,0.5943887999999999,0.8855658,1.1690273,1.5373022,1.9075920000000002,2.298326,2.75266,3.2473670000000006,4.301216,5.909934,7.715102,9.493686,10.348994,10.57942,10.36388,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,wind_storage,0.0,0.0,0.0,2.99881E-4,0.001005033,0.002246483,0.004402013,0.007496892999999999,0.011646143,0.016661601999999998,0.02245577,0.029317450000000002,0.03812482,0.04851164,0.07125299,0.10956194999999999,0.15811642999999997,0.2129666,0.2451645,0.26038079999999997,0.2669955,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,CSP,0.0,0.0,0.0,5.1626E-5,2.15112E-4,6.56135E-4,0.0015110039999999998,0.0027709939999999997,0.004665313999999999,0.007032447999999999,0.009780532,0.012831149,0.01725465,0.02262979,0.03291777,0.05087841,0.07975134,0.1235087,0.16145533,0.1880199,0.21064799999999997,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,CSP_storage,0.0,0.0,0.0,0.0,0.0,0.00130561,0.005996660000000001,0.01577621,0.03133651,0.05256250999999999,0.07980000999999999,0.11086579999999999,0.15469265000000001,0.20600830000000003,0.30334700000000003,0.471345,0.7415525000000001,1.1543511,1.5157962,1.7713910000000004,1.9933420000000002,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,Gen_III,0.0,0.0,0.0,0.00224903,0.0046722199999999995,0.01226528,0.02739568,0.04992628,0.07931696999999999,0.11344557,0.15171587,0.19055647,0.24050806000000002,0.29585416000000003,0.38722196000000003,0.51892963,0.6872503400000001,0.895175,1.0615671,1.1711633,1.2764082,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,PV,0.0,0.0,0.0,0.00112401,0.00372973,0.009191060000000001,0.01793232,0.029145320000000002,0.04421522,0.06111421,0.07901179,0.09769966,0.1247635,0.1584784,0.227185,0.329541,0.41364870000000004,0.4859399,0.5300395,0.5484431,0.5413507,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,PV_storage,0.0,0.0,0.0,1.00741E-5,3.35682E-5,8.27089E-5,1.6153899999999999E-4,2.61922E-4,3.97662E-4,5.490259E-4,7.107048E-4,8.782830999999999E-4,0.001121742,0.001427666,0.002041536,0.003149888,0.004973035,0.007786286,0.010280637,0.01207325,0.01366763,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,biomass (IGCC CCS),0.0,0.0,0.0,0.0,0.0,5.78116E-5,1.954955E-4,4.454981E-4,9.102540000000001E-4,0.0016088636,0.0025205007,0.0038574843999999997,0.00616426,0.0093956521,0.017388189,0.0326392972,0.0549634039,0.089073416,0.12134260399999999,0.14588326699999998,0.17303506500000002,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,5.32014E-4,0.0015314159999999999,0.003005759,0.005053444000000001,0.007516823,0.010292927,0.013128225,0.016760409,0.020611573,0.024906718,0.027490372,0.025653137,0.012201925,0.0036206748,0.0011464755999999999,2.75390588E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,biomass (conv CCS),0.0,0.0,0.0,0.0,0.0,1.22953E-4,4.19011E-4,9.668330000000001E-4,0.002000395,0.0035382210000000002,0.00541277,0.008175006,0.012830088,0.01912025,0.035272690999999995,0.06482505699999999,0.104176198,0.16107574400000002,0.214524831,0.254259885,0.29992306999999996,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,biomass (conv),0.0,7.91916E-5,3.42008E-4,9.85849E-4,0.0024781580000000003,0.004851059,0.008802148,0.013929450399999998,0.019931087400000002,0.026137577300000003,0.031871203,0.036574556700000004,0.041734801909999994,0.0458307511,0.04688988799999999,0.040618909999999994,0.027585122,0.008241996,0.0019079344000000002,5.4319028E-4,1.2047645399999999E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,coal (IGCC CCS),0.0,0.0,0.0,0.0,0.0,4.7077E-4,0.00147895,0.0031396949999999996,0.006118780000000001,0.010393653000000001,0.015475913,0.022393094,0.033209519,0.04620860699999999,0.072453714,0.11329565,0.16513935500000002,0.229958228,0.28733676999999996,0.32577206000000003,0.36122056,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.0147375,0.0370103,0.06404270000000001,0.09408419999999999,0.123122,0.1503976,0.1707608,0.18953219999999998,0.20262850000000002,0.19516279999999997,0.16462313,0.12175555999999998,0.041399099999999994,0.011714492000000002,0.0036832781999999995,8.39959705E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,coal (conv pul CCS),0.0,0.0,0.0,0.0,0.0,0.00115639,0.00346531,0.00702735,0.01302557,0.021032050000000004,0.029865919999999997,0.04112363,0.05756609,0.07636424,0.11206857,0.16472651,0.22880116,0.3052221,0.37324326,0.41780892000000003,0.45730219,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,coal (conv pul),0.0351648,0.186455,0.24521,0.367303,0.46831199999999995,0.582726,0.7127760000000001,0.834143,0.9308580000000002,1.0003889000000001,1.0520457,1.0677235999999999,1.0679520000000002,1.0418686000000004,0.8692755,0.5646016999999999,0.33219259000000007,0.08773080999999999,0.021438283,0.0059793918,0.001212269311,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,gas (CC CCS),0.0,0.0,0.0,0.0,0.0,0.0380731,0.0963045,0.16569440000000002,0.2444795,0.3209561,0.3877118,0.44946299999999995,0.5221939,0.5940964000000001,0.6761643999999999,0.7883811000000001,0.9289675,1.1158527,1.2739277999999998,1.3648736000000001,1.4433081999999997,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,gas (CC),1.566E-5,0.0351839,0.0227519,0.0462217,0.0763176,0.1087263,0.1593162,0.22710639999999999,0.307668,0.39288086,0.48193014999999995,0.55604326,0.61093735,0.65272409,0.6828455,0.6822983999999999,0.6437841000000001,0.4790254,0.28283350000000007,0.14506204,0.053462995,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,gas (steam/CT),0.00262674,0.0335258,0.121385,0.15158549999999998,0.1847857,0.2076292,0.2263564,0.2356471,0.23394109999999999,0.22476130000000002,0.21262509999999998,0.19420042999999998,0.14463773000000002,0.10388292,0.06466852,0.03793228,0.021517599999999998,0.0077285109999999995,0.0025263773000000003,8.788308E-4,2.5121634999999997E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,geothermal,0.00405,0.0237744,0.0336852,0.0502987,0.0670698,0.09017349999999999,0.1163938,0.1413637,0.139801,0.153431,0.15489400000000003,0.154894,0.15489389999999997,0.1548939,0.154894,0.1548941,0.154894,0.154894,0.15489389999999997,0.15489389999999997,0.1548941,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,hydro,0.0205488,0.03861,0.0636336,0.0643101,0.0649865,0.065663,0.0663395,0.0670159,0.0690624,0.071109,0.0731555,0.075202,0.0772485,0.079295,0.0813415,0.083388,0.0854345,0.0874811,0.0895276,0.0915741,0.0915741,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,hydrogen cogen,0.0,0.0,0.0,0.0,4.53452E-4,0.00104055,0.00183141,0.00283779,0.00421558,0.00603185,0.00804475,0.0100746,0.0129526,0.0171655,0.0228457,0.029929,0.0397453,0.0556178,0.0746696,0.095218,0.111507,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,refined liquids (CC CCS),0.0,0.0,0.0,0.0,0.0,0.0527053,0.0975038,0.13658990000000001,0.18184820000000002,0.2175032,0.24138110000000002,0.2703858,0.3026767,0.32114669999999995,0.352527,0.3678086,0.3189538,0.3278892,0.27521700000000004,0.2134541,0.17854432,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,refined liquids (CC),0.0,0.0,0.0,0.0232984,0.0494536,0.06715840000000001,0.09653149999999999,0.12798020000000002,0.1622234,0.19234861,0.21945925,0.23225512,0.24010160000000003,0.23127809,0.20777139999999997,0.1692104,0.10643036,0.05421937999999999,0.019669958,0.007417995300000001,0.0024828577300000003,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,refined liquids (steam/CT),0.0551952,0.140904,0.124218,0.13759939999999998,0.1661074,0.17415329999999998,0.17258489999999999,0.1632152,0.15309247000000004,0.14118368000000003,0.13028874999999998,0.11989182000000002,0.08332540000000001,0.05407817999999999,0.03389734,0.020946463999999998,0.010829918,0.004936267,0.0017734653999999998,6.638835200000001E-4,2.14934168E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,rooftop_pv,0.0,0.0,0.0,2.08113E-4,0.00101415,0.00323617,0.00696433,0.0129607,0.024125,0.040722,0.0645411,0.108167,0.166538,0.234136,0.33042,0.39562,0.371551,0.333018,0.331283,0.347301,0.404759,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,wind,0.0,0.0,0.0,0.00168005,0.00505893,0.01234072,0.02427952,0.03983902,0.059465420000000005,0.08001217000000001,0.10095769,0.12019569999999999,0.1447482,0.1716924,0.222233,0.29965149999999996,0.3964561,0.5118753,0.5903470000000001,0.6316309,0.6490252,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,wind_storage,0.0,0.0,0.0,1.03717E-5,3.54331E-5,1.005727E-4,2.256417E-4,4.129247E-4,6.796847E-4,0.001002148,0.0013740736000000002,0.0017741179999999999,0.002334853,0.003003014,0.004295824,0.006452249,0.009473002,0.013580408,0.016943813999999998,0.019190890000000002,0.020968360000000002,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,CSP,0.0,0.0,0.0,0.00141335,0.0023087430000000003,0.003053646,0.004550876000000001,0.006503916,0.009753756,0.012287356,0.015540653000000001,0.02009545,0.03133582,0.03854908,0.05133924,0.061177890000000006,0.06741660000000001,0.0743727,0.0735773,0.07232495,0.06752235,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,CSP_storage,0.0,0.0,0.0,0.0,0.0,9.41383E-4,0.004448693,0.010919803,0.022315603,0.037101703,0.053669703,0.07370331999999999,0.12017741000000001,0.1497369,0.201799,0.2416543,0.2665801,0.2948923,0.2932554,0.2894464,0.27212770000000003,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,Gen_III,0.0,0.0,0.0,0.0,0.0,0.015027,0.0652562,0.1506372,0.2665231,0.3866621,0.49729399999999996,0.6190009,0.8751079,1.0410718,1.3062166,1.5145094000000001,1.6590070000000001,1.8016988,1.8949707999999998,1.8990009999999997,1.9027260000000004,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,Gen_II_LWR,0.728178,1.09712,1.03763,0.958912,0.913937,0.848336,0.758565,0.645879,0.518812,0.391745,0.27906,0.189289,0.123688,0.0787121,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,PV,3.6E-6,0.00537479,0.0136764,0.01755498,0.01935378,0.020516470000000002,0.02244619,0.024636980000000003,0.01421936,0.01404788,0.01593162,0.01938917,0.028350550000000002,0.03398337,0.04464249000000001,0.052951490000000004,0.058465960000000004,0.06492802,0.06489082,0.06441801,0.06110510999999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,PV_storage,0.0,0.0,0.0,3.47605E-5,5.09784E-5,6.14397E-5,7.884130000000001E-5,9.845290000000001E-5,1.278041E-4,1.262473E-4,1.4328570000000002E-4,1.742848E-4,2.5491070000000003E-4,3.060472E-4,4.01098E-4,4.761553E-4,5.256181E-4,5.832052E-4,5.832465E-4,5.785555000000001E-4,5.495147999999999E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,biomass (IGCC CCS),0.0,0.0,0.0,0.0,0.0,7.49722E-5,2.455123E-4,5.064175E-4,0.0010242786000000002,0.0017704291,0.0026841239,0.0042019365,0.008643475099999999,0.0124629547,0.0212072534,0.0296620581,0.0359988931,0.043424689,0.05015798800000001,0.054113920999999995,0.059364443999999995,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,5.98038E-4,0.001651002,0.002962458,0.0049191949999999995,0.006966605,0.008698072000000001,0.010253235000000001,0.013027661,0.013594869,0.012785701,0.009459499,0.005399556000000001,0.0014674661000000002,3.788455599999998E-4,1.2136728699999998E-4,2.7869563120000005E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,biomass (conv CCS),0.0,0.0,0.0,0.0,0.0,1.67841E-4,5.41148E-4,0.001118865,0.002308374,0.004057596,0.006174147999999999,0.009905109,0.021315512000000002,0.031660791,0.059378020000000004,0.089010173,0.110377847,0.13563144800000002,0.156689277,0.16790623,0.18233291000000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,biomass (conv),0.037872,0.0795455,0.0844343,0.08770800000000001,0.08376954,0.08103497,0.07923482,0.07527882999999999,0.07059447999999999,0.06503363,0.05790237,0.051060039999999994,0.047299749999999995,0.03970359,0.025157798000000002,0.012498757,0.0052212394,0.0011086510399999998,2.55547082E-4,7.60089495E-5,1.6041273579999998E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,coal (IGCC CCS),0.0,0.0,0.0,0.0,0.0,2.08063E-4,7.57007E-4,0.001651406,0.003566827,0.006619668,0.010669584,0.017822775,0.039234203,0.056799422,0.091591177,0.12168928300000001,0.142555104,0.164175474,0.182145538,0.19100027999999997,0.19968293000000006,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.00519269,0.015030869999999998,0.027109929999999997,0.04329206,0.0588363,0.07148201,0.08017163000000001,0.0910152,0.09017823,0.06993676,0.041103728999999985,0.021185799000000005,0.005033391200000001,0.00138458109,4.552758229999999E-4,9.950442379999998E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,coal (conv pul CCS),0.0,0.0,0.0,0.0,0.0,5.33683E-4,0.0018362349999999999,0.0038094879999999998,0.007759118000000001,0.013685362999999999,0.02116834,0.033849179,0.07026425,0.099472987,0.155345436,0.20258646400000002,0.23443907599999997,0.2662638,0.29170897,0.30308501,0.31236161999999995,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,coal (conv pul),0.420141,1.09279,1.09618,1.35819,1.405148,1.3811301,1.3525381,1.2989891,1.2305742000000002,1.1460895,1.0579645,0.9563533,0.8574359,0.7234055600000001,0.40186658,0.13689691,0.05632695199999999,0.0117712903,0.002918617467,8.665916641999999E-4,1.6775715172E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,gas (CC CCS),0.0,0.0,0.0,0.0,0.0,0.00470145,0.01538082,0.030545660000000002,0.05647568,0.09021383999999999,0.1273794,0.17993951,0.31450863,0.41373887,0.5979523,0.7516640000000001,0.8524536,0.9548306000000001,1.0351961,1.0633534,1.0938787,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,gas (CC),0.550414,0.734881,0.709121,1.108413,1.222369,1.2639854,1.3349991,1.3950697,1.4633285999999999,1.5085316,1.5301594,1.5367960000000003,1.1566960999999998,1.0160295,0.8797201,0.7076508,0.52765039,0.28216953,0.129596347,0.05726988799999999,0.017620845099999994,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,gas (steam/CT),0.0510872,0.125658,0.387131,0.3111057,0.29676832999999997,0.28778676000000003,0.26655451,0.23611570999999998,0.19680710999999998,0.15783945,0.12324289,0.09199952,0.05777577999999999,0.03815972999999999,0.017553242,0.009845243,0.005325843,0.0017688266,6.1281004E-4,2.32363269E-4,6.500219359999999E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,geothermal,0.00626759,0.0116136,0.00947519,0.0175043,0.02192372,0.02555713,0.03211012,0.039554809999999996,0.04173012,0.04615585,0.05265347,0.056582030000000005,0.056582049999999995,0.056582,0.05658201,0.05658195,0.05658202,0.056581950000000006,0.05658198,0.05658196,0.056582,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,hydro,0.321498,0.275292,0.295963,0.294981,0.293999,0.293016,0.292034,0.291052,0.294216,0.29738,0.300544,0.303708,0.306872,0.310036,0.3132,0.316365,0.319529,0.322693,0.325857,0.329021,0.329021,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,hydrogen cogen,0.0,0.0,0.0,0.0,1.40847E-4,2.64458E-4,4.23385E-4,6.16057E-4,8.48961E-4,0.00116787,0.00154041,0.00193336,0.00245973,0.00304245,0.00404068,0.00532649,0.00608051,0.00721988,0.00708307,0.00714284,0.00654092,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,refined liquids (CC CCS),0.0,0.0,0.0,0.0,0.0,0.00892534,0.0181641,0.024707760000000002,0.03688362,0.0465456,0.05448745000000001,0.06777988,0.10362668,0.11063446,0.14156780000000002,0.14918817,0.12262317,0.13064576,0.10791033,0.08310117,0.07051484999999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,refined liquids (CC),0.0,0.0,0.0,0.0257452,0.02126103,0.0178901,0.02300546,0.02801187,0.036257929999999994,0.04231712,0.04576601,0.04652298,0.05268687,0.039994389,0.03214046,0.019250931,0.00952401,0.0043988541,0.0016858698999999997,6.738747799999998E-4,2.3372871200000002E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,refined liquids (steam/CT),0.892385,0.495089,0.350827,0.3242944,0.2952419,0.27844978000000004,0.25203221000000003,0.21787298000000002,0.18084107,0.14394262000000002,0.11124654000000002,0.082750668,0.042029964,0.023272272,0.004591584,0.002530091000000001,0.0011677929999999999,4.8021632E-4,1.6574893E-4,6.3970813E-5,2.06194503E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,rooftop_pv,0.0,0.0,0.0,4.13277E-5,1.55605E-4,4.01079E-4,7.98903E-4,0.00140826,0.00236969,0.00369018,0.00537569,0.00806675,0.0110843,0.0136931,0.0165438,0.0183854,0.0206665,0.022977,0.0245996,0.0263179,0.0277762,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,wind,0.0,0.00631439,0.0142632,0.0257154,0.03294535,0.03968778,0.054331779999999996,0.07451658,0.09277878,0.11993918,0.15231743,0.1933377,0.28230469999999996,0.3337015,0.4184650999999999,0.47696979999999994,0.5099492,0.5464420000000001,0.5272661000000001,0.5132507,0.48115549999999996,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,wind_storage,0.0,0.0,0.0,5.22544E-5,8.6692E-5,1.204326E-4,1.982936E-4,3.140106E-4,5.118206000000001E-4,7.102561999999999E-4,9.520505999999998E-4,0.0012780699999999999,0.002076771,0.0026074290000000005,0.003571669,0.004341159,0.004853165,0.0054456949999999995,0.005516579000000001,0.005511876000000001,0.005283085,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,CSP,0.0,0.0,0.0,6.63735E-6,2.187145E-5,6.0512149999999996E-5,1.4068674999999999E-4,2.7128875E-4,4.7294774999999997E-4,7.400394E-4,0.0010849693,0.0015411596,0.002436127,0.003337385,0.003947764,0.004527461,0.005111357,0.005678646,0.005781824,0.005666648,0.005831665999999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,CSP_storage,0.0,0.0,0.0,0.0,0.0,1.28454E-4,6.22486E-4,0.001760766,0.003620846,0.006318246,0.010101726,0.015124862,0.02471003,0.03558145,0.055793869999999995,0.08602557,0.12480169,0.17126070000000002,0.2136116,0.2451042,0.2676531,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,Gen_III,0.0,0.0,0.0,0.00517164,0.00915211,0.01522812,0.02416189,0.035600480000000004,0.050404380000000006,0.06816427,0.08936906,0.11399145,0.15525654,0.19771632,0.25501621,0.31426876,0.37724428,0.44170836999999996,0.5010353000000001,0.5452625,0.5874374,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,Gen_II_LWR,0.0105732,0.038898,0.0211644,0.0195589,0.0186415,0.0173034,0.0154724,0.0131739,0.0105822,0.0079904,0.00569196,0.00386091,0.00252285,0.00160548,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,PV,3.6E-6,3.24E-5,1.116E-4,0.00193728,0.00500478,0.01104983,0.02140663,0.03608973,0.056244829999999996,0.08018585,0.10915895,0.1463484,0.2196092,0.2993163,0.37254010000000004,0.4150726,0.43427210000000005,0.4396045,0.41123490000000007,0.3735548,0.3549102,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,PV_storage,0.0,0.0,0.0,1.63635E-5,4.40224E-5,9.84179E-5,1.9182139999999998E-4,3.2327539999999996E-4,5.058333999999999E-4,7.202828999999999E-4,9.82009E-4,0.0013156305,0.0019754819999999998,0.002742597,0.004208839,0.006464035999999999,0.009407551,0.012971554,0.016270909,0.01877059,0.020635889999999997,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,biomass (IGCC CCS),0.0,0.0,0.0,0.0,0.0,1.06985E-4,2.9740859999999997E-4,6.022082E-4,0.0011116489000000001,0.00184272,0.002870707,0.004668014000000001,0.008933693,0.014838265000000002,0.026327497000000002,0.042305724,0.060482868999999995,0.081455694,0.10234871300000001,0.119327365,0.137110782,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,8.38164E-4,0.001964281,0.0033972639999999997,0.005135092,0.0070621550000000005,0.009028346999999999,0.010854018,0.013286753,0.014610584,0.014116957999999999,0.011049483999999998,0.00667065,0.0018146704,4.6133812999999996E-4,1.45910847E-4,3.3863839800000006E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,biomass (conv CCS),0.0,0.0,0.0,0.0,0.0,2.41079E-4,6.61056E-4,0.001359009,0.002566886,0.004304499,0.006695869,0.011142260000000001,0.022232403999999997,0.038504959,0.075931168,0.134314709,0.19994023,0.280000535,0.356505805,0.41505517999999997,0.47706308000000003,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,biomass (conv),0.0,0.0109656,0.00929879,0.00698613,0.009528930000000001,0.01224602,0.01627741,0.02063708,0.02490196,0.028880076999999997,0.03150915,0.032641967,0.03387955,0.0318764558,0.025148160000000003,0.014524533,0.006463191,0.0013278107999999999,2.98457079E-4,8.71806929E-5,1.876128668E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,coal (IGCC CCS),0.0,0.0,0.0,0.0,0.0,1.00735E-4,3.06785E-4,6.534690000000001E-4,0.001282146,0.0022471179999999998,0.003679262,0.006330865,0.012745818999999999,0.021230119,0.035584644,0.053673921,0.0731897164,0.09399241,0.11411115299999999,0.129663673,0.144645464,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.00244296,0.00594393,0.010201729999999999,0.01485471,0.019433319999999997,0.02380552,0.026942590000000002,0.0298296,0.03016445,0.02392027,0.014802552,0.007921955000000001,0.0018432313,4.93929149E-4,1.5869710140000004E-4,3.5434601340000005E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,coal (conv pul CCS),0.0,0.0,0.0,0.0,0.0,2.59829E-4,7.53263E-4,0.0015294599999999998,0.0028496700000000003,0.004739792999999999,0.007393726000000001,0.012113225,0.023085604,0.037301604,0.060588049000000005,0.08937441,0.11984650399999999,0.151755629,0.182335651,0.20551537,0.22726541000000003,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,coal (conv pul),0.0279864,0.118998,0.117129,0.1484897,0.16620970000000002,0.1802472,0.1937841,0.2042524,0.2091556,0.2099726,0.20902880000000001,0.20111171,0.18941979000000003,0.16784714,0.10733435999999999,0.048538411,0.021299982999999998,0.0042339073,0.0010132367999999997,2.9062885449999997E-4,5.807813676E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,gas (CC CCS),0.0,0.0,0.0,0.0,0.0,0.00861979,0.02360487,0.045183970000000004,0.07588312,0.11493495,0.16339167999999998,0.23445467000000003,0.37952639,0.55048688,0.8154928000000001,1.1418652,1.4859219000000001,1.8499217,2.1917023999999996,2.4404858999999997,2.6584480000000004,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,gas (CC),0.0269085,0.312594,0.31265,0.49484399999999995,0.6195419999999999,0.7535350000000001,0.9050320000000001,1.053978,1.1852989999999999,1.2945149999999999,1.3897631000000001,1.4584462999999999,1.3474789,1.2642375000000001,1.101907,0.8967096999999999,0.6767515,0.37921219,0.18099381,0.08032092300000002,0.024991896499999996,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,gas (steam/CT),0.0251475,0.0299315,0.195244,0.1704349,0.16540211999999999,0.16038766,0.15136202999999998,0.13839152000000002,0.1212499,0.10356583,0.08772112,0.07165520999999998,0.053703499999999994,0.03999462,0.022960150000000002,0.013584296,0.007572011,0.0025296663000000004,8.8507856E-4,3.3325805E-4,9.273631599999999E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,geothermal,0.0184464,0.0262764,0.0238248,0.0329436,0.04048136,0.05015167,0.061831950000000004,0.07401294,0.06775802,0.07611566,0.08612038999999999,0.0956795,0.09696590000000001,0.0969659,0.096966,0.0969661,0.096966,0.096966,0.0969659,0.0969661,0.09696590000000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,hydro,0.0845208,0.0995724,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,0.133636,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,hydrogen cogen,0.0,0.0,0.0,0.0,2.2706E-4,4.35111E-4,7.23636E-4,0.00110114,0.00162874,0.00236317,0.00325999,0.00421713,0.00551248,0.00704199,0.010348,0.0152108,0.0193685,0.0266457,0.0285159,0.0306407,0.0293896,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,refined liquids (CC CCS),0.0,0.0,0.0,0.0,0.0,0.0316547,0.05118582,0.06849958,0.08998126000000001,0.10958059,0.13018389,0.16093921,0.21946119000000003,0.25895578,0.3288597,0.3894215,0.3847357,0.45499220000000007,0.42935090000000004,0.38214080000000006,0.34942949999999995,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,refined liquids (CC),0.0,0.0,0.0,0.0215104,0.03283176,0.03435833,0.04526528,0.05751883,0.07096304,0.08357110000000001,0.09498250999999999,0.09755658,0.10503641999999999,0.09166347999999999,0.07136363,0.04840531000000001,0.027326609999999994,0.012278617,0.0046859009,0.0018911891000000002,6.2787999E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,refined liquids (steam/CT),0.223423,0.240426,0.157964,0.1446316,0.1510594,0.1408631,0.12908117000000002,0.11455068,0.10171920000000001,0.08863166999999998,0.07665651000000001,0.06379578000000001,0.03731418400000001,0.021046275,0.010708421000000001,0.006059932,0.0029266281999999998,0.0012477872,4.4612537E-4,1.7274931899999998E-4,5.5153907000000007E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,rooftop_pv,0.0,0.0,0.0,3.42468E-4,0.00130063,0.00318639,0.00640728,0.0116829,0.0211676,0.0353737,0.0553071,0.0865207,0.123797,0.158294,0.157325,0.132264,0.116104,0.113323,0.134788,0.168179,0.214211,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,wind,3.6E-6,6.83999E-5,0.00446039,0.00906929,0.01535037,0.02680857,0.04557517,0.07119576999999999,0.10031688000000001,0.13628998,0.1783727,0.22790370000000001,0.3180501,0.4108985,0.5423439999999999,0.693427,0.8516092,1.014623,1.130274,1.20289,1.24215,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,wind_storage,0.0,0.0,0.0,1.98524E-5,4.85583E-5,1.054878E-4,2.064108E-4,3.564078E-4,5.677218E-4,8.204534E-4,0.0011391905,0.001550246,0.002354205,0.003260058,0.004644364,0.00636362,0.008301357,0.010467312,0.012305,0.013634899999999998,0.01463568,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,CSP,0.0,0.0,0.0,1.59391E-5,6.22753E-5,1.6476430000000002E-4,4.1563330000000004E-4,8.310883000000001E-4,0.0014396503,0.0022201302,0.003128721,0.0042962519999999995,0.006040462999999999,0.006834028000000001,0.007239126,0.007775496999999999,0.00871976,0.0098641,0.01070802,0.01215389,0.013855139999999998,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,CSP_storage,0.0,0.0,0.0,0.0,0.0,3.4071E-4,0.00188657,0.00550757,0.011120930000000001,0.018969140000000002,0.029000740000000004,0.041887030000000006,0.06163067,0.08428687,0.12174831,0.1773018,0.2642955,0.38158250000000005,0.5213209999999999,0.6517518,0.777088,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,Gen_III,0.0,0.0,0.0,0.00761429,0.022335980000000002,0.04907298,0.10377478000000001,0.18259068,0.27410768,0.37538858,0.48164248000000004,0.60024937,0.7632410700000001,0.9343639600000001,1.15222176,1.3928463,1.6729942,1.9830218999999998,2.2982221000000003,2.5513307999999997,2.794796,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,PV,0.0,0.0,2.52E-4,0.007329499999999999,0.0223913,0.048274700000000004,0.1005892,0.17599,0.2744693,0.3884138,0.51049,0.6637966,0.8961601,1.1514223,1.41856,1.6204669999999999,1.7519299999999998,1.835127,1.819468,1.7344870000000001,1.633486,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,PV_storage,0.0,0.0,0.0,6.34359E-5,1.992449E-4,4.321539E-4,9.039588999999999E-4,0.0015790088999999999,0.0024683659,0.0034890299999999997,0.004591841,0.0059671820000000006,0.008063787,0.010562537,0.014867410000000001,0.02151022,0.0321693,0.046694150000000004,0.06421844,0.08080594,0.09702200999999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,biomass (IGCC CCS),0.0,0.0,0.0,0.0,0.0,1.20805E-4,4.33791E-4,0.001012636,0.002059638,0.003714308,0.006074347000000001,0.010346088,0.019239273,0.032542918000000004,0.058451657000000004,0.09692455,0.148498381,0.21497977699999998,0.291440349,0.36078414000000003,0.43344836,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,9.88165E-4,0.003139464,0.006357402,0.010481911,0.015292700999999999,0.020173866,0.025028971999999997,0.030600842000000003,0.034466022,0.034074275,0.027931823999999997,0.018576397,0.005653231999999999,0.0015528076999999998,5.1376807E-4,1.27442943E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,biomass (conv CCS),0.0,0.0,0.0,0.0,0.0,2.67999E-4,9.62121E-4,0.002262444,0.004669329,0.00852066,0.013947522,0.024302205,0.046924524,0.082574289,0.16377777599999999,0.29721015,0.46811996999999994,0.6900423099999999,0.92416549,1.11648195,1.31139491,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,biomass (conv),0.0,0.0,4.32068E-5,0.0021213281,0.006116020200000001,0.010540093,0.0191033486,0.030287504779999995,0.04202164489,0.0535222231,0.06232631927,0.068071105449,0.072544029661,0.07124213204100001,0.058303104999999994,0.036695990000000005,0.018315403,0.0040954052,9.812327499999999E-4,2.9814456200000006E-4,6.834857959999998E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,coal (IGCC CCS),0.0,0.0,0.0,0.0,0.0,6.93837E-5,2.22931E-4,4.8710750000000003E-4,9.753521999999999E-4,0.001765068,0.0029166217999999997,0.0050732776,0.0095746668,0.016004006100000003,0.027020672500000002,0.0420836835,0.061467527800000005,0.084813382,0.11135704400000002,0.134849545,0.158227863,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.00180227,0.00490691,0.008828039999999999,0.013038719999999998,0.01717942,0.02092566,0.023777049999999997,0.02607376,0.02664834,0.02182086,0.014175350000000001,0.008226775,0.0020724019,5.8194857E-4,1.9129773300000002E-4,4.5202215900000005E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,coal (conv pul CCS),0.0,0.0,0.0,0.0,0.0,1.76601E-4,5.33562E-4,0.001108166,0.002112408,0.0036405300000000003,0.005760259,0.00956741,0.017189427,0.027832635999999997,0.045453219999999996,0.069019887,0.098472734,0.132961709,0.171331909,0.204345087,0.23604305999999997,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,coal (conv pul),0.0379187,0.132671,0.124711,0.1415256,0.1553264,0.1633303,0.1736271,0.18154320000000002,0.1839905,0.18278300000000003,0.17968019999999998,0.17261783,0.16272051,0.14631531999999997,0.09654988000000002,0.047347784999999996,0.022421225999999995,0.0047972236,0.0011927147699999998,3.4712259199999997E-4,7.311062970000001E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,gas (CC CCS),0.0,0.0,0.0,0.0,0.0,0.145554,0.382431,0.666996,0.979023,1.29417,1.590564,1.9348450000000001,2.4349309999999997,2.9846589999999997,3.62348,4.350752,5.206485000000001,6.185756,7.242082999999999,8.086977000000001,8.812571,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,gas (CC),0.0,0.0,0.0,0.0728474,0.1783087,0.2722983,0.4580918,0.7268494999999999,1.0334326999999999,1.3536468,1.6617458999999999,1.9271086,2.1298691,2.2284828,2.204128,1.9839402000000004,1.6559067,1.0420555,0.5512668499999999,0.26476814,0.090813999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,gas (steam/CT),0.38072,1.3344,1.95927,2.098721,2.246657,2.243101,2.199147,2.0789370000000003,1.8723523000000002,1.6346727000000003,1.4046990000000001,1.1609972000000002,0.7460612,0.454894,0.23080875,0.11484766,0.05494693999999999,0.016002975,0.0049992442,0.0017156020299999998,4.6159039000000007E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,geothermal,0.0,0.0,0.0,0.010829,0.0249431,0.0405268,0.056581900000000004,0.05658197,0.05658198,0.05658203,0.05658201,0.05658199999999999,0.05658201,0.05658200000000001,0.056581950000000006,0.056581950000000006,0.05658204,0.05658199,0.056582049999999995,0.05658201,0.05658201,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,hydro,0.04293,0.0992016,0.064242,0.0855464,0.106966,0.128386,0.149805,0.171225,0.202866,0.234507,0.266148,0.297789,0.329429,0.36107,0.392711,0.424352,0.455993,0.487634,0.519275,0.550916,0.550916,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,hydrogen cogen,0.0,0.0,0.0,0.0,0.00198612,0.0037459,0.00556408,0.00759357,0.0101059,0.013569,0.0177682,0.0220277,0.0283102,0.0364151,0.0531043,0.0784047,0.100223,0.131735,0.143464,0.158121,0.167375,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,refined liquids (CC CCS),0.0,0.0,0.0,0.0,0.0,0.227929,0.47040099999999996,0.669504,0.8538025,0.9996185,1.1127513,1.2735147,1.5098842000000001,1.6820655000000002,1.9308039999999997,2.1191199999999997,1.961054,2.135306,1.8777654,1.5350584999999999,1.3286585,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,refined liquids (CC),0.0,0.0,0.0,0.159924,0.33223400000000003,0.399296,0.5295912,0.6599991000000001,0.7637174000000001,0.8382114,0.8756899,0.8451050999999999,0.7869693999999999,0.656651,0.4793271,0.3163837,0.17825728000000002,0.07995675999999999,0.030570087,0.012071834900000002,0.004077987999999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,refined liquids (steam/CT),0.402345,0.720668,1.02737,1.096114,1.196003,1.1656186000000002,1.0680306,0.9415022000000001,0.8204783000000001,0.7121109,0.6224256,0.5265361,0.30107913000000003,0.16053279,0.09145675,0.04869687000000001,0.021937856999999998,0.008731446,0.0029587217000000003,0.00109438289,3.4928691E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,rooftop_pv,0.0,0.0,0.0,0.00937626,0.0269538,0.0574088,0.0895569,0.128597,0.184734,0.254167,0.339604,0.464271,0.601942,0.720655,0.757583,0.709003,0.632205,0.601648,0.602606,0.638326,0.730953,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,wind,3.59999E-6,3.05999E-4,6.26399E-4,0.009686539,0.027448239,0.056770139,0.11385683899999999,0.193354539,0.29219333999999997,0.4003462,0.5117245,0.6429296,0.8292968999999999,1.0275322,1.304045,1.6407159999999998,2.077978,2.589492,3.108847,3.542993,3.9148620000000003,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,wind_storage,0.0,0.0,0.0,4.09338E-5,1.290567E-4,2.8847270000000003E-4,6.271097000000001E-4,0.0011403597,0.0018303417,0.0026499039,0.003561768,0.004712102,0.006460065,0.008444325,0.011338933,0.015048637,0.02010268,0.026434819999999998,0.03347297,0.0397843,0.045716799999999995,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,CSP,0.0,0.0,0.0,3.76261E-5,1.513051E-4,3.805551E-4,8.626681000000001E-4,0.0016689561000000001,0.0027308661,0.0038599499999999996,0.005130161,0.006712191,0.008721338,0.01091154,0.013985750000000002,0.01834484,0.02406879,0.03164175,0.03784559,0.04229735000000001,0.04596108,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,CSP_storage,0.0,0.0,0.0,0.0,0.0,7.62093E-4,0.0037354130000000004,0.011825913,0.032857913,0.071389013,0.128063713,0.20729032,0.320066,0.4572995,0.6482475000000001,0.9060264,1.2513027,1.72909,2.150293,2.4798270000000002,2.788658,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,Gen_III,0.0,0.0,0.0,0.00788758,0.015818,0.025357369999999997,0.03956817,0.05785676000000001,0.08378956000000001,0.11820904999999998,0.15982514999999997,0.21149094999999996,0.27526344999999997,0.34575114999999995,0.4375601499999999,0.54607347,0.6825779499999999,0.8589813,1.0144061,1.1407194,1.2684312,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,Gen_II_LWR,0.0010548,0.0089424,0.012312,0.011378,0.0108444,0.010066,0.00900079,0.00766372,0.006156,0.00464828,0.0033112,0.00224602,0.00146763,9.33965E-4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,PV,0.0,0.0,0.0,0.0061165,0.019644599999999998,0.0408404,0.07754939999999999,0.11290979999999999,0.13306069999999998,0.1467855,0.1556959,0.16298680000000001,0.1640914,0.1732501,0.2136863,0.2732593,0.3517328,0.4554121,0.5383985,0.5972124,0.6435773,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,PV_storage,0.0,0.0,0.0,5.48215E-5,1.767995E-4,3.675255E-4,6.997525E-4,0.0012519375,0.0024718674999999997,0.004365606,0.006805528,0.010175422,0.014955575,0.02082942,0.02896783,0.040240069999999996,0.055723169999999995,0.07740485,0.09682146999999999,0.11231823999999999,0.1272004,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,biomass (IGCC CCS),0.0,0.0,0.0,0.0,0.0,1.10503E-4,3.80611E-4,8.93995E-4,0.001990951,0.00394337,0.006758102,0.011419157999999999,0.018821616,0.028598844000000005,0.046881871000000006,0.07719150200000001,0.120244309,0.197320684,0.273512928,0.33953432000000006,0.4126000900000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,0.00101844,0.002986308,0.006038829,0.010962057,0.01810698,0.027265661,0.038402929,0.05236639,0.067870191,0.082735084,0.091998577,0.089620401,0.046721258,0.015630599000000002,0.005293663199999999,0.0012594409999999998,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,biomass (conv CCS),0.0,0.0,0.0,0.0,0.0,2.34891E-4,8.21923E-4,0.001959543,0.00440897,0.008695313,0.014450938,0.023833881,0.038180343,0.056074491000000004,0.09003124600000001,0.14388403700000002,0.21342266599999998,0.34536830399999996,0.47347715999999995,0.5822789899999999,0.7063185500000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,biomass (conv),0.0,0.0,0.0,0.00216369,0.0064557899999999994,0.011000260000000001,0.01889509,0.029877519999999998,0.044911980000000004,0.06376116999999999,0.08422942,0.10481627,0.12742688,0.14837862000000002,0.15829569,0.14544727000000002,0.10715253000000001,0.03394371400000001,0.008604095000000003,0.0026085834,5.755529980000001E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,coal (IGCC CCS),0.0,0.0,0.0,0.0,0.0,1.20347E-5,4.17658E-5,1.00796E-4,2.426652E-4,5.218028E-4,9.444302000000001E-4,0.0017006142,0.0029563177,0.0045995634,0.0075433474999999995,0.0122681974,0.0191464977,0.03198495949999999,0.0457889513,0.058630956,0.073412749,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,coal (IGCC),0.0,0.0,0.0,0.0,0.0,3.77642E-4,0.001035393,0.001996924,0.003433882,0.005386094,0.007811351,0.010418746999999999,0.013337463,0.016240006,0.017773176,0.017460653,0.015282507999999998,0.0064333004000000004,0.002122455,7.3936639E-4,1.76354222E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,coal (conv pul CCS),0.0,0.0,0.0,0.0,0.0,2.95486E-5,9.76252E-5,2.242331E-4,5.097804E-4,0.0010309882000000001,0.0017609591,0.0029782225,0.0048551918,0.0071777522,0.0110726638,0.0170219003,0.0253506946,0.0409997803,0.057797587000000004,0.073433899,0.091293113,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,coal (conv pul),1.36804E-4,4.64397E-4,3.16794E-4,0.004568493,0.008256854,0.011559807000000002,0.015992666,0.021225441999999997,0.027282784499999997,0.0340487228,0.0412090816,0.04720551025,0.05257402023,0.056699973072,0.054514360000000005,0.04403584,0.03196236,0.010636154000000002,0.0031106015,0.00100900283,2.2502966900000003E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,gas (CC CCS),0.0,0.0,0.0,0.0,0.0,0.0151168,0.0382477,0.0670055,0.1050382,0.1495742,0.19347029999999998,0.241209,0.2951395,0.348213,0.4027718,0.46994440000000004,0.5550124,0.7048021000000001,0.84951,0.9705669,1.0961900999999998,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,gas (CC),0.00153787,0.0520253,0.0,0.00794269,0.01998386,0.03035736,0.04850197,0.07579486,0.11529857999999998,0.1676404,0.23127921999999998,0.29689001,0.3596277,0.4162954000000001,0.4615786,0.4865045,0.4900274,0.41216879999999995,0.29052513999999996,0.17467910999999997,0.07038856900000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,gas (steam/CT),0.0440705,0.0966043,0.0931644,0.1177685,0.13984059999999998,0.1467041,0.15140620000000002,0.15286869999999997,0.1503206,0.14490835000000002,0.13880837000000001,0.12969296000000002,0.09555372,0.06906126,0.048958369999999994,0.03404548,0.02263161,0.009344585,0.0035012599999999995,0.0013237673,3.6536282E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,geothermal,0.0,0.0,0.0,0.0120567,0.0292152,0.0480063,0.0703685,0.08072599999999999,0.08072598,0.08072599999999999,0.08072587,0.08072603,0.08072594999999999,0.08072601,0.08072598,0.08072603,0.08072599999999999,0.08072596,0.08072603,0.08072599999999999,0.08072594999999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,hydro,0.06093,0.111103,0.11452,0.117706,0.120892,0.124078,0.127264,0.13045,0.140089,0.149728,0.159367,0.169006,0.178645,0.188284,0.197923,0.207562,0.217201,0.22684,0.23648,0.246118,0.246118,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,hydrogen cogen,0.0,0.0,0.0,0.0,1.82942E-4,3.9682E-4,7.173E-4,0.00127405,0.00215109,0.00338564,0.00502631,0.0067023,0.00945764,0.0139519,0.0197923,0.0276191,0.0377206,0.0507901,0.0658308,0.0826924,0.0890629,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,refined liquids (CC CCS),0.0,0.0,0.0,0.0,0.0,0.0233748,0.045986700000000005,0.06933059999999999,0.1013337,0.1329034,0.1586882,0.1859779,0.21437620999999996,0.23404418,0.2512533,0.2557849,0.19887780000000002,0.21936350000000002,0.194272,0.16486829999999997,0.14261247,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,refined liquids (CC),0.0,0.0,0.0,0.0173758,0.0370073,0.044555899999999996,0.057910119999999995,0.0752409,0.09874869,0.12562084,0.15470163,0.1765012,0.19181747999999998,0.19727989999999998,0.18346384999999998,0.15231924000000002,0.08830788,0.045331439999999994,0.018427195,0.007716127,0.0025403192999999998,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,refined liquids (steam/CT),0.0278928,0.0686556,0.119718,0.1412569,0.1571319,0.15450687999999999,0.14647504,0.1366028,0.12569004,0.11301085000000001,0.10214495,0.09138708,0.059248340000000004,0.036552560000000005,0.023223789999999998,0.016031056000000002,0.008599503,0.004196182,0.0016777442000000002,6.8230922E-4,2.163124E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,rooftop_pv,0.0,0.0,0.0,8.78339E-4,0.00285497,0.00680448,0.0127699,0.0178942,0.0149568,0.0184745,0.0276981,0.0446164,0.0713172,0.108176,0.167233,0.233004,0.306799,0.355296,0.395211,0.432091,0.462118,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,wind,0.0,0.0,0.0,0.00928075,0.02765515,0.05558745,0.10278804999999999,0.16781344999999998,0.26254764999999997,0.3793229,0.5102935,0.6598492,0.8223346,0.9751112,1.125737,1.27905,1.44057,1.673459,1.86315,2.0123849999999996,2.187079,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,wind_storage,0.0,0.0,0.0,4.19216E-5,1.367254E-4,2.996744E-4,6.090974E-4,0.0010887814,0.0018804733999999998,0.0030388218,0.004587407999999999,0.006781618999999999,0.010088336,0.014491052,0.02173869,0.03279722,0.04910613,0.07076797,0.08892883,0.10217033,0.11257500000000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,CSP,0.0,0.0,0.0,6.63531E-4,0.002460381,0.005041241,0.009616310999999999,0.014685820999999998,0.021968500999999998,0.029437869999999998,0.03604381,0.045316449999999994,0.05685657999999999,0.06889226999999999,0.09215809,0.11464599,0.13472060000000002,0.1620457,0.1831189,0.19802070000000002,0.21416600000000002,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,CSP_storage,0.0,0.0,0.0,0.0,0.0,0.00373913,0.01602543,0.03528173,0.06455783,0.09948613,0.13795613,0.1879989,0.2482056,0.30602989999999997,0.41530480000000003,0.5195165,0.6114575,0.7383016,0.8383956000000001,0.9107109999999999,0.9919469999999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,Gen_III,0.0,0.0,0.0,0.0916599,0.18127559999999998,0.3016876,0.5196275,0.7675665,1.0427514,1.2943294,1.5149561999999999,1.7731371,2.0707559,2.3444867,2.7627944,3.045846,3.2708769999999996,3.5436579999999998,3.6693470000000006,3.6953810000000002,3.792067,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,Gen_II_LWR,0.425914,0.537994,0.613461,0.566925,0.540334,0.50155,0.448476,0.381854,0.30673,0.231606,0.164985,0.111911,0.073126,0.0465358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,PV,0.0,0.0,0.0,2.22443E-4,6.63425E-4,0.001155542,0.001875892,0.002570595,0.003462728,0.004173459,0.004643623,0.005412646,0.006334436000000001,0.006939253,0.00630566,0.005561363,0.004807258,0.003733575,0.0022488259999999998,0.001072024,9.6904E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,PV_storage,0.0,0.0,0.0,1.99344E-6,5.96902E-6,1.0396509999999998E-5,1.68919E-5,2.311028E-5,3.114492E-5,3.750907E-5,4.176156E-5,4.866167000000001E-5,5.731618E-5,6.72251E-5,8.813226000000001E-5,1.0914957E-4,1.286236E-4,1.559741E-4,1.7812920000000003E-4,1.9463720000000001E-4,2.140994E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,biomass (IGCC CCS),0.0,0.0,0.0,0.0,0.0,8.4103E-5,3.004325E-4,6.309320000000001E-4,0.0012532639,0.0021227171,0.0032644476000000004,0.0054934264,0.009406998199999999,0.0145736627,0.0266524692,0.0407890941,0.054474165699999993,0.0741814,0.092748887,0.10826100100000002,0.131212171,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,6.59323E-4,0.001973718,0.003570276,0.005783722,0.008094211,0.010123201,0.012212638,0.013966935000000002,0.014613759999999998,0.013326138,0.009361398000000002,0.0049890125,0.0012777411,3.2433567E-4,1.02674011E-4,2.3671862299999997E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,biomass (conv CCS),0.0,0.0,0.0,0.0,0.0,1.89472E-4,6.769059999999999E-4,0.001426216,0.002873059,0.004899218,0.007546008,0.013049308,0.023212017,0.037433213,0.07672773799999999,0.12837268500000001,0.17787302700000002,0.25343266900000005,0.322041326,0.37644737000000006,0.4595745,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,biomass (conv),0.0,0.0,0.0,0.00157149,0.0042188519999999995,0.00658955,0.01161243,0.01672265,0.022515668000000003,0.027333018,0.029934124000000003,0.031276568000000005,0.030930885999999998,0.028077786,0.020612269,0.011023094,0.004548743,9.409642799999999E-4,2.1491678900000002E-4,6.31189953E-5,1.336679313E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,biomass cogen,1.33152E-4,0.00948844,0.00997641,0.0098204,0.0119794,0.0137582,0.0142472,0.0144705,0.014495,0.0143769,0.0134686,0.0128082,0.0118379,0.0107197,0.00876096,0.00622796,0.00402307,0.00192409,9.85651E-4,5.70862E-4,2.83477E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,coal (IGCC CCS),0.0,0.0,0.0,0.0,0.0,1.4419E-4,4.72575E-4,9.26899E-4,0.00173874,0.002836875,0.004259394,0.007004801,0.011658393999999999,0.017280607,0.028332286999999998,0.039749643,0.050028152,0.063426117,0.075478118,0.084961788,0.09810193,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.00350041,0.0091504,0.01490997,0.021277980000000002,0.026766859999999996,0.03103713,0.033930880000000004,0.034891479999999996,0.03305716,0.022768543000000002,0.011985820999999999,0.0057077054,0.00125344658,3.2845159500000007E-4,1.025344018E-4,2.1549470779999995E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,coal (conv pul CCS),0.0,0.0,0.0,0.0,0.0,3.71837E-4,0.001156569,0.0021687219999999997,0.0038595260000000003,0.00599412,0.008628198,0.013510288,0.021462631000000003,0.030875059000000003,0.048792062,0.066956568,0.083008608,0.10349201800000002,0.12166385900000001,0.13567186,0.15483201000000002,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,coal (conv pul),0.54613,0.551288,0.556386,0.5736498999999999,0.5926627,0.5882817000000001,0.5784481,0.5494348,0.5076934,0.45740299999999995,0.4074031999999999,0.35642458999999993,0.30365367000000004,0.24527284000000002,0.11459860000000001,0.044135203,0.0169006563,0.0032251070199999995,7.40795543E-4,2.0367629780000004E-4,3.7396766510000016E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,coal cogen,0.0191956,0.0442918,0.0415224,0.0406849,0.0244519,0.0241285,0.0192552,0.0154556,0.0108823,0.00794988,0.00603893,0.00374314,0.00244589,0.00166647,8.41299E-4,4.75497E-4,2.96666E-4,1.32178E-4,6.93886E-5,4.06677E-5,1.99749E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,gas (CC CCS),0.0,0.0,0.0,0.0,0.0,0.0906121,0.235391,0.377389,0.5355532,0.6743644,0.7918121,0.9340795000000001,1.1032161999999999,1.2611223,1.4393829999999999,1.5456310000000002,1.610238,1.697624,1.753375,1.7682139999999997,1.7730389999999998,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,gas (CC),0.0,0.0,0.0,0.0474613,0.11582339999999999,0.1651522,0.2569053,0.3661934,0.499136,0.6248436,0.7320361999999999,0.8225671999999999,0.8481319,0.8153908999999999,0.7317184000000001,0.5640345,0.39021379999999994,0.17440867000000002,0.070653378,0.028563705999999998,0.0079261417,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,gas (steam/CT),1.69041,1.4949,1.7391,1.6834,1.7149079999999999,1.6542248,1.55125,1.3860997,1.1655272999999997,0.9360488,0.7276109,0.5251861800000001,0.30404878,0.16449869,0.04180184099999999,0.016905146000000003,0.006890255,0.0017616533,5.018007E-4,1.62485859E-4,3.99303347E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,gas cogen,0.153428,0.0866757,0.134862,0.133479,0.131192,0.142329,0.133248,0.122714,0.107911,0.0948032,0.0835272,0.0698133,0.0581605,0.0476255,0.0338836,0.0244299,0.0181588,0.0107954,0.00696899,0.00469087,0.00268633,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,geothermal,1.00804E-4,0.00147597,0.0018179,0.0122161,0.02950008,0.050299769999999994,0.08075333999999999,0.10918939,0.1378267,0.1558826,0.16563450000000002,0.1780674,0.1882238,0.19383999999999998,0.19384,0.19384,0.1938399,0.1938399,0.19383999999999998,0.19383989999999998,0.19384,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,hydro,0.597301,0.621637,0.599339,0.636624,0.673909,0.711195,0.74848,0.785765,0.827183,0.868601,0.910019,0.951437,0.992855,1.03427,1.07569,1.11711,1.15853,1.19994,1.24136,1.28278,1.28278,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,hydrogen cogen,0.0,0.0,0.0,0.0,0.00145578,0.00259091,0.00382198,0.00518544,0.00673602,0.00873759,0.0111292,0.0134277,0.0168928,0.0213221,0.029804,0.0425212,0.0526325,0.0736397,0.079932,0.0858923,0.0838275,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,refined liquids (CC CCS),0.0,0.0,0.0,0.0,0.0,0.00392231,0.0074131,0.009104850000000001,0.011756135,0.013220727000000002,0.014536989,0.01765888,0.021418895,0.024038256,0.031278650000000005,0.035187750000000004,0.03268786,0.04346888,0.042705980000000004,0.04024409,0.043728069999999994,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,refined liquids (CC),0.0,0.0,0.0,0.00271014,0.005015749999999999,0.005072419999999999,0.006837229,0.008048498000000001,0.009615515,0.010465479,0.010770972,0.01075688,0.010039709,0.008234652,0.006528591,0.004029594,0.0021350182000000003,0.0010355690999999999,3.9197949E-4,1.5877197000000002E-4,5.4401949000000006E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,refined liquids (steam/CT),0.463118,0.0644098,0.025717,0.02351167,0.02419173,0.022725790000000003,0.020519196000000003,0.01760208,0.014807548,0.01216521,0.009954359000000001,0.0078012970000000004,0.004542845900000001,0.0024319748,0.001015736,5.195477999999999E-4,2.3513648E-4,9.854093E-5,3.4309975E-5,1.32492094E-5,4.1391437999999995E-6,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,refined liquids cogen,0.0,0.0119671,0.0078013,0.00840462,0.0076648,0.0076079,0.00686414,0.00619801,0.00579869,0.00544004,0.00514658,0.00476265,0.00441653,0.0039977,0.00330836,0.00275757,0.00207902,0.00160116,0.00109945,7.78291E-4,4.92536E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,rooftop_pv,0.0,0.0,0.0,5.26837E-6,1.83384E-5,5.02262E-5,9.66067E-5,1.38051E-4,2.14613E-4,3.14832E-4,4.37868E-4,6.26403E-4,8.41105E-4,8.77903E-4,2.15307E-4,1.96223E-4,2.05161E-4,2.11761E-4,2.14472E-4,2.15095E-4,2.10347E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,wind,0.0,2.51994E-5,1.43992E-5,0.009684459199999999,0.0296774592,0.0598676592,0.11854105919999999,0.18870325919999997,0.28415556000000003,0.3790115,0.46615650000000003,0.5801063,0.7095218999999999,0.8321437,1.056691,1.264998,1.4456749999999998,1.6891,1.865026,1.98479,2.118825,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,wind_storage,0.0,0.0,0.0,3.47916E-5,1.107952E-4,2.3232720000000001E-4,4.814832E-4,7.956762E-4,0.0012449352,0.0017198086,0.0021846699999999997,0.002819004,0.0035848279999999995,0.004340635,0.005746216,0.007106421,0.008324316,0.010016259999999999,0.0113495,0.01232022,0.013484659999999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,CSP,0.0,0.0,0.0,1.03512E-6,8.0185E-6,3.9109099999999995E-5,1.045393E-4,2.068983E-4,3.5826529999999997E-4,4.4091218E-4,4.993843E-4,5.984167E-4,7.370705E-4,8.658744999999999E-4,0.0010599335,0.0014145585,0.001890847,0.002606025,0.00295378,0.003113191,0.00319996,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,CSP_storage,0.0,0.0,0.0,0.0,0.0,1.03357E-4,5.06543E-4,0.001398692,0.002797402,0.004779872,0.007677832000000001,0.013680645000000002,0.023313459,0.03437381,0.052283300000000005,0.07645903000000001,0.10834277,0.16257080000000002,0.1945681,0.2136657,0.23100089999999998,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,Gen_III,0.0,0.0,0.0,1.57771E-4,5.11038E-4,0.006124778,0.019101568,0.038949468,0.063285068,0.091115668,0.119365567,0.155211567,0.198806567,0.24241416699999999,0.303354267,0.37632729600000003,0.46259093,0.5912308000000001,0.6643837,0.7042995000000001,0.7464215000000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,Gen_II_LWR,0.0304164,0.0406546,0.0435562,0.040252,0.0383641,0.0356104,0.0318421,0.027112,0.0217781,0.0164442,0.0117141,0.00794576,0.00519202,0.00330409,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,PV,0.0,7.55997E-5,7.55997E-5,8.307577E-4,0.0045602677000000005,0.0174606677,0.0398778677,0.0703995677,0.110741268,0.15964061,0.1939641,0.2048993,0.2023951,0.1906504,0.17632659999999997,0.1588989,0.15993210000000002,0.1961198,0.2158975,0.2264301,0.2345733,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,PV_storage,0.0,0.0,0.0,6.76853E-6,4.039703E-5,1.5648003E-4,3.5865303E-4,6.3191003E-4,9.9599703E-4,0.0014391425000000002,0.001993388,0.003097095,0.004884151999999999,0.0069827249999999995,0.010443928,0.015231663999999999,0.02165109,0.0326845,0.039312190000000004,0.04337331,0.04720171,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,biomass (IGCC CCS),0.0,0.0,0.0,0.0,0.0,5.8711E-5,1.829744E-4,4.041365E-4,8.07233E-4,0.001427659,0.00223887,0.0038462658,0.006514071599999999,0.0099213194,0.0167478497,0.0267519334,0.0392042328,0.06172656,0.076821208,0.087861079,0.10101004100000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,5.11179E-4,0.0013821039999999999,0.002599721,0.0041996889999999995,0.006067896,0.007910760999999999,0.010214563,0.012756921000000001,0.015047316000000002,0.017255168999999997,0.018198172000000002,0.016971416,0.009048854999999998,0.0030770977,0.0010050130000000001,2.12937885E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,biomass (conv CCS),0.0,0.0,0.0,0.0,0.0,1.27357E-4,3.886526E-4,8.746064E-4,0.001794837,0.003220209,0.0050464839999999995,0.008803996000000001,0.014965926000000001,0.02264241,0.038617804,0.060642314,0.084183245,0.124017189,0.148544124,0.16636416799999998,0.18804306,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,biomass (conv),0.0,9.54006E-4,0.00101159,5.40137E-4,0.0016667160000000002,0.003861233,0.007187384,0.011257378,0.015765768,0.020221821,0.023847834,0.0279133255,0.0311488524,0.0330184824,0.033748757,0.030077366000000005,0.021359583,0.007062105,0.0018113463999999998,5.202204700000001E-4,1.0027446990000001E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,coal (IGCC CCS),0.0,0.0,0.0,0.0,0.0,5.16695E-4,0.001501343,0.0030695690000000003,0.005820121,0.009937004999999999,0.015096953,0.024936016000000002,0.039626496,0.055500832,0.080492525,0.109486509,0.139540274,0.184062652,0.20970979,0.22645418,0.24129994999999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.0148188,0.035735499999999996,0.0594194,0.0839481,0.1068975,0.1255988,0.14162249999999998,0.1540654,0.1600633,0.15134325,0.1315284,0.10292303999999997,0.03914157000000001,0.012325375999999999,0.0038752635,7.539683859999999E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,coal (conv pul CCS),0.0,0.0,0.0,0.0,0.0,0.00129043,0.00356011,0.006961569999999999,0.012591350000000001,0.02049148,0.02986669,0.04688440000000001,0.07065598000000001,0.09506009000000001,0.13097093999999998,0.17001201,0.20789065,0.26119296000000003,0.29015002,0.30856275000000005,0.3225627099999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,coal (conv pul),0.561333,0.824519,0.870765,0.8535106,0.8957390999999999,0.971122,1.0373634,1.0719909000000003,1.0670472,1.0367569,0.9947006,0.9446445,0.8912045000000002,0.8292637,0.6763049999999999,0.50606365,0.32784860000000005,0.0954089,0.025226355000000002,0.006865459859999999,0.00116856301,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,gas (CC CCS),0.0,0.0,0.0,0.0,0.0,7.36889E-4,0.001966547,0.0036286310000000002,0.005794691,0.00834604,0.010972132,0.014949820999999999,0.020411315,0.026405179999999997,0.03556621,0.04752249,0.06234462,0.09124911,0.11244271,0.12954408,0.15109469,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,gas (CC),0.0,0.0,0.0,5.6627E-5,2.891108E-4,7.904339E-4,0.0017836813000000002,0.0033671945,0.00554139,0.008248818,0.011198412,0.0147692657,0.018911757,0.022766608,0.026318857,0.028945609999999997,0.03062719,0.028403660000000004,0.022201415,0.014959316999999996,0.0063928612,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,gas (steam/CT),0.0,0.0,0.0,2.48375E-4,7.70821E-4,0.001412062,0.002160197,0.002827566,0.003330764,0.003657591000000001,0.003881824,0.004014946,0.003805971,0.003303183,0.002696574,0.002055937,0.0014780814999999997,7.395338000000001E-4,3.1322250000000005E-4,1.2816501E-4,3.467731200000001E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,geothermal,0.0,0.0,0.0,0.00134717,0.00529675,0.01209389,0.015538989999999999,0.015539003000000001,0.015539007,0.015538999999999999,0.015539,0.015539009999999999,0.015539,0.015539,0.015538999999999999,0.015538994,0.015538977999999998,0.015538956,0.015538974,0.015538999999999999,0.015538988,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,hydro,0.003636,0.0047952,0.0076968,0.007887,0.0080772,0.0082674,0.0084576,0.0086478,0.0090258,0.0094037,0.0097816,0.0101596,0.0105375,0.0109155,0.0112934,0.0116714,0.0120493,0.0124272,0.0128052,0.0131831,0.0131831,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,hydrogen cogen,0.0,0.0,0.0,0.0,6.90964E-5,1.45938E-4,2.48963E-4,3.82313E-4,5.74177E-4,8.22287E-4,0.00118949,0.00170094,0.00221256,0.0028674,0.00446899,0.00655509,0.00848113,0.0114713,0.0149534,0.0181501,0.0172707,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,refined liquids (CC CCS),0.0,0.0,0.0,0.0,0.0,2.07694E-4,3.442168E-4,4.676748E-4,6.337569E-4,7.878112E-4,9.491389000000001E-4,0.0012695208,0.0015456458999999999,0.0017469376999999999,0.002169282,0.002450338,0.0020586669999999997,0.002456728,0.0021399579,0.0018742818,0.0015946684999999998,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,refined liquids (CC),0.0,0.0,0.0,2.92679E-5,1.0241429999999999E-4,1.651785E-4,2.677656E-4,3.7601080000000003E-4,4.966011E-4,6.0810874E-4,7.1392952E-4,8.5407286E-4,9.416995E-4,9.443397E-4,9.479306E-4,8.580905999999999E-4,5.459675E-4,3.416325E-4,1.3846852999999999E-4,5.7753720000000004E-5,1.8199870000000003E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,refined liquids (steam/CT),0.0,0.0,7.09205E-4,3.790807E-4,4.7854350000000006E-4,5.25986E-4,5.232201E-4,4.908307000000001E-4,4.5685949999999995E-4,4.0786679999999995E-4,3.770111E-4,3.539637000000001E-4,2.8678557E-4,2.052854E-4,1.3860216000000002E-4,9.621045E-5,5.092601E-5,2.680957E-5,1.1172301E-5,4.7141819000000005E-6,1.4242372000000001E-6,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,rooftop_pv,0.0,0.0,0.0,1.28607E-4,6.83289E-4,0.00233866,0.00544818,0.0107871,0.0206448,0.0338777,0.0432092,0.0399286,0.04016,0.0490089,0.0781381,0.115373,0.147938,0.16366,0.173269,0.173649,0.160204,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,wind,0.0,1.15199E-4,1.152E-4,0.00131125,0.0067557599999999995,0.02422026,0.053089960000000005,0.09073556,0.13808276000000003,0.19247921,0.2444736,0.3069689,0.38306419999999997,0.4528516,0.5168712,0.5598439,0.6051679999999999,0.6805462,0.6824622,0.6597533,0.6679363,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,wind_storage,0.0,0.0,0.0,4.46512E-6,2.6866220000000002E-5,1.0798862E-4,2.5463062E-4,4.6231462000000004E-4,7.4359362E-4,0.0010886235,0.0014485544,0.001937945,0.002613715,0.0033991430000000003,0.0052636639999999995,0.008777608999999999,0.014236606999999998,0.024118094,0.030517052,0.034668210000000005,0.03789142,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,CSP,0.0,0.0,0.0,2.25203E-5,2.1076E-5,1.195177E-4,3.921887E-4,7.924307E-4,0.0013350187000000001,0.0020089794,0.0027935674,0.00401038,0.005798639,0.007431107,0.009773459,0.012094338,0.01435964,0.01614519,0.01732752,0.0177769,0.01810346,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,CSP_storage,0.0,0.0,0.0,0.0,0.0,3.22445E-4,0.002002605,0.005490925000000001,0.010495705000000001,0.017364085,0.025678345,0.0393739,0.05997964,0.07858672,0.10564454,0.13255286,0.1598463,0.1820722,0.1972297,0.20346179999999997,0.20779450000000002,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,Gen_III,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0086084,0.0257917,0.0470477,0.07365089999999999,0.10677349,0.13534189000000002,0.17107399,0.20466978,0.23553767000000003,0.26436425,0.29255474000000004,0.31312192,0.3303495,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,PV,0.0,0.0,0.0,0.0018418,0.00172367,0.0063536700000000005,0.016826670000000002,0.030205970000000002,0.04640927,0.06319387,0.07469537,0.07981089,0.07875162,0.07411486,0.06845996,0.06030746,0.057670240000000005,0.057186610000000006,0.05819238,0.058600030000000004,0.062302630000000005,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,PV_storage,0.0,0.0,0.0,1.65075E-5,1.54488E-5,5.7105600000000004E-5,1.51554E-4,2.71332E-4,4.17379E-4,5.756185E-4,7.646995E-4,0.0010380334,0.001438793,0.001810559,0.002376639,0.002960092,0.0035752460000000002,0.004086516,0.004451854,0.004618265,0.004758376,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,biomass (IGCC CCS),0.0,0.0,0.0,0.0,0.0,3.61652E-5,1.597166E-4,3.782494E-4,7.459411E-4,0.0013105666,0.0019877229,0.0033141732,0.0058084021,0.0088806812,0.014707773399999999,0.0218018695,0.0292418376,0.037152198,0.045367007,0.051490499,0.059711307,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,2.81034E-4,0.001028959,0.002081703,0.003361355,0.0048483630000000005,0.00616861,0.007692666000000001,0.009265473,0.010153645,0.010034765999999999,0.008421838999999999,0.0056791657000000014,0.0017721087000000001,4.7638856E-4,1.5128946500000002E-4,3.329803089E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,biomass (conv CCS),0.0,0.0,0.0,0.0,0.0,8.17355E-5,3.706492E-4,8.903174E-4,0.0017763218999999998,0.0031432452000000003,0.0047521647,0.008034326000000001,0.014532112399999998,0.023036121,0.0421588132,0.06839820840000001,0.09572830140000001,0.12671537700000002,0.157940062,0.18022648400000002,0.21158238999999998,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,biomass (conv),1.28437E-4,1.46781E-4,1.53303E-4,8.989592E-4,7.233681E-4,0.0021528573,0.0051991265,0.0089562636,0.0127338113,0.0164807658,0.01917546898,0.021590724329999998,0.0233629125,0.023183895745999997,0.01957666,0.012738759000000004,0.006418698,0.0014147865,3.27824403E-4,9.528118250000001E-5,1.9312518380000008E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,coal (IGCC CCS),0.0,0.0,0.0,0.0,0.0,4.06794E-6,1.828157E-5,4.5284969999999995E-5,9.765093000000001E-5,1.8925309E-4,3.1321698E-4,5.883147099999999E-4,0.00115946461,0.0018980546199999998,0.00324286355,0.00488511845,0.0066957210999999996,0.0086750567,0.0109052355,0.012688134800000002,0.0152170529,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,coal (IGCC),0.0,0.0,0.0,0.0,0.0,9.73804E-5,3.335039E-4,6.537556E-4,0.001021819,0.0014255455,0.0017776913999999998,0.0021269863,0.002436654,0.0025706093000000003,0.0023033194,0.0016585093,0.0010090947,2.6745023E-4,7.594478099999999E-5,2.49026958E-5,5.3995536220000005E-6,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,coal (conv pul CCS),0.0,0.0,0.0,0.0,0.0,1.0519E-5,4.46963E-5,1.055011E-4,2.16341E-4,3.977182E-4,6.299036E-4,0.0011210267,0.0020993392,0.0033393845,0.0055271022999999996,0.0081510637,0.0109940482,0.0140599668,0.0174951885,0.020203981000000003,0.024024289,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,coal (conv pul),0.0,0.0,0.0,0.00146892,0.00137442,0.0023280239999999997,0.003934637,0.00569241,0.007258239,0.008663354000000002,0.009698319,0.010458801,0.010893443,0.010723582999999998,0.008589112,0.004925471699999999,0.0026737852999999994,6.0381662E-4,1.5346066499999998E-4,4.52083927E-5,8.819899254E-6,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,gas (CC CCS),0.0,0.0,0.0,0.0,0.0,0.00452537,0.01425532,0.025681139999999998,0.037762500000000004,0.05008025,0.0602261,0.07358453999999999,0.09190593999999999,0.10938639,0.13062941,0.1486748,0.16497989999999998,0.18111639999999998,0.1985773,0.21110450000000003,0.2281232,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,gas (CC),0.0,0.0,0.0,0.00292974,0.0027361,0.0057173,0.01245876,0.021807399999999998,0.032231079999999995,0.043444189999999994,0.05312498,0.06302313,0.06984933,0.07603754,0.0759876,0.06853354,0.05703406,0.03751177,0.020575131000000003,0.010167918100000001,0.00312164996,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,gas (steam/CT),0.0559019,0.0568119,0.0896734,0.0931954,0.08147599999999999,0.08526347000000001,0.08282315999999999,0.07718505,0.06786716000000001,0.057766910000000005,0.0490377,0.04068552599999999,0.024099523,0.019476344,0.010530767,0.005294027400000001,0.0024545524,7.034786399999998E-4,2.11154939E-4,7.131962599999999E-5,1.6261211600000003E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,geothermal,0.0,0.0,0.0,0.0051516,0.00482121,0.01455296,0.03025247,0.04537106,0.05903204,0.06742018,0.06837499999999999,0.06837497,0.06837499,0.06837504,0.06837498,0.06837492,0.06837502,0.068375,0.06837507000000001,0.0683948,0.06837512,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,hydro,0.135365,0.280561,0.279418,0.282905,0.268025,0.289879,0.293366,0.296853,0.303009,0.309166,0.315323,0.321479,0.327636,0.333792,0.339949,0.346105,0.352262,0.358418,0.364575,0.370731,0.370731,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,hydrogen cogen,0.0,0.0,0.0,0.0,7.17792E-4,0.00135267,0.00221766,0.00326037,0.00434027,0.00574037,0.00778321,0.00961966,0.0123064,0.0155908,0.0214277,0.0303264,0.0388028,0.0536146,0.0589266,0.064767,0.0626094,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,refined liquids (CC CCS),0.0,0.0,0.0,0.0,0.0,0.00796456,0.020996840000000003,0.03279133,0.04420923,0.05471448,0.06327683,0.07660449,0.09390223,0.10653910999999999,0.12409285999999999,0.1358446,0.1323147,0.14789555,0.14621875,0.13833404,0.13638676,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,refined liquids (CC),0.0,0.0,0.0,0.00647661,0.00456658,0.00860278,0.01559197,0.02316366,0.02996534,0.03635837,0.04098175,0.04468668,0.04489936,0.04165022,0.03183192,0.021030709999999998,0.011806056,0.005414207999999999,0.0021445831,8.9177071E-4,2.79955787E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,refined liquids (steam/CT),0.0549622,0.0959904,0.110144,0.1116347,0.0961024,0.09798791,0.09069926999999998,0.07997771000000001,0.06671243,0.053456029999999995,0.04281355099999999,0.033308000000000004,0.018344173999999998,0.013638965,0.005580766000000001,0.0030710128999999996,0.0014681244999999999,6.160614E-4,2.1952477E-4,8.6295993E-5,2.52593126E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,rooftop_pv,0.0,0.0,0.0,5.9248E-4,0.00107566,0.0025568,0.00499929,0.00867669,0.0136211,0.0195849,0.0225522,0.0231982,0.0245649,0.0304222,0.0332112,0.0363804,0.0366362,0.0397441,0.045944,0.0537792,0.0619164,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,wind,0.0,0.0,0.0,0.00345569,0.00323407,0.011716109999999998,0.03040921,0.05412661,0.08150271,0.10935961999999999,0.13834372,0.16952830000000002,0.2044161,0.2308906,0.2700116,0.3052657,0.3412963,0.3663184,0.3795267,0.3811304,0.38323,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,wind_storage,0.0,0.0,0.0,1.57197E-5,1.47115E-5,6.05689E-5,1.7903789999999998E-4,3.493319E-4,5.667699E-4,8.199842E-4,0.0010878302,0.0014333139999999998,0.0018767819999999998,0.002257069,0.0028115930000000003,0.003349433,0.0039010919999999997,0.004349250999999999,0.004671685,0.004811027,0.004962155,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,CSP,0.0,0.0,0.0,3.66545E-6,1.2575100000000001E-5,4.10195E-5,1.07327E-4,2.09268E-4,3.42483E-4,5.1534955E-4,7.253479E-4,9.920705E-4,0.001377382,0.001798342,0.0024274690000000002,0.0030988870000000003,0.003717245,0.004135251,0.004437932,0.004544692,0.004604242,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,CSP_storage,0.0,0.0,0.0,0.0,0.0,9.45587E-5,5.031457E-4,0.0013916317,0.0026204017,0.004360011699999999,0.0066596317,0.009638003,0.013890936,0.0184092,0.025117109999999998,0.03230602,0.039798850000000004,0.046556850000000004,0.05340103,0.05743287,0.061307789999999994,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,Gen_III,0.0,0.0,0.0,0.0,0.0,8.32629E-4,0.0032242390000000003,0.007068789000000001,0.013757699000000002,0.023794188,0.037041788,0.052141088,0.071770777,0.091801956,0.11809934500000001,0.144651424,0.169636171,0.18993739,0.20946466,0.22275825,0.236881,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,PV,0.0,0.0,1.08005E-5,7.081995E-4,0.0019491495,0.0050272195,0.0109520795,0.0188796795,0.028129618999999998,0.03892682,0.05115657,0.0659175,0.08676244,0.10977424,0.1463509,0.18555510000000003,0.21791430000000003,0.23403210000000002,0.24020470000000005,0.23793409999999998,0.2319794,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,PV_storage,0.0,0.0,0.0,6.25058E-6,1.743958E-5,4.5136179999999995E-5,9.856808E-5,1.6953938000000002E-4,2.5295498E-4,3.4966639999999997E-4,4.601384E-4,5.925348E-4,7.800678999999999E-4,9.889066E-4,0.0013155670000000001,0.001678847,0.002071698,0.002432301,0.0028064789999999997,0.003036657,0.003269996,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,biomass (IGCC CCS),0.0,0.0,0.0,0.0,0.0,1.05954E-4,3.23571E-4,6.41974E-4,0.001079551,0.00168823,0.0024800910000000002,0.003770293,0.0060954089999999995,0.009230604,0.015056576,0.022207185,0.029462693999999998,0.036022148999999996,0.042872037,0.048064394,0.054559934000000004,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,8.24366E-4,0.0021292480000000003,0.003631131,0.005085356000000001,0.006602483,0.007997122,0.009214949,0.010290872999999999,0.010689658,0.009584289,0.0067762709999999995,0.003652748,8.895733E-4,2.10932947E-4,6.0990948E-5,1.3283642300000002E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,biomass (conv CCS),0.0,0.0,0.0,0.0,0.0,2.39354E-4,7.38964E-4,0.001484279,0.0025325620000000004,0.004002801,0.005874988,0.009074378,0.015140251,0.023824125,0.042952808999999995,0.06942029499999999,0.096111374,0.12200253200000001,0.148324444,0.16751054,0.19271812,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,biomass (conv),7.38011E-4,0.00187928,0.00589348,0.00803125,0.010706589999999998,0.01402857,0.018481130000000002,0.0227399,0.0257115,0.02820428,0.029295681,0.029087343999999998,0.027852317999999997,0.02488004099999999,0.017720027,0.009076146,0.0036562885000000003,6.9863999E-4,1.4682559399999996E-4,3.868655109E-5,7.74291625E-6,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,biomass cogen,0.0036131,0.00638438,0.0103109,0.0121454,0.0160429,0.0200483,0.0203435,0.0200525,0.0198215,0.0192311,0.0174675,0.016011,0.013904,0.0116541,0.00842386,0.00523976,0.00308102,0.00127471,5.92027E-4,3.17283E-4,1.47896E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,coal (IGCC CCS),0.0,0.0,0.0,0.0,0.0,1.29014E-4,4.31178E-4,9.20613E-4,0.001684164,0.002851467,0.0044837209999999995,0.0072889,0.012481947,0.019251841,0.030299280999999997,0.042699474,0.054718702,0.06483966699999999,0.075155672,0.08258323599999999,0.09120519,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.00309449,0.00813453,0.01397253,0.01936308,0.024507269999999998,0.029097650000000003,0.03231101,0.03421612,0.03362628,0.025042321000000003,0.013859411,0.006730773999999999,0.00144335005,3.6273943699999993E-4,1.0583534209999999E-4,2.2057312210000002E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,coal (conv pul CCS),0.0,0.0,0.0,0.0,0.0,3.33481E-4,0.001059501,0.002160467,0.0037749140000000003,0.006083979,0.009138345999999999,0.014142589,0.023037191999999998,0.034403076,0.052375001000000004,0.07218935,0.091064836,0.106626014,0.12230955,0.13330631,0.14591024,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,coal (conv pul),0.0234905,0.0288587,0.0638058,0.097061,0.1171209,0.1403729,0.1690943,0.19412379999999999,0.2089638,0.21852629999999998,0.224168,0.22154739,0.21085578,0.1878906,0.11526507000000003,0.04804183900000001,0.019616506500000002,0.0036446165500000002,8.053516140000001E-4,2.0505374950000006E-4,3.7918207851E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,gas (CC CCS),0.0,0.0,0.0,0.0,0.0,0.0269152,0.072133,0.1247615,0.1765771,0.2297322,0.2814448,0.34136730000000004,0.4240243,0.513014,0.6174529,0.7159726,0.8018826000000001,0.8689344999999999,0.9398561999999999,0.9810745000000001,1.0320964,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,gas (CC),9.89479E-4,0.0455515,0.0115326,0.029202,0.0468195,0.06710735,0.10223111,0.14781902,0.19324815999999997,0.24137160000000002,0.28985613000000005,0.33217729999999995,0.35480893,0.364602057,0.34696570000000004,0.2936977,0.22471466,0.12257932,0.055577481,0.0227399659,0.006427158200000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,gas (steam/CT),0.00377338,0.0350843,0.0949676,0.1302727,0.1534584,0.16929190000000002,0.18380660000000001,0.1897063,0.1840901,0.17329748,0.15998482000000003,0.14006537,0.09276801000000001,0.060795919999999996,0.030869208999999998,0.013473234000000002,0.0056194003,0.0014992323,4.3382475999999997E-4,1.3334315200000003E-4,3.1204403899999995E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,gas cogen,0.0,0.0,2.55884E-4,3.34878E-4,3.47686E-4,4.06828E-4,3.5956E-4,3.1253E-4,2.68332E-4,2.28924E-4,1.96298E-4,1.58751E-4,1.24757E-4,9.48771E-5,6.01535E-5,3.87435E-5,2.69822E-5,1.43119E-5,8.54425E-6,5.37992E-6,2.92652E-6,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,geothermal,0.0,0.0,0.0,0.00219054,0.00566064,0.013555339999999999,0.0270108,0.04280226,0.05855525,0.07327379,0.08735295000000001,0.0997828,0.11315510000000001,0.125044,0.14397300000000002,0.1608619,0.17463150000000002,0.18172879999999997,0.18502010000000002,0.182991,0.1816865,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,hydro,0.215035,0.400529,0.415487,0.446642,0.478199,0.509757,0.541315,0.572873,0.628591,0.684309,0.740027,0.795745,0.851463,0.907181,0.962899,1.01862,1.07434,1.13005,1.18577,1.24149,1.24149,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,hydrogen cogen,0.0,0.0,0.0,0.0,0.00311971,0.00616133,0.00937996,0.0129579,0.0173269,0.0229506,0.0292642,0.0346106,0.0420803,0.0505867,0.0646373,0.0841785,0.0991614,0.127198,0.128869,0.129824,0.12311,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,refined liquids (CC CCS),0.0,0.0,0.0,0.0,0.0,0.0331733,0.0660375,0.0908533,0.1104927,0.1290007,0.14426859,0.16559527,0.19536061,0.2155845,0.2430519,0.2521907,0.2193899,0.2365856,0.2083368,0.1720818,0.15903145,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,refined liquids (CC),0.0,0.0,0.0,0.0174073,0.0309165,0.0403618,0.05689181,0.07238201,0.08266268,0.09207916999999999,0.09820123,0.09615434,0.08967423999999999,0.07427833,0.051239999999999994,0.030179200000000003,0.015088012,0.00627132,0.0022999713,8.5272307E-4,2.66447884E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,refined liquids (steam/CT),0.0240485,0.0371498,0.0619949,0.0827103,0.09484420000000002,0.0979888,0.09540231,0.08827086,0.07971487999999999,0.07095375000000001,0.06291462999999999,0.05354014,0.03142278,0.018388782,0.009626104,0.004593336999999999,0.0018881955000000002,7.404843E-4,2.4228553999999997E-4,8.353141700000001E-5,2.4122493900000004E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,refined liquids cogen,0.0,0.0,0.00306942,0.00328852,0.00328858,0.0036168,0.0033535,0.00309251,0.00295984,0.00280336,0.00265739,0.00243181,0.00218866,0.00189939,0.00144982,0.00110564,7.84649E-4,5.54787E-4,3.60351E-4,2.4256E-4,1.48233E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,rooftop_pv,0.0,0.0,0.0,2.73816E-4,9.56966E-4,0.00239433,0.00419668,0.00665054,0.0105587,0.0157172,0.0224179,0.0325036,0.0437882,0.0544471,0.0652797,0.0714579,0.0718605,0.0652849,0.0612573,0.0641882,0.0706505,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,wind,0.0,2.88011E-5,0.00145447,0.00408978,0.00793947,0.0171176,0.034700499999999995,0.05829959999999999,0.08384433,0.11405521999999998,0.14818143,0.1871812,0.2392318,0.2933343,0.3751771,0.4597669,0.5401199999999999,0.5985621,0.6457575999999999,0.6648517,0.6796807,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,wind_storage,0.0,0.0,0.0,9.01827E-6,2.264397E-5,5.695597E-5,1.2608166999999998E-4,2.2422656999999998E-4,3.4178257E-4,4.814173E-4,6.472426E-4,8.504286000000001E-4,0.0011377638999999998,0.001452812,0.001944617,0.0024810580000000004,0.0030150729999999996,0.0034398459999999994,0.0038247809999999998,0.004031086,0.004223075,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,CSP,0.0,0.0,0.0,1.72579E-5,7.52947E-5,2.073437E-4,4.712567E-4,8.735196999999999E-4,0.0014842626999999999,0.0023276857999999997,0.0034358089999999997,0.00508522,0.007822097,0.010566934,0.012323721,0.014025649999999999,0.01609575,0.01863426,0.02025203,0.02140514,0.02367225,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,CSP_storage,0.0,0.0,0.0,0.0,0.0,4.38966E-4,0.002065166,0.005571115999999999,0.011204475999999998,0.019686165999999998,0.031946766,0.05036500000000001,0.0843158,0.14125595000000002,0.23356949,0.3509698,0.5092392,0.732001,0.966054,1.1635459,1.352941,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,Gen_III,0.0,0.0,0.0,0.00243011,0.00540213,0.01264358,0.02651627,0.046728870000000006,0.07293737,0.10607195,0.14729215,0.19866514000000002,0.26407933,0.34185703,0.44328173,0.5556705300000001,0.69193722,0.8629545000000001,1.0321603,1.1755335000000002,1.3199141,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,PV,0.0,5.012E-4,5.476E-4,0.00264255,0.00779994,0.016916880000000002,0.03196248,0.051921480000000006,0.07846198,0.11210693,0.15231174,0.1985909,0.2178445,0.2183531,0.21428319999999998,0.20504429999999998,0.1930217,0.1813882,0.1927794,0.21441829999999998,0.2356744,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,PV_storage,0.0,0.0,0.0,1.87767E-5,6.52789E-5,1.473148E-4,2.830018E-4,4.616868E-4,7.056908E-4,0.0010072151,0.0013745769,0.0019193699999999999,0.002957093,0.004774357999999999,0.0077593639999999995,0.011633263000000001,0.016936279,0.02447481,0.03249927,0.0393958,0.04615379,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,biomass (IGCC CCS),0.0,0.0,0.0,0.0,0.0,4.90313E-5,1.63316E-4,3.6857890000000003E-4,7.528921E-4,0.0013677343,0.0022373242,0.0037908919999999997,0.0063660364,0.0100767393,0.017385391,0.0285597611,0.0445412077,0.07315664499999999,0.105726031,0.136125729,0.17046193999999998,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,4.50872E-4,0.001279472,0.002484998,0.004152601,0.0063711160000000005,0.009146197,0.012675965,0.017302207,0.022696411,0.027074986,0.027871187,0.02431579,0.010049722599999998,0.0029514435,9.326204E-4,2.12399836E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,biomass (conv CCS),0.0,0.0,0.0,0.0,0.0,1.04307E-4,3.467543E-4,7.871668E-4,0.0016260116000000001,0.0029346413,0.0046287005,0.0076805326,0.0125455906,0.0191376236,0.032677924600000005,0.0525507318,0.0784116053,0.127227893,0.181434034,0.23075142199999998,0.28830088000000004,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,biomass (conv),5.77679E-5,7.19828E-6,0.0,6.66619E-4,0.00221629,0.00409129,0.007247841,0.011230455,0.015730266,0.020841527,0.025906033,0.030997248,0.037004357,0.04235277,0.042050981,0.034470496,0.022824949999999997,0.006379259,0.0015446036999999999,4.4633711999999995E-4,9.4758279E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,coal (IGCC CCS),0.0,0.0,0.0,0.0,0.0,1.28454E-5,4.10487E-5,8.96924E-5,1.829382E-4,3.3404949999999995E-4,5.456684E-4,9.228194E-4,0.0015432536,0.0023896685,0.003897314,0.0060519376000000005,0.009136523760000001,0.0146797403,0.021371624300000003,0.027838797499999998,0.035097471000000005,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,coal (IGCC),0.0,0.0,0.0,0.0,0.0,4.01646E-4,0.0010268249999999999,0.001827806,0.002788737,0.0039012179999999997,0.005183986,0.006499009,0.007871261,0.009116783,0.008701659,0.007159528000000001,0.005414089100000001,0.0018105622,5.404127999999999E-4,1.7554251999999998E-4,3.996615589999999E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,coal (conv pul CCS),0.0,0.0,0.0,0.0,0.0,3.15602E-5,9.611219999999999E-5,2.002525E-4,3.873838E-4,6.673934E-4,0.001029801,0.0016316867,0.0025508031,0.0037345451,0.0057075503,0.0083941704,0.012107821999999999,0.0188181778,0.026901775,0.03469023,0.043330599,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,coal (conv pul),0.0,0.00107293,0.00306896,0.00669796,0.0102421,0.01358455,0.01755657,0.02159515,0.02523402,0.028616729999999996,0.031904603000000004,0.034002203999999994,0.035232081000000005,0.035017508,0.027177020000000003,0.017597999000000003,0.010909627,0.0029875939999999997,8.0220471E-4,2.4114538100000003E-4,5.119008469999999E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,gas (CC CCS),0.0,0.0,0.0,0.0,0.0,0.0564536,0.13866479999999998,0.2332651,0.3383336,0.44515089999999996,0.5448766,0.6545739,0.7778974,0.9010845000000001,1.0097585999999998,1.1223533,1.2690478,1.5383358999999999,1.8365202999999999,2.0820809999999996,2.301181,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,gas (CC),0.00718272,0.0264569,0.0,0.0210076,0.0590732,0.09652859999999999,0.1593622,0.2474136,0.35483990000000004,0.4816657,0.6297268,0.7812828,0.9227175000000001,1.0439212,1.1041181999999998,1.0951085,1.0417113,0.7682512,0.4590403,0.23275034,0.078523083,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,gas (steam/CT),0.0162713,0.059822,0.139214,0.2067688,0.2773526,0.3090766,0.3320439,0.33904560000000006,0.3254784,0.30313100000000004,0.2782786,0.24027004000000002,0.17235972,0.11522643000000002,0.07086761000000001,0.04437970000000001,0.02837064,0.011060013,0.0039861796000000005,0.0014382813000000001,3.7996178E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,geothermal,0.0,0.0,0.0,0.00447888,0.01379648,0.0273539,0.04488589,0.06316291,0.08168268000000001,0.09632189999999999,0.099719,0.099719,0.0997189,0.09971899999999999,0.099719,0.09971902000000002,0.09971895,0.09971898,0.09971899,0.09971906,0.09971901,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,hydro,0.0268079,0.0463089,0.0710383,0.0749133,0.0787882,0.0826631,0.0865381,0.090413,0.102136,0.113859,0.125581,0.137304,0.149027,0.16075,0.172473,0.184196,0.195918,0.207641,0.219364,0.231087,0.231087,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,hydrogen cogen,0.0,0.0,0.0,0.0,0.00156767,0.00361199,0.00632953,0.00991198,0.0147123,0.0212988,0.0291751,0.0364233,0.0488217,0.0668021,0.0890171,0.126919,0.181644,0.247524,0.305649,0.354589,0.360783,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,refined liquids (CC CCS),0.0,0.0,0.0,0.0,0.0,0.0272466,0.04663374,0.06028829,0.07455574000000001,0.08498564,0.09138064,0.10253527,0.11615940999999999,0.12269509,0.13266965,0.13514011,0.09964059,0.11518138,0.09898143000000001,0.07604123,0.06415132,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,refined liquids (CC),0.0,0.0,0.0,0.0143374,0.03225091,0.038168549999999996,0.04933293,0.05987773,0.07017403,0.08098422,0.09250484,0.09943693,0.10628689,0.10567753,0.09013973,0.06969756,0.03910367,0.020238317,0.007964935,0.0030837327,9.926223399999998E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,refined liquids (steam/CT),0.00879918,0.0428959,0.0412827,0.05889,0.0760373,0.0772172,0.07400938,0.06763169,0.06121044,0.0552185,0.05034132000000001,0.04481134999999999,0.030955012,0.019147819,0.012430586000000002,0.007960594999999999,0.00378809,0.0018167656,6.903769000000001E-4,2.6439599E-4,8.068927900000001E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,rooftop_pv,0.0,0.0,0.0,1.45393E-4,5.37437E-4,0.00140579,0.00261099,0.00440525,0.00751292,0.0121812,0.0190896,0.0279549,0.0238188,0.0180211,0.0228997,0.0349537,0.0528307,0.0692012,0.0787634,0.0848051,0.089803,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,wind,0.0,4.92E-5,1.312E-4,0.00411994,0.01462134,0.034926940000000004,0.07117794,0.12221343999999999,0.19166574,0.27906390000000003,0.3846785,0.5237529,0.7092799,0.9376394000000001,1.2260519,1.490348,1.735002,1.991243,2.203059,2.355243,2.511538,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,wind_storage,0.0,0.0,0.0,1.25619E-5,4.63765E-5,1.144601E-4,2.404751E-4,4.2674110000000005E-4,6.935511E-4,0.0010478612,0.0015063846000000001,0.002157441,0.003098786,0.00437509,0.00638288,0.009393648,0.014435449999999999,0.02245449,0.031207069999999996,0.038614090000000004,0.045397950000000006,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,CSP,0.0,0.0,0.0,8.51203E-5,3.5042229999999997E-4,6.849893E-4,0.0011983382999999998,0.0018389972999999999,0.0027696273,0.003748277,0.004548415,0.005589027999999999,0.006957809,0.00834159,0.012166529999999998,0.0167531,0.020653289999999998,0.024034780000000002,0.0254619,0.0257491,0.02463788,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,CSP_storage,0.0,0.0,0.0,0.0,0.0,8.91272E-4,0.003426142,0.007900712,0.014779552000000001,0.023179882,0.032148822,0.042730250000000004,0.05576308000000001,0.06806250999999999,0.10084217,0.13965074,0.1724939,0.2013436,0.2140145,0.21707980000000002,0.2089623,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,Gen_III,0.0,0.0,0.0,0.0943028,0.1963897,0.2865856,0.3951265,0.5095685,0.6324985,0.7428895,0.8328496000000001,0.9295914000000001,1.042396,1.1492269000000002,1.3741166,1.5200189,1.6095545,1.6870957000000002,1.6862432,1.641824,1.6219241,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,Gen_II_LWR,0.1904,0.528419,0.534944,0.494364,0.471177,0.437356,0.391075,0.332981,0.267472,0.201963,0.143868,0.0975873,0.0637668,0.0405798,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,PV,3.60012E-6,5.40015E-5,0.00277919,0.003681907,0.005741606999999999,0.007759696999999999,0.010316546999999999,0.013093727,0.013920787,0.01687912,0.01847408,0.02108893,0.02475104,0.02865113,0.04099108,0.05616393,0.06950377,0.08150723,0.08691626999999999,0.08853934,0.08588544000000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,PV_storage,0.0,0.0,0.0,8.09049E-6,2.666099E-5,4.481909E-5,6.787659E-5,9.273809E-5,1.2521979E-4,1.517129E-4,1.661479E-4,1.8956529999999999E-4,2.224842E-4,2.580064E-4,3.680587E-4,5.049551E-4,6.247646000000001E-4,7.317471000000001E-4,7.807897000000001E-4,7.949717E-4,7.719517E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,biomass (IGCC CCS),0.0,0.0,0.0,0.0,0.0,3.14867E-6,7.610375E-6,1.449264E-5,3.128279E-5,5.7588451999999995E-5,9.364556E-5,1.8635057E-4,3.7368571999999995E-4,6.670628900000001E-4,0.00202554365,0.00457186558,0.00743283912,0.01096253132,0.01342866,0.015106066,0.0179360391,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,2.77758E-4,7.17281E-4,0.0013185599999999999,0.00220228,0.0032100790000000002,0.004166331,0.005298566,0.006631616999999999,0.007755711,0.009399989000000001,0.008975298999999999,0.006241018599999999,0.0019924997,5.282498900000001E-4,1.68930611E-4,4.043699250000001E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,biomass (conv CCS),0.0,0.0,0.0,0.0,0.0,3.34485E-6,8.415505E-6,1.5806852E-5,3.3645575999999996E-5,6.0268512999999996E-5,9.529973000000001E-5,2.0601479600000001E-4,4.47262436E-4,8.4233403E-4,0.0029703623300000002,0.00716738881,0.01186617987,0.017936447879999998,0.0219669733,0.024600176199999997,0.0293529639,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,biomass (conv),0.0,1.62005E-4,0.0012456,0.001529754,0.00275628,0.0036217339999999997,0.005225209999999999,0.007131428,0.00949564,0.011766481,0.013334177000000001,0.014819861,0.016168873,0.0165663769,0.016079287,0.011455443,0.0056787240000000004,0.0012789996999999999,2.9250658E-4,8.68694337E-5,1.932260776E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,biomass cogen,0.0,4.28023E-4,8.23576E-4,8.96423E-4,0.00123004,0.00146457,0.00165585,0.00181558,0.00197685,0.00207975,0.00200168,0.00198454,0.00184137,0.0016232,0.00124839,8.03024E-4,4.60705E-4,1.8437E-4,8.19508E-5,4.28065E-5,1.92271E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,coal (IGCC CCS),0.0,0.0,0.0,0.0,0.0,8.22048E-6,2.231858E-5,4.4836440000000006E-5,9.301088E-5,1.6973769E-4,2.7174909E-4,5.0938018E-4,0.00102330117,0.0018244666400000001,0.005462035719999999,0.01164082468,0.01798579392,0.024681778499999998,0.0288106568,0.031192091300000002,0.0346515539,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.00746435,0.017165680000000003,0.027799189999999998,0.03996387,0.05113627,0.06020269,0.0679149,0.07431652000000001,0.07680105,0.06857150000000001,0.04818485,0.02773675,0.007015326999999998,0.0019125138799999998,6.159366729999998E-4,1.377831091E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,coal (conv pul CCS),0.0,0.0,0.0,0.0,0.0,1.19494E-5,3.140553E-5,6.219157E-5,1.2858086E-4,2.3115137E-4,3.6473262E-4,6.7474579E-4,0.00132877781,0.0023406372300000004,0.006880528449999999,0.01448488047,0.0222011103,0.030302496499999998,0.0352082591,0.037983571599999995,0.041999582900000006,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,coal (conv pul),0.0423734,0.482673,0.721766,0.774161,0.8468700000000001,0.8666064000000001,0.8695590999999999,0.8488724000000001,0.8100712999999999,0.757776,0.7026207999999999,0.6433074,0.5848728000000001,0.5181593,0.34411094000000003,0.16953218,0.07262935,0.015096730000000001,0.0036315980500000004,0.0010411019660000003,2.0547063099999997E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,coal cogen,0.0211961,0.0529509,0.067626,0.0780908,0.0569899,0.0575432,0.0536378,0.0490342,0.0395079,0.0314515,0.0250054,0.016087,0.0104405,0.00684829,0.00318848,0.00165233,9.4607E-4,3.68942E-4,1.74001E-4,9.39626E-5,4.26983E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,gas (CC CCS),0.0,0.0,0.0,0.0,0.0,2.68047E-4,6.876E-4,0.001255196,0.002162764,0.003322238,0.0045815560000000005,0.006663601,0.010061219,0.014255443,0.027775318,0.047543262,0.067204401,0.08977408,0.10543959,0.11560923000000001,0.13173425,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,gas (CC),0.0269822,0.20285,0.255413,0.2971098,0.3579093,0.3977091,0.43541050000000003,0.4634917,0.48618770000000006,0.4982704,0.5020956999999999,0.5046605000000001,0.44927370000000005,0.382414,0.3225793,0.265712,0.20464306000000002,0.12150840000000002,0.062286123000000006,0.029915841999999998,0.0098829576,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,gas (steam/CT),0.0075934,0.0102148,0.110062,0.09242717,0.08938402999999999,0.08556682,0.07902548999999999,0.07000819,0.05876607,0.04748311000000001,0.03753373999999999,0.028770729999999998,0.020435801,0.014003756,0.007173363999999999,0.004475094000000001,0.002573816,9.186101000000001E-4,3.2736343E-4,1.27467402E-4,3.673249750000001E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,gas cogen,0.0,0.0111745,0.00791079,0.00874281,0.00976228,0.0108408,0.0112112,0.0112295,0.0108326,0.0101116,0.00923144,0.00810267,0.00681381,0.00545824,0.00371993,0.00255567,0.00180883,9.74136E-4,5.71238E-4,3.53809E-4,1.85425E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,hydro,0.0228996,0.0132228,0.0139644,0.0151472,0.0170392,0.0189311,0.0208231,0.0227151,0.0258792,0.0290433,0.0322074,0.0353714,0.0385355,0.0416996,0.0448637,0.0480278,0.0511919,0.054356,0.0575201,0.0606842,0.0606842,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,hydrogen cogen,0.0,0.0,0.0,0.0,0.00299218,0.00543339,0.00852732,0.0121618,0.0163511,0.0212052,0.0259329,0.0280633,0.0314446,0.0375839,0.04105,0.0462979,0.0517916,0.0587847,0.066211,0.0742349,0.0741127,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,refined liquids (CC CCS),0.0,0.0,0.0,0.0,0.0,0.00121526,0.0018075958,0.0021156905,0.002687936,0.002914953,0.0030090860000000002,0.00379756,0.0049134569999999995,0.005761743999999999,0.010307316,0.013446069,0.010453637,0.011881572,0.009534114,0.007592039,0.007953248,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,refined liquids (CC),0.0,0.0,0.0,0.00263192,0.00624552,0.00777598,0.011162100000000001,0.014537146,0.018756648,0.021616864,0.023155712000000002,0.024137186999999997,0.02417223,0.021639559,0.019863105,0.013766312,0.005907075000000001,0.0025826481,9.226163E-4,3.7085267999999996E-4,1.3442736300000002E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,refined liquids (steam/CT),0.0678875,0.0757497,0.0538667,0.042687,0.04444502,0.04259119,0.03933356,0.03479504,0.030221909999999998,0.025381192,0.021047495000000003,0.017175117,0.011774413999999999,0.007127257,0.0031870720999999996,0.0016905854000000002,6.095859E-4,2.3577707E-4,8.046121E-5,3.1563267E-5,1.0301760000000002E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,refined liquids cogen,0.0,0.017814,0.0142928,0.0141252,0.0152623,0.0156695,0.0152975,0.0147573,0.0146993,0.0143065,0.013748,0.0130873,0.0121638,0.0107956,0.00849689,0.00634666,0.00365982,0.00246649,0.00156222,0.00104158,6.13513E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,rooftop_pv,0.0,0.0,0.0,5.19536E-5,1.96845E-4,4.82727E-4,9.40055E-4,0.00162767,0.00275407,0.00427479,0.00621298,0.00934972,0.0129843,0.0165086,0.0207629,0.0238947,0.0265756,0.0291041,0.0306096,0.0318031,0.0331631,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,wind,0.0,4.68013E-4,0.00294119,0.00423253,0.00713144,0.01052602,0.0154825,0.02147669,0.026448640000000002,0.03361704,0.03883687,0.04527529,0.053019510000000006,0.06018802,0.08103858,0.10458994,0.1235234,0.1387775,0.1433677,0.1423821,0.1332797,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,wind_storage,0.0,0.0,0.0,7.09212E-6,2.4570320000000002E-5,4.682812E-5,8.188421999999999E-5,1.2771731999999998E-4,1.9192312E-4,2.5772429999999997E-4,3.137152E-4,3.850326E-4,4.761285E-4,5.663324E-4,8.243806E-4,0.0011361613,0.0014044922,0.0016421489999999999,0.0017486049999999999,0.001777162,0.00171866,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,CSP,0.0,0.0,0.0,5.16548E-5,2.0964779999999998E-4,5.158178E-4,0.0011780077999999999,0.0021702078,0.0036558078,0.005574912999999999,0.00787793,0.010896469999999998,0.01589709,0.02169799,0.03084189,0.04159403,0.05255981999999999,0.06728651,0.07992529999999999,0.08915569999999999,0.09956109999999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,CSP_storage,0.0,0.0,0.0,0.0,0.0,0.00101779,0.00509811,0.013745650000000002,0.02744845,0.046868549999999995,0.07272065,0.10631496000000001,0.16068343999999998,0.2222732,0.3191864,0.4324173,0.5476772,0.7042971,0.8413063,0.9433880000000001,1.061002,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,Gen_III,0.0,0.0,0.0,0.00787274,0.01735084,0.034570329999999996,0.06903262999999998,0.11786982999999998,0.18129372,0.25771351,0.34640591,0.44729171,0.5932975899999999,0.7475233899999999,0.96435017,1.19068516,1.4060753000000001,1.6578624000000002,1.8671209000000002,2.0133659,2.1901406,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,PV,0.0,2.509E-4,3.334E-4,0.0039242899999999995,0.01196459,0.024070189999999998,0.045689389999999996,0.07388209,0.11128329,0.1545789,0.2018721,0.2631847,0.3642115,0.4828818,0.6787592,0.9124346999999999,1.1519942,1.42172,1.583515,1.6540319999999997,1.693486,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,PV_storage,0.0,0.0,0.0,3.2184E-5,1.046787E-4,2.136047E-4,4.0857169999999996E-4,6.609636999999999E-4,0.0010008546999999998,0.0013886516999999999,0.001815897,0.002365845,0.0032748480000000003,0.004350616,0.006099054999999999,0.008210124,0.010419494,0.013461540000000001,0.016175909999999998,0.01824982,0.02070416,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,biomass (IGCC CCS),0.0,0.0,0.0,0.0,0.0,4.36493E-4,0.0012362739999999999,0.0024190030000000003,0.0044196370000000006,0.007310496,0.011227186,0.017809305,0.030953347,0.049203725000000004,0.08577747899999999,0.133252677,0.181492047,0.242649749,0.29672443,0.33723919,0.38570213000000003,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,0.0035517,0.00883314,0.01514675,0.022555409999999998,0.03049826,0.038059159999999995,0.04505495,0.05292229,0.05771999,0.05543502,0.04392069,0.027695104,0.008540502,0.0024810433000000006,8.8039402E-4,2.2308162099999999E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,biomass (conv CCS),0.0,0.0,0.0,0.0,0.0,9.70178E-4,0.0026597519999999996,0.005207705,0.009797946,0.016545802000000002,0.025553968,0.041585167,0.074929696,0.12344807,0.23613386199999997,0.391405694,0.538900431,0.72246235,0.86793922,0.96401424,1.07130355,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,biomass (conv),0.00220873,0.00903599,0.0205776,0.021556182,0.0353539,0.046685279999999996,0.06633658,0.08593446,0.104615617,0.121355513,0.13133075900000002,0.136227528,0.1389871495,0.13242010599999998,0.1034,0.06053933,0.027969694000000003,0.006464711399999999,0.0016354421299999997,5.30115843E-4,1.229322518E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,coal (IGCC CCS),0.0,0.0,0.0,0.0,0.0,5.25988E-4,0.001631436,0.0033772560000000004,0.0066396089999999994,0.011869935,0.019570983,0.033379285,0.061726141,0.09950937700000001,0.16550246200000002,0.24131091500000001,0.31236839,0.39236541,0.45782420999999995,0.50136098,0.54394444,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.013549,0.0352755,0.0610917,0.0890431,0.11623069999999999,0.1410483,0.1585703,0.1721157,0.1738939,0.13815567,0.08695661999999998,0.048873650000000005,0.01284083,0.0039075379,0.0014050210099999997,3.397875450000001E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,coal (conv pul CCS),0.0,0.0,0.0,0.0,0.0,0.00134095,0.00392287,0.00772134,0.01443396,0.02455666,0.03872915,0.06308241,0.11098167,0.17329781,0.27817903,0.3945118,0.49967769,0.6135961400000001,0.70327885,0.75941534,0.8089068000000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,coal (conv pul),0.104596,0.279376,0.448595,0.614718,0.748484,0.8391930000000001,0.947187,1.0388490000000001,1.098932,1.1331801,1.150354,1.1222196,1.0670688,0.9649871,0.63055909,0.29650029,0.13485301000000005,0.030228178,0.00815757315,0.00260403242,5.594308113E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,gas (CC CCS),0.0,0.0,0.0,0.0,0.0,0.101556,0.264496,0.45749929999999994,0.687452,0.9347486,1.1872382,1.4900275,1.9547799000000001,2.4673926,3.166918,3.900831,4.5508109999999995,5.3169319999999995,5.9251130000000005,6.2950610000000005,6.688221,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,gas (CC),0.0449317,0.556474,0.456895,0.6723049999999999,0.903513,1.0475869999999998,1.2523,1.4822359999999999,1.717925,1.9523570000000001,2.186073,2.3844453,2.3706918,2.3000134,2.168898,1.8938720000000004,1.5450966,0.9789203999999999,0.54838423,0.2875274,0.104224597,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,gas (steam/CT),0.0446902,0.251628,0.603728,0.658702,0.756328,0.80931,0.8436611999999999,0.8432408,0.8037215,0.7452301,0.6815055999999999,0.5970204,0.41791180000000006,0.2777924,0.15441317999999998,0.07983017,0.04015346,0.013160472,0.0046776073,0.0018116641700000001,5.210822399999999E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,gas cogen,0.0,0.00126484,0.00152089,0.00213067,0.00284371,0.00409725,0.00459733,0.00490017,0.0051355,0.00521159,0.00519883,0.00498998,0.00460971,0.00406825,0.00306956,0.00236331,0.00193775,0.00125455,8.86417E-4,6.47323E-4,3.91561E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,geothermal,0.0196812,0.0356543,0.0357516,0.0559746,0.0802503,0.107171,0.1434632,0.1800405,0.1896262,0.2144351,0.233673,0.233673,0.23367299999999996,0.2336731,0.23367300000000002,0.233673,0.23367299999999996,0.233673,0.23367300000000002,0.23367290000000002,0.2336731,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,hydro,0.141032,0.19957,0.254132,0.26494,0.275747,0.286555,0.297363,0.30817,0.338521,0.368871,0.399221,0.429571,0.459921,0.490271,0.520621,0.550971,0.581321,0.611671,0.642021,0.672371,0.672371,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,hydrogen cogen,0.0,0.0,0.0,0.0,9.35536E-4,0.00208374,0.00360398,0.00557796,0.00837699,0.0123601,0.0175227,0.0236375,0.0325432,0.0441752,0.0644323,0.0898293,0.111543,0.14972,0.176767,0.212408,0.232081,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,refined liquids (CC CCS),0.0,0.0,0.0,0.0,0.0,0.0253351,0.0435034,0.055649119999999996,0.07177816,0.08661112,0.10149153000000001,0.12576204,0.16421981,0.19464081,0.2437125,0.2708556,0.23888810000000002,0.2597851,0.22349806,0.18335232999999998,0.15433083,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,refined liquids (CC),0.0,0.0,0.0,0.0163517,0.02958562,0.02940303,0.04048765,0.05076127,0.06132243,0.07067182,0.07823329,0.08077057,0.08397006,0.07522861,0.05952322,0.04037028,0.02216712,0.010596493,0.0043282829,0.001885136,6.754876500000001E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,refined liquids (steam/CT),0.193341,0.11442,0.101648,0.0854003,0.0953311,0.09382654,0.08764115,0.07811182,0.07014754000000001,0.062272869999999994,0.05542359,0.04857965,0.030712714999999998,0.017349202,0.009713672999999999,0.005397694000000001,0.0025199624,0.0010808480999999997,4.1262229000000006E-4,1.7187585E-4,5.7255834E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,rooftop_pv,0.0,0.0,0.0,2.03832E-4,9.04486E-4,0.00284892,0.00597517,0.0110214,0.020481,0.0350001,0.0563748,0.0943613,0.145301,0.20417,0.276479,0.347952,0.435956,0.49866,0.550042,0.617226,0.710352,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,wind,0.0,8.32999E-5,2.845E-4,0.00630074,0.01803814,0.03556274,0.06635924,0.10592994,0.15508494,0.2069381,0.2605287,0.3225494,0.41307489999999997,0.5072751999999999,0.6482317,0.7997283,0.9413962999999999,1.112801,1.225298,1.2866520000000001,1.345464,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,wind_storage,0.0,0.0,0.0,3.32989E-5,1.1078950000000001E-4,2.455105E-4,5.200885E-4,9.235865000000001E-4,0.0014909385,0.0021879145999999998,0.003008391,0.00406101,0.005759902000000001,0.007708934000000001,0.010815152000000001,0.014457776999999998,0.0181676,0.02296812,0.02682102,0.02945127,0.03230957,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,CSP,0.0,0.0,0.0,2.52877E-4,6.64075E-4,0.001138867,0.001906273,0.002971773,0.004580793,0.006341636,0.008125738,0.010627566,0.018484590000000002,0.026200839999999996,0.041503319999999996,0.06619069999999999,0.0925566,0.12468048000000001,0.14200295,0.15146389999999998,0.15536439999999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,CSP_storage,0.0,0.0,0.0,0.0,0.0,4.61132E-4,0.0018426719999999998,0.004555832,0.008891942,0.014689552,0.021427232,0.03001993,0.05464649,0.07846213,0.12554462,0.20108301,0.28202722999999996,0.3814564,0.4361729,0.4667262999999999,0.48097889999999993,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,Gen_III,0.0,0.0,0.0,0.00300779,0.0047701900000000005,0.0072130200000000005,0.01135964,0.01726478,0.02507699,0.03402252,0.04315217,0.053646650000000004,0.07955715000000001,0.10282185,0.14308715,0.19709444999999998,0.24660292,0.29739925,0.3302874,0.34936285,0.37023714,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,Gen_II_LWR,0.118319,0.143918,0.149865,0.138496,0.132,0.122525,0.10956,0.0932845,0.0749322,0.0565799,0.0403048,0.0273391,0.0178643,0.0113684,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,PV,0.0,3.60046E-6,8.28002E-5,8.278062E-4,0.0017146552,0.0025102602,0.0035721002,0.0048552301999999995,0.00650458,0.007790063999999999,0.008995205,0.01098551,0.01784042,0.024604099999999997,0.03862375,0.06029326,0.07201697,0.0763778,0.07420124,0.07107441,0.06510204,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,PV_storage,0.0,0.0,0.0,6.67696E-6,1.4672820000000001E-5,2.183134E-5,3.1406780000000004E-5,4.2893280000000003E-5,5.8494680000000006E-5,7.000472E-5,8.090156E-5,9.874314E-5,1.6042470000000002E-4,2.217059E-4,3.469165E-4,5.538485E-4,7.791368E-4,0.0010586817,0.0012161787,0.001306886,0.001355682,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,biomass (IGCC CCS),0.0,0.0,0.0,0.0,0.0,5.89653E-5,1.4095520000000002E-4,2.436181E-4,3.7679900000000004E-4,4.954789E-4,5.660476E-4,7.196202E-4,0.001198747,0.0018968515,0.0043708188000000005,0.010134910600000002,0.0170812555,0.026637195500000002,0.033610077,0.038299338999999995,0.04399504600000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,5.73196E-4,0.001241896,0.002099546,0.003258573,0.004586636,0.0058686599999999995,0.007422011,0.011444686999999999,0.014585298,0.018384613,0.020029015,0.016648527,0.006581698600000001,0.0018980762000000001,6.2166421E-4,1.45950267E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,biomass (conv CCS),0.0,0.0,0.0,0.0,0.0,1.22997E-4,2.759473E-4,4.5349979999999995E-4,6.64519E-4,8.036141999999999E-4,8.174158E-4,0.001003076,0.0016222316999999998,0.002621444,0.0066023934,0.0161648353,0.0276609485,0.044128031,0.055739728,0.063315232,0.07290838399999999,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,biomass (conv),0.0,0.0118311,0.0131472,0.012087569999999999,0.014020420000000002,0.015420429999999999,0.01811796,0.02067793,0.023474920000000003,0.02603809,0.02727643,0.029025089999999996,0.034838255,0.037623359,0.038290779999999996,0.029836056,0.01725144,0.004324255000000001,0.0010175193,3.05986121E-4,6.725740160000001E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,coal (IGCC CCS),0.0,0.0,0.0,0.0,0.0,1.39258E-4,3.73078E-4,6.58002E-4,0.0010040070000000001,0.001312421,0.001523547,0.0017992210000000002,0.002685908,0.004042083,0.009193231999999999,0.020937852,0.034590627,0.051615422999999994,0.063311672,0.0705478,0.07817623400000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.00475275,0.01089118,0.018120400000000002,0.02655843,0.03500143,0.04250923000000001,0.049477099999999996,0.0642161,0.07350791000000001,0.07608323,0.06707073,0.04779741,0.014775891,0.0043218896,0.0014542731500000001,3.3549240900000005E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,coal (conv pul CCS),0.0,0.0,0.0,0.0,0.0,3.36576E-4,8.567780000000001E-4,0.001428793,0.002047945,0.002528775,0.0027995499999999996,0.003120895,0.004187366,0.005908403,0.01235246,0.02684366,0.043518906999999996,0.06412057600000001,0.078078141,0.086611611,0.095494145,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,coal (conv pul),0.07806,0.333201,0.340766,0.502993,0.5688076,0.5887882999999999,0.6005746,0.6027019,0.5952339000000001,0.5808331999999999,0.5632991999999999,0.5398986000000001,0.5312655000000001,0.5075319,0.4048198,0.21059606,0.10977535000000002,0.026697355,0.0069165292,0.0021192444,4.4627021020000006E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,coal cogen,0.0100818,0.11292,0.11021,0.0715114,0.06746,0.0746478,0.0752993,0.0747621,0.0705315,0.0649943,0.0588013,0.0460684,0.0356631,0.0277108,0.0155648,0.00882147,0.00527412,0.00198415,9.45836E-4,5.24661E-4,2.40562E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,gas (CC CCS),0.0,0.0,0.0,0.0,0.0,0.00193621,0.00479144,0.008099140000000001,0.011798930000000001,0.015089920000000001,0.01751822,0.02040462,0.028087309999999997,0.03716161,0.06020161,0.10584731,0.15613882,0.2231232,0.27343446,0.30776249,0.34793286,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,gas (CC),0.00209861,0.11464,0.124031,0.2519,0.3162037,0.3518053,0.3871365,0.4199995999999999,0.4512706999999999,0.47754720000000006,0.4978359,0.5170485,0.43613689999999994,0.40369301999999996,0.3929345000000001,0.3770534,0.33744690000000005,0.25138271,0.16211319,0.09475802700000001,0.037544221499999995,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,gas (steam/CT),0.00162746,0.0156036,0.0805969,0.06676699,0.06658934,0.06525309,0.06141638,0.055771709999999995,0.04883426000000001,0.04165455,0.03506344,0.02954777,0.021881490000000003,0.017293160000000002,0.011921213,0.009523349000000002,0.006621479,0.002787221,0.0011174967000000002,4.8070237999999995E-4,1.4989457999999996E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,gas cogen,7.51783E-4,0.00285039,0.001802,0.00166997,0.00218326,0.00263405,0.00292172,0.00315844,0.00348928,0.00371854,0.00381643,0.00399691,0.00397907,0.00377859,0.00311811,0.00230359,0.00164597,8.08851E-4,4.63956E-4,2.89879E-4,1.50205E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,geothermal,1.08002E-5,0.0,0.0,0.0021916,0.003461,0.003461037,0.0034610250000000004,0.0034610609999999997,0.003461004,0.003461001,0.003460997,0.003461005,0.003461004,0.003461005,0.0034610017,0.0034609984,0.003461002,0.0034610025,0.0034610049,0.0034610020000000003,0.0034610019,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,hydro,0.0229716,0.0143496,0.0150984,0.0154475,0.0157965,0.0161456,0.0164946,0.0168437,0.0178996,0.0189556,0.0200116,0.0210676,0.0221236,0.0231796,0.0242355,0.0252915,0.0263475,0.0274035,0.0284595,0.0295155,0.0295155,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,hydrogen cogen,0.0,0.0,0.0,0.0,2.70065E-5,5.07698E-5,8.23541E-5,1.22635E-4,1.80284E-4,2.57795E-4,3.48363E-4,4.38046E-4,5.7117E-4,7.98977E-4,0.0010706,0.0013831,0.00169082,0.00193105,0.0022473,0.00264926,0.00267646,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,refined liquids (CC CCS),0.0,0.0,0.0,0.0,0.0,0.00329632,0.004844075,0.0059295039999999995,0.007153889,0.007411411999999999,0.0070127950000000005,0.007778399,0.01155109,0.014270380000000001,0.023718401,0.036219650000000006,0.033301599,0.041656969,0.037285269,0.032138047,0.030468606,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,refined liquids (CC),0.0,0.0,0.0,0.00568061,0.0065775,0.00559454,0.006864934,0.008640771,0.011592572999999998,0.014829428,0.017742462,0.021103781999999998,0.031680676,0.033102519000000004,0.036157006,0.032881261,0.017339148999999998,0.008530101,0.00334699,0.0014526307000000001,5.2506711E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,refined liquids (steam/CT),0.0780744,0.0395547,0.0298225,0.028768299999999997,0.0277357,0.025983680000000002,0.024202538,0.02198941,0.02052407,0.018798290999999998,0.017082790000000004,0.015750218,0.008942251,0.005382690000000001,0.0034331939999999997,0.0025667430000000002,0.0013203029,6.362834E-4,2.6254279E-4,1.1858166999999999E-4,4.2438637000000005E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,refined liquids cogen,0.00623675,0.0154824,0.00922986,0.00709939,0.00770461,0.00810969,0.00808152,0.00802109,0.00852916,0.0089616,0.00932256,0.00995001,0.010386,0.0104345,0.00956689,0.00783489,0.0047569,0.00319128,0.00206785,0.0014273,8.56514E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,rooftop_pv,0.0,0.0,0.0,1.11676E-5,5.55235E-5,1.5434E-4,3.19802E-4,5.86526E-4,0.00111292,0.00190097,0.00297888,0.00513646,0.00816048,0.0121684,0.018752,0.023365,0.0190142,0.0112951,0.0123423,0.0144374,0.020584,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,wind,0.0,3.27642E-4,0.00351361,0.00738211,0.01095451,0.01435456,0.019199340000000002,0.025311610000000002,0.02988682,0.03521131,0.04086313,0.048620279999999995,0.06975669999999999,0.08605273,0.11081851,0.13598591999999998,0.14948439999999996,0.15592779999999998,0.1485481,0.1423261,0.1335515,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,wind_storage,0.0,0.0,0.0,2.01946E-5,4.05471E-5,6.16206E-5,9.43412E-5,1.399289E-4,2.047353E-4,2.635457E-4,3.2855350000000005E-4,4.2046299999999993E-4,7.061884E-4,9.806277E-4,0.0015188153000000003,0.0023312663000000003,0.003057021,0.003773966,0.00413853,0.004332242,0.004382135,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,CSP,0.0023869,0.00214559,0.00316435,0.003430464,0.0037642269999999998,0.004432302,0.005703402,0.007561241999999999,0.007679342,0.011412658,0.015777674999999998,0.02158429,0.03127579,0.04231755,0.0716112,0.08504957,0.08945673000000001,0.09227173000000001,0.09117460999999999,0.08902370999999999,0.08141951,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,CSP_storage,0.0,0.0,0.0,0.0,0.0,0.0022209,0.010053349999999999,0.02624565,0.056522649999999994,0.09593425,0.14529435,0.21048004999999997,0.3158066,0.43313630000000003,0.7609973000000001,1.1221707,1.4060796,1.749476,2.019501,2.219144,2.311086,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,Gen_III,0.0,0.0,0.0,0.40138,0.611068,0.8829880000000001,1.267458,1.7240419999999999,2.32997,2.9212409999999998,3.4987049999999997,4.164671,5.12289,6.0238890000000005,7.514469000000001,8.480133,9.258116,10.071756,10.622800999999999,10.929644000000001,11.322872,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,Gen_II_LWR,2.20139,2.91859,3.0201,2.791,2.66009,2.46915,2.20787,1.87989,1.51005,1.14021,0.812229,0.550942,0.360004,0.229098,0.0,0.0,0.0,0.0,0.0,0.0,0.0,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,PV,1.08004E-5,0.00188639,0.0109978,0.0244326,0.0367677,0.0559509,0.0860885,0.1244255,0.1739769,0.2296433,0.29403250000000003,0.37867529999999994,0.5183547,0.6036327,0.5818866,0.5473564999999999,0.4972101,0.4235139,0.2808343,0.1805284,0.1735941,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,PV_storage,0.0,0.0,0.0,1.20406E-4,2.3161999999999998E-4,4.04222E-4,6.75996E-4,0.001019187,0.001564551,0.0020630789999999998,0.002644759,0.003403949,0.004684255,0.0061745540000000005,0.010539119999999999,0.015470606000000001,0.019423922,0.024265430000000004,0.028149260000000002,0.031092300000000003,0.03268774000000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,biomass (IGCC CCS),0.0,0.0,0.0,0.0,0.0,5.89742E-4,0.001746513,0.0036818099999999998,0.007745871,0.013404145,0.020956628999999997,0.034200081,0.06123203099999999,0.096358228,0.182125404,0.281774418,0.362577199,0.46232969,0.5531037,0.6290220200000001,0.73486097,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,biomass (IGCC),0.0,0.0,0.0,0.0,0.0,0.00457188,0.011236610000000001,0.01997173,0.03328489,0.0470129,0.06018628,0.07313272,0.08806984999999999,0.09527959,0.09177003,0.06876066,0.038688583,0.010150780000000002,0.002568906,8.190451190000001E-4,1.8587918330000003E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,biomass (conv CCS),0.0,0.0,0.0,0.0,0.0,0.00133401,0.00391373,0.00842078,0.01828064,0.0320973,0.05019807,0.08342842,0.15392344,0.25122075,0.5326090000000001,0.9005335999999999,1.19628159,1.58484866,1.92657387,2.1986245899999997,2.5945634,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,biomass (conv),0.0791349,0.110634,0.115436,0.0625796,0.0738202,0.09119899999999999,0.1161154,0.1419437,0.17402689999999998,0.1995833,0.21399710000000002,0.22057126,0.22476199,0.20908295999999996,0.16035812,0.08692698000000001,0.036385941,0.007423819700000001,0.0016835477900000002,4.99267339E-4,1.0446532588000001E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,biomass cogen,0.222713,0.122415,0.120684,0.114828,0.160106,0.196067,0.226725,0.256841,0.291484,0.320854,0.32652,0.332221,0.321603,0.300736,0.251191,0.180173,0.117888,0.056758,0.0295489,0.0175833,0.00892885,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,coal (IGCC CCS),0.0,0.0,0.0,0.0,0.0,0.00253087,0.0079882,0.01721763,0.03760708,0.06724179,0.10751784,0.17827508,0.31774789999999997,0.48507676,0.8286303800000001,1.17825143,1.43783884,1.7226391600000002,1.9635882100000002,2.1458925,2.3702156,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,coal (IGCC),0.0,0.0,0.0,0.0,0.0,0.0603555,0.14992450000000002,0.2568436,0.39502610000000005,0.5191028,0.6259812000000001,0.7026787,0.7597707999999999,0.754034,0.5814651000000001,0.33835941999999997,0.16928498000000003,0.038153504,0.0101921486,0.0032800660150000003,6.94994532E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,coal (conv pul CCS),0.0,0.0,0.0,0.0,0.0,0.00654925,0.01969659,0.040549470000000004,0.08390686,0.14291162000000002,0.21880254,0.34586072,0.58481152,0.86577541,1.42456108,1.9827954600000002,2.3898029199999997,2.8277759,3.1938904999999993,3.4641466000000003,3.7891169,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,coal (conv pul),6.02909,7.68047,7.10527,8.13377,8.42015,8.498394000000001,8.486067,8.293934,7.987729999999998,7.518156,7.020569000000001,6.399079,5.729799,4.890438199999999,2.8598871000000003,1.1322976,0.46734051,0.091231121,0.021863114350000004,0.006310082999,0.0011781372911000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,coal cogen,0.0898471,0.0736722,0.07371,0.0607265,0.0530225,0.0585567,0.057804,0.056382,0.0492546,0.0420599,0.0355933,0.023619,0.0159793,0.0110832,0.00559009,0.00315428,0.00198865,8.88981E-4,4.74012E-4,2.85327E-4,1.43169E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,gas (CC CCS),0.0,0.0,0.0,0.0,0.0,0.0282446,0.07918449999999999,0.1519622,0.2757118,0.42143759999999997,0.5860319,0.8172621,1.2054482,1.6203593,2.4083717,3.2093132,3.804458,4.486034,5.062987,5.484144000000001,6.009387,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,gas (CC),0.5903,1.90249,1.84213,2.661175,3.011551,3.3518190000000003,3.7361599999999995,4.080235,4.44743,4.687486,4.854875000000001,4.952178,4.162120000000001,3.774578,3.160759,2.4573842999999997,1.7707907,0.8926464000000001,0.39958767,0.17181156799999997,0.05018019450000001,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,gas (steam/CT),0.435995,0.666933,1.54243,1.1375202,1.0894266000000001,1.0453351000000002,0.9497948,0.8246617,0.6725383000000001,0.5211848,0.39193100000000003,0.27600250000000004,0.17489139,0.11370412,0.04939202,0.02733614,0.01466452,0.004920970700000001,0.0017324960000000003,6.5859114E-4,1.7905411600000005E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,gas cogen,0.356442,0.272225,0.315357,0.285502,0.339468,0.394441,0.420465,0.438333,0.444206,0.435606,0.419586,0.37809,0.330954,0.280896,0.20798,0.157826,0.125658,0.0796861,0.0538268,0.0376329,0.0220233,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,geothermal,0.0576456,0.0604004,0.0632762,0.1144269,0.15710000000000002,0.22098639999999997,0.3119397,0.4140579,0.49121780000000004,0.5764769,0.6637179,0.7471639999999999,0.7947584999999999,0.794759,0.794759,0.7947592,0.7947580000000001,0.7947590000000001,0.794759,0.794759,0.794759,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,hydro,0.983347,0.981803,0.945313,0.954109,0.96406,0.974012,0.983963,0.993915,0.998283,1.00265,1.00702,1.01139,1.01576,1.02013,1.02449,1.02886,1.03323,1.0376,1.04197,1.04634,1.04634,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,hydrogen cogen,0.0,0.0,0.0,0.0,0.00127487,0.00240639,0.00390861,0.00585225,0.00857101,0.0123973,0.0171145,0.022005,0.0287989,0.0380941,0.0557971,0.0824215,0.105001,0.15109,0.167598,0.186964,0.189172,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,refined liquids (CC CCS),0.0,0.0,0.0,0.0,0.0,0.0125428,0.021644459999999997,0.03038145,0.04748436,0.060095350000000006,0.07292831,0.09275325,0.12512715,0.14932536000000002,0.21103347,0.24974588999999997,0.22939559,0.27886344,0.26781893,0.2522835,0.26272589999999996,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,refined liquids (CC),0.0,0.0,0.0,0.0122495,0.013239029999999999,0.013321969999999999,0.01843691,0.024564660000000002,0.034911029999999996,0.04249865,0.04912759,0.05294434,0.05742408,0.051346363,0.04450112,0.02855761,0.014527945999999998,0.006735312,0.0026136056999999996,0.0011085057,3.8545173000000004E-4,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,refined liquids (steam/CT),0.450767,0.454965,0.144545,0.1002424,0.09721769999999999,0.09259208000000001,0.08445601000000001,0.07470921,0.06569833,0.05538894,0.04573986,0.036193325,0.019984107,0.011849425000000002,0.005439347999999999,0.0031172610000000005,0.0015000158000000002,6.394392E-4,2.3451129E-4,9.539750900000001E-5,3.1190615100000005E-5,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,refined liquids cogen,0.0195925,0.053647,0.0285496,0.0262083,0.0290465,0.0310158,0.031418,0.0318497,0.033426,0.0343821,0.03493,0.0343337,0.0333827,0.0313713,0.0267222,0.0225605,0.0171955,0.0133314,0.00939156,0.00688073,0.004483,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,rooftop_pv,0.0,0.0,0.0,3.743E-4,0.00154142,0.0039049,0.00769455,0.0136843,0.0242356,0.0390951,0.0585365,0.0881021,0.121035,0.116145,0.0335363,0.0323861,0.034391,0.0359089,0.0382344,0.0413168,0.0448275,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,wind,0.0110381,0.0643712,0.342527,0.452259,0.5334377,0.6605727,0.8689447,1.1453117,1.2393186999999999,1.6180086999999999,2.072166,2.629445,3.493893,4.307526,5.7669120000000005,7.124910000000001,8.026414,9.02264,9.4976,9.75917,9.75628,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,wind_storage,0.0,0.0,0.0,4.57929E-4,8.03751E-4,0.001366414,0.002320468,0.003644528,0.005781298000000001,0.0078077089999999995,0.010308407,0.013556264,0.018860639999999998,0.0241646,0.034279729999999994,0.044275289999999995,0.051407549999999996,0.059674729999999995,0.064701,0.0679965,0.0697387,EJ, CO2 Emissions by enduse scenario,region,sector,1990,2005,2010,2015,2020,2025,2030,2035,2040,2045,2050,2055,2060,2065,2070,2075,2080,2085,2090,2095,2100,Units, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,buildings,0.9247522024623241,1.3620398450345408,1.5379896261438053,2.4940743419252227,2.7019271387328354,3.199597224027989,3.632302436832137,4.108972893548648,4.531925060955124,4.977675520228729,5.483483573382123,5.830527748100311,6.145936063384342,6.381341001074531,5.7382178368259,5.250401860322477,4.946429444906015,4.245572796042521,3.578481880151097,3.0636702355230856,2.383220971288137,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,cement,0.4387037636025637,0.9901044425243268,1.5356968208571085,2.444275226441882,2.51136745680547,2.9684198108350923,3.502523526152579,4.090082478763848,4.551505332811806,5.100817074276987,5.764315507233942,5.954469358961655,6.206608784295748,6.513565494200698,5.746508021162628,5.472646033233566,5.355422686124009,4.949688767940644,4.760320276169371,4.636230930254631,4.46885420577135,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,electricity,0.5631629062879409,1.80606634015401,2.3549117229570515,5.800806718214761,6.692041217299233,7.046281061296054,7.330612084585061,7.480195818119946,7.340185981370447,7.153381699659113,6.810474582746427,5.66934293507616,2.2682044445552307,-1.1732113056082292,-7.729676975641508,-15.394219298351874,-21.87995812022384,-29.99129136643717,-36.005469581983455,-38.780759871205476,-37.948793047185546,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,industry,0.7826569436408363,1.160872854025749,1.7423402139122857,3.661214588990111,4.18506503958651,5.107433401114812,6.044851803812525,7.044530593927384,7.75046044946114,8.081148307706586,8.255817345628545,7.577139217811229,6.290927332687411,4.355870606613569,-0.7589049565062893,-5.203487287456274,-9.281644858458298,-13.427598617598138,-18.188199005168205,-23.155004616760767,-28.213898066779446,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,transportation,4.196635183294658,5.982520968912315,8.480164644129749,11.494663411363051,12.939653555084686,14.644336433271809,16.336706234434907,18.114737186906186,19.695543078663835,21.41642868924934,23.50385454082554,26.15899153276202,29.117971343671236,32.44422892001766,33.953829367427936,36.573742433826,40.31399067754324,44.60279714196466,48.26238371229085,52.34380377203982,54.18195439606477,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,buildings,7.600059927824815,12.176717766404687,12.59750611045192,15.349961283522749,15.568108440903686,16.691670180332913,16.776523108339877,16.55115207633487,15.774440027661589,14.8872902317819,14.033324672313197,13.198439258742981,12.385293206986193,11.626723594435706,9.829887608317712,8.279007879638787,6.996569151439088,5.340681111622638,4.008489035365499,3.040520195184586,2.089609144403347,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,cement,6.542649176818745,13.764552362559801,17.571027592462876,18.02978187871289,15.668619005258105,15.666359850638916,15.330168514292218,15.003472447715291,13.819666373790158,12.713611324740981,11.577963325933343,9.872919378200365,8.49720911727823,7.468975024575112,5.688134570666553,4.713205195920936,4.069170228800161,3.405013054840581,2.9864262258117593,2.674697527384845,2.411666730674464,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,electricity,14.158230115545193,30.68328227613693,38.12190972783518,47.09627272700101,52.2472457637261,53.23272011016601,53.50082495103116,52.36023591167208,49.509547689130606,46.469973977337325,43.613534444693244,40.18977185413055,31.67796783318664,25.416498840590513,18.393650836820168,11.671675324535148,6.105947707203039,-0.75826970839009,-5.620921377184199,-7.836732573713683,-7.887238140869964,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,industry,17.99554428061964,24.815104471462398,24.253142752332096,30.785668422392305,32.88778153491454,36.20740720034244,38.131692171481426,39.46517416248907,39.170026158721846,38.45568292320783,37.613102000635564,36.37471257874755,35.05598973711117,33.93918706169954,29.44098475041383,25.422063769151023,21.890920990847814,16.10559410100586,11.144432514792719,8.372770325793677,13.241900183547887,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,transportation,16.001279112570508,24.153192720891834,34.106038423998285,41.113899569989776,43.91482443914349,47.365875560153526,49.759285118086616,51.34230279958838,50.922031739789006,49.817675859920165,48.992547253472154,49.42192072691318,50.11069236973853,51.38485695847955,49.85458191756886,49.057122134280625,48.53969078334847,47.93409972601791,46.5441938061894,45.655402114218276,43.77519934163206,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,buildings,0.9234862459264772,0.9201976582183695,1.8021507121611529,1.776942603211391,1.8632873073029312,2.0590153039402126,2.1299752060839547,2.1946370893446794,2.264070368738759,2.388143817458081,2.597282712002801,2.7945383805351165,2.9671774009301024,3.077573846760549,2.711843894219532,2.3800230236251747,2.137014705780554,1.6849610814508331,1.3590122534663946,1.1410690690046352,0.8669629783513497,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,cement,0.43132765945552465,0.867862721100886,1.0812635696093253,1.338352708563693,1.3688749238535063,1.5238723944462684,1.668984897650743,1.8253498047233787,1.9203240490914135,2.0689811935246345,2.273926185461751,2.3332432040299986,2.4528928582538287,2.6346257623753457,2.5790069462640437,2.5983699485339686,2.61101628102002,2.4266574626490227,2.350628624507327,2.320910918243265,2.272645134120068,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,electricity,2.7256676796989217,2.9985855533681796,3.2058135064994864,7.99561437419615,9.715781372583093,10.63287316226096,11.815783658953093,13.023976380835409,13.939621513705783,15.135232486714214,16.50485194586816,17.249477933485938,16.327558677277157,14.976333925844942,9.487999067608927,0.9448007344452799,-5.786796238472165,-13.888687399834415,-18.206104253305526,-19.324379779220973,-17.776622433314397,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,industry,2.7815126677571658,2.2719158605624488,2.2403852862469007,3.076307540731378,3.4524717992547584,4.019745379567958,4.535464790807577,5.087346604486957,5.4354343643248875,5.757147628842646,6.088797819552066,6.0023014639763765,5.603606399267278,4.756109851593726,1.790823879837746,-1.351675839654895,-4.587586898892221,-8.982690009871146,-12.893271188534971,-15.694660964763688,-13.48195149986378,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,transportation,3.2493196351619096,4.3045174467501175,6.3367132454831365,7.000874883870151,7.769547592396934,8.460822827978049,8.989617847085908,9.474253548325496,9.893240204843506,10.449383289434126,11.239589237223065,12.298311517033227,13.483134465298246,14.689846434936916,14.788522738605625,15.284430380903453,16.196764222086525,16.98649194879514,18.16871231240633,19.906771654691482,21.331375536084256,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,buildings,2.825282376081831,3.5628828666698924,3.9996967458547363,5.41020665345642,6.047876109708509,7.701317744479683,9.285598930677335,11.031884416815451,12.756934910744192,14.76667970562631,17.18120134013121,19.378118613857293,21.49355388106818,23.44239028425517,22.30241666499394,21.33436865935169,20.765553390248233,18.474280814840125,15.874533943853308,13.536770371687183,9.984771449392046,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,cement,1.6010295936951575,2.3867089445349756,3.1142224054399907,4.148612517735314,4.330446415643398,5.249890509059785,6.322416956835774,7.479418150931853,8.370777799790089,9.400458561264553,10.641328933324173,11.191643705128394,11.970924595119774,12.888671334004854,11.907515933676871,11.444467695677025,11.244532748521,10.385118539340107,9.895550654080502,9.633164784249313,9.319340860579253,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,electricity,2.4221801513416183,5.022121483556042,6.281404622861688,8.696085764760708,10.423541221167117,11.518874442489828,12.96508702849968,14.469089292067753,15.428070244874277,16.69652715896238,18.305689243245492,19.157908351467174,17.97592969079542,16.228418059529904,10.107400795000672,1.7621531204441643,-6.7435717889084845,-20.037982161326656,-30.80542985319038,-36.070099659842434,-35.20359146755868,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,industry,1.6878337251983042,4.581515724730275,3.6006930217370905,5.400208843687079,6.213968846650113,7.826657174025534,9.523605245626223,11.389698528848754,12.933416503225299,14.38094540045784,15.814359718647335,15.989384714727631,15.28983612655784,13.702004960672557,7.057783007065542,1.3553290065747936,-4.1744937361068235,-11.933912068840137,-20.884604955929184,-29.370671469454987,-31.59372756802175,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,transportation,8.79733672629665,16.20431149371043,15.597033879254912,18.594908846377685,20.78711369942997,23.904073064780135,26.956665308767313,30.08184335359563,32.840687777623025,35.897342657713416,39.52269055973629,43.910996098957284,48.50020375002643,53.55513654099509,55.53722206390377,59.32124566275291,64.7714283464916,70.9006493819246,76.45135100378226,82.86026875954445,86.65086093938065,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,buildings,4.9558833137413,5.529147291389708,6.677223099235845,8.301820051920554,8.57269091906595,9.072661692197292,9.237821312547004,9.254080498755053,9.162903595765524,8.937721981806842,8.756513732929092,8.29223136309787,7.839830081981609,7.3268688617541,6.318999185750854,5.340661521092684,4.451237350536014,2.963043295617628,2.0670406866016906,1.443418533213661,0.9166435509544021,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,cement,0.7362726220344245,1.533110587694457,1.9918202415540087,2.3896481249677004,2.179612906007044,2.247954152197659,2.3102358388559647,2.349008888346988,2.2762720145392983,2.1774708012474475,2.0887488226157958,1.8142559801821305,1.5839344487621325,1.405815005419131,1.1176216468854698,0.9365078279367898,0.7663038362597321,0.39939083865211467,0.1876270324628585,-0.010539487712087015,-0.19154476216435912,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,electricity,5.221505586984803,8.603107567430875,12.07815092848231,17.57130807422952,19.60093360217929,19.998773821954533,20.574570656178988,20.59660676322035,20.042005291279406,19.219055232845868,18.46838846676887,17.014240822730603,12.513316868953364,9.351514462278924,4.977160226106979,0.08999031416913474,-4.578900150626235,-12.128029654655077,-17.0654319300848,-19.61201740530637,-19.68905992856144,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,industry,7.830404507247202,14.311359057400898,13.399854405158582,16.5424292782319,17.230941455724682,18.36211691618971,19.03768641071933,19.45099311593473,19.269416419113732,18.746166334398378,18.326346188193924,17.44716877522809,16.5299350305025,15.599464622495491,12.305675488571092,8.706291790407011,4.63414312923186,-4.541809519532132,-10.209786403133926,-14.432658975587819,-10.982132591237308,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,transportation,9.896735190805753,12.014996346395334,14.270203711347175,18.662462727403028,19.986299628728503,21.274285233598096,22.51348156859948,23.357941917342725,23.790705866502652,23.71115468076951,23.956926149849256,23.998524560280785,24.175815523171522,24.32197216457788,22.370143452579256,19.877086339876406,16.22193696358126,5.7364029458983286,-0.4120535765445714,-6.429274893882105,-11.617663100071118,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,buildings,2.6913183423863227,3.4314412545023423,3.6688889375180724,3.9048398597371343,4.086262144274109,4.345542731860784,4.447300404565009,4.504182510371487,4.485830502627462,4.406529313987612,4.279117164327767,3.976562461656555,3.6485227094546735,3.306981480765052,2.7610039080184663,2.294212835066485,1.8853463326386144,1.2920418622809513,0.9247496090423488,0.6351196662848397,0.4048649041652453,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,cement,1.7912610098568358,2.102609582917616,2.1068766782480584,2.3835906661735335,2.1504706811619374,2.1574255038140118,2.157008748836399,2.1481970263261623,2.017534350844649,1.882770364724377,1.7473518438761544,1.4559944920210466,1.241014598898279,1.0853275948460204,0.8879629873413648,0.7983564715337934,0.7441877343696361,0.682212478681908,0.6415723422945007,0.6087400248987141,0.5683678770292943,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,electricity,36.75460034540421,57.769528432598996,58.42714740378888,61.693473772372705,61.44342359345917,60.876573407502775,60.34960881887714,58.43952368576178,55.71181667099187,51.492555918648,46.97828291536307,41.43496263297071,34.97522215771442,28.197883893416748,14.28871097694052,3.795238019350718,-0.9290576999789883,-4.958619552592843,-6.930517768352942,-8.23954698548679,-9.034682606431291,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,industry,17.313638383754633,22.362027569393142,23.781068486308257,25.366885566478146,25.523828397937493,26.58958085070241,27.145021613117446,27.57030596832875,27.10491393271161,26.40756284562499,25.607969705949603,23.875075061415284,22.103482486826643,20.399006941554916,16.251378573720974,12.23473816891978,8.10000499504851,0.10913757495958763,-4.771067588914805,-10.041836140008495,-5.776551189779246,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,transportation,22.991396899589464,30.21610064225787,32.226527416124505,33.53482446380381,34.46878840804815,35.14487367204934,36.13621046845615,37.02568152954169,37.917270551825084,38.197355461627986,38.49404636130218,37.93705821032708,36.898812058249284,35.31068357885792,30.267504308446536,24.595803761039818,18.04293306338126,5.715613018475917,-1.2035301065741912,-12.330870983718949,-19.661732326189174,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,buildings,5.0973257508338286,5.866168061635344,5.676045822984193,6.68666865478608,7.2472261819309,7.831964339365242,8.092255002950528,8.148851281906646,8.166999794860619,8.009491077362068,7.904536722543302,7.4469014910733735,7.038783999845681,6.510987999522586,5.096103714955964,3.705830646210102,2.3422764079621192,0.31504459556512365,-0.6094383339062477,-1.1889929423476566,-1.3655475895151068,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,cement,3.5725569969701656,5.359773684261608,7.166038549249887,8.1070437124111,7.47047139654502,7.765393978435128,7.980717650959761,8.058857830277574,7.640912198854379,7.111880907997608,6.5746113022800925,5.090936539413365,3.866596429802945,2.982460290756455,1.9855599260733428,1.6098546123664477,1.4349484591237873,1.2300683567389878,1.1000104045318597,0.9621808307632191,0.777311984043692,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,electricity,2.792255795008857,7.9529507677413775,10.59594304040434,23.684890283514083,30.938084882191436,35.75759529881262,40.57687838358437,44.01750332299007,46.28340247955545,47.439193474806835,48.12750003311437,46.07073643251189,34.73877803568133,22.34540814365533,-1.9097325658541215,-30.565458772875353,-55.07599663745975,-87.10676024198966,-107.84129627386854,-118.86869974446503,-119.96253849789183,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,industry,20.12553584362152,30.658292315616677,33.90596985407236,42.38971548708754,42.76706085457425,44.97219568969301,46.031417007515266,46.45795343660706,45.52280254521046,43.58911142570797,41.57475825807678,37.43303618761589,33.224108881537056,28.586795528456665,17.029592106581365,4.891327435672113,-9.105312553666185,-34.271433352927346,-52.08170245641649,-69.90637971452786,-84.26554846681502,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,transportation,27.344821908634387,47.490992298869195,58.670761927336734,70.14662246688434,76.02758755718553,81.2748402804551,85.87577049987748,88.946421352259,91.6415363751019,92.6456576146474,94.32573828173967,94.02918628798001,94.21214366586176,94.08794129372784,86.58229366292203,77.5603033402436,64.94652872526532,35.00080681454886,14.58341872710235,-8.178545647778739,-34.22467644224506,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,buildings,20.23537347473251,25.29528002327215,18.87188191747061,19.33872524967033,19.35237144372905,19.588111820905024,19.11237779283879,18.44282703858486,17.28505166189768,16.08303233880749,14.895658683791343,13.304222033207132,11.770581187058507,10.367725577651193,8.32413904614075,6.657296717573784,5.287007765838266,3.53816157787375,2.483913577745254,1.7761027901534654,1.0335665244713748,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,cement,2.511044176343315,2.886629702274538,2.2268634162465974,2.397172846047385,2.0712359069287594,2.0432583663473514,2.0052661754884826,1.9778066965208276,1.8492707636602628,1.7001609320767765,1.5498566939284362,1.2352956889845506,1.0023846399094172,0.8429575964671063,0.6502395263044363,0.5757953118136219,0.531731396954362,0.47038655040515354,0.4435092865224201,0.42269055678436757,0.3722409186589667,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,electricity,28.593929308899366,36.216453059018704,32.1139262542844,34.35290562160952,34.469539395330585,33.717832258202684,32.98656017517804,31.55224633339226,29.709925864807925,27.11865309773566,24.413353803385483,21.10699967850445,16.744405399692734,12.563823772115914,4.788402633694077,-0.9112632524575508,-3.9174247480081497,-7.187814676876338,-9.133355947004368,-10.155654433349186,-10.612848045814108,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,industry,32.36771158117736,42.97690572317124,43.30991525049393,37.6777041060877,35.48218292223721,35.317776745563286,34.49937263592127,33.3719548504602,30.828734675365094,28.193533835827786,25.75861220055018,23.141092757677793,20.55030363909147,18.21408406352125,12.761368194391537,7.381190615897488,2.001705185539202,-6.466320699061829,-11.400818855367405,-14.491125863467236,-13.736236450747299,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,transportation,37.03487296775791,46.05441634001285,49.86741701486326,52.23265322126178,53.36527262334197,53.73916347262869,53.616528936277255,52.83568933332989,51.59861606427404,49.76733829299287,48.13669990723766,46.81012422646024,45.306033137145825,43.61118483681562,37.72723719351802,31.048177857236837,23.474428761627184,12.027636752998008,6.124832430476858,0.9716953919311804,-12.500706342261998,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,buildings,4.172148246853835,3.7925498756463827,3.0626262774334756,2.7504080445491743,2.8071448445275275,3.0866402880126693,3.2703754581103386,3.373573946583136,3.4200470704428603,3.437421205235574,3.5264300193578952,3.4404616567062085,3.3598786016432864,3.228734446110076,2.598618633706744,1.9569230431743112,1.3216780538228379,0.5500773458521977,0.17514928095746662,-0.01871273531636053,-0.19562555332812748,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,cement,2.2501840616596214,3.1541151367112508,3.2502999183984347,3.5575329570794993,3.371433186586369,3.652744142111458,3.9324398631745443,4.188812190424516,4.251874553080658,4.223315348829818,4.174673863644471,3.7002248715099064,3.3136703200999618,3.004100001263252,2.4350087670056184,2.0880447107976186,1.7921645710550511,1.3800522475020571,1.151857996371546,0.9857235783264393,0.7156373963256182,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,electricity,6.495820966369745,12.331099610142962,14.359070086035459,16.29765907844559,17.953638700918063,18.08048506584642,18.06913011813563,17.476606258750728,16.19093025918988,14.55799728134291,12.93948464795692,10.601884552912486,6.052172571503742,1.1439977697063863,-7.198071412931048,-16.70891685153353,-26.37812703837816,-38.09846657111387,-46.86734613971924,-52.098729099717836,-55.020251837358224,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,industry,7.243535782577636,12.685429152029927,15.011697920721254,15.96075617150965,17.17133861006818,19.129946431099352,21.066984465273666,22.805032289601627,24.182157702300632,25.363184953732077,26.713100234358375,27.06829936365054,27.41781619779861,27.65859752364161,25.69651831845894,23.698732327116346,21.784575720022822,17.615839512585723,15.195355720514563,14.456020588857275,19.54891275072966,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,transportation,9.467396114839165,16.573908373430832,18.99031067597408,19.39207158670697,20.58241664165181,22.03047523045327,23.610171330499732,24.936424825182467,26.202922536696267,27.239909569971083,28.73926128599321,29.861913006000677,31.08158934575357,32.12952018943022,30.3134804967061,27.840645248594328,24.258505264594085,17.95100203079372,14.505979614301136,12.111715358337433,6.523953622265594,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,buildings,41.874196317346424,20.83637580558682,31.266660636342003,38.598646073467435,40.902181773007335,45.257232859790214,48.18633034632938,50.07748365501374,50.99180301224747,51.071459833644475,50.80392031948552,48.93117228723513,46.53495468836775,43.71174516802986,38.1542999382356,32.69816884321145,27.146064608374083,15.711274808355759,10.822015273336987,8.05523199267515,7.073171765705488,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,cement,4.4076217915239075,2.607251557926931,3.1971117566889538,4.1426725480331825,4.029715510606409,4.274107063996709,4.45274248797143,4.551790810814838,4.428813771365929,4.239540408672385,4.023774475940393,3.4538229367453974,2.94694381762387,2.547857946590892,2.0169261385178707,1.6859894369552635,1.415240414524381,0.8813325439674471,0.6341768616580119,0.47160494369974915,0.40055013121675476,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,electricity,60.432203307387354,41.56857866557468,40.12942693426759,47.408312530982535,50.91760440453125,51.18342835224997,50.950819964414954,49.433939377774465,46.97507855558506,44.211895622127315,41.468452874181445,37.32554520722537,29.64407769022157,23.868267639226833,14.327716971534782,5.644410470334938,0.9102185596201462,-4.860483003888774,-8.867242451150352,-11.501445311844357,-13.35183041952832,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,industry,37.879300562683,32.146637519182605,42.50025577430586,48.2078020054083,49.32896836260709,52.66336467726369,54.39009109545067,55.24367308056604,54.194997657374024,52.48578326710503,50.61514296888003,46.11654162801139,41.61483835789058,37.235809598362714,28.62070126601825,20.72386063228784,12.73827816595517,-5.480031877850919,-16.461858597454913,-24.8336156166754,-23.165222851563733,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,transportation,14.163925932059321,9.506576393728968,12.47027368627233,16.72580293309541,19.276615648808765,22.178428080439858,24.815209297898193,27.02290003935143,28.923493736089316,30.33263191669871,31.750366306301448,32.63881499684933,32.988109240975525,32.8530995604899,29.00353216483705,24.115102509387984,16.626421065687037,-8.336613562573978,-21.684190747238492,-33.13712219527107,-38.56503472321807,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,buildings,122.68690772835726,145.098483763432,166.15794783669128,203.85087620863763,201.5252776959973,230.67200061101767,254.32105562313424,273.55093987787103,280.2741488474176,282.5402240155346,279.6803744843201,261.09860739001937,241.599836948769,221.6520410355836,184.89381103319533,157.24118771176973,129.74399556605871,84.57925346959098,58.67901739055765,40.672077748978936,17.632305527132544,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,cement,54.61801319858847,249.78098003547836,385.1235779617183,398.725662301791,330.56046496482037,299.8502938285791,272.8193193517943,248.13785697329558,216.0534268762679,187.2126592040929,161.11690970931465,128.247860721518,104.19460307641825,86.85881966919882,67.0557925977327,54.45740864959549,44.562052228389504,30.858797484693593,22.380826595869337,16.358981530372073,8.038601637594471,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,electricity,168.93036559729404,624.7561863218116,928.071729586142,1063.9789761376276,1149.0355139147696,1207.856773652279,1266.2080793410216,1292.0276761992186,1278.7825709386607,1240.5798205161768,1191.4979533269677,1122.366370896669,1030.4533010748578,906.689030192762,556.153851389577,187.77430624398696,-6.3009486647576205,-155.51600500319321,-206.87152592480135,-228.02683389276157,-247.98948788833448,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,industry,322.63859392623215,613.0214725027153,714.5097482588768,837.655347668657,866.0107120467336,925.584006101108,950.961760436631,956.9687070317598,918.3237844650458,867.8962891516944,807.296678131492,695.4827999563192,587.7889640047724,488.95065871642134,325.47907264533325,198.99917165821878,87.18030372563034,-85.28292861006304,-193.94487347392968,-272.3082050469955,-393.21840049915073,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,transportation,39.31515205052568,132.23168114006626,191.470013059584,219.40689755190587,260.4757782902654,305.4792413723239,348.8740979948871,389.1887403310558,419.7104634363908,443.33224535576824,461.64438000178797,470.2534503289317,471.50709956368513,466.0835336697164,418.6317385766324,366.350901007064,290.0075009197743,122.50247692087399,4.697255423455651,-98.32091004811694,-313.9357197395235,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,buildings,1.3820211938939009,1.3631644968132814,1.4761908495014109,2.122531780237324,2.2737418549096335,2.505114612349473,2.6748354090998667,2.8164520111960876,2.9642070706185875,3.0788556096206467,3.252680742408862,3.2949488024865516,3.353316255121306,3.365117929833703,3.000056615543036,2.565542624876648,2.1036706905330558,1.14049791414595,0.6335452893814506,0.27536424338450016,-0.04703842804733016,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,cement,1.3539187289472765,2.1119443955230426,2.146221142337323,2.836715463805358,2.6492358546910566,2.751932814222293,2.867747315730353,2.95653132715477,2.9090813057733476,2.833772961218039,2.7703658311236437,2.4342286669066313,2.152372124885987,1.9271619838871024,1.535220815632434,1.2835292194171004,1.0507835035938062,0.6132609183928859,0.35689364744669283,0.10471835051928458,-0.2595624661581839,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,electricity,2.022821141409963,1.7285469043048491,2.702587863937432,5.826596103645142,7.021661230978899,7.399663323527288,8.35008640228859,9.2165500962487,9.886488117193863,10.440870090085353,11.03441301814947,11.101509491340131,9.77507292715469,8.51115715625458,5.49060419468861,1.2135990820971956,-2.5954170578393,-8.461092004772947,-13.066048678441842,-16.23268939640368,-18.574580841768398,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,industry,4.255513435136117,4.8496042771700765,4.886774538388162,7.39953568098587,8.072477514212009,8.980088679181765,9.93250236549083,10.863420745902,11.521933799504607,12.021782628611282,12.632404648086322,12.754451440124983,12.836223886097477,12.78303601487171,10.745969169889593,8.215169496027418,5.070815102023139,-1.8678988009881725,-6.647035387636937,-10.382878133721503,-8.660993479776629,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,transportation,6.030984902612743,7.5377602331887505,8.922067622835673,11.09915318082466,11.970035335415176,12.588523618515586,13.3280176001233,13.894538515214048,14.348925609933199,14.627668382545838,15.189828903324187,15.640284182197327,16.169233096936196,16.63306465018975,15.59116050114438,14.18648562171931,11.959702036734381,5.7023379321184375,1.8336804869446728,-2.3880261625357146,-8.935181927952483,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,buildings,48.67941306863836,29.035286369363135,30.195093617645664,33.490870637870465,30.97512325223618,32.11438757930073,32.947530805466485,33.373108937801625,33.658890574300315,33.265433103547466,32.911557542317475,30.50145689574234,28.258969109462548,25.686700836305093,22.38275542275362,19.42646725633048,16.857591450960424,13.57952761968201,11.011294874445575,9.036939585269465,6.72564069462073,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,cement,9.692162696459913,8.066744349640956,8.364039608842594,8.864498709642366,7.497767331437906,7.29551407773889,7.03047422483565,6.686653858794287,6.078407671995029,5.477899478255056,4.949368198908504,4.0666587273881,3.4221702127233464,2.9256731048593316,2.2109111625904,1.7873620765623697,1.5048241927173935,1.2255696744614342,1.059638545612525,0.9572449917898769,0.8485344294857114,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,electricity,99.17790358205552,85.3005588232249,83.70171152630188,94.70287577056301,99.71447264306859,101.35448001021483,103.46847553206631,102.9963751745872,101.4261963110334,97.74376276787991,93.80427042751182,87.34083343602116,78.89124668403579,68.99314385468406,43.36818604369287,17.858832270772208,4.37642923354945,-6.083973800496169,-9.533670718448308,-10.485713879395815,-9.29137695575933,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,industry,98.66780726672741,50.080594748071725,38.500573143630234,40.89287717834291,40.04174985726689,41.23686222340253,40.96604947285335,40.176326060895256,38.13188250874294,35.72742193384205,33.663464578947945,29.603761356953736,26.15050127610953,23.216275255053752,18.10521238100986,14.097172586227378,10.99606563782189,6.587020273245605,3.260268849167406,1.6929427775083046,7.553695903399294,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,transportation,23.5391255653289,33.98531048655746,41.30151387736378,43.85453463203324,45.63378902802837,46.64897497410251,47.5286519348727,47.285557425058606,46.9781459174205,45.82809219537635,45.53191335254271,44.82672411952003,44.494703643506504,43.86493384937512,40.81976453303655,38.3360940611795,36.46980509522903,34.826452294706456,33.455820040425095,33.05501429095136,31.836907088146003,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,buildings,161.57597349384946,160.47015214337702,146.99241485883687,147.17283477671992,142.15879441336438,141.4984895071957,137.13487652440068,131.45335764348886,122.4375226604182,113.13755322042056,104.52536732544449,94.4513669635142,85.43874890773463,77.52023228413405,66.36476946902185,58.20198587394426,51.19077062838791,41.757447845772994,33.454735633466704,26.60702711221824,18.561215748206084,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,cement,40.71799347582459,42.18353260672721,36.967769569578344,40.40460937106759,33.73939747761939,32.70850247064502,31.22668559512167,29.783687933185178,26.941456835000885,24.359925210871985,22.07056588667065,18.896278288942963,16.33556454170678,14.36332644403745,10.968405576089712,8.999467104388817,7.712682492480869,6.455279608893453,5.703636580753635,5.197219456332035,4.641208847476808,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,electricity,268.8485269196535,269.9974674805772,237.86501292934773,241.9722822488401,241.45480678794578,235.52989869209705,228.9226742772088,217.12796353823865,203.97666964450056,183.09725063462264,162.20183343335273,139.62324918934968,111.93162552909432,87.68540423677547,41.83458892229015,7.630514925677379,-10.62690336422957,-27.4554922008536,-34.03369430156028,-34.411681373287315,-28.085692706047286,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,industry,195.45547405041762,175.5762442122021,149.26769910757588,152.61420297501738,142.9456929006735,142.1704194425193,135.43897705334544,126.94022245237946,111.3799460129599,95.72802080030948,82.49196652837352,67.26102985207064,54.49909304021601,44.73002022320452,27.54747305607764,16.54160506462358,8.441517028150143,-1.1283788422656995,-8.867869838553489,-13.672415444235858,-9.789580348763057,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,transportation,247.15611168493672,324.92260697370995,307.5107183666469,313.5534740104148,312.4614752164559,308.99211223490255,302.8985040459728,291.32191441021234,274.0901951532353,253.90467047809665,237.55728862907986,225.78556573895293,214.74962346236268,205.8706958467398,185.08378809725642,169.8432280608015,158.382352529296,150.84889399034742,140.94341696621746,132.60905265390176,120.1631200970618,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,buildings,38.909540659840985,20.507836283309004,18.55341959841062,20.69991089226145,20.108676759977925,20.327747862971794,20.271719970865725,20.043961845613307,19.67455972026576,19.18425099026789,18.708199453913824,17.650559782899787,16.524598554561496,15.298166729240599,13.44112941009673,11.761339250344523,10.327830933418795,8.423601232027368,6.950298299355764,5.786073341045801,4.438104295448508,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,cement,6.283842252590034,3.2714535739907395,2.9004200603582357,3.383756248522624,3.002858972029547,2.9824528917354183,2.985498613605391,2.944949121716344,2.7834937617522826,2.600706073324228,2.418230846295362,2.0487813302194207,1.7501899802923058,1.5127434260638846,1.2048777548675957,1.0198133975911376,0.8914525573330363,0.7523260075387125,0.6710202229091052,0.6195293644269259,0.5678666729157363,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,electricity,70.62067013227752,28.31228671248787,29.830242520525665,34.39924124521586,35.09104576877518,34.272246087279626,33.58077404222116,32.11850185194201,30.110858114790776,27.7211459149154,25.34613272523369,22.419408183988978,18.167129261215308,14.534439272067535,7.454285844343629,1.5617160070685931,-1.401050788591219,-4.354117821435211,-6.109468970545259,-7.05485795654911,-6.913281803523576,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,industry,102.48691097345507,50.699202799466825,39.00737357991361,41.670302623336305,39.096002775594464,39.26849127382133,38.95982534609602,38.5592999141972,37.04921196214379,35.57220089227839,34.31513485623726,31.33581730357999,28.694385386748518,26.34762435279349,21.6151086832826,17.708589072843772,14.566770642219819,9.416699841596675,5.9029800736743185,4.3755646598229845,10.716029338983857,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,transportation,15.502941235412019,9.445075656425056,9.256847309856392,11.112950881136925,11.805878652508559,12.459651214118242,13.19028627624142,13.800181630382,14.370461368389908,14.808035677318571,15.420306187626192,15.977611258660223,16.407649574872647,16.659101721526266,15.525695360581508,14.35523517368717,13.096659391694391,11.363724412581389,10.165473927248444,9.420023837622123,8.552905405419475,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,buildings,11.46020947065171,12.2711086561125,15.446213863970128,24.94090298750582,22.748164666100436,23.789025174984587,24.20402603418393,24.28490763329028,23.560829025572346,22.636904786532085,21.665289936040146,19.875173655944092,18.29576361455074,16.693141235021297,14.067782038719963,11.888900524050406,10.090625179852678,7.640965770423359,5.894387046539384,4.657363043929902,3.233245986194166,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,cement,6.859426886341226,10.7729165615515,13.050706222220558,12.953890712001606,10.953275225653371,10.71398242975604,10.317239299679773,9.889711036668956,8.962560316003124,8.06314390763046,7.207312007673114,5.899582665847017,4.879512843895133,4.182498623019813,3.1630803997380568,2.5626638559105204,2.1302597245718298,1.69315371566828,1.4256819677389698,1.2492060057878802,1.0910316921173264,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,electricity,23.229208792031834,33.61480134077934,41.24968748147071,69.47600642912715,76.3524327711578,81.10065980064931,84.84770809092083,86.60295763525087,85.688964289308,83.99506429292585,81.73582720910407,77.77147209759869,66.54891488910876,57.59576868450228,37.37256128306327,15.882761207691798,6.791545042551799,-0.7195491566981096,-4.345402274595622,-5.83949998945592,-5.710843919127674,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,industry,20.89905308470868,23.31151611156547,22.419362655165457,33.21913021203595,34.06527602574469,36.14537870329702,37.1723507742507,37.6587784662817,36.6153726696238,34.88485028891797,32.88722812083278,29.55719746230966,26.45924534311928,23.691101285528244,18.28147941088424,13.90058079624919,10.270135244833739,5.359238648216817,1.8959607451896063,0.1465459385551559,3.769730279530371,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,transportation,12.49026857852679,18.312108124475703,19.806357811675113,32.696578305043545,36.15153964103525,38.99651936547043,40.89999296171333,41.7436590836203,41.33803618075286,40.02062149168495,38.49629569342457,37.15201154661275,35.825016229301724,34.60414433516748,31.362813728149398,28.462015791566078,25.690470047772564,22.911240287281657,20.75501109648709,19.36762132728523,17.89025275818924,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,buildings,5.841380748341974,5.396195047189879,5.07019607171147,3.937505152247009,3.9354797564143427,3.927767389266735,3.823007174144384,3.5982638851921003,3.3138865682335226,3.0058546823853285,2.7544883282645345,2.4600360607917917,2.187821183555164,1.9326600374846796,1.4668977428770869,1.0555050481818051,0.7266690444216082,0.4236930162262378,0.2578960852110367,0.16010861006814736,0.07270972124765276,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,cement,1.3655511476375541,1.1984037970184995,1.2584095586615462,1.2901562994532276,1.0969647521008898,1.0817892119816346,1.0642735034824398,1.044470436959016,0.9578319459142806,0.8748863275435492,0.7981605865152501,0.6698680106942401,0.5666991868162234,0.4881430702360788,0.36424187915926576,0.28403628089668725,0.21952627596724678,0.15556002645201858,0.11991457011590839,0.09490011866456846,0.05935505826833451,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,electricity,0.1524739558961436,0.09851755353039893,0.4919188752462473,0.5761455795514662,0.8558404921818726,1.1460957869358546,1.4568153068312835,1.7075148108792324,1.7215196462700852,1.6803865071577402,1.6026021338824274,1.391775325518615,0.9731899863516671,0.3290616414669773,-0.6014026657676433,-1.3408991734664326,-1.8497725388591653,-2.300973332131595,-2.5829020845870896,-2.7026371443958004,-2.4307889201585597,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,industry,4.87984571222269,6.578828351725942,6.299794625634101,6.153533812871851,6.262162273944105,6.501556961430182,6.700109094385613,6.796485984267448,6.518434425974553,6.19293290386087,5.984243195726574,5.607081680432382,5.3750203351215875,5.3626387213583815,4.376886450076076,3.4387312536935735,2.5829849832580867,0.7565212325194919,-0.360812424234156,-0.25293864211107486,7.546849021978982,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,transportation,8.958717979691226,10.706656644570897,11.173942435304795,10.098798039470749,10.221725208447358,10.200613523187572,10.146201250474007,9.812674975815188,9.293528182890583,8.659569906591607,8.179591139578848,7.878194625602691,7.576165107222661,7.271884898386717,6.180140977117021,4.994855777498321,3.8210273200513534,2.6993269895926035,2.0645128531536123,1.6171197099458052,0.9312872696796338,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,buildings,21.725606651941188,29.771724543809942,36.708668546182466,48.77242184116436,53.54309184966103,66.07666476972184,75.99383629509973,85.00477129926107,90.9092392065819,96.11772599117772,100.25523508259536,100.505140819328,99.02430103297688,95.93194952254828,84.14551133013678,74.76621555410073,66.47753942884447,53.448663705955,38.76747576432429,26.820163381730563,15.259594242927935,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,cement,12.858769085987028,31.14423840415659,44.016760754891806,61.50795662197287,65.14065288120548,73.41890303323486,79.05119244252144,83.60580416939104,83.2652116466817,82.21816031508588,81.87776541497932,74.72261290393942,68.79818621243894,63.8321149698734,52.590454902838815,45.04496585140602,39.01734613321393,31.358751959328966,27.45454873192804,25.017205724631125,22.573838843379416,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,electricity,68.6754277313975,188.58103820404284,256.01275344755624,337.8592047143621,412.46611965223127,488.8036765106192,580.5556094540418,673.0877332198543,745.494346154436,803.7418974451193,853.5124454782722,872.792325084941,869.9928879698431,852.6774993849788,741.5418566359881,516.7241172686105,302.33667084796724,35.885133826917176,-71.3852986829859,-116.27916947820134,-135.88469286966264,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,industry,50.738713569962385,78.72157175887386,108.91340727664817,146.64359070827228,175.2068565053654,216.3113919026392,251.40668674683062,283.3325176054889,301.7235459699119,312.49983476387405,316.24184863240265,295.7520903300369,271.12594948242156,246.34910321394676,194.4721004759935,157.3313089263168,128.58658775640734,92.19484601519565,53.9637044486783,23.935861940364887,2.224088527102593,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,transportation,25.646325260711887,33.36841999696868,55.92370239216845,68.37824216868947,82.16370034265624,98.85786693802362,115.42478974496018,132.4287098748753,148.16426947722996,164.14374546011206,181.53373284380245,198.80146612307055,216.6468115943394,236.02828982237426,247.12731044140864,265.0599592038841,286.763696481542,311.7787555510483,317.719798260432,319.29652326613024,305.2580974613725,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,buildings,6.170137451478503,9.459019459713971,6.5437414438025785,11.172075851444674,16.060436041178715,22.56047084725269,28.719934019065132,34.440100268414184,39.47918381714142,43.74547686325283,46.97568043416282,49.17670344858618,50.36349426202762,50.499359906332415,46.307329858457805,42.3887937525164,37.9344678099893,30.99097340674063,23.07970854798426,16.323735159613328,9.774268459500538,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,cement,3.1634462746452763,7.486984612749113,8.775698472619943,12.697243893937156,13.460491754147306,14.9535863650848,16.085934178791657,16.923537097957038,16.925119697857845,16.902566826618177,16.761034243424753,15.366912653044212,14.160139182488344,13.033720851981677,10.387675001858124,8.487921665628948,6.857586192818066,5.286683392638288,4.497580744349296,3.9762340133143397,3.5004654132302275,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,electricity,6.418096286345373,26.002063364787322,34.35078917957099,56.90309504348649,72.92462749559462,86.53131503253202,101.81885283151495,116.00115023038441,127.85708118567712,138.30539845455283,147.26933629738713,151.86634933556607,150.37303213458168,147.33589887893953,129.76463893835572,94.71622303866994,60.57564111215566,19.55300449949919,0.16720603124317057,-8.810122985785801,-12.942889814830568,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,industry,15.591059753096868,32.59495598351519,39.1954379427874,58.41566086913521,70.4270909896119,84.69675150998177,95.43419601585514,103.17518000310747,106.08354177563632,107.20724263627358,106.76173656894149,101.85344664660407,96.73659049266762,91.70659038709725,80.497363792653,72.31462671898116,64.9579795068983,54.10292932970406,41.80796692637574,31.75598797284312,28.76448288583037,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,transportation,10.882226474433976,23.03903343603441,31.979508162219084,43.62231511960266,53.954776998268564,66.19005658435474,78.34703030891221,90.49046696207186,101.7564143941174,112.71253498862991,123.28586387710955,134.52803332771663,145.39625037746612,156.3774169808247,161.12507423919882,169.290441102874,177.53708225085995,188.40583413764472,188.83353997709966,186.73065211958894,179.6658612393201,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,buildings,38.92807620768755,49.221546032413436,42.469620713193585,38.09076620134822,36.614959601675835,37.27589212922268,37.04273245940392,36.028077593603,34.01783291993141,31.661012623017708,29.50958122712177,26.982078350710648,24.372555764748228,21.698535168026545,16.767541688556214,12.41213431384612,8.957357603080935,5.6765442723581465,3.8934807627536294,2.7977332807837723,1.6821823175518422,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,cement,18.57882784590507,15.186880442051713,11.979315843216149,13.913239211422436,12.032173771694481,11.427614002899197,10.898826261269463,10.422563023433305,9.44925269196073,8.487794290186052,7.62836818962375,6.282642701861567,5.2645202090358225,4.489754738948568,3.373594782408213,2.604686944886215,2.002537987834474,1.3716851975665965,1.0514276540612373,0.8545931481510343,0.6226296760838677,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,electricity,91.90040346976694,121.32242376949087,117.81061320616905,144.96525060183535,148.76571451914393,146.23349203533112,144.60970795089574,140.78756530045422,135.88391157994025,128.96015055096586,121.55605057256271,112.55678747964018,92.48341659867295,77.36568340845434,47.87459548849227,21.09009011340324,7.931446880664686,-4.609819410627128,-10.32802588561707,-12.195945785996742,-11.61745236965667,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,industry,95.84187029477974,88.20188993845649,81.69939907453995,75.74844593066727,69.01730135121647,68.36074572196964,66.8559651881406,64.15849448688515,58.31034741181479,52.1301764868528,47.022986784037286,40.63481887816352,34.910981283893044,29.82010321733545,18.248536079543275,8.024791457485888,-0.5341166668271613,-9.443474623943374,-14.129104684143922,-16.363862128926556,-11.790169099026196,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,transportation,67.88338366783442,81.94735217649875,72.60117910006277,72.41235891169389,70.585745158787,68.25017229324442,66.86417791324544,64.50343635770068,61.85319401940374,58.18954828830096,55.94746124976901,53.83316627455589,51.7471155089872,49.75897908201234,41.938745336205145,33.39744293721179,24.96586447636644,17.506870290193717,13.872159180943685,11.49486885581871,7.71825334158242,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,buildings,7.120390340420943,8.780928399374087,8.333591478279342,8.034473658896403,7.850478032382699,8.25962194606685,8.741851266438712,8.996860250400715,9.06220073947994,9.059188114789757,9.3746840111701,9.42226182667888,9.368086364371882,9.12490716966035,7.429031030029974,5.535041742151164,3.4994701297592807,0.0628371768561371,-1.1445384671799559,-1.719318781089377,-2.983004985739185,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,cement,5.029846899659627,7.350758492755691,6.941021040988251,7.21691536899275,6.576266654538626,6.818416359891348,7.054012508379041,7.213291297185595,7.047746474995934,6.829187982478461,6.567502873501431,5.712988270110104,5.020827046231465,4.472776245724572,3.517228116784519,2.9012827507079035,2.3568612262099085,1.39445980205346,0.9572628810572712,0.6463062482021584,-0.22966547245796498,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,electricity,18.225043494879667,34.99805915612144,33.50673009551097,31.6351784681361,34.86761990708151,36.54410818960089,38.50428789671818,39.59964096663374,40.278236395080604,39.9588009162645,40.028791320101206,38.93119766155515,35.88905515628528,30.313757777957925,18.00488167837026,3.700264854806703,-10.622914402265776,-32.341768631374265,-45.75905366660549,-52.0363611084118,-56.08920619427962,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,industry,20.621711036865808,21.458711133455644,24.20215263695439,24.091634673950022,25.041624813689534,27.041400210693038,29.067048194196598,30.497886719571508,30.966341347886804,31.012903704055486,31.47168754543217,30.726758720623586,29.42024971246697,27.573168560005147,20.743277276614872,13.25714488724715,5.034162256746892,-10.60834644745054,-19.7887487282647,-25.974913191237988,-32.16985664197782,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,transportation,28.794123327348554,47.05428428939673,52.9771860529921,50.68598889773394,52.41577247597765,54.13960383527732,56.252720223393354,57.22817503449177,57.528446334672154,57.30256722839532,58.97359691958057,60.17247433213518,61.42194176726608,62.47624845500371,57.58857160895684,51.89029396997121,44.248679432109576,24.763614515642203,16.93926081061107,12.015369986025654,-9.275093100673933,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,buildings,19.456221672673344,44.579972623801325,45.31904228819708,50.484498792608186,52.467436840441955,56.72508370616444,58.62490264340062,59.409570714191766,59.30393316333521,58.581484214849056,58.183624756059714,55.88806337974938,53.17372924584103,49.69368492922246,41.684706899714364,34.30579478793848,27.893434423056032,19.58011211849091,14.657833413580166,11.565014061883732,8.465477486226881,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,cement,10.521567753501667,20.0173261236735,30.399099759497375,33.0629113222283,29.9926973065418,31.080228317327826,32.24326488775102,32.8499924354487,31.881666086148407,30.590139977103515,29.136889466431736,25.683077187965267,22.553986902178842,19.893140205864356,15.308154215573232,12.287264606165941,9.82626788227191,7.042374301052488,5.472459151611888,4.41130474554148,3.1125740157069064,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,electricity,49.34903049567292,118.15243285177729,162.7862877249624,177.30784312578456,192.5577683014586,193.61617831453228,191.9738348489881,186.00145178894442,175.0323691153611,162.50619624441674,151.6292137165322,137.2887096727309,105.72561702443878,78.29453912575926,41.53942336875369,5.163744202219096,-28.302827064495137,-71.47834959650105,-97.2430849612452,-105.81109500099076,-102.31985051423199,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,industry,38.357193477345504,77.49455575199896,105.64178993749576,118.76039723252443,125.16709275517191,134.82135492445627,141.3972914727311,145.35876893957186,144.6129906891836,141.53264797567616,138.41264097279398,130.67709343551618,121.47851173196469,111.06005398670503,84.60205685451052,59.834146085656826,35.5283563786322,1.3310810842165068,-20.75513721090504,-35.35474079392545,-44.588072080814435,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,transportation,68.10099796632404,115.03600984253154,148.5345279898405,166.30214918115138,179.31274600118053,193.6267873601146,206.27790895660937,215.09774041406558,219.34461521038304,219.56309072440894,221.0149345158151,222.69494059113106,223.1612832898636,220.96943226647912,197.5379805446468,173.1358032344042,144.84979897825588,106.31188581054676,82.90089289080981,66.6952322493542,42.25391371490187,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,buildings,2.3156624986092536,3.493604068536907,4.903428665093427,7.741651544316746,8.738466864620344,10.63915534735641,12.818128298314466,15.269495340965706,17.84109886614196,20.718484743672718,23.778700947177768,26.390206036383667,28.889909925546103,31.184055148677388,31.1453957809805,31.000039184628186,30.282826857348056,26.666513751251003,23.038866986248895,19.90378657558286,16.156701545895746,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,cement,1.7668200648293517,3.9719785619807073,7.424320021806025,10.86033475548081,11.112394685526164,12.458348186205932,13.805594680066001,15.127380528776914,15.858587013227854,16.671547530827183,17.415375809214204,16.834795785190607,16.314784293592375,15.695121513139409,13.01049764694143,10.789874449501177,8.957148043934266,7.1429290551407565,6.225461250192363,5.622002937221787,5.039289244699186,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,electricity,4.015509274563699,9.312654089730598,10.75838287997774,21.849221227668284,25.50013422571223,27.533040017895896,29.956687927794317,32.41868615454173,34.26077424199479,36.351111941535734,38.64164412751473,39.86686237031252,34.8571776529404,33.065566734644705,27.783292484670994,19.13497279397676,7.522528965744555,-11.516655986445162,-28.327428403465184,-40.38400755330887,-48.31560227258901,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,industry,5.40326185453439,10.257395538425792,9.613087167938383,16.998638426381763,19.751366955710303,24.9066850771592,30.950155503168812,37.91329599514507,44.6290656134811,51.69140811773061,58.60245898778541,62.50877532041646,65.34340487954734,66.9209245744647,63.05547131795628,59.83072232770506,56.54108185652169,48.263932373330334,40.67706319142606,35.32586689081916,33.09590045338658,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,transportation,4.3462030274633054,8.280361541325993,10.866291965184425,16.520276032769328,18.91705944054084,22.389844966407555,26.37748338744663,30.748304172179388,35.22912203655661,40.066106623301835,45.57011683587482,52.614587661694976,60.97217646690776,70.87595902645205,79.36986395044362,90.32985958508198,101.41201124075164,113.33364987489458,117.72651754661058,119.3134331841654,116.1311681157553,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,buildings,144.5313040002987,72.41630292685022,69.2067993817392,71.46159888394132,68.27160539027813,68.77758886284207,68.93795540788861,68.74297701539125,68.11736680992058,66.9076258476876,65.59466003173347,62.22592347028241,58.62850291958879,54.510997845237036,48.5448566109615,42.48853910493691,37.06038694441666,29.347624131573294,24.123541523190887,20.132217666278272,15.41012392963579,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,cement,16.788014486444844,9.697567325530951,8.935887869474875,9.981413608449554,8.929190201994968,8.872979682337004,8.829442964064643,8.728825512644079,8.334021258033626,7.779456807218336,7.229604169103875,6.126003280722317,5.2414062041458145,4.543895521534744,3.5915226833253007,2.9876707167213583,2.5076266681128345,1.7485662469383314,1.3762409293379185,1.1338872821760018,0.8004303550532845,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,electricity,215.87361132894497,150.6037948662815,142.70777988110424,142.23546652970984,148.7748690561639,144.00920187082076,138.55789338849016,129.0513012916209,116.95076232515996,103.71838319794756,91.53006056043711,78.51776918202647,62.662782084708816,48.455398043286465,27.418393320558454,13.09604448141513,2.6934349420588184,-9.694960641778106,-17.781378957080893,-22.89608424068865,-26.278463394352844,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,industry,211.8273970168466,150.79567377248574,166.75049975534853,170.95219004967595,159.02322264766133,158.48124192730012,155.14080514562488,151.11345683555584,142.80196205589834,134.02987045392024,126.27052879977154,112.88299973912251,100.13984494724697,87.75377261564819,65.2750485876135,44.71787173232431,25.545946864456486,-8.206669806717022,-26.798731677355562,-39.10279431636479,-47.00246194321049,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,transportation,84.71892442746488,68.23153484601006,77.63455806686333,82.99649731411654,87.25369990039275,91.45637079533607,95.67859693082734,97.92495745686824,98.24582566181218,96.67646694478302,96.5352366901634,96.31656447601125,95.32341746173641,93.04428743049525,78.88044335729276,62.18120074063314,41.016600843139976,-4.793321364313329,-29.927219352364276,-51.045304810899765,-84.04222074582901,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,buildings,3.6025441968970555,6.921567924987641,5.165938002738671,3.9888888501578847,3.350913404736462,3.5161221748042273,3.347138346367714,3.0992646885249453,2.685877728370339,2.3525538433909565,2.0831550019850633,1.7513527345636453,1.5176751739211656,1.3209216163179551,1.0182792026849032,0.8337267738212807,0.7202099721036486,0.6113966000403854,0.5144815637320246,0.44368240961416205,0.3746467924788743,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,cement,1.9701203538296275,2.672266298249099,2.654824575031592,2.1344170565442826,1.9614310380201307,2.0237262814152985,2.0334730244170816,2.0074111227637754,1.8700302883972566,1.742692133608248,1.6252031413850974,1.4112612520505947,1.2658605161255985,1.1605946475283302,0.9483100964052178,0.8283170563030434,0.7487277126323814,0.6469399280990589,0.5823994847177308,0.5369567691071542,0.4938122074332462,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,electricity,41.3205,60.67550014122839,70.0210860226097,57.552039897872895,60.366786118219295,59.32376376205284,56.916228906976336,53.24164201535787,47.820078059343935,42.06270241472966,36.57579026988616,31.29264449190228,26.67333971492126,22.66049905533969,14.558395628891232,7.994426760478616,2.8849029591984148,-2.040997460811397,-3.480249140197814,-3.833833195287603,-3.450011403832774,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,industry,29.74042685957933,30.311671832923818,28.549756497651785,26.646225690787293,24.893735218018836,25.430559441429956,24.530440748679375,23.50075373780132,21.415002101735748,19.509072953133074,17.646555467087857,15.006539791397662,12.680843534309798,10.59334757059265,7.196972325119231,4.853635026349837,3.14028554147992,1.199484091868642,-0.2407095276445065,-1.2375987072246017,-2.1394184105343146,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,transportation,18.280960519693984,20.769116745979357,19.793618399583963,17.452987728449386,17.574955570189676,18.03298880400607,17.237727793786423,16.0525956836669,14.626764869433815,13.47234110263281,12.719078605130314,12.307080751597073,12.040598968017278,11.674071441664154,10.679517098961183,10.132242100675548,9.875650751396371,9.819892361998512,9.473756722619816,9.174595872260419,8.580438065563687,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,buildings,2.4669871754306905,2.6324350123786417,2.259745392860088,2.389737666883658,2.3430660073910166,2.457840308687997,2.4922951651097263,2.500603266781682,2.4379142524193917,2.358053612039418,2.323559975850482,2.193989839895439,2.0810951267301365,1.9220700448005137,1.542029679854583,1.2022473357646766,0.8944252556590414,0.40190665567850364,0.18181012776984057,0.04123539698648285,-0.06301991200561105,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,cement,1.1136625107080749,1.1364444249812156,1.9321536591824313,2.2053523020621126,2.010109437637599,2.096860849425595,2.1774097275285014,2.2363889808984894,2.209125749807539,2.1736951323680245,2.1184069835065102,1.872682780827863,1.6717789189638634,1.4959749287205384,1.1838252117312802,0.9794049935036765,0.7912824683066779,0.4298902731399643,0.222532213444405,0.013521979921373939,-0.2789484779058464,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,electricity,5.853774644861451,7.293430096112092,10.809899140537878,14.659783517965861,15.989086198049964,15.908234672684634,15.604636229627596,14.794559181127156,13.618549138856551,12.458150710563558,11.324869914787776,9.758951027269966,5.4400818864624,2.2976238586766753,-2.2934572812310607,-7.400672175457569,-12.536917741418582,-20.67038399316762,-27.15168773335582,-31.73788550943428,-35.83442060430815,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,industry,10.857206234600493,19.67538351895353,23.26852244044687,22.339568101392167,22.142283839700777,22.743813919920377,22.997056405350822,22.904848083055345,22.0978851154218,21.204790446294155,20.512316324372534,19.388181761060263,18.17750841759616,16.581576516750705,12.23628883689821,7.810620552570275,2.889895429900341,-6.940149135886015,-13.019605540971012,-17.85682272714323,-16.38233737556393,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,transportation,11.161298282926722,16.151888135575067,21.23841939884337,22.471568282151324,23.100281122244642,23.591900285546384,24.070671051467833,24.188062377718143,24.377403985552633,24.6595347083261,25.55419713758833,26.128921335909336,26.91598794943467,27.238697077437866,25.335058384942833,23.176273222971876,19.961648639662876,10.468918912725007,4.941647635392259,-1.1204781776898942,-10.03071328975298,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,buildings,2.910488886191583,3.570299322894379,4.017228672547697,5.031382312014661,5.4391621620437105,5.9969768296401895,6.243278726474087,6.318014764683085,6.310588402853715,6.181390941922556,6.098302201738628,5.779734765439221,5.466477295600588,5.0563815998254364,3.978306666141569,2.887674101248463,1.787995610446878,-0.08734858399031142,-0.7759585020210629,-1.1272126812759942,-1.1356699976608802,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,cement,1.6434999128898646,3.127252677936146,3.912523434939505,4.799927125331107,4.486136142853621,4.723555743394099,4.919672044346982,5.049364199398115,4.939972006682644,4.777206588805711,4.622594569084458,3.9846636339820645,3.4644495873147454,3.0597781994806086,2.418142885357823,2.020145902844077,1.6528503376435366,0.8878406245684767,0.45133100659954684,0.051030921600462964,-0.3492996860172237,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,electricity,3.7525873086898964,7.869784368180201,12.472525936825123,22.420883312521717,26.683980588054723,29.058235336486728,32.217879386545334,34.46293062248538,35.496548024733514,35.86649839639345,36.1443575123895,34.73944103085756,29.405802103438273,24.299253238292476,13.088183053617739,0.04975958740361554,-10.473398044696111,-26.306784294221842,-35.51178619792138,-39.93277929729026,-39.75565153650277,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,industry,5.1174737541531155,8.823260126650908,9.043013947508012,12.05221708031166,13.273284223630357,14.941993825169948,16.088969488427054,16.975250025883224,17.253077766720224,17.11270034008549,16.974741248922257,15.607541351495888,14.095861769195437,12.424604529046976,7.198108642476974,1.8730073964809206,-4.380696527108603,-18.277459419600714,-26.741323304330585,-33.444828970642824,-32.83739458039904,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,transportation,9.172208515836678,17.494076305905484,23.89571990617167,29.308933926100472,32.358702154334644,35.36514251969525,38.17364675605231,40.29600967518104,42.08635436315575,43.20692693956014,44.848462611823855,45.762410937307855,46.84247608005241,47.70192581077148,44.327952506844206,39.97894281549404,33.09611782589397,11.590834605124588,-1.1374241124574134,-13.83984283086825,-26.544133302892245,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,buildings,1.408018704134606,2.3944278191156108,2.6536057413689784,5.267549686635787,6.944380375850393,9.317331155042224,11.740542974675671,14.247157543715844,16.706897743683058,19.285406218835124,21.936597294721725,24.25885040103535,26.521291041274953,28.614467086702476,28.825971961769813,29.078069687388204,28.88627532332794,26.676508408759375,23.772061005428792,21.113723292055628,17.960456447777528,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,cement,0.22997457290645212,1.648143935894937,1.7114481788421507,3.6399144171961915,4.658973187619576,6.409408502742021,8.568362722810006,11.111904457208242,13.061212346055713,14.729416984367859,16.25922957862549,16.447406019008085,16.51641963044413,16.367229701635537,13.861907760337527,11.625119932362423,9.814909501288017,7.937817815286743,6.997785193250625,6.369617612056508,5.73857091896033,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,electricity,1.5422769996496668,6.20444938364497,8.967275502649644,20.725621351073958,28.959147424863357,33.76178430292183,39.222906738229966,44.5074467213568,49.36711723084226,55.02883708261206,61.09584842804851,65.69654523741016,65.39459939808788,65.05185912126,60.26541791331083,52.19507372047924,41.0784272711035,20.704933872988082,3.3409441029104943,-7.329914191328853,-12.685330790513849,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,industry,1.9501270177875065,3.90186185911119,4.308650672352807,9.281937137491354,12.5892748041621,17.407454245703526,22.39506451933719,27.612975451164246,32.37031171529668,37.383441283970186,42.60062668165396,45.216992448440614,47.2493638027157,48.533614320048954,44.29426964301392,40.872196615467814,37.81075936030771,31.613906427265295,25.40427573363921,21.063374834624945,20.030390804077175,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,transportation,2.203396248521768,5.091363343743192,7.13869331722802,11.61582380148115,14.510160080853387,17.99974009039547,21.610027475182697,25.25842876345329,28.84453408516062,32.55456857531571,36.608070823696316,41.596771103654646,47.425091350702544,54.306651855349024,60.012519500862226,67.71798227869904,75.87260350665312,84.95089148120154,88.33256503689648,89.99743865738131,88.40172938752805,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,buildings,18.606504115214864,16.98363291843897,15.087717358197294,15.323827481148735,15.031698183907054,15.169477170441857,15.10657872727846,14.96730018886954,14.602736143184796,14.150231586680638,13.636943667747307,12.91817730552295,12.124554559673882,11.281900835496893,9.7248735434709,8.5256945653783,7.467878681672271,6.050907799660908,4.754766206320288,3.6899123693522826,2.5087676273122086,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,cement,8.20461763711427,11.684486486968401,11.428527139089976,11.062355517100471,10.077574705518208,9.552264721140865,9.071913875151589,8.61862390177108,7.960080645233175,7.360204553842848,6.771557226756061,5.990190765499387,5.228398735237606,4.536333408919459,3.379312778511617,2.5697666006200257,2.038905102878353,1.5753442640283728,1.3254426762358968,1.1640900076563667,1.004150830375072,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,electricity,9.438295544835594,47.58484209369309,67.09282509718122,68.04567441204348,70.12448091984515,69.32657804632106,68.22846928298911,65.9877679016016,62.88901095863837,59.03297725283527,55.09886579212025,51.13746532494496,46.2170260285905,41.121057567950736,29.52140436723391,17.83947353135023,9.976511595179838,3.061817030103506,0.25016565243097433,-1.0085238179147675,-1.589204818635382,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,industry,22.80620608522141,32.7762008227436,39.11729415509091,40.09253038685039,35.762286783643596,35.25097841856301,34.034468971351366,32.698715337741206,29.78277551405065,26.931645111296213,24.466200124139508,20.875699166219643,17.672489147952252,14.839075840876088,9.54032607021852,6.582525774054465,4.647428287192104,2.7018754229084565,0.7246661217808005,-0.8023350646352495,-2.269745615697509,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,transportation,13.600476501981202,35.56078617554001,36.735063980733315,37.742382793730734,38.33709972904753,38.75043036329227,39.15143433774063,39.33358741127777,39.1094000136934,38.527270505639095,37.96411986687664,37.71041987891703,37.44591686523261,37.17171703505958,34.91375857039743,34.256872726709105,33.922021833011804,34.23235399070688,32.76625038744895,31.130824046809714,28.510872518278294,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,buildings,8.131860083883435,12.01507610559241,13.005993416645488,16.055180190780444,17.244854333850547,20.91156614024625,24.13181183766808,27.365535680739903,30.046588239405622,32.81483584668892,35.551636777482,37.087429291034624,37.88778989858349,38.16706250391487,33.44716177787386,28.96402094317468,24.97554441477888,18.71194619701891,13.647527266512924,9.821533561267955,6.014131570919559,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,cement,12.029617063664126,24.970301024067254,27.983837298105065,33.45986021395801,32.461375592358976,34.34720194739184,36.09909163351957,37.09669990896337,35.81940711384527,34.092217306897865,32.128181560358975,27.158205653034873,23.306564056093833,20.6924264166442,16.522977944709254,14.234863135261516,12.654805187934484,10.664699131494714,9.44062587072749,8.540349473213547,7.71964372432449,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,electricity,25.88923524358908,58.03430521263789,77.83722430945755,103.32616588886027,123.83181710490683,137.34930870364855,154.41215589648144,169.7499233488762,181.00103814844528,189.73266028806225,196.7645879576114,196.97502146868692,181.23758941106067,163.1503484688565,121.79209230632058,69.9467700076751,31.142874257227263,-13.821951316754308,-40.651818282141015,-53.981822333570214,-57.09910094174385,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,industry,37.07504905936008,54.54197552027483,57.32476897348379,74.5508853663782,83.84478082332288,98.13349849098313,109.14412616993776,117.87670203237616,120.73043802029753,120.59224379349521,118.80997943802114,110.20811937452635,100.3628025855318,90.55405550761486,67.77085891604018,50.21195931190767,35.548659839286614,14.978704959270159,-1.3253978156659187,-12.676383643240577,-15.93236713684487,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,transportation,35.955955845303734,80.59636887702669,108.45667384391666,125.7058101900245,143.54793870861698,163.3194986116459,183.12621401519516,202.01318754856976,217.7931151327523,232.3791368685615,246.63846689586913,260.83698794988214,272.5311855368467,283.45236978232987,276.1879742073081,274.1418887621826,272.8385319560763,268.73774352149275,262.18984125731504,256.6299018137653,248.89177464415963,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,buildings,2.2121201729212823,2.6842312517696416,2.44283171340402,2.2462798680328975,3.3702261389336625,4.044649954300382,4.446323777853978,4.691911068221058,4.811025701358934,4.8183810940951215,4.752607609124103,4.617600086191739,4.449209275347078,4.316080438628828,3.93315228194012,3.6071031452990545,3.3144139126030776,3.0321582431912586,2.6849524607615085,2.374724454182615,2.083129226376162,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,cement,4.639270312235661,4.508006353369607,3.6065587913135024,3.6956649761508364,3.30670196479413,3.214043289571721,3.168591723775494,3.161770386639869,3.0752889496809708,2.988402445171586,2.8968461141471202,2.6691382099866803,2.433861645009398,2.1910246925665118,1.7258518250797508,1.3756481039305573,1.1463768967028283,0.9209185246468985,0.8006891941869533,0.7216541656920314,0.6444359952699799,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,electricity,10.295084376695389,31.33327791724596,33.3660379980039,41.478893794517504,51.09256211357895,54.89003602958486,57.92874473631331,59.906544797477984,60.775478434125546,60.777067594108814,60.25727519451707,59.05973919489592,56.612381781948734,53.46067203062028,44.69294353030179,29.472825093915976,16.971560837918755,5.279159857492982,0.28198408352552057,-2.1740194871272256,-3.610713976516407,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,industry,10.874953437727386,24.807816737621682,23.9561828981187,19.904282752305946,18.779268415661416,19.62961598259237,19.53866564726315,19.163172732377436,17.854496976593232,16.239267794664517,15.158932538156956,12.95487060150273,11.057311809294227,9.442895456363857,6.329826535902325,4.363575357735703,3.0981542165002582,1.933475556397616,0.661673561560158,-0.3577565620356513,-1.454882518981201,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,transportation,7.961403690420283,15.752641739993111,14.805734006998305,14.613966770325641,15.600235156748424,16.424521937330958,17.048266218690227,17.5506673243663,17.741205195172366,17.795575160895208,17.87921847984184,17.832395236172484,17.81355445038848,18.15346913240931,17.620001778138857,17.680285280699586,17.799334394442383,18.14604856754675,17.382441680089528,16.409523663268285,14.908801451397999,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,buildings,154.80250091868194,151.9445775172298,143.81653428723982,146.50010437468376,150.75692909523946,157.6215700894697,160.97266282773853,163.28821227860803,163.46049380264495,162.09009681574375,160.86734539415357,154.6622243347239,147.8723794470304,139.77448130601536,124.75097333982794,111.11166947078799,98.18838010601513,75.93007245036625,60.64951859444126,48.1974737255791,33.30254428233159,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,cement,17.606229746023097,24.892306532439935,16.05566669765195,17.990418171529722,16.68613319746008,17.33516594959081,17.844050095280416,18.266449602597582,17.83165323823618,17.358192412866742,17.03615545889887,15.014271518185414,13.457835843880964,12.185451387306665,9.764992320933493,8.03281261957382,6.490256116669592,3.8332081031673484,2.301653136513237,0.6847343521350462,-1.762806732237447,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,electricity,512.7668625616876,679.6513210553087,638.8710040671475,718.616833920235,732.2114495253467,739.8317119189155,741.5716453623604,731.6050134806419,715.7305306899298,685.2759252666741,652.8249979399039,605.4473972154314,528.6369358418159,450.0871091668038,264.17626874895524,93.65301150917064,3.5287859740882004,-82.00281882708197,-127.87360440329287,-155.92944586686795,-176.06877930928934,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,industry,234.53353492552944,186.50604037092322,175.24354919228438,174.9789303137695,175.68130723042583,183.60065876652342,186.0733945871442,185.99570871078922,178.34441678099458,168.1865687342283,159.53660241967705,143.931123729248,127.37890458688393,109.815281027784,69.75158069337421,30.609886284802865,-10.769625788920376,-81.64199830273677,-127.61816245499209,-174.30997514484199,-231.67114124745157,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,transportation,460.92732059125797,570.6213526132813,530.4807186483166,552.8168878556321,564.9345163927757,574.0733553470699,579.5640575493392,577.6973298738645,571.2744268803566,558.5187293320063,554.2867081374003,547.865139992331,539.0120469573402,525.6603197323403,461.9610658282079,388.93774183034645,301.45371784206685,138.1633497251305,39.79110928442674,-75.36983785414253,-252.3388439131435,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,buildings,0.924752142376955,1.3620397830459638,1.5379796261438057,1.8457266769905507,2.4122680051212484,3.351337319538011,4.56366797708225,6.0965431247242705,7.990466556831454,10.205309146604371,12.814246907267954,15.216479682876095,17.76991608448341,20.174362579841386,20.3107168042319,19.764157650111894,16.782161840063242,14.433697809512378,12.288449384185487,10.435966501327277,7.860367047916228,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,cement,0.438703765840629,0.9901044438022726,1.5356968208571085,1.9741019216123303,2.2630706058924,3.0422662887272134,4.059788506156226,5.2724675905090574,6.566071894911367,8.160123565097365,10.131457328470038,10.630615457833798,10.815373548116705,11.127149232438343,9.88835208477984,9.413286110506858,9.074584349273929,8.167082807371935,7.798219410016295,7.470601524150407,6.861430259337737,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,electricity,0.5631617797092451,1.8060664182155455,2.3549118229570514,4.1854820289584,5.838953645827528,6.776020228509624,7.890047895873089,9.276372445865016,10.874088339058536,12.754366088014303,14.847017088502907,15.75492706592407,14.139260210440874,10.919217845209976,1.454480776406804,-13.040906766933565,-30.248663395427005,-52.74311733744216,-70.50485095017468,-86.16339205792892,-106.86939685196761,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,industry,0.7826568274507671,1.1608727224884576,1.7423402139122857,2.983994840707918,3.951483159419069,5.445133739734938,7.329830184939108,9.665438005417197,12.443036183172893,15.521408968441992,19.11471704781165,21.787735488746865,24.018138990383896,25.486683690011475,21.442791879792836,16.3804773597874,8.476893431095304,-1.7954549583548247,-12.485514143285947,-28.009299278847543,-50.68747907675177,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,transportation,4.196635183294659,5.982520968912315,8.480164644129749,9.957017058002425,12.252623219210212,15.341673432234735,19.16412202304827,23.766738204947057,29.306123917012176,36.10269655843,44.33306666119094,54.41068612060955,66.08738185926443,79.27844804205363,91.19903056363742,102.71423027898464,110.4417361390651,117.10199453350134,124.41682327480723,128.66637987326996,122.42165773222564,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,buildings,7.600059927824815,12.176717766404687,12.59750611045195,13.027803189388987,14.676778491021572,17.533212636367022,19.59911082692615,21.191887128298042,22.370638517160206,23.207899755557726,23.83907728175948,23.744599616759576,23.655968994951635,23.411959636656086,21.319982975811282,18.719605543436202,15.4386725611262,12.575580663426324,9.937143376215547,7.966327871208862,5.314322835161949,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,cement,6.542645483901209,13.764549852225977,17.571024953366464,18.310849871495805,16.453262006260914,16.834570002871686,16.93447295285401,16.930198277832922,16.16879774258471,15.338874074755548,14.606935015464892,12.814430444955342,11.326783663499377,10.144845322375208,7.976196168702686,6.736128626979643,5.8742070916153315,4.938546773923813,4.422488188288868,4.047134763066638,3.5688293073642487,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,electricity,14.158230115545193,30.68328227613693,38.12190972785374,38.9808862038614,47.226188765985555,51.59303843392613,56.05458251930253,59.24783064848147,61.04756651988016,62.0924022052517,62.87977620511063,61.94802223883287,58.55146123746822,53.547070816100124,45.05175634722125,34.37128159512321,24.092486397203484,10.526058775121086,-1.1586256039863414,-9.4935928446515,-19.073506474966074,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,industry,17.99554428061964,24.815104471462398,24.25314275234382,26.131652298987436,30.727827422515844,37.19582188370045,43.08516368453371,48.49219133621349,52.958306307880925,56.74641471285119,60.02114443769922,61.49727371576814,62.453862370209436,62.84258682812913,58.64573943227744,53.748426954230524,59.888402164206234,52.736780337228325,40.72473343919165,30.937070206184313,17.536146430554673,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,transportation,16.001273840301213,24.153189400267493,34.10603473709593,35.195411138023715,40.419101498647244,47.699436528716056,55.30713756971756,62.91487339513107,69.9688621463709,76.73724123933795,83.38684131570679,90.25820633952708,96.67986947774277,102.80811772161246,106.30456864282564,108.17879204886826,107.08369554578528,103.51086315229418,101.03047542147061,98.79633989057307,90.71693678294453,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,buildings,0.9234862459264772,0.9201976582183695,1.8021507121611529,2.0898816134393505,2.5035216200066084,3.1830958912740677,3.7978413189727442,4.440645729158384,5.286373173621639,6.346539280184425,7.676980203469939,8.940928073746264,10.25699530494923,11.955293189540766,12.631765849689478,12.767529601902643,11.252090630277173,9.629582168178507,7.906188383320012,6.252019628273835,4.31607172906818,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,cement,0.43132765945552465,0.867862721100886,1.0812635696093253,1.5218955170401225,1.6781433567681567,2.121602553197415,2.646143973813662,3.209846849339149,3.7884611462484274,4.5348561540534655,5.49116492413928,6.001105096630976,6.416577655439668,6.765640016329875,6.308019957778101,6.113736940421582,5.988739574761823,5.3532548614620055,5.0586037181529315,4.834509197315146,4.41822966958757,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,electricity,2.7256676796989217,2.9985855533681796,3.2058135064994864,10.9048540343749,15.141161522308415,18.99821085544479,24.125824664272052,29.713374638797934,35.499286961433256,42.28763129004275,50.124782865746,56.2396319671256,58.91116123362435,60.42770123857379,54.75746900552883,41.458041687545304,27.562912933547416,2.660681398050314,-13.873838076791928,-26.722350965746653,-39.68369649457348,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,industry,2.7815126677571658,2.2719158605624488,2.2403852862469007,3.624185862382303,4.4558924636280315,5.751018538462672,7.084388815912396,8.532299660286698,9.994431522811624,11.591354501769834,13.439805676115734,14.417912641918424,15.018070019078776,15.459798884903774,12.946889951923387,9.939834694547367,9.219426599090813,2.215089596477361,-5.197121314186442,-13.70678286453545,-26.122443658095253,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,transportation,3.2493196351619096,4.3045174467501175,6.3367132454831365,7.836872307393137,9.373769100688332,11.295626868287773,13.388123668566752,15.693899022158774,18.45255257408006,21.895535692903955,26.125153568983016,31.408246875795093,37.54008686752556,44.411505367229836,50.61675525527235,56.62953092035842,61.27077315654152,65.1896848824992,69.78635533133689,72.85490129744915,70.28397118361347,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,buildings,2.825282376081831,3.562882866671666,3.999696745854866,5.4344268722834865,6.852301769681732,10.355744262535971,14.697706992709003,19.978295670435838,26.537187049036866,34.517808083459,44.28867022206001,54.20488938512534,65.61961741218762,77.22026559876218,82.32413075392327,85.36772034862659,78.71198055463046,69.9709834943437,56.88407633375693,45.602401237715256,31.24443168397303,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,cement,1.6010295936951575,2.3867089446309806,3.11422240544821,4.140199403798598,4.575719568265127,6.294797973977063,8.585332907189308,11.339422636959146,14.290434082146867,17.8990157403097,21.886793060980793,23.25273723114872,24.46514474543948,25.662206171448048,23.7838623345534,22.95601182865671,22.271833555661765,19.588725936690356,18.187379658379086,17.29812292646098,15.75783373439591,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,electricity,2.422182151341618,5.022120454360134,6.281404622969402,9.143304463036936,12.683703017900285,16.328204188462532,21.80298861746734,28.54500895242058,36.02396056474549,45.21219859823057,56.596128229382394,66.82246812318633,75.64772444008487,83.4067866550788,80.59325940676719,70.02680966607394,55.87418299749102,19.883681086118813,-24.865581561514663,-64.53478665950541,-107.98519980002574,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,industry,1.6878337251983042,4.581515726047565,3.6006930218018707,5.5770710811729085,7.119131699577667,10.429999596691234,14.676987110929282,19.94322950219942,25.964522311779152,32.82865879235715,41.263695749883134,48.20997068234719,54.99086311657478,60.75286232466736,58.31948250598883,56.18561431860661,61.4851031144788,48.56037924309656,23.28314553746853,-8.832509450164787,-59.02073180167788,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,transportation,8.79733672629665,16.204311493718873,15.597033879255447,18.809045158315886,22.33251363967804,28.476297078815584,36.05351948769231,45.089211199883074,55.70769316659796,68.42438341127813,83.50603603634512,101.59692468083536,121.91597496417563,144.1167629365346,164.21692302880882,183.73648367111116,197.6508557595156,209.2914207025366,220.06199616840937,225.85243879977878,214.94638745193723,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,buildings,4.9558833137413,5.529147291389708,6.677223099235845,7.188557939399278,6.707595387002308,7.484055768441598,7.914195422822452,8.188765871540642,8.246401845710201,8.161732311177001,8.000438075030132,7.589163124029581,7.09335725844242,6.537362083103273,5.524454898513357,4.54991910064084,3.6631564911934986,2.439116232306952,1.5321880091112265,1.009412793251902,0.6132881716498285,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,cement,0.7362726220344245,1.533110587694457,1.9918202415540087,2.134253981578871,1.8072637939609013,1.9335371065812907,2.0336041145030537,2.1031403565647273,2.0491558723271543,1.9663379365493086,1.8762556918522253,1.6247828258539634,1.422221692928305,1.263837972243562,1.023850412697933,0.8767875228619204,0.7343809982326915,0.44551424478220125,0.13750109341809102,-0.0592394587724302,-0.16376383671625205,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,electricity,5.221505586984803,8.603107567430875,12.07815092848231,13.829918530343644,13.821897026725946,14.712842492474499,15.510620142810703,15.846055597236306,15.605675644898673,15.139821424650043,14.605810396381989,13.725042315945633,11.342191521419155,9.839755556083869,6.696230087473533,3.0620061731020827,-0.21792547707540758,-4.825983971810501,-8.376031926027668,-10.213349296588657,-12.097878375183424,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,industry,7.830404507247202,14.311359057400898,13.399854405158582,15.066903197845303,14.959385501691989,16.43157958074558,17.470089393703052,18.34867327172345,18.810216495881633,19.068030534855477,19.350825894168914,19.153924524883738,18.805109035010457,18.351536208889165,16.11453615577477,13.624384210035341,21.20597120898111,15.568181149797482,4.181354906678281,-3.6348344710176774,-9.350129447891334,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,transportation,9.896735190805753,12.014996346395336,14.270203711347175,15.502178943367898,15.024988386825937,16.262722662982917,17.46172412213035,18.511228544337058,19.33737228373101,19.897470513184906,20.417462614822526,20.71152341751027,20.90130428904869,21.012222916482884,20.168678744620525,18.406478053764005,15.376507530852123,8.329140901549346,0.9886374912885332,-3.208884152130479,-4.730434220971827,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,buildings,2.6913177516013955,3.4314670234138878,3.668906937820044,4.005825636283849,4.3656366857445,4.802515347201758,5.022658103763725,5.1734753617693165,5.224786859410493,5.219967815446439,5.17602358648623,4.983998629778919,4.755376722957137,4.497803694836885,4.114871131701053,3.7462283269419125,3.2408321738456087,2.4367919135952487,1.6049278398443472,1.093464444821044,0.69015210190608,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,cement,1.7912610259588588,2.1026095352388854,2.1068766782499306,2.4493049677558534,2.277900110865211,2.348097162905383,2.400611678461833,2.436174953177815,2.3351549974572268,2.2249000251773206,2.1134898928635284,1.7991213768374366,1.571114785396435,1.411334245273627,1.1751833005199823,1.0732049652166795,1.0337713273668034,0.9795769410244484,0.9456314757136938,0.9095551663204353,0.8554775092891848,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,electricity,36.75460034540421,57.76951791956505,58.42714729626969,63.26872897552956,65.62879468123084,67.0435594248386,68.1036728318588,67.5418319732982,65.92942013006034,62.65088539838819,58.96920162145832,53.81155157661855,47.56296523501717,40.20122180057982,25.29681187002539,10.897358996709418,1.4752730062655648,-7.3810926679560716,-12.569136938924405,-15.683033535856271,-18.816533813877008,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,industry,17.31363972316759,22.362022355912558,23.781068486403885,26.162194975475305,27.493264819619256,29.44846922204464,30.84855881466493,32.144426774255194,32.881887872493124,33.486545452299694,34.14070977419471,33.8196635962479,33.46701965942466,32.872107871351915,30.000172274718636,26.615868433360422,36.72763922768854,30.424213798420755,8.409305756105095,-8.545116549808041,-21.814158306553477,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,transportation,22.991396899526585,30.21610060943695,32.226527407909884,34.07181016249862,35.64411388867974,36.8937160048841,38.1616439043725,39.353864121135395,40.98593427967644,42.31649011037695,43.55038140129083,44.26725040729284,44.99805573356997,45.62190176176837,44.42054704336993,40.78532994347039,33.601874309640685,21.295859253759417,-2.8113731564738362,-19.695355849666367,-28.362722024487148,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,buildings,5.0973257508338286,5.866168061635566,5.6760458229848325,7.010520913560561,7.028041149930169,8.088885501905608,8.718009270296143,9.150728621620141,9.531006277884405,9.736081073031956,9.782647613783931,9.431775154039565,8.907120863351018,8.195453580798684,6.640556339445379,5.026736891239532,3.24844335513061,1.573657196716097,0.1401895043469611,-0.7741370435459639,-0.9629120122299544,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,cement,3.5725569969701656,5.35977368426167,7.1660385492501355,7.896820869262398,7.020672828425531,7.355301142481093,7.550192708259063,7.620964549264119,7.155919474214793,6.576289614250577,5.921805147030671,4.456871385254384,3.3420315422898423,2.553613114728165,1.6354907228820759,1.2893749856647636,1.1271024496845152,0.97958530512933,0.8521714386783374,0.7108758883410267,0.5642955749489094,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,electricity,2.792255795008857,7.952950767749888,10.595943040446866,19.16596817615371,23.68031632914761,31.408146570039,38.696910424572835,44.66764875053226,48.68199371615966,51.619347961289506,53.65612342614854,53.31636392630829,46.55857139061473,38.63548788353724,18.681572614911975,-5.857986751606422,-25.959945219635507,-46.68181069089161,-60.88211747704676,-69.03003337162075,-74.9618970574251,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,industry,20.12553584362152,30.6582923156379,33.90596985414936,42.83939232842646,42.03546851665276,45.43915229664953,47.34009141460173,48.682439657713324,49.0351993703115,48.774164101198195,48.37906624782557,45.84529828807238,42.944779807710304,39.62409525924323,31.641297097972583,22.298030381622056,22.33484897544196,6.0494035740199195,-20.386418115077568,-47.96682376068105,-68.80928900004668,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,transportation,27.344821908634387,47.49099229887107,58.670761927343676,68.25314180612725,69.90813786566753,75.19279617606051,79.66864529259351,83.27645179497786,86.64339379754686,89.03228059052394,90.74656647734004,91.36990994442445,91.87896629225978,92.11849018827553,89.03897601596285,82.81037842399508,72.25872115824691,54.103425341657505,30.51986281890791,5.6167558433976,-10.164681052161843,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,buildings,20.23549377269117,25.29530588783227,18.871923100803578,19.6018392754052,20.089650165403988,20.823539733066877,20.85873315689345,20.72082749351957,20.127676346749833,19.38038119623056,18.559405269383404,17.108062107746555,15.658298658803721,14.225327744232112,11.879782343040969,9.79949825733423,7.882831721677493,5.493442310614027,3.7607622410743122,2.555292309994151,1.3805728568215379,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,cement,2.511044176343315,2.886629776780044,2.226863416252841,2.415998187251816,2.1478801203939426,2.1769012806611476,2.1987465066967307,2.2195008703942793,2.118975798172584,2.009994558673074,1.8788772711717538,1.5281570106034417,1.2591968439526573,1.0681920781459433,0.8176470462324346,0.722090663951042,0.6884148753929735,0.64695978879032,0.6101414730361547,0.555136490011208,0.44643465777492675,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,electricity,28.593919308899366,36.21645304775608,32.11392620841336,35.14184983749195,37.43509232377334,38.17249778861871,39.08003039026081,38.98657715531513,38.43648122065283,36.92607510379422,35.12587822211102,32.13798304054969,27.304984629374943,21.731815151944666,10.26436725108491,0.9386701068013754,-4.529182855249372,-9.970429316605397,-13.401554629910231,-15.62068848604888,-18.573773786422322,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,industry,32.36771158117736,42.97690750768501,43.30991525156254,38.50964580230092,37.627156682527165,38.454255716106815,38.69523122907485,38.78143101444448,38.00405645215244,37.05000623810444,36.136819993259586,34.48964210341913,32.73259907505211,30.841879803435862,25.610829006279506,19.584011361085274,25.560449742426865,18.570208993730816,3.2936800297124478,-11.582446275650874,-32.5435327662368,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,transportation,37.03481780495049,46.05434586351028,49.86735720176967,52.16818692129135,53.49101261372567,54.01953132527562,54.254440135276454,54.14460384965463,54.413375018795264,54.192157288968474,53.51080362710802,53.396190352235806,53.5528314785604,53.85900531354649,51.98923195983261,47.40646751936406,39.79897665098533,29.131193037920355,16.58772027228957,2.6845069792336425,-19.46597709018262,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,buildings,4.172147799145947,3.7925554192185618,3.0626271238664424,3.106640101265577,3.2321535543930424,3.6160783911824383,3.8478064234261704,4.149758985983357,4.295405806742719,4.408780115537246,4.512629998443952,4.4281618765297015,4.298027278381164,4.1012141158491024,3.4272393736456355,2.652466136529345,1.7376934020929458,0.8145709793101661,0.26905886572573556,-0.051818533645769715,-0.36689546613709495,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,cement,2.2501840594858784,3.1541138412113217,3.250299736245595,3.788605912776814,3.603102485972978,3.91985658892598,4.204497862620311,4.434860979296619,4.432594950844983,4.327828344199467,4.183979737128336,3.654882568664158,3.20604119443974,2.851146362957772,2.3223953047248016,2.004939835646017,1.7171255868761188,1.3076043391227516,0.9782223244389543,0.6572694856692989,0.09684533501270165,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,electricity,6.495820966369745,12.331099610142962,14.359070086035388,17.79069351903425,20.215296781150933,20.92421378704399,21.359216139650343,21.441590391953273,20.98083163514469,20.107738181687093,19.063015101342483,17.261884129525797,12.5360346930996,7.956328924650391,0.47930388738932755,-8.937615320751162,-18.393131628218416,-29.786681464469122,-38.43435679399708,-44.623169420376,-52.76113460521024,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,industry,7.24353570073176,12.685426349107866,15.011699268941694,17.273150306515202,19.187177617983235,21.892644296361876,24.394949939603794,27.03387459457521,29.065708303809593,30.81027407548832,32.33966489946079,32.89574746487082,33.0267318684887,32.76833306601929,30.333289867012343,27.563684828604604,31.400962398195325,25.012009078860025,18.92291225887234,14.686793289733128,9.685923790490845,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,transportation,9.467396145766667,16.5739112946683,18.990311440854114,20.640931323295796,22.210639709255442,24.30975128121273,26.524642660855495,28.71840984399963,30.9279630086816,33.05046363047036,35.162640560690534,36.979777128718396,38.69929363416697,40.226283525642586,39.93409500681406,37.59362327404615,32.492337006704524,23.377598258815706,15.879943220798424,8.542868761753853,-5.074501880035806,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,buildings,41.874216317346416,20.83637581039597,31.26666062451254,36.32957657221092,38.90048568336732,44.72160969785274,48.58970752989674,51.11512192108399,52.03931703696762,51.958117129302394,51.05487317083025,48.87623018698337,46.46926005911652,43.91162015870355,39.054795472858345,33.58373496568697,26.256666573114614,14.444137083388638,7.989123007751222,5.595210736243873,4.622203710220158,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,cement,4.4076217915239075,2.607251557926931,3.1971117566889538,3.9878212712972205,3.9333943701448906,4.284529123019442,4.490734320284764,4.602730609531178,4.45708764308271,4.247364892401681,3.997088669170834,3.435312317402042,2.992794461937813,2.6514397494978903,2.1930458497221363,1.904953210775361,1.6106830692427758,1.0504541390196476,0.6832688952496722,0.5012979468781449,0.38181365128804234,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,electricity,60.432203307387354,41.56857866557468,40.12942693426759,45.35700008260552,49.01392785679699,49.92393910407722,50.025733969764886,48.77080976350417,46.38322996789812,43.62936016615789,40.77531900426296,36.8135517365186,29.64591827122071,24.089406099406865,15.04424577764028,6.942276169775903,2.414009177744584,-2.8907089309056553,-6.367845824238397,-8.490214828145673,-11.390789588527458,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,industry,37.879300562683,32.146637519182605,42.50025577430586,46.81508896073966,49.033485314014676,53.27114777247582,55.61013516232072,57.10209766785152,56.81797261830086,55.933777154439795,54.66037739919914,51.371130792651655,48.04942895949502,44.76474959305786,37.54949696441053,30.327046477389086,34.58158553636447,17.12929568999555,-2.377018728410706,-15.097573147044683,-25.676722471852063,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,transportation,14.163877190421605,9.50654860332366,12.47023010098049,15.085926046494581,17.274550291233844,20.333377602041026,22.98013226250997,25.108650128681646,26.621666193735653,27.496669630896676,27.89059454075675,28.026840435152778,28.064646299069132,28.036492551941446,26.449173792583906,23.23165092476716,15.677596750096797,-1.2365007013002138,-12.61745502162994,-17.033663657994772,-17.539205677153518,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,buildings,122.686903946491,145.09849797559798,166.15793916114083,213.2826419890364,211.6214407018539,247.4573738503612,266.9561202514244,273.68555398800964,267.0416310069912,255.88529830711423,240.99434612297074,213.62918576176793,188.79032631007027,166.3812383111836,136.52044750116767,110.90915870861444,86.03246411804366,57.48646356607181,29.052879234826747,12.325009059201351,4.906622982812829,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,cement,54.61801319865077,249.7809800353594,385.123577961721,389.64349173378355,320.6900217285855,287.08813065022184,260.65458462746125,238.03800355194795,207.8581824841597,181.2849462948328,157.91942386062084,125.90288465799733,102.51567319233476,85.54097405262877,67.69178576177397,55.856461230560846,46.3926512149964,32.95539212345759,20.257330697645553,10.863729856762028,4.156573620030095,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,electricity,168.93036525796947,624.7561863600757,928.0717293376746,1084.350481953745,1189.8268852241795,1274.647447054047,1330.7672623794504,1333.02662093356,1296.6119052125252,1237.3954844856448,1168.4730396156203,1086.274716669589,982.5952323770709,849.4051489628561,529.3659113402639,188.45491682972605,25.71065225684347,-83.37801709572909,-114.4351187562484,-127.52748284951126,-148.37111995432176,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,industry,322.63859670463256,613.0214576084759,714.509755665514,841.5057632265459,890.0044136286541,959.5579496814248,982.7426808622882,978.7977188248342,938.2206524063314,882.4895304163169,815.2902528157932,704.9139125711096,598.4773968398505,502.48149035040325,370.81867439483744,256.0500205029249,167.09567829039457,15.885499085772034,-144.4569777673801,-261.32085391760745,-334.6913435755577,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,transportation,39.31515205196738,132.23168113695786,191.47001305964898,224.67511627208503,262.70264707658475,309.8695425997305,346.4440430333703,371.8466718349889,387.2805547123892,395.271882565997,396.36310407496177,389.7749242473992,380.4251589506528,368.6756611223467,342.83926637273976,306.30374008273435,247.00412899094113,143.63148163879887,-0.22297824471044336,-103.04665991287371,-147.8422366791286,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,buildings,1.3820199761880563,1.3631648050723562,1.4761926159389671,1.8873750420453776,2.0856903218199774,2.3989370434705974,2.643916351227531,2.87721262948631,3.095243263230984,3.293698193907681,3.4881313065117685,3.564422856236932,3.5831332064113592,3.530617398374619,3.1142605327496344,2.6162574803111065,2.0175903880657566,1.1563017499610404,0.512061043832816,0.14615085288908286,-0.04592281220630358,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,cement,1.3539187200084815,2.1119445415977545,2.146220968256931,2.683699173134615,2.5346391783597397,2.6722493186648126,2.800689672112037,2.896465050436527,2.834809384194276,2.7463872328378183,2.6504414709489152,2.3277993380343216,2.0485813542893636,1.8206472946262293,1.4843245081309613,1.2743457973202188,1.064192845021694,0.7035821885933771,0.32384333186679526,0.012902167510602247,-0.22024595367561806,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,electricity,2.0228212635965432,1.7285469043048491,2.702587863937432,4.4416330591434585,5.825595355031753,6.59695682343477,7.840994158451771,9.065975924590749,9.94734648675342,10.726108001347216,11.41374827050631,11.675505690490299,10.920815876681429,9.804025601910798,7.097529543884817,3.526477530122065,0.5014651862266102,-3.543098001623926,-6.729934294133441,-8.865596225634397,-11.147845054759756,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,industry,4.255513229594176,4.849606013836817,4.886772879158369,6.67141421167017,7.57263918582613,8.759860524175867,9.967378106394854,11.24887968806296,12.31777131690647,13.322585740439777,14.360306016686087,14.901137201560005,15.286902327977405,15.44924723952848,13.99765655571189,12.238737977915376,18.838685800899093,14.07940745298867,4.144158801676913,-4.237820769018709,-11.56350173182483,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,transportation,6.030984902612742,7.537760142188223,8.9220674897083,10.176947197862706,11.04520469275356,11.86182308462928,12.787958226242297,13.66433822519778,14.473855089404847,15.213651816003182,16.005805932269805,16.697116214096766,17.33614214369215,17.899902893080384,17.633292814027605,16.50797301492009,14.072694070386632,8.811980008814661,3.050245842142833,-1.4886424857000229,-4.401676691137998,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,buildings,48.67941653988319,29.035286257318216,30.195091586490694,32.90142420214741,31.42494640465334,33.501449388893484,34.679184464083995,35.37334537255143,34.790751882059986,33.74494655392522,32.61153859563987,30.204271033870732,27.84580919214636,25.519697256286268,22.109426472381582,19.28447801895664,16.869030974458745,13.751217144229432,11.211690549332054,9.133614746498084,6.8129915820880385,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,cement,9.692163381332305,8.06674442810181,8.364039311830512,8.892462721413832,7.612103932706179,7.467682426194766,7.257914833129363,6.952852627075105,6.359660308465923,5.789706343337986,5.2819689260277265,4.429760227522869,3.75312945165724,3.239446150566658,2.5525098248102984,2.112537916349918,1.7453016675938477,1.407343345947583,1.1912210411755497,1.0329557419599544,0.8569311733358623,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,electricity,99.17790346488276,85.30055882328232,83.70171817458272,92.12423995247433,99.04139448647113,102.3574296899194,105.39632884567504,105.82134148947709,103.50993893487592,99.25410952943874,94.40247291895125,88.22210725466738,79.94312969688244,69.91512236173863,43.95817874642076,18.577161868550874,4.59714322433399,-6.041839955057071,-9.832501535370692,-11.633641474054542,-13.49975309185927,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,industry,98.66781142591827,50.08059228720655,38.50057238198221,40.814812384484554,41.141076687143325,43.052989439597226,43.31204770634029,43.11608523027116,41.55378154144501,39.77599268421793,38.218064880729194,34.955455546178506,31.902064277649767,29.08280254778167,23.799792450781236,19.37112341887756,24.742524086503675,20.743355860875067,13.419791152028294,7.944664079476565,1.7921874256350594,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,transportation,23.539125565218583,33.98531048656106,41.301513874633,43.34789420458064,45.13893396249472,46.35597203025793,47.148922104352415,47.21464913663819,46.76980859027752,45.72627470664205,44.58568229201627,43.80280234572136,43.14100581459541,42.53894989075478,40.33327600062252,37.12097099329093,32.714731721583355,28.520354736749862,25.49646551115952,23.19543529335111,20.253892557783292,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,buildings,161.5760166929457,160.47015124337278,146.992462184269,149.14088302979445,147.7847432233802,148.83435656825134,146.58576059039717,143.50622202451743,138.27789445093862,132.37582299592498,126.91543319779281,118.36841780734034,110.00436666953865,101.86632895708641,88.92513583412833,78.47016186633383,68.14869263586554,57.36384051541045,47.25682544861861,38.28505619288423,27.410809332719197,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,cement,40.717991788277914,42.18353260672427,36.967769039543356,41.069479260575974,35.04769123065772,34.52081819974452,33.602083991225506,32.654747298892,30.463713439216402,28.35207972825072,26.486403231919795,22.915033963883523,20.308433551884107,18.254744631454255,14.676140770442885,12.44702164587043,10.601507075422973,8.862641444161635,7.879962494475913,7.18272053743725,6.273453912785589,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,electricity,268.8485268797375,269.9974667737377,237.8648592857743,240.2637701782735,247.6505001590225,245.4271817500307,243.3765788358622,236.1782678372767,228.28694720456602,211.41818267557798,194.4460485914746,173.80840173279933,146.47306197745763,118.31579055954117,61.331848757730306,14.160328673303407,-13.139575375741922,-37.46534898260555,-49.63822979260492,-56.24415876097948,-62.464501603154304,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,industry,195.45546553930328,175.57624421047794,149.26769722230515,155.32651222560185,151.49338314594297,153.50649694215386,150.3084757276539,145.9352358325593,136.335875048008,125.95529447875283,117.0580572609273,102.38886538073426,89.25619471262281,77.77865863335563,54.9888230269185,36.54825766270637,35.0771463674794,20.7255502125358,5.330866539253119,-7.420853817101955,-23.91831096763246,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,transportation,247.15611168494,324.92260697368886,307.51071856121297,315.85316355165395,318.36179482416935,316.11218208930995,312.84243038820034,307.09903983602646,301.90509725020615,294.2480591395581,286.81399996166726,281.75997698566493,277.50353491696745,274.013179855291,261.44260594434195,244.17509675820725,219.08146225499578,198.54416523117266,184.80493868577406,173.30555278668896,154.8629971739766,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,buildings,38.90953988592747,20.507849658256685,18.553387145733275,17.238242864876902,16.655333302460754,17.263876178096474,17.569101318960467,17.581211635867128,17.214303095849452,16.684763116661124,16.063572352612606,15.069466012188082,14.087745442288032,13.0785766828316,11.499602672664748,9.978543900612705,8.60069366089209,6.919267975254593,5.629642422843382,4.612762194261014,3.4758170975491427,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,cement,6.283842237821634,3.2714535936065947,2.9004200734621213,2.9125531391923203,2.639371796546274,2.709480515496818,2.7536684419780757,2.7585447038890005,2.618646428782462,2.4576578898347616,2.2900049349920506,1.959820476398738,1.6985192042526078,1.4982717031891726,1.2308778854451572,1.0655939421857734,0.9414285891388183,0.7993821629341594,0.7026145631819173,0.6204737965557295,0.4954303161475725,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,electricity,70.62067013227752,28.31228671248787,29.830242430356936,28.720454681901213,29.666625765672666,29.245438574181115,28.53969432433644,27.05451882224875,24.973757971421303,22.51662148001852,20.114369785635084,17.59289402163872,14.833451031328021,11.950755204296843,6.490419498069102,2.2580838348659302,-0.5514135671452054,-3.383160401805139,-5.077990386905083,-6.2050369974922095,-7.535470994016293,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,industry,102.48691096213697,50.699202604878934,39.0073764490784,37.51991542810045,36.28287727455043,37.30973790420493,37.608903282806175,37.78348090768056,37.03678570094748,36.30944133215062,35.65510604306162,33.722216838905446,31.98431129396228,30.307943671832064,26.161639756789132,22.69012734878542,32.79278926307664,30.628294061843487,22.56198835540759,15.983934885469262,7.700931298632449,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,transportation,15.502941235412019,9.445075656425056,9.256818013307553,8.473405326883508,8.751253126008034,9.31540626771347,9.984295788260392,10.543311762640094,11.005940151497285,11.23943304158976,11.40665311476193,11.603557827192905,11.822424930426394,11.981231313337457,11.47206017176854,10.379017851152167,8.778714230427441,7.003468384507772,5.575774537736371,4.2683157279331,1.9491905109101597,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,buildings,11.460178832836519,12.271095812762137,15.446153456544206,17.439363649844378,15.280151498724372,16.162913764584744,16.739265604206786,17.21447530079084,17.116864279490144,17.022789182884704,16.925126363973106,16.03671497733168,15.186082022403262,14.284857549243883,12.393458741549518,10.771810705019783,9.153264441946032,7.001904582243002,5.443479899619089,4.319651481698004,3.0590674292740685,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,cement,6.859426637660141,10.772917556034333,13.050706562457265,13.372114997584935,11.502432971476448,11.370487607326762,11.159001215169166,10.847563610572461,10.051537857886197,9.2626584404472,8.53573134180317,7.17506124217604,6.096187346061111,5.260468735779694,4.165141817838412,3.4939463432722833,2.9174122912241947,2.3760191336104337,2.004217892803646,1.7239587149021314,1.4227501405657712,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,electricity,23.229208795312182,33.61480145775393,41.249697634256165,45.94596392537951,51.166927777743595,55.716734291829376,59.730248557450295,62.37246809564305,62.85105882233954,62.24408541639303,61.29754337647624,59.123806123566574,54.344308057385,48.085553567103,32.73932480681816,17.88456191857424,8.413167419619112,-0.47820728525772815,-4.934725942275172,-7.41803906220748,-9.71673286712113,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,industry,20.89905270113645,23.311518605215863,22.419385331262163,26.695608261204157,28.90699891083112,32.376312204504174,35.15228110138865,37.47974281283676,38.86492223221623,39.63630051481176,39.911129260435544,38.34710039630856,36.24563738012282,33.71668472966617,27.99826223119878,22.55077322375674,20.80520105132803,12.626147223006942,5.335985053401119,0.2799703562745072,-4.840488160191875,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,transportation,12.490268518407328,18.31210688794682,19.806288422774536,21.978184742588404,23.831282544588028,25.787293199521113,27.440840307234872,28.68866263457864,29.685613818093913,30.289465891858796,30.65167410175058,31.056511294617486,31.32907782864514,31.454231709874872,30.35839893859442,28.360041114152196,25.192459024188807,21.88954997099017,19.403005644903327,17.460372596344254,15.158063436168087,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,buildings,5.841381974512447,5.3961979490387435,5.070197050106364,4.885192791872475,4.872308395519791,4.820357208359499,4.65843377582599,4.500004235109941,4.335003590313635,4.1275483922033605,3.9359573656923295,3.601775639909746,3.2767520080119468,2.956656066597226,2.43752272728317,1.906624793880248,1.3135035522642864,0.8320454701034158,0.5046221853638732,0.31010234722406577,0.13365779898972557,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,cement,1.3655511476611637,1.198403853727387,1.258409775007471,1.3494761329113163,1.1686357881354619,1.1712034335033232,1.1746287561527522,1.1727427230633714,1.1105873517839453,1.0470685916441675,0.9888797654730005,0.8535047479586765,0.7442794406298912,0.658434857871382,0.5275313123159461,0.4436952094138078,0.3624032058210019,0.2870127181784835,0.2295993705327064,0.18117885132715844,0.10440515607063383,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,electricity,0.15247380525728205,0.0985175433962995,0.4919178556738685,1.8339091030827122,2.51105868360913,3.1860567716570487,3.799232093614468,4.217158433762229,4.323523845159699,4.3463725850030475,4.288337366828332,4.003595898132395,2.6328178792232406,1.4970011638865777,-0.22848829122552927,-1.744821744551235,-2.7918225894983197,-3.8056911408109215,-4.5794473640256115,-4.974068264866846,-5.346668911386027,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,industry,4.879845717795138,6.578829615381896,6.299798650295288,6.756737809473477,6.987986288750684,7.279321921834367,7.573634213030076,8.006059477700193,8.210884631227707,8.401257513332489,8.716719787414108,8.56986322549953,8.530257825000053,8.567396041600938,7.211522848581864,6.163207079577013,18.850785987538124,20.28660022472867,14.756773244557209,10.041177372492065,4.337614069230818,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,transportation,8.958717747778259,10.706657117199882,11.173942141405714,11.487888590805303,11.59653988096256,11.590664139617123,11.543795561415823,11.398492256228185,11.298110974683969,11.122456469031185,10.961700047993284,10.895734604073736,10.821106356788514,10.72237870549827,10.117774077196348,9.00004291843109,7.311607376787871,5.762409511183003,4.555779709322905,3.5291972642291753,1.817922341029091,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,buildings,21.725606651941188,29.771724543809942,36.708668546182466,51.58617307628545,62.16460413648451,77.51788819455732,89.0010764629485,98.38734254525808,104.95391960235331,109.99744446291726,113.7212824249668,112.73301317287935,110.9208699830996,109.59719779142321,99.63597385735534,86.88663821094697,64.95027875348525,48.29180601933016,33.611156252645856,23.391844678729157,13.641150938167744,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,cement,12.858769085987028,31.144238404156624,44.01676075489185,61.64245479823771,67.56102565491167,76.34128604875347,82.5448937436064,87.48761944267031,87.61053477416537,86.61253296770678,85.6701295427615,78.09358881332707,71.86682569434416,66.8469332173404,55.43379730979106,48.50589029726835,43.333488648572136,35.47153954884823,31.392207867514553,28.5955791624595,25.48349485749223,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,electricity,68.6754277313975,188.5810381944295,256.012753430102,338.8234072239815,453.02860647807944,552.1377111109268,665.0800810260006,772.296549250888,857.8057845197493,925.9693459237621,981.4240988641214,1005.6181416972066,1002.1611238628,980.5228715820439,858.780835643004,612.9235625970081,357.33115406528464,43.63059307238621,-87.73896135772901,-146.08364717311738,-196.63562101233387,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,industry,50.738713569962385,78.72157175888012,108.91340727665524,148.4680246647992,193.30044897993955,242.27912894551085,284.423467850705,321.86078579840955,349.1095605917507,367.99422834452184,380.58615512463325,368.9464367881534,351.9114776154631,334.69340001705893,285.36726682765055,241.1166458165257,211.27791431824718,147.69283858133045,90.43923694181537,42.16298873826306,-18.348682034845826,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,transportation,25.646325260711887,33.36841999696868,55.92370239216845,69.51886023206256,87.35743586096882,105.26267775156987,123.31353377018128,141.59767484430517,159.39998958393087,176.99135878289076,194.44688120748455,211.60123746775378,228.40168506282697,244.82349103821338,253.99060435278705,260.70803619779525,261.04730005546713,253.77287250036008,245.6332631572641,234.26471314203212,208.56498591696885,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,buildings,6.170137451478503,9.459019459713971,6.5437414438025785,8.44933635445462,11.677027631821986,16.547065498415268,20.994270440009405,25.01118647775798,28.81880626440983,31.90327543458245,34.26239679378768,35.49091190990786,35.79924251212049,35.1947044186376,31.9240355066292,27.630957020691884,21.264517723776017,15.341407550575767,10.335023684691844,6.7861902763497355,3.477949171156307,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,cement,3.1634462746452763,7.486984612749113,8.775698472619943,11.36694271961726,12.211404013086081,14.001481322481354,15.167333654846777,15.911083863801284,15.706742174241448,15.30093029757015,14.947613182373532,13.370488762338768,12.06874007961122,10.995607489934617,8.875511743508465,7.479583714771162,6.438132101510417,5.015497763837573,4.200509638320333,3.6439275657795114,3.0173686991380686,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,electricity,6.418096286345373,26.002063364787322,34.35078917957099,45.79778439136864,56.967006112087226,68.24538902332493,80.57197001512561,91.77912688968784,101.13614705422373,108.02823032493059,113.44939962785767,115.2365843281248,112.58491431780293,107.98372541438933,91.94782878192937,65.2369691025648,41.686146540304705,12.045230176624512,-3.0246284066810687,-10.73201958202992,-17.220226120836546,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,industry,15.591059753096868,32.59495598351519,39.1954379427874,49.02366429355572,58.57928767330545,71.54049219903622,82.07283346251776,90.5827389983042,96.14114115387811,99.4253275835367,101.1612944185006,98.90203513904501,95.69796913045808,91.73225784215705,82.24345930359804,73.57039214557103,78.9755368014877,68.22731995846617,49.8744340117072,33.02426687810261,12.03722836455141,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,transportation,10.882226474433976,23.03903343603441,31.979508162219084,36.79761317409417,42.87949030950488,50.58159814661789,57.86927756434018,64.94502970245662,71.68453878351448,77.81911193747452,83.41187229131037,88.64978368156092,93.10723361212362,96.84579380218173,97.77479244729187,97.07106060669207,93.73395119683427,88.58898208755943,84.25091949151565,78.99962862410894,68.65465541178877,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,buildings,38.928078057782656,49.22154931195596,42.46962105398382,37.64128148556673,36.48845289612347,37.03759210141588,36.42881748757907,35.12540363321417,33.107877011095916,30.99276902789646,28.909461209992227,26.400683069318397,23.8478044719829,21.20080362019109,17.048287066597897,12.815204172187089,8.668069667706373,5.2294224850412245,3.1764061473187644,1.8359527772557662,0.06067082898154541,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,cement,18.578827669846685,15.186880319291483,11.979315566659352,13.914579744649519,11.957914362108106,11.328223861090546,10.718652446813492,10.125740379010768,9.123832458426241,8.13319705804454,7.247541983377209,5.954207387593806,5.001592870313273,4.289275261624694,3.382288935500628,2.679465012621725,2.050526385161004,1.3600964307023646,0.939609801319098,0.5982059241457924,-0.060483608068007566,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,electricity,91.90039813801965,121.32242319658071,117.81061228746441,143.8802648572172,147.74018485929415,146.3448960555958,144.90231669000343,140.74948372873453,135.42990467529367,128.33529767919055,120.6383059240302,111.79018870691277,92.43358544407025,77.57079662731473,48.84102118499438,23.022984618636986,10.575208838833554,-1.060654217350571,-6.588414796968983,-8.921972625580167,-11.53241264008982,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,industry,95.84186738237779,88.20188765878848,81.69939907432985,75.90195387892248,71.22786113894425,70.89524536648699,69.32612277617027,67.15833044710129,62.88143538474263,58.52460609489186,54.6348513710761,49.09683298292626,43.962211890399935,39.05784213898476,29.137873962121866,18.137064496207678,15.086059436219136,4.946273972378408,-5.5340277218880285,-14.258401571498819,-30.26921257921011,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,transportation,67.88338314831329,81.94735164500374,72.60117717502669,71.8609885418206,69.55570360920139,67.10150990138041,65.2558526976727,63.019843741407435,61.349545891245185,59.17913353548828,57.66289640351668,55.882772186742756,54.29611992692567,52.814028818764186,48.58575859783151,40.6123970247465,29.07150125969754,18.779736546076286,11.589950262710541,4.635693269652925,-13.58962985311941,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,buildings,7.120390340420943,8.780914469922214,8.333553403149738,9.088532530522595,10.090226789261914,11.158771539599867,12.021775964424982,12.700748906693947,13.164861782878774,13.485186151458196,13.804456649716453,13.739701014511427,13.391382392390627,12.810042325257058,11.066087938701928,8.737867086237602,5.61229652817687,1.4486193990650125,-1.4932101943226859,-2.808657548879671,-2.8902094496720014,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,cement,5.029846899659627,7.3507584927551255,6.941021040988123,7.792189802467999,7.173335511531116,7.449123230297626,7.650270562912341,7.773271613240443,7.49585729496752,7.176173485451002,6.839610468026939,5.8732906190090866,5.076585043282886,4.466952501591532,3.5986404032918835,3.0457263728306776,2.498423430979846,1.528578477026993,0.5912988251765219,-0.10695426662764751,-0.6061731795818956,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,electricity,18.22504344570507,34.99805908842994,33.5067300849718,39.29020259547262,44.00033778600897,47.66135915053741,51.52308453439114,54.60685105430586,56.671960146476806,57.77000957903105,58.53894975922051,57.89677450348919,51.47601345179568,44.94812837988675,32.17102705099932,16.9269191242917,2.8422196903681227,-16.771170658607964,-31.061270637047055,-38.96349706517428,-45.03090187769247,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,industry,20.621711036865808,21.458711133443185,24.20215263695034,26.60290225433683,29.344996090310126,32.414690546408856,35.12187221788424,37.42667394161445,38.856142616330104,39.801115954642526,40.616006163742554,40.203347093043625,39.111747817022234,37.5845844729484,32.50550464659594,26.091555409511848,32.63553387949941,19.03397751130333,-2.3613212769859855,-19.685561210790517,-35.051940725467546,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,transportation,28.794123327348554,47.05427824107501,52.97717097123777,56.89712919190099,60.69490367019404,64.54748848058304,68.49325067363674,71.80903611713418,74.4534939518719,76.59919327589574,79.28668092587289,81.40432563563145,83.26838791783071,85.13887568381783,83.2375182278309,77.47355874839661,66.15853575582986,41.13950597234193,16.650350751657136,-0.07817998019647732,-9.465290960213594,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,buildings,19.45622267267334,44.57997861667312,45.31905042306006,49.72775937873952,52.30353838662789,57.70045567898088,60.73312994202639,62.53297035927714,63.26662883592397,63.151278092176234,62.52582854271911,60.26589724017548,57.434606280465644,54.12951927851426,47.255080750546654,39.721479104534666,31.635992892083692,22.032617728041025,15.57667565758757,11.147672503130318,4.865438496990317,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,cement,10.521567753501667,20.01732612367388,30.399099759519356,33.65831827119461,30.88561735372486,31.952225265117953,33.08625954827932,33.836578836017694,33.15708792231493,32.14763591016364,30.945212788577894,27.568821745046833,24.600569473161897,22.131896167478637,18.223683743526138,15.207752608765201,12.31251546319616,8.830125237800358,6.34006478733391,4.225288182689107,0.03772417624293389,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,electricity,49.34903049567292,118.15243285178947,162.7862875033606,176.19509015501384,194.7733961769663,198.2759848564819,199.59309850512685,196.94009733601567,190.13712654329865,181.6585516221054,173.29981342723804,161.2812164862803,132.8440644629806,107.98395574815709,76.98147786053846,40.0868721157926,3.087455025916154,-46.07838846706983,-79.94534520513534,-99.91438502966633,-128.8858076013793,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,industry,38.357193477345504,77.49455575200778,105.64178993801981,118.32909246419428,128.35516879879773,140.7786345588137,150.82283027972593,159.0016452994215,164.126261995955,167.04232472039516,168.8650962471158,166.644734479591,162.28926611835732,156.08868123063792,136.20390637805744,108.68236565906443,92.68588811515158,47.43286162052287,4.171722334295063,-33.8814167798645,-103.76538265112137,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,transportation,68.10099796632404,115.03600954755098,148.53452468960833,163.73017370951365,177.7149572212195,195.44326105862694,213.09852895970863,228.61599450693382,241.03200819450444,250.5197225877908,258.6158182082159,267.65519418048257,275.2119499472037,281.187208532154,272.73857863740113,248.83307542626596,207.1162207546929,150.8782411299169,104.66350664259916,62.84927234740066,-29.68763686709076,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,buildings,2.3156624986092536,3.493604068536907,4.903428665093427,5.437304901145254,6.215679684162666,7.317766500313549,8.523387057163879,9.994705217745924,11.568089355496582,13.213422671182869,14.995259761720943,16.477402187562944,18.03648008022286,19.556057578890297,19.987039411429343,20.01871540374615,19.346796425391666,16.684149339693658,14.483811373901311,12.746215777567201,10.49497572834377,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,cement,1.7668200648293517,3.9719785619807073,7.424320021806025,9.380388691674789,10.042794591356246,11.534978797596068,12.99785767640824,14.348299868062114,14.935533575475016,15.443848710401326,16.043531037803803,15.299781801916751,14.7043948003537,14.263276763642665,12.22946400517073,10.742568778297116,9.645032787487807,7.588922187711075,6.672584335957438,6.061626579995621,5.3178785235851675,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,electricity,4.015509274563699,9.312654089730598,10.75838287997774,14.10065551546786,17.061247355685047,18.094435359952662,19.134779107326736,20.249257263559233,21.58095767399255,22.96076233583477,24.574241963194346,25.52869910567549,23.613505028679597,21.683840771002252,17.897203262217374,11.518677072080878,2.688470648292414,-13.25412308866716,-27.928318216611927,-39.81082452520539,-52.45946156031719,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,industry,5.40326185453439,10.257395538425792,9.613087167938383,11.89729758926372,14.275844356919107,17.64585975061713,21.63808836246044,26.61216458402079,31.82757955085627,37.23894147814674,43.10952513572579,47.651355434001864,52.030021216245444,55.803099896504975,55.8040395293664,55.391714703158264,57.134163368793516,49.4394646359856,42.126201527868105,36.02230423619724,27.31638338624894,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,transportation,4.3462030274633054,8.280361541325993,10.866291965184425,12.341511883547946,14.253087536200223,16.452914411984697,18.989534207465766,21.803394155985742,24.867866199392168,28.163271418889003,31.72514323451276,35.82618449542464,40.30324550971073,45.21433711914371,49.65471708785226,54.01191441452552,57.23702628952449,58.94449849026648,60.48497098123341,60.95958264865553,57.61042079784059,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,buildings,144.5313040002987,72.41630292691909,69.20679938179995,70.04383932888493,64.7226781747221,67.70581626007274,69.33370694240264,70.01215887602658,69.22513056251624,67.58124844505427,65.36901103323562,61.69696915877951,58.10619546929173,54.26321892169111,48.68089302960822,42.679946722110486,36.82609306375019,28.543035202650742,22.40457776981677,18.086209946451525,13.819316347506136,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,cement,16.788014486444844,9.697567325537756,8.935887869480268,9.808456904332884,8.548175438513052,8.603444699235867,8.589540319038877,8.501821984902755,8.061108988250387,7.571777059129472,7.0121256149302855,5.970007753912761,5.163297177699639,4.5573396171399505,3.7635065844290336,3.245746124638787,2.752777568513099,1.8994551714402295,1.2482966568437364,0.8690423379148218,0.6201318109606777,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,electricity,215.87361132894497,150.60379486078492,142.7077798752516,138.9652285188039,141.83312186656804,139.0638738328301,134.6482718972431,125.97081905158306,114.26177464395268,101.3556265377503,89.19494192417352,77.32667778345224,63.182434395383964,50.832748295299346,30.60327637348332,16.679777714961958,6.3303530143366755,-6.024903867892428,-13.968639019251158,-18.962983330607052,-25.49198027217058,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,industry,211.8273970168466,150.79567377274822,166.75049975560486,169.4565744188695,159.80749148834835,161.6356920286743,160.05565537280333,158.16610070438384,152.94419059020578,147.5366340170275,142.37167632221585,132.63376710043804,122.94669106931958,113.09772110205148,93.44649293008207,71.69189560282337,63.46521289957289,21.16806965805395,-19.37825333798447,-45.31157627546597,-64.97206808658562,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,transportation,84.71892442746488,68.23153484601008,77.63455806686335,79.03077257230248,77.66395053663945,82.38941819677281,86.44911455913869,88.83527463332933,89.2529119853635,87.78911249837057,86.06874988120742,84.59481938568108,83.5779820170111,82.34908975603264,75.71697578034538,63.8954119910872,42.52379629361821,2.5775766828055886,-30.19658357039767,-46.413120357695206,-50.237390141522994,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,buildings,3.6025441968970555,6.921567924987641,5.165938002738671,5.857385063590999,5.170815148648244,6.058465272291864,6.490783231719876,6.672259893303233,6.476382629021307,6.207463613363602,6.087836884885691,5.74558116221584,5.350695349693291,4.994382981355591,4.568355552198957,4.131928281310543,3.336135871865994,2.714896981547477,2.198885270345105,1.784557096542533,1.3277546018932098,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,cement,1.9701203538296275,2.6722663121546173,2.654824589608522,2.6359203044535824,2.4895231856408833,2.7372718094631914,2.931322613022779,3.0577379463568946,3.020254943725866,2.9435634185511828,2.8418852611625223,2.5087049872504075,2.3044298688945095,2.1585837990875127,1.8232125734413187,1.6305498020609663,1.4898237860716719,1.24773623451344,1.1184465745054768,1.0352757829188364,0.9435532021097327,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,electricity,41.3205,60.67549994999616,70.02108582350503,68.04762192609834,70.35313712237826,75.32890546146547,79.47863885795472,81.24528192152678,80.1794579642561,77.35480170098975,73.78817995053033,69.82149013487351,65.69641908906789,60.945597341282955,49.193961537636156,36.01357739066302,21.926326027422718,1.6612059881554218,-6.038523019478189,-9.252963044581492,-11.81752474892703,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,industry,29.74042685957933,30.31167192688223,28.549756594563803,29.057757782829825,28.94041780769879,30.940050023261676,31.993217605217602,32.56198502259858,31.995811205360024,31.031413248615106,30.353718864201703,28.266255539874006,25.95875061349389,23.754333176156063,20.15786876430379,17.19383420605267,14.271136522459235,9.48651273869309,5.837746526282642,2.7162217467328706,-1.2143757502954893,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,transportation,18.280960519693984,20.76911674597936,19.793618399583963,20.452335386599593,21.113801626884104,22.78337991502863,24.180661115691137,25.25397726656926,25.99392942962952,26.737747834228916,27.594851975244996,28.47756196461675,29.38563323060945,30.164712301251356,30.210508270194975,29.957234420808085,28.7265545334457,27.493946937659743,26.49834520133515,25.30521376739044,22.618721367871444,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,buildings,2.4669871754306905,2.6324350123786417,2.259745392860088,1.9278717148811875,1.314865962822082,1.4976748146095369,1.6430056634208183,1.7610258936076677,1.795436850164271,1.8213726871661469,1.892473862919514,1.8754446190534668,1.8202007840178223,1.7161558379243773,1.4261871379045052,1.1262189537584726,0.8159580454015067,0.4133131160250185,0.1434020973031317,0.012883028602890648,-0.03660337769892785,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,cement,1.1136625107080749,1.1364444249812156,1.9321536591824313,2.0062851459720585,1.5654355893311265,1.6806859586515421,1.7728533637702073,1.8448097028909631,1.8181767487170557,1.7760167547348136,1.7283744324628407,1.5430321950130903,1.3762645793209984,1.2335624304805544,1.0093031493006366,0.8589669349436105,0.7085445802038212,0.4358080350794358,0.15167925730665233,-0.06378587270757319,-0.2111959475581644,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,electricity,5.853774644861451,7.293430096112092,10.809899140537878,11.242756507190423,9.684838231123454,10.24892397907211,10.190843243003584,9.765726401228147,8.881486032754804,8.007357596266562,7.3065275603232305,6.605358503482485,4.8704689590068115,3.7677004540477927,0.9827294485518809,-2.420384614605766,-5.862176201464105,-10.63837450258942,-15.051201162066219,-17.900744162965225,-20.953940333936327,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,industry,10.857206234600493,19.67538351895353,23.26852244044687,20.85437136698088,18.744887480116883,19.733430769290578,20.459150909373577,20.921719577143946,20.672120968511916,20.437239774369917,20.61354576252299,20.554234651435177,20.33218011707954,19.791941985031862,16.986053536476618,13.73312779262026,24.57348595638097,20.523790609694668,8.445327277439695,-1.3542622171815226,-9.870217796747275,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,transportation,11.161298282926722,16.151888135575067,21.238419398843373,19.968937309685206,17.382669887398812,18.138193656853634,18.851587914752358,19.47323009795233,19.928544823570757,20.48309684391936,21.285973875364494,22.02033318410204,22.744330031935185,23.228738278716662,22.633816798343645,20.998505005400403,18.035472532325844,11.443600741661376,4.456520886492269,-0.5030578469579075,-3.328033530391031,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,buildings,2.9104762300519647,3.57029925248273,4.017229232869953,4.60069503467563,4.903918957823231,5.6516961701715305,6.055423179863984,6.316173582341713,6.480860669809196,6.540905916887518,6.528097410423175,6.276786692434329,5.910022317217788,5.443306311703022,4.482999484202575,3.422952069606506,2.171375474811961,0.5059541461135464,-0.5796460874228541,-0.8846379948038141,-0.7665674071759221,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,cement,1.6434860422082647,3.127252677094641,3.912521742022531,4.552789045453487,4.235957975736046,4.538066916359603,4.754205622791246,4.888672598645427,4.753599045305186,4.567187023450165,4.360990720307859,3.7678905967983143,3.2496931693282574,2.8448030037235856,2.292162843068157,1.9634957097849153,1.6426214312964322,0.9925865362359141,0.335996974661142,-0.07639464421123288,-0.3036498755349357,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,electricity,3.75258743521338,7.86978436915988,12.472525936825337,18.22089255419697,21.929891308252518,25.39142579626519,29.387380022841278,32.601655390220664,34.28280824036706,35.35437194091056,35.94620148032043,35.221750524292425,31.43216064833294,27.092072654628975,17.72048025115867,7.641053844762766,0.3410297546998823,-8.698831651041653,-14.598327480032848,-16.808377557271587,-18.904651126133952,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,industry,5.117473668172245,8.823260107282591,9.043013947508157,11.193823864900207,12.367195511652916,14.39177483311975,15.85714612330492,17.160267065360397,17.95463355983994,18.44947215427268,18.87674636779084,18.143019369413857,17.0718022191324,15.780601778266641,11.208488112158857,5.890838772954437,10.665349699860851,-0.6139914923001615,-14.481001349415795,-24.610893381250705,-32.53497374083567,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,transportation,9.172235523359282,17.494076305544784,23.89572322803014,27.12203432779625,29.3528430617969,32.75574229395032,35.988558287929905,38.901789202895266,41.60836353682372,43.97626950006314,46.20339027556213,47.81865010678801,49.15963917749038,50.26428097157631,49.231263925966864,45.973152950707,38.9391042751282,20.64475070491676,2.0527844921476497,-8.502870234242515,-12.344071464212275,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,buildings,1.4080186941346058,2.3944277115261614,2.653605600758911,3.613760625057288,4.748946572979619,6.289757919910184,7.775844399997313,9.251526791881533,10.714992900467752,12.216644796283768,13.782710736118418,15.025667419135447,16.305948255219793,17.442539416504406,17.646741649143163,17.964857717025655,17.65882544117075,15.978035085092715,14.245354895263992,12.684819562717074,10.423187232727763,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,cement,0.22997457273465066,1.648143936567656,1.7114481756209923,2.5510247511437036,3.1549020552726783,4.221257741571412,5.3772281447698145,6.65664568722506,7.814905592090468,9.146003717459285,10.524302274836844,10.789492373519298,10.884799957928514,10.990216622923352,9.666935314561663,8.663820409003097,7.930316268326171,6.43902293937595,5.793997110246269,5.371417868289854,4.803668838946391,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,electricity,1.5422800352531587,6.204449502901717,8.967274969276808,13.764840152355205,19.190947566461197,22.206850648115093,25.398801114726304,28.281927771548002,30.689803408788844,33.1282349993106,35.91212918280502,37.893070201376375,37.747904946988655,37.189290756848315,34.35684382186591,30.091169665238485,24.992860267792505,13.513525337686762,1.8440865531678747,-7.129385814843133,-15.216043059408268,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,industry,1.9501269823558165,3.901861901161334,4.30865033251479,6.542753310419967,8.892701096869452,12.160848530959685,15.476016657045191,18.93505141728306,22.236853691082242,25.565117604961763,29.10063063022576,31.20036941535462,33.15506673085869,34.82745524351082,33.33090154660939,32.31245187757185,33.27541266263944,27.23364531008641,21.8843905376677,17.089994311981954,9.745255234085212,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,transportation,2.203396248521768,5.091363337843132,7.1386932718284974,8.928172694897325,10.990167048062514,13.33174128166748,15.702010379237308,18.05686889193265,20.469765348665746,22.920272517724293,25.462305469101025,28.311697673575008,31.371079156040746,34.67651143118913,37.552002511394605,40.44271830784733,42.61510102855546,43.750391690146145,44.83617029530019,45.21586327374587,42.88734618760467,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,buildings,18.60651481521486,16.983642569514164,15.087718700572378,16.287309522389318,17.12001647951941,18.100430930006453,18.350136489168573,18.112784116998743,17.422890684848937,16.47630423635797,15.395884512658558,14.071091980260793,12.698411606884033,11.334735986666036,9.580860981916345,7.988350974843955,6.336029107957062,4.84834148135355,3.6725643731080098,2.7938452794657938,1.888152521431321,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,cement,8.20461763711427,11.684486445985817,11.428527235664422,10.964324463206147,9.859498058227786,9.283254818716394,8.771502073445252,8.275578065405814,7.593781158383454,6.936148959008263,6.30762676231924,5.445168978189479,4.665674229591501,3.9562481279764485,2.9305832693897553,2.1975851480501274,1.7288096545172513,1.2764740056603894,1.055272358950385,0.9076619505440247,0.7497120102825324,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,electricity,9.43829546049399,47.58484195984944,67.0928254839741,70.29170931023371,76.46112248536727,78.487024736669,79.05473157358502,77.47298432898238,74.40271044220862,70.07564280104606,65.43856711272936,60.61691259291629,54.43759055496266,47.53459682243214,33.26765551164835,18.988180662254752,9.84761854863076,2.8702184380476035,0.26756933563834356,-0.872095595503709,-1.7665839397561052,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,industry,22.806206085195672,32.776199214201675,39.11729923585428,41.19712586528326,38.666873285529576,39.22750348253118,38.69940861687986,37.69087256604982,35.19289810088004,32.49831318191011,29.945901042406124,25.85562924756968,22.14320103920907,18.735801054782886,13.505387871965642,9.240440147693908,5.224273560538587,1.5200368678948364,-0.518715648187776,-1.8961990017974861,-3.8080572230008136,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,transportation,13.6004765019812,35.56078617687031,36.73506423546464,39.354111288151245,42.049209188978786,44.30773650649606,45.77064231186445,46.350458120941866,46.233479330689875,45.48002505532314,44.27839725040411,43.22284782359894,41.968555679338884,40.66592241362295,38.657069690338865,36.372093860594916,33.10981791123834,30.134354219527822,27.81494937894838,25.60050387587879,22.211698516182516,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,buildings,8.131876588121614,12.015076105592575,13.005976603571948,15.219490004601937,16.06172997015291,18.98948648587686,21.07273751763888,22.819052300692523,24.247599344408712,25.578094444398985,26.841176771732155,27.072251818986363,26.98865514483037,26.45011628465598,23.084270069027646,19.096607591430278,13.424233555264744,8.780343159889268,5.231431587868769,3.0069608846820293,0.5832997558085307,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,cement,12.029616755952702,24.97030102410238,27.983837728024973,32.344818645606,31.08494267735427,32.565489990637346,33.797869665273424,34.49582286720396,32.950350163140264,31.037537478931338,28.96556444233414,24.20732591681622,20.533434929932806,17.780585837254964,14.06237410045241,12.062356899996404,10.697499658755765,8.977789904167656,7.7768985110352125,6.764360687624066,5.353783990318968,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,electricity,25.88923524358908,58.03430495050128,77.837224058954,95.87993002773328,114.73100218465707,126.64197119734408,140.39715286220965,151.7624975010931,159.47134688520154,164.46389091760528,167.89140411443734,166.16589948088804,152.286163521785,134.3983753417919,95.45505894670987,51.72085334557788,20.166840016109003,-14.319087696540576,-35.8528241106533,-48.65666255401931,-61.06923226109306,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,industry,37.07503286283333,54.541975521818,57.32478606605296,71.37361239718281,81.00290928282189,94.29274046417781,104.27732952094107,112.38396455800982,116.93643179308094,119.3009407052776,120.62824783445116,115.9476860756618,109.80139255678347,102.41011614265847,82.71435776924295,61.462305469903846,49.68648168485061,22.94260985269627,-5.372702520976705,-28.43555982648319,-62.45368097603168,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,transportation,35.955955845303734,80.59636887316466,108.45667288410294,120.78814344960013,134.87361223282144,150.02389812423047,164.17149982050216,177.1861497971536,188.7845254709073,199.2469033275015,208.95169639275346,218.16710333822851,225.94178981632024,232.3783469083534,228.85947547440392,217.52195977499207,190.7465134618788,163.31010021032455,136.98309159018953,114.01002890527596,70.49377405768197,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,buildings,2.2121201729212823,2.6842312517696416,2.44283171340402,2.9003449938966543,3.4836704503998877,3.877476079379951,4.016993587318521,4.0584089486096415,4.069104582273058,3.9838146603066193,3.8317140912220564,3.6449329283137875,3.4495844562710842,3.331078088460976,3.1061333901907378,2.8205653716870778,2.4290851662172654,2.098820343665276,1.868550471545671,1.6737872508141856,1.4263731315601824,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,cement,4.639270312235661,4.508006353369607,3.6065587913135024,3.61942104495906,3.2057131703740005,3.078101132835225,2.9730897288036076,2.9088575867656834,2.783545563398798,2.6908903149393435,2.6137032826044435,2.4179564670428455,2.244483795374471,2.027099989331708,1.6028324083900358,1.2846976403765191,1.0863474381859723,0.8621177140767179,0.7557858719233788,0.6837599089581778,0.593726337431962,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,electricity,10.295084376695389,31.33327791724596,33.36603799016547,47.22506862335866,53.012196537550295,55.05799135479191,56.42965074235201,56.93216851081196,56.73865513210904,55.93160473874033,54.801391082064946,53.363135699847966,50.4076440987574,47.648838230037235,39.82186940050839,25.07241898920449,15.43069391911314,5.242895060960431,0.5232766292617351,-2.006855661862837,-4.232144708517548,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,industry,10.874953437727386,24.807816737621682,23.9561828981187,20.34038820974881,19.44879438192841,20.151133421229602,20.011907946723802,19.754754115826717,18.952364708578994,17.969307402679743,16.936438679928955,15.032308142941988,13.341607868304955,11.873129914658808,9.119922871796259,6.719999400956602,4.203413066333452,1.617191284318217,0.20572006300752008,-0.8664813437255356,-2.558325677122668,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,transportation,7.961403690420283,15.75264173999311,14.805734006998305,15.341248834291513,15.886264825352601,16.415513895073133,16.711985893706217,16.940606279907946,17.020390415741257,16.90811477940441,16.673859947474888,16.406241375738674,16.128025443476353,16.12818783190459,15.788623944737726,15.289549562335175,14.368573642817019,13.375928953062322,12.592219657780914,11.767750952591204,10.284623137610623,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,buildings,154.80242262149767,151.94451975125094,143.8165279953603,145.42285842786538,151.1026592710748,157.65208975692897,160.12886912859153,160.7693715671059,158.72851116559417,155.07689175634977,150.83860238892902,143.47109408541402,135.57322293951307,127.22717060058778,112.57184453559104,99.26761894672323,86.44839110372521,67.20339580283456,50.108246586939096,36.814692820198346,24.447442719541478,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,cement,17.60622974270186,24.89230655161829,16.0556666942699,17.76358801696602,16.72678570251077,17.492150003595253,17.97706513474531,18.22449754353387,17.470283297762215,16.670696615320423,15.898328055521112,14.008505627731612,12.599342092066763,11.459324138056388,9.582351753804408,8.168733853825678,6.729989778818949,4.4127740474192105,1.9960083066281253,-0.2502742963453626,-1.9128320028340706,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,electricity,512.7668618994646,679.6513206609153,638.8710024557481,710.3783091938952,733.515194788341,744.350560276393,747.058523093243,734.2063858669773,712.7972169487606,676.6054097282121,637.8084781853097,588.836673100342,513.8364381295651,437.39627942371806,261.5050271404885,100.00062027414597,17.729153306594515,-55.78853813173357,-95.00202958391354,-119.82745451811205,-149.90671509436038,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,industry,234.5335332440085,186.50604712255893,175.2435475043746,176.57185040875484,181.17680839979818,189.98473272694685,194.10714586797,196.1956101126591,193.1818869489,187.67442675885948,182.6367729348366,171.7607223995094,159.97231122419993,147.37933503400703,117.08149571750367,79.63910281289066,48.68258948896174,-22.479080342530615,-108.97132992446885,-188.96928822732926,-251.2341136578033,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,transportation,460.9273205923273,570.6213526136565,530.4807186502474,552.150197548794,568.2022612001151,577.3073987921359,582.2212029964503,580.5287955441235,578.3034497389929,570.0562103144082,560.8200137451487,554.3721001746546,547.8295762056632,540.989794441844,508.43956823517306,447.7799758278781,352.2344846177283,205.67722684059663,33.19522058111647,-125.13529906412018,-227.94465559266104,MTC, CO2 emissions by region scenario,GHG,region,1990,2005,2010,2015,2020,2025,2030,2035,2040,2045,2050,2055,2060,2065,2070,2075,2080,2085,2090,2095,2100,Units, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",CO2,Africa_Eastern,6.906387950000003,11.30169006813321,15.651103029057499,25.895035366326983,29.03005605770001,32.9660704083,36.84699920579997,40.83852271100002,43.869621983399945,46.72944949520007,49.81793831119994,51.19044531599998,50.02959764880978,48.5217053637998,36.94982115172996,26.698920263757792,19.454069029700136,10.379051293277012,2.4074566172785925,-1.8920908437193962,-5.128671247079996,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",CO2,Africa_Northern,62.297785279900005,105.59287259046575,126.64965172381807,152.37564111570774,160.28664424588126,169.16411507134768,173.4985933984571,174.72246282418996,169.19585817614998,162.3444038706591,155.83066687261896,149.05793509534288,137.72730262664496,129.836363723908,113.20727190585919,99.14307567253502,87.60228400012095,72.02711329033595,59.06267123932357,51.90675612352538,53.631286495376926,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",CO2,Africa_Southern,10.111313888,11.363079240242346,14.666326320279117,21.188095641857256,24.16996959041177,26.696340132927546,29.13984187176512,31.605584919533786,33.452711585497056,35.79890094642996,38.70443932950001,40.67778555070003,40.834178165910075,40.13416494392003,31.35773255529591,19.855498149531165,10.569989704399875,-1.7735405683048096,-9.22116756203799,-11.650369752677937,-6.787619900970078,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",CO2,Africa_Western,17.333680130010002,31.757558885302313,32.593058983544296,42.250059801758034,47.80299757292146,56.200882661882396,65.05346310067497,74.45204765292998,82.33002542333001,91.14211727694011,101.46546422065002,109.6282576277302,115.23067254556008,119.81687436369202,106.9125852446479,95.21781206370552,85.86368344397977,67.78831152514172,50.53150952396203,40.589511827143355,39.15770856730945,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",CO2,Argentina,28.640862108999997,41.99176761160815,48.41730157070348,63.46776566204976,67.57057666186039,70.95589584558682,73.67388853271699,75.00870478124502,74.54133832884999,72.79156542549998,71.59688793159998,68.56632708369997,62.64268133570001,58.00539862647998,47.089289489916986,34.95029001559517,21.494562846152736,-7.570945951696505,-25.432403873044755,-39.040775929935,-41.563333447115866,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",CO2,Australia_NZ,81.542215,115.88184854207734,120.21062562929558,126.88373784804774,127.67290290059603,129.11413291304754,130.235289519368,129.68803476655003,127.23751581552106,122.38694353633599,117.10696906170003,108.67988315045005,98.86732571253197,88.30019427322996,64.45693255901601,43.71879588492895,27.843906649269968,2.840898682752066,-11.338314685796153,-29.36795674485399,-33.49936196438009,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",CO2,Brazil,58.932501861999995,97.32819755229843,116.01481028329346,151.01504816468864,164.45054021632026,177.60211298316364,188.55716946545445,195.6297273642341,199.255782521002,198.79544467111995,198.5072350012001,190.07079457780011,173.08033650824018,154.51347049189988,108.78364269317,57.201758459330414,4.542432363000055,-84.83214516708156,-144.8487845714192,-197.18015958439503,-239.04063718705822,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",CO2,Canada,120.74306180999997,153.42974472140963,146.3900489362829,145.99920997971523,144.7406517196761,144.40619542147695,142.22015812960404,138.180577047949,131.27164831702504,122.86276440749499,114.75422482908594,105.59776843276005,95.37374500751997,85.59981704039004,64.25143084700903,44.75126263437336,27.377524471651334,2.3821426405597075,-11.48181447793062,-21.476179447807453,-35.4438637133896,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",CO2,Central America and Caribbean,29.63046426229999,48.53743426542069,54.67400233595463,57.95845158166719,61.886008422530004,65.980348568099,69.94918100152698,72.78055811508786,74.24805990487305,74.82197468331204,76.09311285124673,74.67287758699598,71.22515269669398,67.16489704161599,53.84536351622602,38.875246871294436,22.77864911031199,-0.6015346930526047,-15.838944310999729,-24.56385452686385,-28.427168741582797,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",CO2,Central Asia,158.75724791099992,106.665419942,129.56373825022945,155.08327030860386,164.45512741178698,175.55660329404287,182.79523005880444,186.3298126890239,185.5141828300098,182.34125614719,178.6615278834001,168.46564190670006,153.7285341001902,140.21626225430003,112.12258434183505,84.86704136600065,58.83583567899996,-2.0846587372448866,-35.55711579931929,-60.94529989747282,-67.60827284090048,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",CO2,China,708.1890691855643,1764.888825656137,2385.333065452633,2723.6178549475308,2807.607869183066,2969.4424540960367,3093.18446135662,3159.874075321369,3113.144554740517,3021.5613964733407,2901.236444928134,2677.449224868802,2435.54392625004,2170.2341907238433,1552.214357071463,964.8230711825573,545.1930387570004,-2.858205488454118,-315.059078547606,-541.6246733289539,-929.4725238328491,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",CO2,Colombia,15.045259401999992,17.591020307294112,20.133842017326387,29.284604179637576,31.987246945492345,34.22545000875287,37.1533327456092,39.747642898984274,41.630750293363,43.003022420035975,44.87972693314602,45.22535493080998,44.28604196124001,43.219223345909974,36.36255479421496,27.46389151458048,17.58915974319998,-2.873102264346517,-16.88905219354651,-28.62354156641011,-36.47735683163777,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",CO2,EU-12,279.7565155017001,206.4686496196357,202.06303692616802,221.80567075717033,223.8629068688433,228.65020977405806,231.94116193112913,230.5179925737899,226.27349062630003,218.04257676529994,210.8605412142,196.33939945029988,181.2175595319001,164.68670126513024,126.88681715469004,91.5059416443719,70.20474769130006,50.134649273343186,39.253417021682765,34.25650891008439,37.67349096112698,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",CO2,EU-15,913.7541074024774,973.150006912592,878.6035679086699,895.7173985646402,872.7601587597301,860.8994141480302,835.6217102209904,796.6271418759302,738.8257854214202,670.2274156123323,608.8470204797073,546.0174905539317,482.9546590214952,430.1696859998398,331.7990413490199,261.2168438257325,215.10049890261067,170.47791037287985,137.20047053763184,116.32956393909124,105.49078810600989,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",CO2,Europe_Eastern,233.80405580299995,112.23589271122688,99.54836701325472,111.2662863487222,109.10458759963797,109.31073362849237,108.98827117738203,107.46709599910001,103.98881752489,99.88660694490005,96.2083144361,89.43245181079998,81.54419476609993,74.35226541837999,59.24110280270799,46.406631296012996,37.481575826000004,25.602170432760467,17.580288606439254,13.14633815927264,17.361638271295806,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",CO2,Europe_Non_EU,74.93816960000004,98.28249668693068,111.97247175888747,173.28622008246663,180.27071825721762,190.74563488480945,197.4414257934092,200.18016642477102,196.16592939567593,189.60075888208002,181.99213432085008,170.2556070782999,152.00863170352,136.7668846317,104.24810361229997,72.69743229380877,54.97356106113806,36.885537949948734,25.626038203276423,19.58162675067827,20.273777609796007,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",CO2,European Free Trade Association,21.197986671548996,23.97859537379595,24.294028140942796,22.056069628178303,22.372102606057297,22.85775572303999,23.190349918469998,22.959285990599984,21.805064868329996,20.413553214240014,19.31915800387998,18.00708955413999,16.679070153710004,15.384582601690996,11.786972447787104,8.432451639223864,5.5006687528430005,1.7343604899447442,-0.5011730835642946,-1.0832437525697247,6.179596392929763,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",CO2,India,179.64484230164794,361.58694760960697,501.5752924174472,663.1614444852331,788.5204707408441,943.4685741940705,1102.4321878175006,1257.459568213,1369.5566414899995,1458.7213825799984,1533.4210278089995,1542.573604379,1525.5880742703,1494.8188618859992,1319.8770973478008,1058.9264177740117,823.1816760112431,524.6660077824098,366.5201497586017,278.79054526886307,209.43091415388483,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",CO2,Indonesia,42.22496623999999,98.58205685680001,120.84517520100003,182.81040660576733,226.82744931394296,274.93221817808194,320.405994833611,361.0304917072191,392.1014017420499,418.8732826449405,441.05371707,452.7914965280001,457.0295517042003,458.9530373263998,428.0821613038999,387.1981798861472,347.86303171434645,298.339765236042,258.38631729654173,229.97677910349006,208.76248034403,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",CO2,Japan,313.1325616001222,355.8800922921989,326.56012761760593,345.13006088307407,337.0158944926519,331.54791640611484,326.2714101318429,315.9001392332692,299.51454471322035,279.42869211499,261.6644606528,240.2894997863002,208.7785896228,183.13304893034996,128.20296746177368,77.52905110086661,43.32298185089999,10.501715179785878,-5.640087689807649,-13.412621228659193,-13.38455595716346,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",CO2,Mexico,79.79111509917462,119.6427338277056,125.96065725854368,121.66420653785904,126.75178504543936,132.80318412454776,139.61995857627073,143.53589527188203,144.88300479665992,144.1626746669199,146.4162869831499,144.965700060351,141.12017690995106,133.96087258710003,107.28298504839799,77.28404130687802,44.51631306590014,-16.729084217379413,-48.795618536965,-67.06860703725532,-100.74632455860413,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",CO2,Middle East,185.78502040136195,375.28030296961987,492.680748011007,545.9177970267666,579.4977285597887,609.8696106406495,630.517169122257,638.7174804237897,630.1755206681003,612.7735005290003,598.3772386159998,572.2318029350001,526.0930324981001,479.91073166000035,380.67219668733,284.72665784545,189.79496285899967,62.78708372762445,-14.967021581347396,-58.494241640522446,-93.07587232390956,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",CO2,Pakistan,17.847456720000004,35.31599380000001,43.5655107,73.97012863601398,84.01943408099997,97.92709562500002,113.90808583699993,131.47721957329998,147.81872741900006,165.4987633619999,184.00842925099985,198.2153452815,206.37755930008998,217.74171768110003,214.3645298587,211.0854363202821,204.7155374918002,183.89030842726507,159.34044864749214,139.78106642741133,122.10745258252003,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",CO2,Russia,673.7392512599997,451.74487373715834,465.2355249545304,477.6271783224744,472.25260180582586,471.59740762090445,467.1447332563612,455.56158518537893,434.45003901966015,409.11193311839963,387.1602329658001,356.0693318215999,321.9959470308098,288.30826300600006,223.71004729287992,165.47111645418624,108.82381025790036,8.401139049766385,-49.00758656669222,-91.77809082398022,-141.11259195034503,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",CO2,South Africa,94.91455193000002,121.35012294336832,126.18522349761574,107.77483237419199,108.14789257683003,108.32718917532503,104.06499552351262,97.901601491193,88.41761094786993,79.13915532303996,70.64951360865,61.768486907372996,54.177809870366985,47.40881801513499,34.40082652254299,24.641814434826237,17.36933038099502,10.236445313908607,6.849556588456563,5.083748167395301,3.8594518799318003,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",CO2,South America_Northern,31.453970198000004,46.8898277849,59.50875779820001,64.06605375098435,65.58487152744003,66.79865237599996,67.3420075937,66.62435598079996,64.74074439290003,62.85409123390002,61.83321493860001,59.34253363330001,54.28617464686,49.53555373910004,38.003265070526986,25.767464440817214,11.999996690199957,-16.30997144322233,-34.82534322573594,-50.660408044829985,-62.58937019648925,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",CO2,South America_Southern,22.596282657000003,40.88489432786688,53.34105871248935,73.61346976662719,82.24141334848493,90.08608322715835,97.64365455280931,103.10181104963699,106.08681595749898,107.14502781372695,108.68879048232193,105.874119282168,99.27540731750202,92.54230675162951,71.01106020443865,46.809929668946275,21.683306135400077,-32.19247431315463,-63.71472576450875,-88.29321060674914,-100.62171728089555,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",CO2,South Asia,7.333793543,19.24024634150991,24.779673412441603,50.53085481237438,67.66195240800836,84.89574497989996,103.53694403259998,122.73796803669995,140.35014611000003,158.98176041399998,178.50048044300001,193.21667242759992,203.1068687770999,212.8739174312999,207.26014953460012,201.4884559513606,193.4629464757002,171.88404433278,147.84770397687583,131.21438112011288,119.44600942527997,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",CO2,South Korea,72.65609988381726,144.58994849696313,169.46142773957305,172.26681365365937,169.33314669472333,168.04973183117008,165.59286960907022,161.60600583158123,154.34402853044395,146.002374673757,137.93775371384402,128.63203105957007,118.6884746663509,108.95017924758203,87.079753948183,69.77438634726454,58.052775642392994,47.622303551361995,39.82129204932094,34.173969007683006,28.164843068937,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",CO2,Southeast Asia,119.08194155873996,230.15803201854604,284.60828948994697,353.0977315231925,400.93064845244317,454.0609823563622,506.91335194083644,554.1020690699579,585.3906303603502,609.6111644688996,629.8929582719002,632.2658709843994,615.3260351273003,596.0163611305995,515.7211450590996,437.49963738224847,377.16063102899955,299.271469913036,243.3011990602994,208.3341218784514,189.59476167592106,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",CO2,Taiwan,35.98283199000001,79.08597400286438,78.17734540783844,81.93912162118573,92.14904796363413,98.20295121872903,102.13070541755606,104.47421483310808,104.25766293913007,102.61887825306002,100.94507371118993,97.13385313737798,92.36633701160802,87.56407026144004,74.30164745922592,56.499457519431814,42.32991014031901,29.311781268517016,21.81173775213206,16.974119915043573,12.570770100644985,MTC, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",CO2,USA,1380.6364487431802,1613.6155980891833,1504.4674728926407,1610.903174637374,1640.2703354470575,1672.4624620856596,1686.0258104503685,1676.8527140045,1646.6415215001998,1591.4295127949008,1544.5518098785012,1466.9201580119995,1356.3581060275,1237.5226495900008,930.4049018833504,632.3451758784352,398.8916033851999,54.28195878849017,-152.74932004609883,-356.726856349867,-628.5388214834924,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",CO2,Africa_Eastern,6.906386650000001,11.301689954000002,15.651093128,20.946323790819992,26.718403826868162,33.95644540162996,43.007487952299975,54.07761981349997,67.17988800049993,82.74406008449995,101.24073300440016,117.8006958117002,132.83034464525994,146.9861438173001,144.29548236025988,135.2312147632094,114.52661629645567,85.1640605861998,61.51302333360017,32.40018306298924,-20.413462883391144,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",CO2,Africa_Northern,62.297785279900005,105.59287258920001,126.64965172190003,131.64664499120997,149.50321521911,170.85616074703995,190.98057677365364,208.77712698530718,222.51435510972917,234.12305294550305,244.73403159474313,250.26275465711595,252.668127395009,252.7547030276561,239.29816074864507,221.75401117252875,212.37719906024557,184.28756764958993,154.95603664566505,132.25315795175692,98.06266826232388,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",CO2,Africa_Southern,10.111313888,11.363079240000001,14.666326319999994,25.9776908415,33.1524930377,41.34956730590002,51.04234749669995,61.590110370600044,73.02117392421175,86.65601417855001,102.85801800517893,117.00793826524392,128.14296583148993,139.01994686819995,137.2606936491799,126.90830760357447,115.29357802237719,85.04798977880009,63.6800069817,43.51218796502613,13.212076535623858,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",CO2,Africa_Western,17.333682130009997,31.757557857530013,32.59305897966001,43.104081034519986,53.56342493268003,71.88512966907999,95.81665145392286,124.89531420085402,158.52396841397263,198.88225215440391,247.54151919738027,294.08714931864006,342.6394345033099,391.1589256127097,409.23755457352763,418.2724412515792,415.993735697262,367.2950218662041,293.55093617096634,215.38563925427604,94.94273570859048,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",CO2,Argentina,28.640862108999997,41.99176761099999,48.417301570000014,53.7219010858,52.32123898159999,56.824891912,60.39042546500004,62.998086278999985,64.04904079265773,64.23358798672652,64.25096201803133,62.80452609839803,59.56419093982999,57.00464110644,49.52754478655001,40.51933630641121,40.76192183413686,21.955932638301,-1.536278082957647,-16.10677359598289,-25.728776761187333,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",CO2,Australia_NZ,81.54221799999999,115.88182582000003,120.21061901999997,129.95796438000002,135.40982468710007,140.53648651099996,144.53728972143006,146.64993797552154,147.35738039185293,145.8990159172641,143.95005681222145,138.68187774230998,132.35485982826384,124.6047185717301,105.00791723826104,83.11825915028378,76.07960833007569,47.75554725336815,-4.420487145630879,-41.92035758162571,-67.44767499375617,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",CO2,Brazil,58.932501861999995,97.32819755000001,116.01481028,145.16596070899996,149.67276715049994,167.48445045870008,181.9740555556,193.39848251180004,201.04779034299986,205.73845886559997,208.48651659878297,204.42043873451016,193.63158819763717,181.1271360535388,147.63766499613965,105.56623687835445,73.00905908328514,16.024566987390045,-49.75574387680948,-111.44273895538848,-154.33394395427456,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",CO2,Canada,120.74304181,153.42975011000004,146.39004728999998,147.83758111000006,150.79084994939996,153.64678388849993,155.08723927009999,154.85299883743946,153.10062399744592,149.55867392735118,145.21184565057888,138.66008471071657,130.50794936775443,121.72626584334111,100.56192721638283,78.45087231090812,69.40169584813839,43.87161959155497,10.851016918082077,-21.407925813099347,-68.75601879489838,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",CO2,Central America and Caribbean,29.63046376149999,48.5374327658,54.674003832,62.60002119851998,68.4483741590088,74.66255676752056,80.33113786103998,85.77854053948596,89.702575303677,92.70518880129406,95.26207470331593,95.22058711295003,91.76624548682307,87.9033920179,76.49627472153406,60.8769847686374,48.95488232540988,20.72502836663083,-2.3842553043808192,-20.78807403702284,-48.419768928182066,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",CO2,Central Asia,158.75726791099993,106.66541994199999,129.56373824899995,147.5754774344,158.15591265810005,172.53467632409993,181.69652408710013,186.6995049277001,186.3193817852,183.26540532359994,178.3783673861468,168.52311550362333,155.22201193456584,143.45356010625486,120.29043126989805,95.98929328858539,80.54033812961029,28.49673795246096,-12.689702882210078,-34.52459542241674,-49.60224357115436,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",CO2,China,708.1890689100004,1764.8888255578,2385.333065206002,2753.4575721592337,2874.845505044049,3078.620556728461,3187.5648121943427,3195.3946962012565,3097.0130602692375,2952.3272786641555,2779.0402981171774,2520.495744882232,2252.803897544048,1972.4846177426991,1447.2362599461012,917.5745294531262,572.2358633980365,166.58114106164092,-209.80458286744624,-468.7060242533633,-621.8413602312769,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",CO2,Colombia,15.045258091999996,17.591022406999997,20.133841816999997,25.861094611806994,29.06381729009999,32.289907785,36.041050499800015,39.753016064599976,42.669176417299994,45.302576198599965,47.91857690280001,49.16604038332998,49.17552467824999,48.504240785986966,43.32659065259221,36.16319706283297,36.494100414960535,21.207878222971328,1.3002480744061093,-14.433059641792138,-27.379207162911825,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",CO2,EU-12,279.75652610170005,206.46864811573997,202.06303997076,218.08085912933,224.35846915857,232.73552856336985,237.79439376625092,238.47825911670006,232.98392063075136,224.29100251842354,215.09969210234124,201.6143499863584,186.5850850177818,170.2959673786382,132.75316481257997,96.46631848658326,80.66888449850467,58.380781907150016,41.48717111277998,29.6735946004749,16.21675105098252,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",CO2,EU-15,913.7541403629998,973.1500053039998,878.6034593702739,901.6537966267142,900.3380962034631,898.4010179238726,886.7153134766371,865.3735018363914,835.2695147488192,792.3494325235288,751.7199531777725,699.2407277073494,643.5456458127703,590.2287778471598,481.3646569586603,385.8010151141149,319.76944714124676,248.0311361814289,195.6346908600387,155.10865867852388,102.16478259958613,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",CO2,Europe_Eastern,233.804055003,112.23590590999994,99.548372302,94.86474774700001,93.995607776641,95.84408014014595,96.45581149561802,95.72122212101505,92.849578069857,89.20803475113608,85.52978550132609,79.94790777409429,74.42626993247255,68.81644952440784,56.85410470335174,46.3708558200341,50.561816819710906,41.96711517544989,29.392091470537515,19.280635742045593,6.086185421752076,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",CO2,Europe_Non_EU,74.93814120000005,98.28249139556999,111.97247225660001,125.43123848299999,130.68782503040006,141.41383029730002,150.22181021376988,156.6031924719001,158.57032776319997,158.45568198689992,157.32163125943092,151.73963791997508,143.2017442026723,132.8022449829424,107.65500250766601,83.06157587396645,66.48201715450651,43.41590146779996,27.252307774830026,16.36618517246174,5.082878020968718,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",CO2,European Free Trade Association,21.197987519999995,23.978600164670002,24.294033606799996,26.31312637910001,27.136441684777665,28.047510044810007,28.749690305190008,29.29452138504,29.278285411650025,29.044987621975988,28.89198206462499,27.924898310490008,26.00567101955599,24.40232808515,20.066323292762995,15.769202983409238,25.046919636605843,23.36279356187666,15.467714645337084,9.087953229699057,1.047267864973229,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",CO2,India,179.6448423,361.5869476,501.57529240000014,670.0389401679998,863.412157658,1053.538739188999,1244.3630972405656,1421.6299929860077,1558.8797943367779,1667.5648846749646,1755.848479836058,1776.992273239741,1765.2617430042008,1736.4835443450013,1553.2079682019992,1250.1401725512997,937.9395708017873,528.8592545700003,313.336689919,182.33136023087505,32.70527799999179,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",CO2,Indonesia,42.22496623999999,98.58205685680001,120.84517520100005,151.43535306572002,182.31424045639983,220.91606905129993,256.67574820959976,288.22925167700004,313.48747633199997,332.4769840610001,347.2326875349471,351.6498563536544,349.2580739354549,342.75195885612436,312.7653031238215,270.9885460543942,242.09790805678233,189.21817872525997,145.63612029406008,111.7219180254533,69.9669441163411,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",CO2,Japan,313.1325552000001,355.8800927199999,326.5601264999999,343.19907019000016,336.97011898500006,332.7074696560001,326.6317649317,316.1788243269001,301.89266167409977,285.165125295,269.0932219007001,249.12487980599968,219.54153522860548,194.93297327547523,146.99545056568596,97.26728677951021,65.45146348588187,29.25492395767305,3.5835417991067433,-16.110514138445634,-55.391065988619815,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",CO2,Mexico,79.79111505000002,119.64273376,125.96065724799999,139.67100479100003,151.3038738969999,163.23153430200003,174.81038370899998,184.31673889799998,190.64249807500002,194.831882237539,199.08592351052312,199.1176626222121,192.32434288495293,184.94880794720004,162.57893706089985,132.27569427768063,109.74700728109201,46.379482458849964,-17.67416883672136,-61.64285718922971,-93.04451805586216,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",CO2,Middle East,185.78502139999998,375.280307966,492.6807477899999,541.64043532,584.03268067,624.1505656459999,657.3338506659996,680.927287568159,691.7191075378878,694.5194995370093,694.2517501072022,683.4158306248173,652.3804063604998,621.5212010359004,551.4026801312002,452.5315155484,346.8381079385701,183.09555462590004,50.80678095478568,-55.573374474214134,-257.43543851580637,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",CO2,Pakistan,17.847456720000004,35.31599380000001,43.5655107,53.157164995,61.84866916840001,71.04598507389716,81.28369983912496,93.0079138731,104.78017680379998,117.02046860839998,130.44800459709995,140.7837420293999,148.68796825269987,156.52090443656004,155.57253526869985,151.68349508578922,146.0513407952823,119.40277675800003,95.83918734589994,75.97888383074714,48.28020795093212,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",CO2,Russia,673.7392512599997,451.7448737319999,465.2355249490002,467.3048768349999,452.575423409,459.3982650918002,459.07633800230013,451.4862842619999,433.7453282631899,411.83473050796596,390.016943869243,362.22266880957,332.97699630230017,305.1004558871997,252.21132012536341,198.19288942589873,151.89836286805462,48.16342302792589,-39.89034953040617,-91.7321359958487,-126.26166468908649,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",CO2,South Africa,94.91455193000002,121.35012286000003,126.18522341000002,126.05109183699999,128.06772191920004,137.84809149239993,145.07463087210007,148.79123559454786,147.66580219409119,144.27492235060004,140.66638206089993,134.81945292472986,128.69572858515997,122.01733968070018,105.95352351766996,88.9266976060832,69.74962804799551,42.60406781385001,29.61477841192998,21.58823890907637,11.858100278026633,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",CO2,South America_Northern,31.453970198000004,46.8898277849,59.50875779820001,56.00027303890001,48.69276905650001,51.29900472409998,52.91753915720002,53.76659368333641,53.0957864764562,52.52505034251498,52.82682502493001,52.598235617099974,51.143146784600034,49.73761174989001,43.037355020870024,34.29560734526064,38.27056861694841,22.17772058231199,-1.854480596638957,-19.80907531384479,-34.40003278967527,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",CO2,South America_Southern,22.596281547000004,40.88489423699999,53.34105971000002,65.69030939101962,72.78989869860001,82.72883314749997,92.04287673969999,99.86876613788002,105.080527838512,108.8885254913387,111.91579385656962,111.22848164135027,106.82371476131094,101.42546670257822,84.93577032602997,64.8918592222315,53.75994060066366,12.831049403480055,-27.269585982663887,-50.882637646401136,-64.85345291753936,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",CO2,South Asia,7.333796533,19.240246390000006,24.77967235,35.40055431300001,46.97767158929998,58.210469124599975,69.72992064495915,81.18204902953026,91.92636191104208,102.9763277783556,114.782142605974,123.22036310449994,129.4648551914399,135.12605010970006,132.55340185620997,129.47491843336388,126.47237311349176,106.9145268907999,88.60396191230002,73.23269783169525,52.64341360577788,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",CO2,South Korea,72.65611049999998,144.589956362,169.46143467000002,178.0946000589,184.1567198828,189.4059474351035,190.64641522756028,187.90266701697905,180.845742093509,171.46640866788508,161.366346929976,149.211614462497,135.91339151831406,122.22726043172395,97.94151189886198,74.78661343395659,56.24652610453856,40.64941549972559,32.29163688186137,26.533715988712196,19.27492211762004,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",CO2,Southeast Asia,119.08194155873996,230.15803175799007,284.60828924000003,335.60596514579987,377.75415190320024,422.5135121437001,463.7165075582999,498.64745319379966,522.3902167223001,539.6273426635004,553.2781107041633,551.5603227040413,535.5515150754137,513.4176266870287,444.17560849716693,361.8641531415936,284.72165309176626,189.69195607900005,108.76630598374483,46.68975897355685,-47.09127435947219,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",CO2,Taiwan,35.98283199000001,79.08597400000001,78.17734540000001,89.42649272369995,95.03668410560002,98.58029627950002,100.14375201929994,100.59497860939994,99.56430853340005,97.48404863049996,94.85748814596012,90.86491923333999,85.57164055969764,81.00855582089049,69.43937136712805,51.187100465655384,37.51809977780914,23.197083146235297,15.945729113942999,11.252149856964003,5.514392841448901,MTC, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",CO2,USA,1380.6363681000003,1613.6155467,1504.4674633000006,1602.2868035962751,1650.72370936184,1686.7869315560004,1701.4928062209997,1689.9246606347592,1660.481348100754,1606.0836351818489,1548.002195310104,1472.4490953929253,1369.8108902004517,1264.4518876201007,1009.1801892192007,734.8559054752326,511.8245660352732,199.02594066730913,-118.67357641883765,-397.3672420189919,-606.5504835823862,MTC, Aggregated Land Allocation scenario,region,land-allocation,1990,2005,2010,2015,2020,2025,2030,2035,2040,2045,2050,2055,2060,2065,2070,2075,2080,2085,2090,2095,2100,Units, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,biomass,0.0,0.0,0.0,0.0,28.9325113,52.7051089,82.87634979999999,121.854493,156.116313,191.938007,228.96070899999995,270.397544,308.44526299999995,339.67738999999995,386.39906699999995,424.62193800000006,450.1747009999999,481.87124100000005,521.9001161,546.879759,570.4796590000001,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,crops,311.92467120000003,428.28109870000003,430.69721629999987,420.2476318829997,429.768645836,433.96519606600003,435.32811714199994,445.4907353460002,454.28769462800005,456.3874152862999,454.15311658049995,445.2554512650001,436.07228026390004,426.8844877382,415.8072077744001,406.39783498549986,400.3533816605997,394.37854004800005,382.21873552950007,373.2537997219999,365.1909584619998,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,desert,1154.214617,1194.895342,1194.9877450000001,1194.9877450000001,1194.9877450000001,1194.9877450000001,1194.9877450000001,1194.9877450000001,1194.9877450000001,1194.9877450000001,1194.9877450000001,1194.9877450000001,1194.9877450000001,1194.9877450000001,1194.9877450000001,1194.9877450000001,1194.9877450000001,1194.9877450000001,1194.9877450000001,1194.9877450000001,1194.9877450000001,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,forest (managed),101.97584040000001,134.4069045,145.33026800000002,156.30967299999998,158.931737,162.038287,163.71883500000004,159.82394290000002,154.41066709999998,148.90461359999998,143.0166632,140.72785770000002,138.29371000000003,136.27357619999998,132.1713931,128.73482550000003,126.47007450000001,123.61297460000002,121.52794819999998,122.02947179999998,123.7361487,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,forest (unmanaged),110.07212879000002,58.03721887999999,40.92342608999999,40.742053059999996,40.297797499999994,39.95746058999999,39.61743542999999,39.12583093999999,38.73233759999999,38.42389079299999,38.173639456,37.91339377299999,37.69970098299999,37.53885213499999,37.33088958999999,37.179796608,37.09073575809999,36.99466419589999,36.93519855969999,36.903515799229986,36.876075222809995,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,grass,859.257675,723.72887,708.3877129999998,703.9366579999999,693.9226609999998,686.5006339999999,679.3168568999998,670.4293972999998,663.8246519999998,658.8369206999998,654.9459012999998,651.0598468799998,648.1247954599999,646.0581159099999,643.6287583999998,641.9766298969998,641.0248034179998,639.9919229149998,638.8992814804998,638.4340504265998,638.0883623593999,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,otherarable,109.24389359999999,108.2396133,130.31273080000003,122.84837360000002,110.5778497,100.39256699999997,89.8270754,75.6725622,63.9056111,54.0698029,45.6632121,36.30485879999999,28.6185649,22.8456318,15.653160470000001,10.612260660000002,7.739283949999999,4.774286869999999,3.041484595000001,2.1117059460000003,1.325145254,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,pasture (grazed),103.7853683,145.49922890000002,151.82868510000003,188.38155000000003,201.933381,214.168612,223.70978900000003,233.03146420000004,238.51805829999998,240.2418474,239.2608534,239.25009159999996,237.12930070000007,235.41754990000004,226.6269744,218.11658769999997,211.21328979999998,200.09171669999995,186.10940609999997,174.9588777,161.8893315,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,pasture (other),2458.422947,2354.8308,2347.579746,2325.510724,2299.0115977,2277.9348422,2257.5703976,2232.0639781,2212.2097842000003,2196.8557959000004,2184.5460650000005,2171.2688544300004,2160.7539621800006,2152.83196957,2143.1641184200002,2135.8757703570004,2131.3240825790003,2126.0501630100002,2120.4701197555005,2117.9374387711005,2115.975005905,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,shrubs,547.43671807,605.8164908,602.4575586999999,599.5401192519998,594.1406935959999,589.8542213889999,585.5521236009998,580.0247136839998,575.5114445769999,571.8589251490998,568.7967942192998,565.3392262504999,562.3794556867999,559.9896430429999,556.7349559034399,554.0013054805399,552.1270163866599,549.7525315127299,546.4146325311029,545.0091200392559,543.9571179337339,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,tundra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,urban,2.6365201,5.240257499999999,6.4683625,6.4683625,6.4683625,6.4683625,6.4683625,6.4683625,6.4683625,6.4683625,6.4683625,6.4683625,6.4683625,6.4683625,6.4683625,6.4683625,6.4683625,6.4683625,6.4683625,6.4683625,6.4683625,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,biomass,0.0,0.0,0.0,0.0,30.8033929,52.408042,75.70984,99.690956,117.229596,133.084144,147.26502299999999,161.617427,173.093588,181.401144,191.94852100000003,199.488513,204.11558300000002,209.26559300000002,212.055481,214.004932,215.850414,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,crops,164.47985789999998,168.6582839,166.7634255,170.011989866,158.495605788,150.148799527,140.247232391,131.36629987099997,124.759738467,117.68196237699999,110.83637928499996,104.62391217700001,99.73028495500004,96.366480563,92.67505000399997,90.85685522499999,90.27552716,90.64084295700002,92.36506679099996,93.66655067699998,95.51533194399997,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,desert,4639.457437499999,4677.5868408,4674.5670254999995,4674.5670254999995,4674.5670254999995,4674.5670254999995,4674.5670254999995,4674.5670254999995,4674.5670254999995,4674.5670254999995,4674.5670254999995,4674.5670254999995,4674.5670254999995,4674.5670254999995,4674.5670254999995,4674.5670254999995,4674.5670254999995,4674.5670254999995,4674.5670254999995,4674.5670254999995,4674.5670254999995,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,forest (managed),3.1032077,0.9418943000000001,1.4591024,1.6556248,1.6282554,1.6297154999999999,1.5824559,1.49197735,1.40788741,1.31275005,1.20754929,1.09927535,1.00856849,0.94282073,0.8456649899999998,0.7766122499999999,0.73369578,0.685067435,0.6703434180000001,0.6667350529999999,0.677342518,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,forest (unmanaged),0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,grass,15.11647859,5.76751243,6.23865289,6.2117355000000005,6.10399503,6.03730069,5.97571639,5.9100183,5.8651942,5.83180372,5.80542343,5.775818852,5.752533522,5.735286176,5.711838633,5.692914416,5.6802380436,5.6641133334000004,5.6523879245,5.6447641965,5.6368724207200005,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,otherarable,88.93892399999999,83.783046,84.442908,82.293369,72.112182,64.93858,57.557826000000006,49.012986000000005,42.751304000000005,37.757188,33.653096,29.0487728,25.424220500000004,22.7594584,19.234598499999997,16.4526735,14.580247799999999,12.10836653,10.15636045,8.76647512,7.186023990000001,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,pasture (grazed),4.3357516,7.299794199999999,9.1548585,10.3144861,10.086954099999998,9.8590299,9.5312387,9.3218397,9.088709399999999,8.745745,8.3899365,8.3518088,8.3202645,8.345821729999999,8.40590913,8.537689870000001,8.6492641,8.8987194,9.10468382,9.21992847,9.31618257,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,pasture (other),730.9545843299999,728.1754922,725.1056545,722.7136751,714.1663495,708.4955569,703.0242209,696.9477774000001,692.7126482,689.4540003000001,686.7493018,683.4291469000001,680.6444316000001,678.4416696000001,675.1940024,672.22706325,670.00878694,666.79449218,664.0634565,662.1055079370001,659.9000598450001,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,shrubs,37.27819041,7.574098899999999,9.40503163,9.36866945,9.172914023,9.052421937,8.94100342,8.827638856,8.754506287,8.70198214,8.662875459,8.623466339,8.595664366,8.576940861,8.554031089,8.537128707,8.5262056517,8.5123253163,8.501815802,8.4947735821,8.48728476554,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,tundra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,urban,9.3391515,13.2247327,15.8673897,15.8673897,15.8673897,15.8673897,15.8673897,15.8673897,15.8673897,15.8673897,15.8673897,15.8673897,15.8673897,15.8673897,15.8673897,15.8673897,15.8673897,15.8673897,15.8673897,15.8673897,15.8673897,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,biomass,0.0,0.0,0.0,0.0,3.592707553,7.0255921059999995,11.930618323000001,19.272348964000003,26.842396411,35.890751722,46.70722828,60.46683342000001,75.06984093,89.02121838999999,112.60546854000002,135.14851156,151.65936341999995,174.82186631000002,191.67763384999995,203.44156176,214.12087076000003,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,crops,191.34922080000004,233.4294932,277.1524115999999,309.05371862,347.2972859279999,379.9831209089999,411.65823213899995,449.0312611239997,483.77480613600005,510.8834621060001,531.5009590230002,547.637047367,561.0321380109998,569.6670084980001,580.9734578840001,587.0952702519999,589.9390765140004,590.5565848739999,588.7602093850003,586.4668716960003,586.1700318410001,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,desert,134.306135,133.752619,133.64403800000002,133.64403800000002,133.64403800000002,133.64403800000002,133.64403800000002,133.64403800000002,133.64403800000002,133.64403800000002,133.64403800000002,133.64403800000002,133.64403800000002,133.64403800000002,133.64403800000002,133.64403800000002,133.64403800000002,133.64403800000002,133.64403800000002,133.64403800000002,133.64403800000002,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,forest (managed),44.53663840000001,53.158327,55.15666300000001,57.23881900000001,58.93409000000001,60.28604800000001,61.308285,61.935036,61.099744799999996,59.970171,58.56269900000001,59.80148650000001,60.4902228,60.95043259999999,60.45503690000001,59.5575006,58.4025922,56.8055917,56.9538715,57.6904823,58.8129243,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,forest (unmanaged),1002.832209,1008.357494,1002.679889,994.8357019999999,985.333443,977.407195,969.6498809999998,959.6633181999998,950.7965405,943.6211111,937.6823801999999,931.8576908999999,926.6749662,922.5716949999999,916.8855325,912.5461573999999,909.8841026999999,907.0212218499998,905.40167152,904.50176676,903.7047898599999,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,grass,1617.594013,1519.12877,1483.8820919999998,1471.6434369999997,1457.365772,1445.389949,1433.8014039999998,1420.396456,1408.6209410000001,1399.1332899999998,1391.2885089000001,1382.8972190999998,1375.4813088,1369.6094282999998,1361.6211841,1355.4922427000001,1351.6587930199998,1347.3348405799998,1344.4906188199998,1342.7258858999999,1340.929608461,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,otherarable,89.00070529999999,84.13531010000001,86.2914814,82.24584769999998,76.9955698,72.1119743,66.9160054,60.4643975,54.188139799999995,48.6324274,43.630013899999994,37.7841699,32.208027799999996,27.496270130000003,20.614494210000004,14.992119129999999,11.370503059999999,7.308363579999999,4.860498349999999,3.4660555559999997,2.221092294,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,pasture (grazed),38.4233284,51.589070099999994,53.9692842,60.792451500000006,64.6615632,67.767881,70.1916468,73.2887609,75.55329540000001,76.58203220000001,77.1129238,79.60950680000002,81.5137346,83.50248839999999,84.16502179999999,84.59557749999999,84.74968199999999,83.99684490000001,83.30157039999999,82.18165169999999,79.8893908,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,pasture (other),2129.552929,2162.9731020000004,2153.8725980000004,2137.979161,2120.488271,2105.4924140000003,2090.8195090000004,2073.2003810000006,2057.3375188000005,2044.3501203000003,2033.3585189000003,2020.8017662000002,2009.4335371000002,2000.0779116,1987.2327699000002,1976.8579648000002,1970.0603400100001,1962.0450169000003,1956.3698169400002,1952.773636434,1949.0735538380002,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,shrubs,284.4546655,283.11493199000006,282.10201204,281.31727729999994,280.43783322999997,279.64208444999997,278.83096021999995,277.85447512999997,276.89287702999997,276.04305812999996,275.2633911,274.25060443999996,273.20259770399997,272.209955715,270.55314635099995,268.82095589399995,267.38210179199996,265.21595663399995,263.29026956329994,261.8585402244,260.1837795944,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,tundra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,urban,3.1560983,5.5665230999999995,6.455441799999999,6.455441799999999,6.455441799999999,6.455441799999999,6.455441799999999,6.455441799999999,6.455441799999999,6.455441799999999,6.455441799999999,6.455441799999999,6.455441799999999,6.455441799999999,6.455441799999999,6.455441799999999,6.455441799999999,6.455441799999999,6.455441799999999,6.455441799999999,6.455441799999999,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,biomass,0.0,0.0,0.0,0.0,11.281521583,20.982500196,33.74875416,47.535149133000004,59.89397329599999,74.03664694000003,89.17348369999999,107.50223794000001,125.16485063000002,140.41027470999998,164.60876157,185.39155247,199.93462739,218.00329402,285.84462687,315.50963226,338.8696825399999,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,crops,669.5808413000001,830.6757842000001,905.8235861000002,929.3331694865001,973.502400915,1006.3971606869999,1037.8844538250003,1100.5544485050004,1157.4322313059997,1201.13077519,1235.8049198669999,1274.203414121,1308.0093546110002,1333.6014102539996,1371.8536831869994,1401.4492539259995,1419.260681811,1440.8995996809997,1405.4851154390003,1387.1170820829996,1373.1011277170005,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,desert,2609.6112694999997,2745.6518892,2732.6534420999997,2732.6534420999997,2732.6534420999997,2732.6534420999997,2732.6534420999997,2732.6534420999997,2732.6534420999997,2732.6534420999997,2732.6534420999997,2732.6534420999997,2732.6534420999997,2732.6534420999997,2732.6534420999997,2732.6534420999997,2732.6534420999997,2732.6534420999997,2732.6534420999997,2732.6534420999997,2732.6534420999997,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,forest (managed),127.2821684,169.4623495,180.624204,192.3686822,204.7825391,216.588411,228.23951680000002,239.47200762,247.13815949999997,253.86950474,259.546393,268.34960918,275.46345095,281.11333988,286.46659934999997,289.75556872000004,291.06080722,291.63839902999996,294.04076582999994,300.11032683,308.07619682,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,forest (unmanaged),2763.3437444,2697.1514309,2634.7760550000003,2620.5471452,2602.5033774000003,2587.4978765000005,2572.1568843700006,2548.92433551,2528.3388845000004,2511.2806890700003,2496.7305815900004,2477.3247612000005,2459.9583948200006,2445.90780566,2426.3310640930004,2410.8612268080005,2401.1796406720005,2390.2867568550005,2383.683865637,2380.0217219712003,2376.7324266962005,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,grass,2005.9143211,1809.2411178000002,1735.2264378,1724.0363497,1707.5354122,1694.4682169999999,1681.5349726000002,1662.6771072000001,1646.8982179,1634.5025469,1624.3228312,1612.1223458000002,1601.7844903,1593.8196702,1583.5052373,1576.0407959000001,1571.74743831,1567.37619847,1564.72747062,1563.5395312,1562.658276017,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,otherarable,241.44025070000004,261.846817,301.11847,290.54004199999997,272.59170029999996,257.6633249,242.04533210000002,217.5408925,195.61467139999996,177.10624020000003,160.80318530000002,139.7554509,120.3881504,104.13206960000001,80.82390110000001,61.4041683,48.6267022,33.467718399999995,21.29977805,14.975699230000002,9.54043053,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,pasture (grazed),59.352625700000004,87.78985739999999,93.6008297,110.39911960000002,116.38332109999999,122.0797409,127.21275809999999,134.06612510000002,138.9692598,140.8908961,142.00557320000001,147.39913319999997,151.686634,156.161241,158.26981600000002,160.0195068,161.286828,160.7047308,158.23397609999998,155.76960119999998,150.5083252,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,pasture (other),2576.1890110999993,2462.891416,2512.7261237,2497.2778804,2476.9417039,2460.6451443,2444.3120998,2418.1562212999997,2396.190974,2378.9311684,2364.4615817,2347.3085963,2332.5401947,2320.7341369,2305.33089342,2293.4392561699997,2286.09270577,2277.89977138,2269.126127995,2266.02414582,2263.9678036,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,shrubs,255.3134418,235.82644899999997,200.6659411,200.05886919999998,199.0384684,198.23812289999998,197.425792,195.6331966,194.08330039999998,192.81196129999998,191.71116099999998,190.59441569999998,189.56459923999998,188.67997337999998,187.36959149999998,186.19910076,185.37108906,184.28471954,182.11912687199998,181.49230497399998,181.105015173,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,tundra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,urban,8.6467227,16.1444738,19.463024,19.463024,19.463024,19.463024,19.463024,19.463024,19.463024,19.463024,19.463024,19.463024,19.463024,19.463024,19.463024,19.463024,19.463024,19.463024,19.463024,19.463024,19.463024,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,biomass,0.0,0.0,0.0,0.0,0.13521740000000002,0.26087404000000003,0.43764143,0.66711793,0.8831031,1.1482931,1.4824464000000002,1.950345,2.4698203000000003,3.0019104,3.9673763,5.0443627,5.972938300000001,7.461202,8.700242523000002,9.733596083,10.967788967000002,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,crops,215.30504780000004,265.6871859,337.1951085,340.1245776702,347.3744143270002,353.7243082991001,361.0074045483999,371.6245131899001,381.36134985920023,388.4996578156001,394.5679260635998,406.8908619534001,418.03870147939995,426.9568498953,440.1538572931999,450.74225606319993,457.6221492496997,466.42062454499995,472.8000189112001,476.90192666769997,481.0718040358998,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,desert,134.0737603,133.9175337,132.220351,132.220351,132.220351,132.220351,132.220351,132.220351,132.220351,132.220351,132.220351,132.220351,132.220351,132.220351,132.220351,132.220351,132.220351,132.220351,132.220351,132.220351,132.220351,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,forest (managed),7.552701000000001,10.627227900000001,11.0856379,11.9466391,12.9741405,13.9361292,14.872684099999999,16.1807825,17.253512899999997,18.497629999999997,19.666762000000002,20.903587,22.033168,23.054913,24.565756999999998,26.125082,27.263697999999998,29.078712000000003,30.745299000000006,32.3035,34.618015,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,forest (unmanaged),175.65757299999996,180.22552799999997,166.38708699999998,165.75369359999996,164.98291179999998,164.29390739999997,163.51261449999998,162.47499149999996,161.46996769999998,160.73734079999997,160.06620999999998,158.84179309999996,157.68620699999997,156.71853809999996,155.31503549999996,154.146123,153.3535736,152.39895729999998,151.75600376999998,151.35588092999998,150.96269562999998,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,grass,727.1627052999999,715.1430398999998,601.4899933000002,598.8816181000001,596.0541251000001,593.5655412000001,590.8683920000001,587.3553535000001,584.0890923000001,581.5854245000002,579.3006981000001,575.6270134,572.1945336,569.3058317,565.1013379000001,561.4499104,558.8319215,555.4050138,552.6977402,550.81798802,548.75101423,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,otherarable,57.58024470000001,29.168485,46.2036281,44.523958199999996,42.3388706,40.3972643,38.2260726,35.27689860000001,32.5020688,30.3806705,28.457586000000003,25.141986329999998,22.073819459999996,19.539700349999997,15.92957479,12.96948058,10.98085167,8.57401917,6.86694378,5.755743716999999,4.6007200699999995,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,pasture (grazed),45.1533192,85.16696179999998,91.03410329999998,99.52847220000002,103.7769388,107.47505600000001,111.188402,114.70675999999999,118.398665,120.89156399999999,123.50658000000001,126.06790399999998,128.76246899999998,131.254992,134.213667,136.82085,138.963338,140.862202,142.113416,142.48001000000002,142.25419299999996,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,pasture (other),950.0321663,910.7578734000001,987.0180701999999,981.1570263999998,975.8411187999999,971.2064491999998,966.2303668999999,959.9351439000001,954.0196769999999,949.5940362999999,945.5335656000001,939.1508763999999,933.1978310000001,928.2198523999999,921.1407863999999,915.1205208999999,910.8831924,905.5678573199999,901.58174,898.9432523699999,896.1933514199999,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,shrubs,390.7577430099999,371.31731756000005,329.74642373999995,328.24406475999996,326.68213431,325.3005126,323.81633518999996,321.93850131,320.18272741,318.82553968999997,317.57833189999997,315.58560551,313.70343285999996,312.10746071,309.772548848,307.741488212,306.28846183499996,304.391382325,302.89855908299995,301.86782461499996,300.740422525,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,tundra,28.489723,28.4168635,27.622236700000002,27.622236700000002,27.622236700000002,27.622236700000002,27.622236700000002,27.622236700000002,27.622236700000002,27.622236700000002,27.622236700000002,27.622236700000002,27.622236700000002,27.622236700000002,27.622236700000002,27.622236700000002,27.622236700000002,27.622236700000002,27.622236700000002,27.622236700000002,27.622236700000002,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,urban,4.2019247,5.5402765,5.965001,5.965001,5.965001,5.965001,5.965001,5.965001,5.965001,5.965001,5.965001,5.965001,5.965001,5.965001,5.965001,5.965001,5.965001,5.965001,5.965001,5.965001,5.965001,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,biomass,0.0,0.0,0.0,0.0,13.96532445377,26.01527450403,41.94504013384,61.906125645790006,80.2470351506,99.49804476649997,119.45953303499999,148.8335760077,177.94587972159997,204.18506467189997,245.1014386449,282.1607726498,309.7067915619,345.6018966842,406.60743272696,450.14839754978004,495.88204049753006,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,crops,178.31147349999998,218.66403150000005,224.35435180000007,244.13053449595006,260.87197250182004,274.22300568660995,284.4726876481601,291.22666670025006,296.94237161190995,299.30445635926,300.05960771284987,303.23653555124,306.08161323740995,308.9250653701301,316.95287256004013,329.1436363903099,341.11381971362,364.70660428338,381.7219555385499,391.1216879716,400.27614909997004,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,desert,19.159801200000004,19.2960415,19.5860837,19.5860837,19.5860837,19.5860837,19.5860837,19.5860837,19.5860837,19.5860837,19.5860837,19.5860837,19.5860837,19.5860837,19.5860837,19.5860837,19.5860837,19.5860837,19.5860837,19.5860837,19.5860837,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,forest (managed),30.3733857,47.95515699999999,49.537192499999996,53.69992467,57.729871239999994,61.505025710000005,65.07117260000001,70.1373616,74.45767470000001,78.15594379999999,81.021588,84.06639899999999,86.35203969999999,87.76062510000001,88.25888730000001,88.05080500000001,87.5978663,87.1999825,88.43658079999999,90.17368900000001,93.798471,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,forest (unmanaged),226.25588476000001,214.83378858999998,231.09660861,230.24490458,228.84497431000003,227.64069849,226.32559005000002,224.65682134,223.15644079,221.81282616000001,220.55782804000003,218.66451417000002,216.93638961000002,215.50191118,213.48198698000002,211.90953118000002,210.94362156000003,209.88510549000003,209.24976097,208.88824647,208.56932457000002,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,grass,1230.9418110000001,1266.2900630000001,1522.590765,1517.5220709999999,1510.965049,1505.5748519999997,1500.207669,1494.4709459999997,1489.4785879999997,1485.2177499999998,1481.326609,1475.0869219999997,1469.0190579999999,1463.5076060999997,1454.2735097999998,1444.8009332999998,1437.1738557999997,1425.7697544999999,1412.4555427599998,1403.6115306299998,1394.6548037799998,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,otherarable,324.314385,300.50154299999997,203.62929839999998,193.64304410000003,179.3023948,167.2620933,155.0085114,142.34329480000002,131.34133690000002,121.7024922,112.97039940000002,100.810654,90.09478928,81.51606095000001,69.84304748,60.66829491000001,54.68135372,47.10974351000001,39.611033272,34.013056926000004,27.699179320000006,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,pasture (grazed),92.36679840000001,126.45334510000002,124.30818510000002,128.712135,130.3539557,131.64815620000002,132.7685657,134.05592109999998,134.8926871,134.74103039999997,134.3153019,135.5021529,136.47934150000003,137.21458470000002,138.1073683,138.72542600000003,138.88276249999998,138.99271369999997,138.1659317,137.1694807,135.02758706,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,pasture (other),4166.267467000001,3926.013625,3504.9057090000006,3496.650221000001,3487.600880000001,3479.9491830000006,3472.2012330000007,3463.6485040000007,3455.976311900001,3449.5523831000005,3443.5758959000004,3432.8500004000007,3422.0534751000005,3411.9731505000004,3394.5186319000004,3375.8290278000004,3360.1545937000005,3335.06030422,3299.01684466,3273.81664213,3246.9408826200006,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,shrubs,1557.2560735000004,1701.7586666000002,1940.1006535,1935.9185014,1930.8883857,1926.7036679,1922.5214934,1918.0766641,1914.0296268,1910.5376761,1907.2345786,1901.4714853,1895.5589142000001,1889.93804899,1879.98482618,1869.23315528,1860.26733459,1846.19534474,1825.257810824,1811.578503806,1797.673062135,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,tundra,0.2010009,0.2067632,0.390214,0.390214,0.390214,0.390214,0.390214,0.390214,0.390214,0.390214,0.390214,0.390214,0.390214,0.390214,0.390214,0.390214,0.390214,0.390214,0.390214,0.390214,0.390214,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,urban,9.200743200000002,12.6797522,14.1604396,14.1604396,14.1604396,14.1604396,14.1604396,14.1604396,14.1604396,14.1604396,14.1604396,14.1604396,14.1604396,14.1604396,14.1604396,14.1604396,14.1604396,14.1604396,14.1604396,14.1604396,14.1604396,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,biomass,0.0,0.0,0.0,0.0,5.0518750593,9.5065222341,15.460106375999999,22.529808369,28.480185306000003,35.771595394,44.129705177,53.928496392,63.528445476,72.48180135999999,86.54942055000001,99.56453828,109.01444629,122.29096417000001,130.66948816,137.19398367,142.92869512,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,crops,463.25419490000013,586.9997113999999,639.3725880000002,644.1216417389999,666.4653470869999,686.6953365919999,708.646175337,740.1456758319997,770.6624279299998,792.6847296250002,807.3863086309999,844.397080561,879.8319457269998,908.38011101,954.5271078110001,992.258314854,1019.0000164399999,1051.3957597639996,1069.102226911,1080.090957893,1093.594818921,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,desert,4.538579,4.795164,4.7610358,4.7610358,4.7610358,4.7610358,4.7610358,4.7610358,4.7610358,4.7610358,4.7610358,4.7610358,4.7610358,4.7610358,4.7610358,4.7610358,4.7610358,4.7610358,4.7610358,4.7610358,4.7610358,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,forest (managed),117.4431068,152.1233737,160.5919356,173.30133779999997,185.664997,196.6204468,207.02294960000003,221.02099430000004,231.5451662,242.7560035,253.445193,264.88955139999996,273.7704546,281.1363411,287.75784319999997,292.88082439999994,294.45540700000004,296.9311118,304.4261129,312.36364009999994,322.7721418,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,forest (unmanaged),4282.371428399999,4153.2380056,4097.7129788,4080.7201834999996,4054.6179005,4031.2607911,4006.6305396,3974.7123068999995,3945.3093728,3922.0842344999996,3902.1949414999995,3871.0149293,3842.0753735999997,3818.4614850999997,3784.6402559099997,3757.89241646,3740.82019685,3721.7591180099994,3710.37157718,3703.8234253979995,3697.9000857319998,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,grass,1008.0233955,859.6189801,824.774019,819.2794753999999,812.1435225,805.9671649,799.7011557999999,792.5004197,786.0578824099999,781.12864623,776.94893078,770.7214718999999,765.1616553599999,760.78617329,754.8921054799999,750.5620731099999,748.0172815799999,745.443574422,744.0875783089999,743.4065571169999,742.8759872976,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,otherarable,97.42775189999999,70.65452669999999,125.12663169999999,119.7291594,113.5224287,107.81909230000001,101.73952750000001,94.3042196,87.05575720000002,81.0581573,75.5751369,67.03709860000001,58.5703339,51.19838540000001,39.9676307,30.2684941,23.672945300000002,15.83019444,10.802237580000002,7.81427276,5.033400759999999,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,pasture (grazed),217.3630506,334.30994699999997,357.76069,386.260994,406.3798709999999,423.20192399999996,438.948634,451.90040999999997,464.80717100000004,470.89368700000006,477.196687,479.826299,481.99570700000004,482.5895319999999,479.95128800000003,474.24812499999996,468.01896199999993,454.506328,441.29222139999996,427.3100928,407.8513898,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,pasture (other),1610.4853383,1614.9420177999998,1585.1287192000002,1570.1428486000002,1553.3429959000002,1539.3135974000002,1525.5457559000004,1510.4078712000003,1497.2048741,1487.6047051000003,1479.5836850000003,1468.4265072,1458.8370463000003,1451.6180177200001,1442.4565363500003,1436.2372618200002,1432.8509346700002,1429.7192651120001,1428.2325977470002,1427.5530305580003,1427.0671801168003,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,shrubs,505.46872490000004,522.5363009000001,501.90021800000005,498.81259370000004,495.17783230000003,491.98258780000003,488.6728112,484.84596600000003,481.24467540000006,478.386225,475.90623580000005,472.12607346000004,468.59719225000003,465.71480004000006,461.62567428000006,458.45560686000005,456.517380574,454.490358124,453.384212384,452.811997846,452.3448318677,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,tundra,1.8959769999999998,1.9203000000000001,1.891311,1.891311,1.891311,1.891311,1.891311,1.891311,1.891311,1.891311,1.891311,1.891311,1.891311,1.891311,1.891311,1.891311,1.891311,1.891311,1.891311,1.891311,1.891311,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,urban,16.2411293,23.3799723,25.491687799999998,25.491687799999998,25.491687799999998,25.491687799999998,25.491687799999998,25.491687799999998,25.491687799999998,25.491687799999998,25.491687799999998,25.491687799999998,25.491687799999998,25.491687799999998,25.491687799999998,25.491687799999998,25.491687799999998,25.491687799999998,25.491687799999998,25.491687799999998,25.491687799999998,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,biomass,0.0,0.0,0.0,0.0,9.899566043000002,18.260398818,29.27807682,44.143104901,55.936263729,68.298993354,81.47814124,100.16795854999998,119.05474571,136.23675029999998,163.50349872,188.18823239000002,205.81840344999998,228.45371199000002,260.362676,298.20673504,347.93931180999994,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,crops,263.4344539,265.77893400000005,265.6121572,277.21020034900005,284.37849286999995,291.30288442700004,297.493037489,300.7298481550001,304.48874349700003,304.51424309300006,303.13125099900014,306.761589571,309.5718733550001,310.92639108599997,312.52944282500005,311.61699270200006,309.52129517099996,305.42073703700004,303.8164082949999,301.7964330870001,296.3902250829999,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,desert,226.16444,226.16487,226.16485,226.16485,226.16485,226.16485,226.16485,226.16485,226.16485,226.16485,226.16485,226.16485,226.16485,226.16485,226.16485,226.16485,226.16485,226.16485,226.16485,226.16485,226.16485,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,forest (managed),320.1262091,343.57194689999994,247.880065,267.1839677,290.4517401,311.7609441,333.61841610000005,365.3297212,394.18007969999996,421.3843331,446.1498293,479.5929492,510.99482600000005,538.0844605000001,576.5385396,610.0519386000001,632.6660069,660.0351340999999,661.8054794,645.6729735,619.5461068000001,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,forest (unmanaged),5299.8654955,5320.5862869,5431.9966051,5409.1455018999995,5382.0101752,5357.11145,5330.8663605,5297.1281713,5266.4987633,5239.402750800001,5214.3645636,5175.2096257,5137.6645180000005,5105.1415073,5056.9425127,5015.588305,4987.9264169,4954.72012068,4931.69638638,4917.80892242,4905.834975819999,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,grass,103.41528170000001,53.429439099999996,78.3840446,77.9538613,77.3238732,76.79581,76.2401313,75.584428,75.0699348,74.638182,74.2546222,73.6791705,73.1726962,72.7669244,72.2098118,71.77584103,71.50526424,71.1966254,70.975901,70.853979156,70.748812048,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,otherarable,240.16209899999998,247.214457,211.009298,203.135887,191.63616199999998,181.52535899999998,170.518436,156.508728,144.67366500000003,134.181781,124.46502299999999,109.446213,95.343305,83.359298,65.852891,51.152019,41.4113471,29.699876599999996,21.635977200000003,16.7157637,11.984161100000001,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,pasture (grazed),26.106392200000002,31.5428012,29.074118199999997,30.143150999999996,30.009294999999998,29.7423086,29.304390899999998,28.8954859,28.2662593,27.3370039,26.497012100000003,26.4513181,26.3499173,26.305153699999998,26.121899900000003,25.9695484,25.871120100000002,25.5868682,25.062481199999997,24.428474899999998,23.140812699999998,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,pasture (other),129.35621189,118.45336789000001,115.61573756000001,114.81109165000001,113.88783271000003,113.11197992000001,112.30535307000002,111.32254713,110.54273808000002,109.91087491000002,109.33900289000002,108.38659288000002,107.55787984000003,106.90374099000002,106.04327058000001,105.41345947000002,105.04686478100001,104.66486115900003,104.43039195600002,104.30859784100002,104.21082436310002,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,shrubs,2.3515723,2.2026167,2.2952556,2.2845210000000002,2.2699906,2.2572215,2.2436002,2.2263034,2.212249,2.200143,2.1892717,2.1725425,2.1571528,2.1442948,2.1258862,2.1108024299999997,2.10109201,2.08976206,2.08139025,2.076803644,2.072899226,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,tundra,1996.1630148,1996.1555529000002,1996.1883338000002,1996.1883338000002,1996.1883338000002,1996.1883338000002,1996.1883338000002,1996.1883338000002,1996.1883338000002,1996.1883338000002,1996.1883338000002,1996.1883338000002,1996.1883338000002,1996.1883338000002,1996.1883338000002,1996.1883338000002,1996.1883338000002,1996.1883338000002,1996.1883338000002,1996.1883338000002,1996.1883338000002,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,urban,4.2498615,6.291534499999999,7.161206,7.161206,7.161206,7.161206,7.161206,7.161206,7.161206,7.161206,7.161206,7.161206,7.161206,7.161206,7.161206,7.161206,7.161206,7.161206,7.161206,7.161206,7.161206,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,biomass,0.0,0.0,0.0,0.0,0.23867889,0.43015169,0.6667541100000001,0.9317307,1.1446195,1.3649330000000002,1.5950509,1.8851648,2.1489827,2.3778619,2.6923969,2.952095,3.125633,3.3653459999999997,3.517117,3.631199,3.726691,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,crops,96.42306599999999,95.43602459999998,101.31539550000004,102.50108344999998,104.52349745000002,106.12362570500001,107.93591278999999,113.93234216399999,119.815246108,125.04872554000004,129.41394203500002,133.61620780900003,137.62559765899994,140.75660986,146.420272618,151.35318815500003,154.85237793599998,159.36560219300003,161.48767768499997,162.388422752,163.676591098,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,desert,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,forest (managed),27.811012,31.776331,32.460325999999995,34.510141,36.857566,39.027376,41.097157,42.305811,42.685939,43.030114000000005,43.270362000000006,44.437124,45.18345600000001,45.797178,45.750826,45.402903,44.780610200000005,44.037792599999996,44.4667127,45.307015699999994,46.266531199999996,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,forest (unmanaged),314.061463,290.832512,305.523416,303.82255599999996,301.821712,300.108105,298.307576,295.218827,292.47277699999995,290.2805166,288.4640911,286.2998851,284.3546437,282.8139273,280.6422224,278.97112391999997,277.93748992999997,276.82117277,276.1796384,275.82083712499997,275.497658005,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,grass,22.103966,22.874067,26.814933999999997,26.601128,26.352483,26.146126,25.940664,25.631305,25.37327,25.175664,25.018108,24.832047999999997,24.675752999999997,24.558969,24.4092621,24.3059397,24.2487416,24.1940316,24.16686521,24.15374291,24.143742,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,otherarable,28.61938,43.324424,38.433983999999995,36.146188,33.504657,31.227271,28.903230999999998,25.457991,22.418218,19.93382,17.820179,15.11732,12.671285,10.692313500000001,7.9057121,5.6963157,4.2983682,2.7397053,1.80191428,1.2668779300000002,0.7851915,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,pasture (grazed),30.535076999999994,26.308274999999995,29.561794999999996,31.692187,33.171604,34.375745,35.525591,36.196921,36.823147,36.661425,36.511283,36.600512,36.691827999999994,36.75874,36.419043,35.866585,35.463139000000005,34.3201253,33.2850682,32.363918000000005,30.8540602,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,pasture (other),122.751334,130.15032799999997,105.82375199999998,104.68332999999998,103.513106,102.56697209999999,101.6506157,100.38494509999998,99.3532969,98.61185139999999,98.0301628,97.35350839999998,96.80566461,96.41305821,95.94292820999999,95.64413533999999,95.49100635299999,95.35845642999999,95.29950589699999,95.27373392799998,95.25603285279999,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,shrubs,2.9184455000000002,2.5880655,2.7372859000000003,2.7144183,2.687623,2.6655434000000002,2.6434452800000003,2.61094135,2.58433019,2.56393597,2.54777937,2.5290701700000002,2.51366578,2.5023586,2.488169887,2.478630634,2.4734737940000002,2.4686532173,2.4663197263,2.465212431,2.46438382331,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,tundra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,urban,3.0053849999999995,4.94227,5.557485000000001,5.557485000000001,5.557485000000001,5.557485000000001,5.557485000000001,5.557485000000001,5.557485000000001,5.557485000000001,5.557485000000001,5.557485000000001,5.557485000000001,5.557485000000001,5.557485000000001,5.557485000000001,5.557485000000001,5.557485000000001,5.557485000000001,5.557485000000001,5.557485000000001,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,biomass,0.0,0.0,0.0,0.0,2.2098452313,4.1920775400000005,6.941258167,10.877660578,14.636399142999998,19.147303593,24.335120172,32.06409475,40.32982421,48.174969899999994,60.58809041,71.67127208000001,79.45188754,89.09997734,172.4878194,232.56043802999997,291.18117998,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,crops,337.57703,257.14866889999996,274.2362822000001,274.3087615399999,278.80065134999995,281.30721505000014,284.70526364400007,299.31153976799993,313.352156695,324.92208386499993,335.1562428239997,355.4146204600001,375.1857559979998,392.7724189310002,421.624945723,450.07585178499994,472.1628947579999,505.2452114170001,483.00258218600015,461.6027360640001,440.04486663499995,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,desert,448.44933890000004,444.4308841,448.8914527,448.8914527,448.8914527,448.8914527,448.8914527,448.8914527,448.8914527,448.8914527,448.8914527,448.8914527,448.8914527,448.8914527,448.8914527,448.8914527,448.8914527,448.8914527,448.8914527,448.8914527,448.8914527,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,forest (managed),3.4064718999999997,3.1532356999999998,3.4385690999999996,3.8490224000000004,4.3005353,4.769829,5.269716100000001,5.809593400000001,6.296899400000001,6.7794414,7.231303499999999,7.884646999999999,8.548095700000001,9.182512099999999,10.1572257,11.1580005,11.933668200000001,13.003473600000001,11.7360945,9.8929587,8.3076087,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,forest (unmanaged),93.43000239999999,84.4898917,89.4723645,89.4455479,89.2372474,89.0919105,88.8927659,88.3293606,87.7962579,87.33951529999999,86.9148879,86.2469892,85.60283519999999,85.04443979999999,84.1752257,83.40463629999999,82.86397129999999,82.17235369999999,81.50472149999999,81.11450690999999,80.84352689999999,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,grass,577.7196081000001,413.10931000000005,513.1377311000001,512.7566259,511.7223586000001,511.0125200000001,510.1099680000001,507.5179974000001,505.07936340000003,502.9920177,501.04506820000006,497.7691874000001,494.5896377,491.7948738000001,487.38843540000005,483.3537407000001,480.43994439000005,476.47845502000007,471.55633059,468.88485290000006,466.598002531,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,otherarable,61.5881485,128.10784300000003,101.1183085,100.39673989999999,98.59634469999999,97.23255139999999,95.517908,91.75433100000001,88.08146719999999,84.7065197,81.3679396,75.6478207,69.9013414,64.7232157,56.46177229999999,48.8276251,43.267077109999995,35.64499439,26.66361658,21.023710470000005,15.701610420000002,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,pasture (grazed),53.290358499999996,35.7143968,45.576342100000005,50.3044487,52.83932090000001,54.8188796,56.702877,58.458090299999995,60.2744017,61.13481240000001,61.9919503,62.091204799999986,62.154550500000006,62.05848380000001,62.3825323,62.61972650000001,62.78620069,63.273312229999995,61.90374341,60.74391792999999,58.65403608,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,pasture (other),3474.5529638000007,3767.946659,3598.6702076999995,3594.8697184,3588.9276640999997,3584.7040103,3579.5954067,3567.0067873999997,3554.8063697,3544.3817123999997,3534.3830145999996,3517.2058528,3499.8788772,3484.1068879,3457.7987547,3432.1065670999997,3412.3511642,3383.3624827699996,3343.7747715299997,3319.3874582599997,3296.2926214199997,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,shrubs,398.8575680000001,321.26256099999995,376.920224,376.63946,375.936592,375.440517,374.835661,373.505041,372.246986,371.16632,370.1441991,368.2451842,366.3796613,364.7122908,361.9930079,359.3523153,357.3128474,354.2894209,349.94011337,347.35924247,344.94686441700003,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,tundra,91.9407451,84.95392400000001,88.421862,88.421862,88.421862,88.421862,88.421862,88.421862,88.421862,88.421862,88.421862,88.421862,88.421862,88.421862,88.421862,88.421862,88.421862,88.421862,88.421862,88.421862,88.421862,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,urban,7.019664299999999,7.517963699999999,7.946627299999999,7.946627299999999,7.946627299999999,7.946627299999999,7.946627299999999,7.946627299999999,7.946627299999999,7.946627299999999,7.946627299999999,7.946627299999999,7.946627299999999,7.946627299999999,7.946627299999999,7.946627299999999,7.946627299999999,7.946627299999999,7.946627299999999,7.946627299999999,7.946627299999999,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,biomass,0.0,0.0,0.0,0.0,46.8116697298,85.87068904523,136.35336808879998,195.7691598749,248.3056774542,306.53109750500005,370.5139478656,446.9803633679,518.5191560718999,580.0619293165,669.785635431,744.280475709,794.9931400830001,859.1981414499999,916.8059020740002,964.866866607,1011.8759423390001,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,crops,1283.4231148000008,1373.0980311000005,1240.9893296999999,1244.4776439719997,1211.9080727969997,1193.7098509769999,1170.8162930700003,1154.6007173129997,1137.1226304400004,1111.0250619849999,1078.3851586499989,1054.9081858749996,1031.568363295,1008.3222379379997,974.7498431239995,944.9853009269997,924.1907403629999,895.9210771899999,871.6549266560002,849.186483993,828.4776263299999,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,desert,1145.0965787,1151.8131293999998,1165.56988,1165.56988,1165.56988,1165.56988,1165.56988,1165.56988,1165.56988,1165.56988,1165.56988,1165.56988,1165.56988,1165.56988,1165.56988,1165.56988,1165.56988,1165.56988,1165.56988,1165.56988,1165.56988,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,forest (managed),424.1483844,338.62028669999995,326.5752901000001,343.6903811,361.3685313,372.2685841,377.478621,378.70905,379.39303,379.688976,376.770825,364.958547,352.65563399999996,342.874482,325.359561,311.78999300000004,302.810118,292.104286,282.36286700000005,273.995448,267.434197,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,forest (unmanaged),1308.9450053,1256.5884447,1414.0497294000002,1404.8528837000001,1393.8023736,1383.0215684,1371.3451279,1356.1459162,1344.3448745,1334.9464575,1326.8651155,1315.6376207,1306.5417851,1299.8726992000002,1291.424007,1285.50996908,1282.09834187,1278.50345685,1276.36611109,1275.18105212,1274.193901779,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,grass,504.35595300000006,365.31238167000004,450.91330066999996,447.26445557000005,443.53857333,440.1125364,436.58946506,432.19290394700005,428.7822855360001,426.15960737899997,423.94452783599996,420.87679522499997,418.34236367500006,416.429103817,413.886680519,411.9621881351,410.7630920681,409.3616164245,408.2572935924,407.6307423977,407.07417523739997,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,otherarable,19.940618,200.4999753,25.344465900000003,24.513827,23.8897583,23.323771900000004,22.656740900000003,21.751711499999995,20.9087299,20.254782600000002,19.619694,18.5996208,17.5435209,16.556814600000003,14.852756600000001,13.1380763,11.804393000000001,9.8464373,7.86098061,6.508585559999999,5.124169389999999,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,pasture (grazed),121.38181139999999,239.30584,259.6039258,281.95762390000004,288.2189164,292.46646590000006,298.9394356,304.9677444,310.0506113,308.399902,307.1327783,305.66973790000003,304.60723039999993,303.8887979,305.44856380000004,307.3526709,308.4306462,310.8679405,310.157084,306.4716205,299.138571,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,pasture (other),3877.1191146999995,3750.7314621000005,3660.3621754,3632.7428849000003,3611.3153945,3591.4120226,3569.4314812,3541.4225831999997,3518.2753396,3501.4320485,3486.3221357999996,3463.6896205999997,3443.19082172,3426.35653776,3401.0246572499996,3379.4810193399994,3364.8324369399998,3346.0531788929998,3330.3410291369996,3321.1062209959996,3312.6873048539996,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,shrubs,275.9709656,263.31511963,307.2040345600001,305.5412078300001,304.18786323000006,302.8561678500001,301.4312150500001,299.48200527000006,297.8580497900001,296.6038151800001,295.48723831100006,293.7208499740001,292.0725921180001,290.6792933280001,288.5092465510001,286.5426296610001,285.1180251610001,283.18500594770006,281.23429118010006,280.0952689025001,279.0356102470001,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,tundra,391.48606170000005,393.61301749999996,474.4220948,474.4220948,474.4220948,474.4220948,474.4220948,474.4220948,474.4220948,474.4220948,474.4220948,474.4220948,474.4220948,474.4220948,474.4220948,474.4220948,474.4220948,474.4220948,474.4220948,474.4220948,474.4220948,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,urban,28.1278478,47.0971569,54.963393700000005,54.963393700000005,54.963393700000005,54.963393700000005,54.963393700000005,54.963393700000005,54.963393700000005,54.963393700000005,54.963393700000005,54.963393700000005,54.963393700000005,54.963393700000005,54.963393700000005,54.963393700000005,54.963393700000005,54.963393700000005,54.963393700000005,54.963393700000005,54.963393700000005,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,biomass,0.0,0.0,0.0,0.0,0.047295228999999994,0.09597038500000002,0.167936706,0.272074424,0.38864365999999995,0.5330161499999999,0.68657453,0.93337447,1.2037436899999998,1.48775987,1.9918770100000003,2.4888623900000004,2.8579632900000003,3.402022,3.7605286,4.0562445,4.3524009999999995,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,crops,36.487889199999984,34.04439469999999,31.594534,33.222477861,35.1122929349,36.96656061909999,39.157257039299985,45.4792308862,51.753728727100004,57.69016018760001,63.03038392179997,70.15799469589999,76.99838392110003,82.60933883180003,91.46985761009995,98.53538625370001,102.83108919700001,108.2256991315,111.4754459103,113.59137144919998,116.3637317821,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,desert,0.9572251,1.1625311,1.1497829000000002,1.1497829000000002,1.1497829000000002,1.1497829000000002,1.1497829000000002,1.1497829000000002,1.1497829000000002,1.1497829000000002,1.1497829000000002,1.1497829000000002,1.1497829000000002,1.1497829000000002,1.1497829000000002,1.1497829000000002,1.1497829000000002,1.1497829000000002,1.1497829000000002,1.1497829000000002,1.1497829000000002,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,forest (managed),5.958128,6.4131985,6.493207399999999,6.9079116,7.560676000000001,8.168510799999998,8.7828386,9.3800195,9.760371,10.0605575,10.2512062,10.5793357,10.6963572,10.688733999999998,10.2997859,9.742460300000001,9.2320144,8.564331800000001,8.280071600000001,8.256631300000002,8.303800699999998,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,forest (unmanaged),625.97974411,639.99494155,641.11923978,637.5909215500001,634.7870155300001,632.19899089,629.32446095,624.1013311,618.9875852600001,614.555781658,610.5406006820001,605.300283844,600.309986394,596.209163523,590.4003186660001,586.011107411,583.4225460821001,580.7815961741001,579.367997605,578.63173438085,577.9986797449301,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,grass,60.3382535,68.34269160000001,67.78753389999999,67.3401823,66.98104289999999,66.65377059999999,66.2981469,65.6870086,65.1036028,64.6070334,64.16582329,63.61333063,63.09891289,62.684503750000005,62.117618480000004,61.705984182,61.473855826000005,61.251255301,61.1415795013,61.089448419700005,61.0498800722,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,otherarable,12.8886878,1.9303289000000001,1.7743801000000001,1.716787547,1.6768067,1.637364,1.59199741,1.52624756,1.44447926,1.36293177,1.2772402400000002,1.15202308,1.015046197,0.887916752,0.6853884819999999,0.506369878,0.38631290800000007,0.248603796,0.16449187,0.1166660725,0.073258598,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,pasture (grazed),26.874146999999997,32.067199,36.569312,41.94487900000001,44.882470000000005,47.37466,49.941987999999995,52.074802000000005,54.198019,55.377879,56.515142,57.553714,58.578289,59.402044,59.708228999999996,59.545549,59.322211,57.923872100000004,56.5967493,55.213415,52.93041839999999,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,pasture (other),364.99030300000004,348.90735800000004,346.26482300000004,342.95848900000004,340.69713499999995,338.70678100000003,336.600887,333.4532479,330.44122480000004,327.9787901,325.77783700000003,323.05368860000004,320.5352085,318.5407088,315.93855120999996,314.14952786,313.20070022,312.36937575999997,311.99934871,311.840018415,311.73049012099995,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,shrubs,11.2686024,12.0400171,12.0689448,11.990409999999999,11.927152499999998,11.869392099999999,11.8064608,11.69798411,11.59428261,11.505841279999999,11.427154,11.3281966,11.23605841,11.16182937,11.06029686,10.986618181,10.945105211,10.905311788999999,10.885725018999999,10.8764215937,10.8693658336,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,tundra,1.9900248,2.3214209,2.2959842999999998,2.2959842999999998,2.2959842999999998,2.2959842999999998,2.2959842999999998,2.2959842999999998,2.2959842999999998,2.2959842999999998,2.2959842999999998,2.2959842999999998,2.2959842999999998,2.2959842999999998,2.2959842999999998,2.2959842999999998,2.2959842999999998,2.2959842999999998,2.2959842999999998,2.2959842999999998,2.2959842999999998,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,urban,1.3115078000000002,1.8200973,1.9257994999999999,1.9257994999999999,1.9257994999999999,1.9257994999999999,1.9257994999999999,1.9257994999999999,1.9257994999999999,1.9257994999999999,1.9257994999999999,1.9257994999999999,1.9257994999999999,1.9257994999999999,1.9257994999999999,1.9257994999999999,1.9257994999999999,1.9257994999999999,1.9257994999999999,1.9257994999999999,1.9257994999999999,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,biomass,0.0,0.0,0.0,0.0,93.173464,150.221741,206.80714399999997,261.677471,299.89860000000004,333.46909,362.51126,388.74003999999996,409.35551999999996,426.28371,446.49361999999996,461.28673,470.48623000000003,481.21945999999997,488.1249604,493.19593499999996,497.564177,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,crops,407.82482459999994,340.0246171999999,338.3790895,337.9542790779999,291.272367756,259.931209031,228.52914133999997,197.88362847810004,175.9840291692,155.42782901639995,137.2152906981,121.56841291789996,108.77936468570005,97.79285878290003,84.40544046739998,74.14918401729997,67.56550182819996,59.6461796542,55.603109196100014,52.52023052739998,49.431371287,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,desert,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,forest (managed),82.67825880000001,120.26983399999999,120.6186457,127.78470999999999,104.21143000000002,91.95250600000001,78.85656,66.310211,57.65143999999999,50.267195,43.730318000000004,37.501250999999996,32.741833,28.907929,24.355631999999996,21.207359599999997,19.310712199999998,17.179762099999998,14.6792866,12.880150099999998,11.7392078,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,forest (unmanaged),337.6808546,352.72460420000004,371.098916,368.90967609999996,358.8046437,353.3483624,348.62572049999994,344.36285039999996,341.71559049999996,339.8349474,338.44643399999995,337.1141328,336.21167983,335.60722950999997,334.97587458,334.59974916,334.40715978,334.22494120999994,334.11943249599994,334.06798440299997,334.03269305199996,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,grass,26.10908356,34.545014110000004,38.52768167,38.20022709,37.44220235,36.98102899,36.553802329999996,36.08269276,35.756917689999995,35.51970137,35.33689746,35.133318267,34.988808987,34.894930787999996,34.795177987,34.739484528999995,34.713655888999995,34.692411661099996,34.6836558352,34.6798408961,34.6772631024,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,otherarable,46.1930062,56.90403799999999,44.745239,41.587557000000004,32.726045,27.071015,21.813577000000002,16.529056,12.939472000000002,10.230637000000002,8.122392000000001,5.943811999999999,4.375667999999999,3.2724236999999996,2.0638569,1.3052706000000003,0.9039626000000001,0.5152101,0.3115003,0.19907306,0.11360664,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,pasture (grazed),25.035065000000003,0.7659245000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,pasture (other),127.90789899999999,147.545815,138.963372,137.9202398,134.7613299,132.91285449999998,131.26238529999998,129.64261489999998,128.5742444,127.79426990000002,127.20112200000001,126.5858479,126.15106290000001,125.85622430000001,125.53842650000001,125.3478972,125.25182078,125.16405234000001,125.12138630000001,125.10060297500002,125.08524116900001,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,shrubs,3.1767220000000003,3.061644,3.1104322,3.0867041,3.0522982,3.0253141,2.9958074,2.9549956,2.9236002,2.8996605,2.8802288000000003,2.8568424,2.83950119,2.82798678,2.81531078,2.80805097,2.80462743,2.801776545,2.800587401,2.800066524,2.7997128522,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,tundra,0.0677652,0.279852,0.30344,0.30344,0.30344,0.30344,0.30344,0.30344,0.30344,0.30344,0.30344,0.30344,0.30344,0.30344,0.30344,0.30344,0.30344,0.30344,0.30344,0.30344,0.30344,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,urban,13.862011500000001,14.414957500000002,14.788969000000002,14.788969000000002,14.788969000000002,14.788969000000002,14.788969000000002,14.788969000000002,14.788969000000002,14.788969000000002,14.788969000000002,14.788969000000002,14.788969000000002,14.788969000000002,14.788969000000002,14.788969000000002,14.788969000000002,14.788969000000002,14.788969000000002,14.788969000000002,14.788969000000002,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,biomass,0.0,0.0,0.0,0.0,3.9182122468,5.678418076,7.154552464,17.664572155,50.034914544,90.19253002,132.75940935,195.13583966000002,252.7535916,301.47711760000004,379.04720519999995,447.73091049999994,496.0136534,556.7640703,600.3740705999999,638.4056601,678.3411762000001,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,crops,754.0405528000003,711.6049984000001,697.8103677,681.288072171,664.0009286390001,647.3729863773003,633.1327367175004,623.7397890316001,604.6177932788,577.4680873964998,549.9816539965004,525.4818582971002,502.3148168418,481.7344727995999,449.35894574659994,418.66930462499994,395.8005434714,365.79297016719954,348.96238770390005,335.22662813959994,319.0630614190002,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,desert,0.5890224000000001,0.8958975,0.8945633,0.8945633,0.8945633,0.8945633,0.8945633,0.8945633,0.8945633,0.8945633,0.8945633,0.8945633,0.8945633,0.8945633,0.8945633,0.8945633,0.8945633,0.8945633,0.8945633,0.8945633,0.8945633,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,forest (managed),352.138507,404.510174,384.572644,412.671624,442.10330700000003,470.34964500000007,497.40278,519.805143,529.321402,535.3478540000001,536.493888,521.4766670000001,504.92861600000003,489.718935,460.4887539999999,433.345479,413.923414,389.156473,365.653387,343.09205599999996,320.686819,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,forest (unmanaged),923.6872555,904.7491534,927.2741533,922.9327255,917.0613615000001,912.1650625000001,906.9154281,898.2949872,890.1624450999999,883.3600766999999,877.4247601000001,868.6262401,861.4325824000001,856.0538829000001,849.1918264000002,844.3482500000001,841.5908566000002,838.7524800000002,837.1071111000002,836.2074783200002,835.4915411600001,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,grass,95.3531161,107.83519930000001,110.1372062,109.4910424,108.5604853,107.80796099999999,107.00533689999999,105.65103889999999,104.398108,103.41512134,102.62732727,101.58995472999999,100.85047039999999,100.36224813999999,99.82311446,99.50868417,99.35900987,99.23263549299999,99.17788026199999,99.153967031,99.1379049581,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,otherarable,71.80497829999999,76.14973469999998,68.50679219999999,65.19051786,60.6378907,56.79383088,52.73828359,46.24753431,39.70958761999999,34.054470620000004,29.207418569999998,22.574440429999996,17.41837387,13.70704303,9.11616996,5.96869127,4.21331344,2.4470654,1.4887866500000004,0.9817227790000002,0.574809087,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,pasture (grazed),78.79799429999998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,pasture (other),461.61642853,497.8417201600001,496.15733174,493.75237495,490.33140212,487.4899139099999,484.4186938099999,479.26274298,474.36685402999996,470.32995754999996,466.90089915,462.03494728,458.24565477,455.5374873999999,452.25290387999996,450.09104735999995,448.9397629,447.84214677399996,447.28423882999994,447.006388227,446.79638944,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,shrubs,134.09922989999998,146.58000979999997,156.48335759999998,155.614725,154.32846,153.28423899999999,152.17394889,150.27541076,148.3311527,146.77394058,145.54713859,144.02264467999998,142.99826556,142.35132499,141.66337073,141.278382867,141.100631171,140.954763239,140.89414047699998,140.8680878173,140.8506800281,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,tundra,17.4540447,19.686097099999998,19.5972527,19.5972527,19.5972527,19.5972527,19.5972527,19.5972527,19.5972527,19.5972527,19.5972527,19.5972527,19.5972527,19.5972527,19.5972527,19.5972527,19.5972527,19.5972527,19.5972527,19.5972527,19.5972527,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,urban,61.6333256,81.3623267,89.7796705,89.7796705,89.7796705,89.7796705,89.7796705,89.7796705,89.7796705,89.7796705,89.7796705,89.7796705,89.7796705,89.7796705,89.7796705,89.7796705,89.7796705,89.7796705,89.7796705,89.7796705,89.7796705,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,biomass,0.0,0.0,0.0,0.0,0.997243004,1.9543850600000001,3.34160364,5.1536368999999995,6.7503606,8.59500791,10.77029436,13.758769899999999,17.468972200000003,21.3016416,28.1108912,34.9557541,40.5529569,48.8734995,53.989231600000004,57.999565,62.0692448,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,crops,330.2520814,281.4783337,312.00996549999996,308.91930690000004,309.082874341,308.065600631,307.37572549799995,312.11394720199996,316.428847726,318.6971953076,319.91660115199994,325.2052441841,328.9859249042,331.19005210750004,333.1147965617,333.1208175392998,331.96361861160005,328.77696292499996,326.90277729129997,324.2563630981998,320.5595142107001,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,desert,0.0216445,0.0226744,0.0226999,0.0226999,0.0226999,0.0226999,0.0226999,0.0226999,0.0226999,0.0226999,0.0226999,0.0226999,0.0226999,0.0226999,0.0226999,0.0226999,0.0226999,0.0226999,0.0226999,0.0226999,0.0226999,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,forest (managed),17.241629800000002,25.4565372,27.670668300000003,31.6700751,35.8976478,40.344667099999995,45.0530163,49.7148667,53.8123002,58.036854999999996,62.059238,66.129775,69.86018199999998,73.04595599999999,77.10970699999999,80.393765,82.348028,84.36393799999999,85.45072499999999,86.530144,88.454925,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,forest (unmanaged),165.2913732,182.836949,180.9200854,181.2207621,180.9944141,180.87921219999998,180.5994703,179.3566967,178.1548494,177.1718717,176.2711525,174.5394636,172.9064849,171.51780399999998,169.4678755,167.74820997,166.61746276,165.29015406,164.44141923,163.95546671,163.52743384,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,grass,58.660880000000006,70.01935,70.65567,70.65475,70.33857,70.09718000000001,69.77084,68.99262,68.31434,67.802019,67.364761,66.592017,65.941579,65.448694,64.81622700000001,64.372393,64.12244000000001,63.8752373,63.7465041,63.6844566,63.63828996,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,otherarable,127.660099,124.61861,94.6433,93.44484000000001,89.45655000000001,86.19472300000001,82.206241,74.403652,67.458335,61.680912000000006,56.501178,48.034949,40.29995,33.945795,25.040357999999998,17.979963,13.532035,8.5273676,5.500260900000001,3.7972968999999996,2.32324608,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,pasture (grazed),45.162954000000006,15.2627981,14.0388804,14.1201554,13.7083232,13.2678042,12.91469,12.6213335,12.4103207,12.093773200000001,11.8536707,11.6132238,11.391235,11.156379,10.9229961,10.6862726,10.4854958,10.2556821,10.0926687,9.970340400000001,9.6675329,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,pasture (other),57.7453619,101.5135233,101.4065467,101.3138273,100.8755003,100.55300489999999,100.1035095,99.03052,98.0773528,97.34347149999999,96.6967418,95.5828099,94.6213439,93.88367722000001,92.92520187,92.26397979000001,91.90619554,91.57249723999999,91.415726237,91.34750742899999,91.30247569470001,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,shrubs,1.5294891,1.9702079000000001,1.9870712,1.9886854,1.98118782,1.97560289,1.96730186,1.94491699,1.92538075,1.91101904,1.89877613,1.87585243,1.8567455,1.8423812099999999,1.82402795,1.81120817,1.803988379,1.796808041,1.793018174,1.791186172,1.7898173227,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,tundra,3.50852,4.31489,4.30026,4.30026,4.30026,4.30026,4.30026,4.30026,4.30026,4.30026,4.30026,4.30026,4.30026,4.30026,4.30026,4.30026,4.30026,4.30026,4.30026,4.30026,4.30026,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,urban,8.057978,7.6380623,7.4774414,7.4774414,7.4774414,7.4774414,7.4774414,7.4774414,7.4774414,7.4774414,7.4774414,7.4774414,7.4774414,7.4774414,7.4774414,7.4774414,7.4774414,7.4774414,7.4774414,7.4774414,7.4774414,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,biomass,0.0,0.0,0.0,0.0,19.406700299999997,34.523923399999994,53.21408999999999,77.244732,98.928933,122.519619,143.91674300000003,172.069938,197.956603,218.53567999999999,246.858505,269.83172099999996,284.777601,302.340211,312.95861299999996,320.7514429000001,327.4428611000001,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,crops,269.0475446000001,258.82951000000014,240.34428639999996,248.0060907243,244.51680763500008,241.4049952903,235.59280916490007,226.06248990600005,216.5708408413,204.09939493870004,192.1800471248001,177.1024153575,162.28980245719998,149.86992790420007,132.2473510848,117.11948524930007,106.94945613480002,94.62485816810002,87.61640744300003,82.14347283630003,77.24114071060002,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,desert,0.406495,0.405475,0.405629,0.405629,0.405629,0.405629,0.405629,0.405629,0.405629,0.405629,0.405629,0.405629,0.405629,0.405629,0.405629,0.405629,0.405629,0.405629,0.405629,0.405629,0.405629,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,forest (managed),27.160443700000005,31.5751836,37.933150000000005,39.904301999999994,40.14060799999999,40.598662,40.357073,39.94754500000001,39.186518,37.985347,36.652822,33.90889799999999,31.086665999999997,28.802617999999995,25.193799999999996,22.220406000000004,20.217030000000005,17.812435,15.933960000000003,14.651129999999998,13.838074699999998,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,forest (unmanaged),210.93220180000003,210.9820656,225.57296739999998,224.09308579999998,221.4908521,219.5365097,217.49406040000002,215.09502980000002,213.16665790000002,211.5541308,210.2367389,208.4773787,207.0945191,206.1320083,204.9887349,204.25249646999998,203.86179539,203.48845877000002,203.28927988,203.18928,203.115174417,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,grass,168.18744419000004,157.36175110000002,167.0268785,165.1996757,162.5735984,160.6636565,158.8569073,157.0058077,155.61057591,154.49497218,153.64540009,152.62496136,151.89623579,151.43017398,150.93607949,150.656518464,150.527978415,150.420542257,150.3694661639,150.3484978233,150.3357706674,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,otherarable,78.43383599999999,76.64150949999997,67.9130088,63.14695590000001,55.96519669999999,50.29930869999999,44.50456369999999,37.83425929999999,32.343642700000004,27.6139574,23.719857900000004,18.4513464,14.166731200000001,11.082394399999998,7.299402500000001,4.73097,3.3207895,1.9165942000000002,1.1511775999999998,0.7493499500000002,0.43657065,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,pasture (grazed),15.3703068,15.298428600000001,15.6492309,16.721459,16.5229103,16.19465,15.7135912,15.243860500000002,14.676712899999997,13.8354856,12.992119899999999,12.2769189,11.541993000000002,10.8892536,9.957641400000002,9.0695646,8.4024598,7.5935923999999995,6.9362216,6.4459152,5.885938899999998,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,pasture (other),164.7712053,179.32958749999997,170.74809129999994,168.81661499999993,166.32097449999995,164.48183439999994,162.70549719999994,160.77753089999993,159.30985649999994,158.15454559999995,157.26480849999993,156.12520315999996,155.30951089999994,154.79218903999995,154.25383480999994,153.96579982999995,153.84128077899993,153.74459499499994,153.70567546899994,153.69035833199993,153.68113344399995,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,shrubs,61.5691234,63.66110559999999,67.9653945,67.26475150000002,66.2154854,65.44982200000001,64.71466290000001,63.941893300000004,63.3594001,62.895629099999994,62.5446004,62.116022099999995,61.8110271,61.6188584,61.41771027,61.3062175,61.25504385,61.21230753,61.192371581,61.183392037,61.176962885,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,tundra,1.6765111,1.5347971,1.5519034,1.5519034,1.5519034,1.5519034,1.5519034,1.5519034,1.5519034,1.5519034,1.5519034,1.5519034,1.5519034,1.5519034,1.5519034,1.5519034,1.5519034,1.5519034,1.5519034,1.5519034,1.5519034,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,urban,5.966297400000001,7.9022262,8.4108611,8.4108611,8.4108611,8.4108611,8.4108611,8.4108611,8.4108611,8.4108611,8.4108611,8.4108611,8.4108611,8.4108611,8.4108611,8.4108611,8.4108611,8.4108611,8.4108611,8.4108611,8.4108611,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,biomass,0.0,0.0,0.0,0.0,0.908001,1.60453,2.44527,3.34525,4.0898,4.83152,5.55584,6.42608,7.16316,7.74934,8.48944,9.04046,9.3897,9.78932,10.9410682,12.9251023,15.753569,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,crops,7.697682499999999,6.8197032,6.536176499999999,6.443321890000002,5.96388877,5.613552189999997,5.247547939999999,4.955115289999998,4.654690988999999,4.321218323,3.994113903000001,3.7128595760000005,3.462076501000001,3.249876689,2.988701809,2.7793493419999997,2.632341147,2.457080693,2.578119462,2.686262719,2.703290535,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,desert,19.213670699999998,19.3797739,20.120334700000004,20.120334700000004,20.120334700000004,20.120334700000004,20.120334700000004,20.120334700000004,20.120334700000004,20.120334700000004,20.120334700000004,20.120334700000004,20.120334700000004,20.120334700000004,20.120334700000004,20.120334700000004,20.120334700000004,20.120334700000004,20.120334700000004,20.120334700000004,20.120334700000004,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,forest (managed),30.98463,28.262410000000003,28.51878,30.422810000000002,32.36607,34.09368,35.73677,37.8252,39.68573,41.35532,42.79399,44.46343,45.971909999999994,47.20824,48.944884,50.378619,51.316882,52.400063,51.961596,50.394315,48.207103999999994,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,forest (unmanaged),214.6325,219.071472,221.46170899999998,220.299797,218.76874399999997,217.43282499999998,216.057773,214.251463,212.74021699999997,211.454771,210.325199,208.66773799999999,207.19239499999998,205.985518,204.3210523,202.977347,202.12011289999998,201.1317237,200.48065436999997,200.09528391999999,199.76814887,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,grass,9.020421220000001,9.15225989,9.297554439999999,9.22185615,9.134592869999999,9.06044069,8.98800714,8.89630472,8.822200114000001,8.762002228,8.711458799999999,8.641104783,8.582302511,8.537298516,8.4805625862,8.4400579448,8.4172051386,8.3943824186,8.38225705735,8.37630753365,8.3719567901,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,otherarable,2.8568350000000002,4.9248999,5.9097859999999995,5.511634,5.003622999999999,4.569548,4.133109,3.5872139999999995,3.1353239999999998,2.753514,2.425111,1.9840010000000001,1.60965,1.317817,0.9410634,0.6588641,0.4891612,0.3049024,0.22061350000000002,0.16694334,0.10674952,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,pasture (grazed),6.9378251,7.6722156,7.169917000000001,7.132010000000001,7.081710399999999,7.0086806,6.9295642,6.8659328,6.739558500000001,6.496173100000001,6.256915299999999,6.2967946,6.3096083,6.3132802,6.2758713,6.217969399999999,6.1533429,6.0648379,5.9889301999999995,5.9139406999999995,5.6504005,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,pasture (other),27.580084489999997,22.680128360000005,16.413495010000002,16.278261759999996,16.08576322,15.931428769999998,15.778767489999998,15.593186049999998,15.4543363,15.34925562,15.262731559999999,15.135462589999998,15.03816035,14.96932704,14.89081049,14.840957104,14.815594853999999,14.792803179,14.782119752,14.77743785,14.774452665,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,shrubs,0.20522469000000002,0.25408192,0.28427093,0.28195247,0.27929851,0.27703769,0.27482954,0.27202927,0.26976334,0.26791992,0.26637205,0.26422204,0.26242286,0.26104471,0.259305367,0.258062628,0.257361136,0.25666037,0.256287135,0.256103813,0.2559701507,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,tundra,74.3942594,74.9506544,77.3142334,77.3142334,77.3142334,77.3142334,77.3142334,77.3142334,77.3142334,77.3142334,77.3142334,77.3142334,77.3142334,77.3142334,77.3142334,77.3142334,77.3142334,77.3142334,77.3142334,77.3142334,77.3142334,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,urban,2.0095543,2.3653885999999997,2.5059768,2.5059768,2.5059768,2.5059768,2.5059768,2.5059768,2.5059768,2.5059768,2.5059768,2.5059768,2.5059768,2.5059768,2.5059768,2.5059768,2.5059768,2.5059768,2.5059768,2.5059768,2.5059768,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,biomass,0.0,0.0,0.0,0.0,18.673610000000004,31.7965,46.851910000000004,64.20733999999999,79.23549,95.39006,112.7197,132.6226,151.71009999999998,168.64000000000001,194.13,216.36149999999998,232.3084,251.9765,265.38798253999994,275.21950908,284.18305816,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,crops,1448.1441087999995,1423.1402992999997,1444.2178766999987,1498.8648012044002,1504.2866072924992,1513.8175448717989,1524.7120358042991,1543.6356658014,1542.1822569100002,1534.5708567006996,1524.0613144234999,1514.7233330434988,1504.846004235,1494.3118170956006,1479.7856946170998,1465.9854011619004,1454.8886067519995,1443.0416453493995,1434.124736889701,1422.2894768370993,1407.0273853137012,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,desert,103.0261125,98.23209100000001,94.33241040000001,94.33241040000001,94.33241040000001,94.33241040000001,94.33241040000001,94.33241040000001,94.33241040000001,94.33241040000001,94.33241040000001,94.33241040000001,94.33241040000001,94.33241040000001,94.33241040000001,94.33241040000001,94.33241040000001,94.33241040000001,94.33241040000001,94.33241040000001,94.33241040000001,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,forest (managed),212.8848558,230.9330183,233.7854608,220.00647204,222.89541636,223.44889139999998,220.75561270000003,213.90334769999998,217.91815290000002,223.23096180000002,228.03504120000002,233.9793458,239.15091679999998,244.18665680000004,249.0421049,253.17157930000005,256.2976918,257.88989590000006,259.68656969999995,265.5152913999999,275.6645799,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,forest (unmanaged),461.77270626,456.32227146,488.42580056,480.41029303,475.62656478,471.529608,467.40851649,462.30832726,459.41713543000003,457.21384041000005,455.36866093000003,452.825624155,450.60952409600003,448.867501337,446.437778265,444.53648892900003,443.354142174,441.99037819800003,441.151972498,440.690530194,440.28134338800004,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,grass,198.04532236999998,187.6635233,193.66202462,189.79929615999998,187.3966552,185.445301914,183.607260492,181.460887695,180.227435861,179.320568504,178.597295081,177.659282472,176.89774021,176.337087934,175.630189696,175.140649162,174.8705333467,174.6014011524,174.4614999026,174.39577453600998,174.3469977743,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,otherarable,199.00148589999995,220.85198699999998,200.01238600000002,172.658452,154.58524999999995,138.729456,122.834474,102.70353399999999,90.00540400000001,80.04328699999999,71.625715,60.2227898,50.2712685,42.392850800000005,31.5375204,23.029560799999995,17.717422400000004,11.613470659999999,7.75157734,5.573329209999999,3.6286606700000004,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,pasture (grazed),44.086433000000014,20.273710000000005,13.524020999999998,16.938145999999996,18.428428999999998,19.673815,20.670496999999997,21.513591,22.444691,22.906028999999997,23.276255000000006,22.945945000000002,22.5851618,22.1762718,21.486548599999995,20.70229979999999,20.040806300000003,19.007434900000003,18.0250934,17.164972400000003,15.949766599999998,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,pasture (other),61.5609696,89.7349999,85.13118199999998,83.12676239999999,81.9378832,81.0282821,80.2175532,79.32808849999999,78.8071957,78.4467464,78.16571454999999,77.84272009,77.58382365,77.39543635,77.157377196,76.99010256599999,76.894419523,76.7925298846,76.7283192331,76.6951313796,76.66766060440999,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,shrubs,229.36493731999997,222.276215,194.58954149999997,191.54431318499996,189.518195777,187.87945006299998,186.28961062899998,184.28674660399997,183.10987199299998,182.22696339599997,181.49728510999998,180.52678203399998,179.6936056162,179.04108662839997,178.14154905579997,177.42939766009997,176.97622366649998,176.43391540865997,176.03058499979997,175.80370375875998,175.59842133277,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,tundra,19.679546,21.706934,20.961478,20.961478,20.961478,20.961478,20.961478,20.961478,20.961478,20.961478,20.961478,20.961478,20.961478,20.961478,20.961478,20.961478,20.961478,20.961478,20.961478,20.961478,20.961478,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,urban,13.302846199999998,19.734887699999998,22.227069799999995,22.227069799999995,22.227069799999995,22.227069799999995,22.227069799999995,22.227069799999995,22.227069799999995,22.227069799999995,22.227069799999995,22.227069799999995,22.227069799999995,22.227069799999995,22.227069799999995,22.227069799999995,22.227069799999995,22.227069799999995,22.227069799999995,22.227069799999995,22.227069799999995,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,crops,233.345854,280.8240833,321.65994829999994,328.45402533000004,334.03941245000004,337.32136424,340.58928691999995,346.03262363,351.98582921,356.30954764000006,359.534953,373.79184172,386.79093742000003,397.19789345,411.63690177000007,423.30686103,431.14044556000005,440.58014560000004,444.08478741000005,444.4464277099999,444.5165994300001,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,desert,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,forest (managed),95.94852,71.08344199999999,66.4348,68.484219,72.61872899999999,76.915386,81.24154800000001,86.445432,90.239036,94.265737,98.17965000000001,97.87095,96.91502,95.96809999999999,93.91299,91.77022,89.90377,87.09868,87.45211,89.41169,91.89003000000001,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,forest (unmanaged),1023.72915,1001.93553,952.57613,944.5400840000001,937.9100510000001,932.7877410000001,927.5955940000001,920.3462030000001,913.682538,908.4104870000001,903.957789,895.329066,887.979959,882.3551520000001,875.0526090000001,869.63525,866.3911310000001,862.8928704000001,860.9394379,859.8732232000001,858.9117656000001,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,grass,96.310314,97.25493800000001,93.628014,92.65162,91.80029499999999,91.138134,90.4852586,89.6135183,88.8562311,88.2667385,87.7821594,86.96414569999999,86.30597309999999,85.8288938,85.2547491,84.87134313,84.66555742999999,84.47064591,84.37697901,84.33284572,84.299429951,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,otherarable,12.7076,24.4155,41.6038,38.6723,36.0048,33.8054,31.5643,28.4909,25.7055,23.4049,21.4129,17.9498,14.8752,12.4176,9.08777,6.48942,4.87504,3.07176,2.0091,1.41299,0.87651,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,pasture (grazed),14.926215,15.757932,15.494943,19.963251,21.19581,22.212039,23.29436,24.58835,25.6661,25.913690000000003,26.05182,25.563450000000003,25.03267,24.43178,23.60333,22.69259,21.899079999999998,20.858206,20.150729,19.554427,18.549518000000003,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,pasture (other),96.196721,78.004552,76.566529,75.19855799999999,74.395276,73.784472,73.194329,72.44664,71.82870199999999,71.392737,71.0443622,70.4946628,70.06487229999999,69.76468349999999,69.4160887,69.1981576,69.08880674,68.99246293,68.95042216,68.93242457,68.920108871,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,shrubs,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,tundra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,urban,4.105021000000001,7.99308,9.30522,9.30522,9.30522,9.30522,9.30522,9.30522,9.30522,9.30522,9.30522,9.30522,9.30522,9.30522,9.30522,9.30522,9.30522,9.30522,9.30522,9.30522,9.30522,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,biomass,0.0,0.0,0.0,0.0,4.156279206,7.323584246,11.207523755,16.001566950999997,20.09758142,24.31272462,28.62754024,34.138774409999996,39.058514620000004,43.02991375,48.4751476,52.64907507,55.33652246,58.40369465,59.915851103,60.91074669299999,61.77252148,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,crops,31.257063,30.843581500000003,30.343746899999996,30.48531231,29.641372770000007,28.72034867,27.64131707,26.577620970000005,25.608369139999997,24.3331907,22.93002598,21.86383217,20.73784532,19.67274015,18.139964749999997,16.757962210000002,15.719932709999997,14.489689220000004,13.813632749999998,13.265410900000003,12.705007639999994,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,desert,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,forest (managed),34.742433,19.464526,20.880144,22.326006999999997,22.458131,22.780249,22.691487,22.329279,21.866446000000003,21.161408,20.180643,18.299426999999998,16.489688,14.978353,12.700197000000001,10.938775,9.827278,8.504257,7.922257999999999,7.606966000000001,7.41195,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,forest (unmanaged),229.691361,241.79192,243.41956699999997,242.19619699999998,239.34187500000002,237.250859,235.036986,232.31437,230.18219399999998,228.402865,226.87199099999998,224.855951,223.31919399999998,222.254674,221.0274796,220.27123949999998,219.8838956,219.5201043,219.3442753,219.2542957,219.18206776,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,grass,3.9402157,3.8075343,4.0066124,3.9785331,3.9316929,3.8961609999999998,3.8599728,3.8156711,3.7811153,3.75316891,3.72983166,3.69831813,3.67415341,3.6572371799999996,3.63748193,3.624961839,3.618479915,3.61238534,3.6094141617999997,3.6080071032,3.6069777262,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,otherarable,5.7430375,5.514833,5.236709500000001,4.9621434,4.5382213,4.182421300000001,3.8027762,3.3041199999999997,2.8835663,2.5161493999999998,2.1882810999999998,1.7328701,1.3531931999999998,1.0679923,0.7107333,0.46571380000000007,0.3293777,0.19170557000000002,0.11896765000000001,0.08010065,0.04783898,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,pasture (grazed),0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,pasture (other),2.91783083,2.8227731200000004,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,shrubs,4.8084459,8.2272641,8.4032493,8.3417862,8.2224125,8.1363311,8.0499234,7.94733201,7.87075265,7.8104985199999994,7.761660410000001,7.700844460000001,7.65737599,7.629042740000001,7.598914112000001,7.582175230000001,7.574481598,7.56813726,7.565523412000001,7.564388295500001,7.5636200460000005,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,tundra,0.127287,0.086505,0.0910635,0.0910635,0.0910635,0.0910635,0.0910635,0.0910635,0.0910635,0.0910635,0.0910635,0.0910635,0.0910635,0.0910635,0.0910635,0.0910635,0.0910635,0.0910635,0.0910635,0.0910635,0.0910635,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,urban,10.8265628,11.495371,11.673026499999999,11.673026499999999,11.673026499999999,11.673026499999999,11.673026499999999,11.673026499999999,11.673026499999999,11.673026499999999,11.673026499999999,11.673026499999999,11.673026499999999,11.673026499999999,11.673026499999999,11.673026499999999,11.673026499999999,11.673026499999999,11.673026499999999,11.673026499999999,11.673026499999999,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,biomass,0.0,0.0,0.0,0.0,14.423081943999996,25.767220730000002,39.48891692000001,55.88380222,68.79259583999999,82.12396181999999,95.80831728,112.54751431000001,127.7738911,140.5904294,159.02945390000005,174.04402639999998,183.73175030000004,195.87776399999996,222.74847369999998,238.1223186,251.6330143,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,crops,164.5595333999999,173.2604366000001,166.63966809999997,175.70158357240004,179.59759082069996,182.58509464690007,184.2409573978,184.32607052769998,185.29256324189993,184.3271434876999,181.7132426085,181.11701991119995,180.42747853909998,179.27166933259994,178.1902569537,177.23759719699996,176.6548393208001,176.04666962240006,166.15849700647001,159.5936550662001,154.22655965840997,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,desert,0.840457,0.845318,0.867397,0.867397,0.867397,0.867397,0.867397,0.867397,0.867397,0.867397,0.867397,0.867397,0.867397,0.867397,0.867397,0.867397,0.867397,0.867397,0.867397,0.867397,0.867397,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,forest (managed),34.282953,36.48315490000001,36.0659867,38.0642791,38.2897938,38.6718196,38.539037300000004,39.34479329999999,39.85388170000001,40.2927232,40.429747,40.1197274,39.576930299999994,39.076518899999996,37.82343710000001,36.759497,35.8970624,35.0646259,33.122371730000005,32.48208787,32.487383689999994,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,forest (unmanaged),476.01168699999994,443.2448,449.85353,447.213318,442.18677660000003,438.3735022,434.4960568,430.6040081,427.4190109,424.8571819,422.64225999999996,419.5690121,416.95910304,414.96216927,412.31112529999996,410.35216926,409.15403073,407.84422539499997,406.725744238,406.17093390599996,405.714018825,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,grass,123.24557926,118.95063050000002,131.88827550000002,131.1199848,129.8818087,128.92932290000002,127.9832033,126.9835002,126.15570368,125.51293466999999,124.95937554999999,124.14382124999999,123.42697093,122.85172572199998,122.048183412,121.38640396199999,120.9347635576,120.3802315127,119.6517573254,119.3347417429,119.09528412709999,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,otherarable,87.67835999999998,93.89682600000002,105.180024,99.97518299999999,91.066832,83.78376700000001,76.17042200000002,67.81382599999999,60.748475,54.874318,49.6661885,42.2577088,35.6984631,30.4594926,23.2671526,17.674898599999995,14.13196672,10.12553376,6.870575629999999,5.0600767200000005,3.4667794290000002,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,pasture (grazed),58.25324229999999,62.356904500000006,64.3389674,66.06334439999999,69.4410239,72.15372719999999,74.78280179999999,76.71990629999999,78.6902426,78.83942499999999,79.08998340000001,80.2001187,81.3748611,82.51632132,83.6407658,84.63495741,85.71884019000001,86.02629628000001,82.47971188,79.84663990999998,76.16203292,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,pasture (other),706.4248729000001,727.2780289,675.8648775,672.611622,667.3660155000001,663.1771938,658.953752,654.4209505,650.420047,647.53560159,644.9414398099999,640.73641629,636.8187383800001,633.5077925700001,628.72083549,624.5734212660001,621.6353676790001,618.0538295764001,613.8272753581999,611.9388249343,610.5096599203001,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,shrubs,230.56948677,222.86094125999998,247.56305059000002,246.64525929,245.14148383000003,243.95283738,242.73920344,241.29759518500003,240.02210690600003,239.03111546000002,238.14402581700003,236.70339344700002,235.3379822082,234.15852676130004,232.36345245580003,230.7315547562,229.53585904832002,227.97528592653003,225.81019901282002,224.84521958248703,224.09973442561204,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,tundra,0.07467470000000001,0.054295800000000005,0.0588056,0.0588056,0.0588056,0.0588056,0.0588056,0.0588056,0.0588056,0.0588056,0.0588056,0.0588056,0.0588056,0.0588056,0.0588056,0.0588056,0.0588056,0.0588056,0.0588056,0.0588056,0.0588056,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,urban,8.199843300000001,10.9096548,11.819978,11.819978,11.819978,11.819978,11.819978,11.819978,11.819978,11.819978,11.819978,11.819978,11.819978,11.819978,11.819978,11.819978,11.819978,11.819978,11.819978,11.819978,11.819978,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,biomass,0.0,0.0,0.0,0.0,12.540554063699998,23.418794945200002,37.711361317999994,55.175631749000004,71.420760731,89.188874582,106.480445467,127.134015072,145.83724180999997,161.13580778,182.50124023,199.21535651000002,210.00675601999998,222.49316255,280.55902719,311.55021215,339.03703280999997,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,crops,217.5516435,230.64186290000004,232.34953919999998,238.92013253900004,240.47445983600005,241.33217252000003,240.39321687999993,246.966653917,251.53820775399996,252.03930117299998,250.91238908800003,248.30081278000011,246.02723114,244.55546677,244.46186846999996,247.36207013,251.25211255,260.21380831,241.71682777,231.04272128999997,221.68867809,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,desert,2062.6683949999997,2073.046055,2061.9284620000003,2061.9284620000003,2061.9284620000003,2061.9284620000003,2061.9284620000003,2061.9284620000003,2061.9284620000003,2061.9284620000003,2061.9284620000003,2061.9284620000003,2061.9284620000003,2061.9284620000003,2061.9284620000003,2061.9284620000003,2061.9284620000003,2061.9284620000003,2061.9284620000003,2061.9284620000003,2061.9284620000003,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,forest (managed),2.2635525999999997,2.2011079999999996,2.2978520000000002,2.522259,2.677985,2.824198,2.9262960000000002,2.92127,2.872362,2.7821100000000003,2.663571,2.612528,2.558088,2.516563,2.452033,2.435071,2.451791,2.512463,2.31777,2.2202290000000002,2.15601,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,forest (unmanaged),12.765838779999997,7.179202,7.060933,7.054131,7.014576999999999,6.981674,6.9401150000000005,6.865171,6.8017381,6.747206800000001,6.7005683000000005,6.654632299999999,6.6169115000000005,6.5887172,6.5517576,6.5240496,6.50619799,6.4829279,6.44871579,6.429032339999999,6.41051824,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,grass,106.3505165,131.6087586,127.1388651,126.50780580000001,125.24841200000002,124.23593570000001,123.1358436,121.42614180000001,120.1254894,119.099371,118.28710210000001,117.5051979,116.90756012000001,116.48810565000001,115.98389086,115.63910702000001,115.43456848000001,115.193603536,114.935567636,114.797231378,114.67610678160001,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,otherarable,84.11632900000001,90.6610293,109.67993179999999,107.08113039999999,101.4937957,96.7421535,91.2826098,82.72163259999999,75.2328483,68.6333078,62.8585075,56.3362957,50.70298666,46.24552213999999,40.05649592,34.97467346,31.469319819999996,26.70723665,20.1708905,16.22839519,12.366496587,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,pasture (grazed),13.736221299999999,15.218291,15.533910500000001,18.076828602999996,19.809738234999998,21.273866465,22.603116471000003,23.79691862,24.996263760000005,25.63611429,26.235126080000004,26.99741858,27.73843131,28.420634999999997,29.20971865,30.017716480000004,30.755513380000004,31.7085587,29.742489139999996,28.67550802,27.426697789999995,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,pasture (other),1937.2879682200003,1823.9001847,1866.67055061,1862.59559031,1857.11496797,1852.50947352,1847.5358378199999,1838.28170219,1829.84724981,1822.58943798,1815.90072773,1808.10507856,1800.4801621,1793.59879645,1782.38884559,1771.14524863,1762.184392646,1748.6524157039998,1723.742299795,1711.545183799,1701.1836276072,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,shrubs,686.8700216,743.4627058,693.0266488,691.0004793999999,687.3837649,684.4400373,681.2298639999999,675.6030959,670.9233165999999,667.0425702,663.7200832,660.1120702000001,656.8895353,654.2081820999999,650.1525718,646.44482064,643.69726425,639.79370758,634.12492838,631.269994002,628.812856171,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,tundra,0.102718,0.101694,0.100393,0.100393,0.100393,0.100393,0.100393,0.100393,0.100393,0.100393,0.100393,0.100393,0.100393,0.100393,0.100393,0.100393,0.100393,0.100393,0.100393,0.100393,0.100393,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,urban,10.4070964,16.1089724,18.3409002,18.3409002,18.3409002,18.3409002,18.3409002,18.3409002,18.3409002,18.3409002,18.3409002,18.3409002,18.3409002,18.3409002,18.3409002,18.3409002,18.3409002,18.3409002,18.3409002,18.3409002,18.3409002,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,biomass,0.0,0.0,0.0,0.0,7.215380999999999,11.982109999999999,17.23461,21.80199,25.29468,28.84123,33.33463,38.259519999999995,42.733410000000006,46.58709,52.68090000000001,57.71866,61.14595,65.34434,92.79730650800002,107.665201956,120.82201390999998,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,crops,176.74457609999988,187.81036250000005,183.89767710000007,170.24354714240013,162.31957512039997,156.58873847240002,150.94272736519994,148.77595167719997,147.10925103960005,145.7253633091,143.7018132517,142.29336389240012,141.30566375679996,140.5862080466,140.11295677329989,140.4866469012,141.1356948593,142.96841907950002,126.23960693930003,117.61994744540002,110.6193849774,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,desert,261.78839700000003,264.198175,265.366191,265.366191,265.366191,265.366191,265.366191,265.366191,265.366191,265.366191,265.366191,265.366191,265.366191,265.366191,265.366191,265.366191,265.366191,265.366191,265.366191,265.366191,265.366191,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,forest (managed),3.6598013,2.9409422,3.2159133,2.5785045,2.1687030000000003,1.8694739,1.5815787,1.2955063999999998,1.08764427,0.92567242,0.76392214,0.68665195,0.61951168,0.56608062,0.4834913599999999,0.4217173,0.38272527,0.340635483,0.311917518,0.298191262,0.292566275,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,forest (unmanaged),0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,grass,16.2878959,13.2389087,13.303256,12.821765,12.5743421,12.4227384,12.3084159,12.205915800000001,12.142773550000001,12.10198667,12.0718508,12.049511168,12.032775072000002,12.021073580000001,12.007022269,11.9974420546,11.9919319959,11.9859858907,11.98096697475,11.978599334450001,11.97669245806,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,otherarable,33.2599576,32.361857,28.694345200000004,23.6055938,20.8504414,18.7466539,16.89770159999999,14.701675800000002,13.0112063,11.7122694,10.607608199999998,9.620161300000001,8.719324599999998,7.9652147,6.83852054,5.821341439999999,5.087188620000001,4.09498382,2.8359429599999997,2.177349208,1.5929059650000001,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,pasture (grazed),33.51016,43.19952000000001,43.15954000000001,68.49212000000001,75.29863,80.87789999999998,85.30726,87.77784,89.65602,90.31196999999997,90.22574,88.77051,87.15266000000001,85.56839000000001,82.24427200000001,78.861381,76.214852,72.057826,63.598641,58.45629799999999,53.226637,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,pasture (other),17.692750900000004,7.623454000000001,7.6163872,7.2836128,7.185384860000001,7.122677470000001,7.07528218,7.02782431,6.9950255210000005,6.972289323,6.954495681000001,6.940000194000001,6.927527847,6.9176533897,6.904016713900001,6.892767087000001,6.885320639770001,6.876282400300001,6.86716349988,6.863076302850001,6.859916810667,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,shrubs,265.591626,255.703591,260.938375,255.80024000000003,253.21286340000006,251.21514070000006,249.47788200000002,247.2386614,245.52872940000003,244.23452347000006,243.16531828,242.20575665,241.33444148,240.61367961000002,239.55410061600003,238.62537539400006,237.98169205600004,237.15699821050003,236.19391815020003,235.76685655230006,235.43515537978004,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,tundra,26.807032,26.787769,26.894301,26.894301,26.894301,26.894301,26.894301,26.894301,26.894301,26.894301,26.894301,26.894301,26.894301,26.894301,26.894301,26.894301,26.894301,26.894301,26.894301,26.894301,26.894301,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,urban,2.4690608,3.9465445000000003,4.7256990000000005,4.7256990000000005,4.7256990000000005,4.7256990000000005,4.7256990000000005,4.7256990000000005,4.7256990000000005,4.7256990000000005,4.7256990000000005,4.7256990000000005,4.7256990000000005,4.7256990000000005,4.7256990000000005,4.7256990000000005,4.7256990000000005,4.7256990000000005,4.7256990000000005,4.7256990000000005,4.7256990000000005,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,biomass,0.0,0.0,0.0,0.0,4.133594529999999,7.959877959999999,13.440160099999998,21.7695815,30.814306900000002,42.00084090000001,55.7442007,77.37362460000001,102.970091,130.1303506,180.788408,235.67788899999996,280.548686,343.651924,449.54233099999993,591.2074979999999,771.41793,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,crops,365.0616374,313.33526259999996,307.60092610000004,305.859565727,314.71256311799993,319.736008364,326.2903759549999,349.55865379299996,372.1765964060002,390.0835530470001,405.72101095500005,438.00552162299977,468.62116635799987,494.08235641899995,530.8401440900002,557.7030273459999,570.8611853099999,580.588031689,595.498562642,599.0983366760001,590.324920674,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,desert,68.362198,68.359746,68.370948,68.370948,68.370948,68.370948,68.370948,68.370948,68.370948,68.370948,68.370948,68.370948,68.370948,68.370948,68.370948,68.370948,68.370948,68.370948,68.370948,68.370948,68.370948,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,forest (managed),668.6554015,381.12867579999994,358.9730025,396.34928644,441.70287928999994,486.01133206,534.07677614,600.87206727,664.41191241,725.50219093,783.56812901,871.81289852,961.25290235,1043.3945490100002,1170.94770974,1289.2220994599998,1372.85024793,1477.4475051,1483.0040981099999,1416.01978035,1315.15484068,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,forest (unmanaged),9836.294819109999,10224.31286656,10254.270374329999,10235.31552785,10207.113530910001,10181.2960408,10152.343163489999,10105.534281459999,10060.13747939,10017.2648211,9975.849403819999,9909.32732022,9841.02255641,9777.70630851,9676.147454060001,9580.3679683,9511.54017862,9423.53079551,9356.577482620001,9314.15666811,9278.16578338,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,grass,1284.8810488699999,1253.3117555000001,1265.29293648,1261.75548238,1256.67883589,1252.0839251700002,1247.0427077200002,1239.19041047,1231.8078201,1225.03883954,1218.67769873,1208.79294223,1199.12653821,1190.60736815,1177.8690040840002,1166.9851132850001,1159.903286983,1151.859601177,1146.604184167,1143.7686528382,1141.5883997251,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,otherarable,996.4603549999999,891.6387549999998,879.645104,867.396423,845.549541,825.9919689999999,803.213093,764.4769090000001,726.539838,690.7017129999999,655.192828,596.456786,535.7438430000001,479.2539240000001,388.221979,303.39652900000004,243.28238899999997,168.27520900000002,118.38666210000001,87.67228539999999,58.478396499999995,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,pasture (grazed),84.0822503,40.4303963,45.7579786,46.101360799999995,45.090074,43.668138,42.590807299999994,42.0399324,42.0322001,41.34248800000001,41.2947484,41.085528,41.08157359999999,40.9662631,41.33598140000001,41.6495459,41.94589349999999,42.447390600000006,42.85797649999999,43.0659077,41.840284999999994,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,pasture (other),740.8249435,878.1530591999999,870.5946143,869.3800755,867.2134592,865.4790681,863.2645306,858.8835269,854.4662413,850.5061358,846.4442551,839.7238842,832.844955,826.5994037,816.7141901,807.9786414,802.1373161,795.385909,790.84394436,788.4043922,786.4974430789999,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,shrubs,15.20862416,14.988546670000002,15.189228100000001,15.16616925,15.12907984,15.09713725,15.061213389999999,14.99759491,14.937008549999998,14.882622229999999,14.831094100000001,14.745552759999999,14.659934799999998,14.58237204,14.458506100000001,14.341583721,14.255411501999998,14.137219939000001,14.009191233,13.929732779000002,13.854279250600001,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,tundra,1980.7455579999998,1975.754593,1976.151057,1976.151057,1976.151057,1976.151057,1976.151057,1976.151057,1976.151057,1976.151057,1976.151057,1976.151057,1976.151057,1976.151057,1976.151057,1976.151057,1976.151057,1976.151057,1976.151057,1976.151057,1976.151057,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,urban,18.8532477,18.033142899999998,17.5826521,17.5826521,17.5826521,17.5826521,17.5826521,17.5826521,17.5826521,17.5826521,17.5826521,17.5826521,17.5826521,17.5826521,17.5826521,17.5826521,17.5826521,17.5826521,17.5826521,17.5826521,17.5826521,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,biomass,0.0,0.0,0.0,0.0,2.892442028,5.320188549000001,8.55186281,12.8444149,17.02428674,21.83437906,27.21678366,35.21100073,43.45614671,51.00700091,63.03068495000001,73.7019976,81.0112824,90.3960361,100.26626420000001,107.34210080000001,114.58418970000001,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,crops,80.3696072,58.34360340000001,54.906734,59.66903808299999,61.659307737,62.99371554299998,64.42296665699999,66.16602216,68.06817857499998,68.87957862399999,68.90234313200001,70.435315312,71.66979748100002,72.271889261,73.09565864199999,73.565939562,74.30254622700004,75.37172169999998,75.99580758799996,76.642827531,77.95642460400002,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,desert,2.5908718,2.8418037,2.8594641,2.8594641,2.8594641,2.8594641,2.8594641,2.8594641,2.8594641,2.8594641,2.8594641,2.8594641,2.8594641,2.8594641,2.8594641,2.8594641,2.8594641,2.8594641,2.8594641,2.8594641,2.8594641,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,forest (managed),16.722621999999998,19.9042649,18.0388199,19.560412799999998,21.3712559,23.121553000000002,24.8785588,27.589861000000003,29.956519999999998,32.138048000000005,34.062202,35.890336999999995,37.230491,38.167676,38.874947,39.161789,39.085223,38.780687,38.96096,39.116487,39.483141999999994,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,forest (unmanaged),21.66027175,18.27946679,22.12091282,22.04227914,21.94328628,21.85787036,21.76087209,21.64414205,21.52695336,21.4190893,21.31562631,21.126855589999998,20.94477504,20.79116558,20.57029154,20.39414377,20.28321098,20.15895503,20.08145043,20.036376742,19.995632658,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,grass,176.21141000000003,147.209339,169.585141,168.697803,167.65837199999999,166.852301,165.991423,164.827866,163.803097,162.942776,162.1849917,160.91642190000002,159.8007715,158.9212953,157.7366239,156.83662,156.2783737,155.60490896000002,154.93678233,154.50897198,154.06275666,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,otherarable,59.3389068,96.0263,72.72511,70.23419000000001,67.08435,64.493351,61.751822,57.968655999999996,54.535186,51.516175,48.743362,43.951926,39.420426,35.581067,29.998268999999997,25.383912999999996,22.379787000000004,18.721074700000003,15.6063707,13.5002025,11.182312,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,pasture (grazed),45.109140000000004,53.432532,56.503975999999994,55.906082999999995,56.770453999999994,57.204807,56.920481,56.93167599999999,56.190495,54.83870099999999,53.280912,53.003057,52.519636,52.165138000000006,51.2823779,50.5062531,49.5999522,48.685971699999996,47.228757,45.569450700000004,43.558272300000006,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,pasture (other),776.4648749999999,782.8032939999999,779.14635,777.034555,773.9058699999999,771.551563,769.230875,765.6979,762.707147,760.357841,758.320855,753.687531,749.3629831,745.6552969,740.2042689,735.4500343,732.208624,727.6403147,722.53282098,719.0581272000001,715.12908208,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,shrubs,35.19809642,32.717004530000004,34.979032270000005,34.86163477,34.72077529,34.610692,34.4970623,34.335465160000005,34.1942559,34.07934832,33.979004450000005,33.78351328,33.600988290000004,33.445445570000004,33.212901030000005,33.005310400000006,32.85696292,32.64633812,32.396973387,32.23162459700001,32.054231175000005,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,tundra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,urban,2.6935711999999996,4.801278400000001,5.4940488,5.4940488,5.4940488,5.4940488,5.4940488,5.4940488,5.4940488,5.4940488,5.4940488,5.4940488,5.4940488,5.4940488,5.4940488,5.4940488,5.4940488,5.4940488,5.4940488,5.4940488,5.4940488,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,crops,22.714059800000005,22.4769818,23.3687482,26.16048007,28.805837651999997,31.46303201399999,34.28825657200001,38.29626013200001,42.381434505,46.391775284,50.07775077000001,55.51768824200001,61.366384041,66.85131572,76.99011142699999,87.19925003500003,94.891788662,105.5211618,112.49070711,116.81551477000001,121.62681624,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,desert,2.2586988,2.3427854,2.3580247,2.3580247,2.3580247,2.3580247,2.3580247,2.3580247,2.3580247,2.3580247,2.3580247,2.3580247,2.3580247,2.3580247,2.3580247,2.3580247,2.3580247,2.3580247,2.3580247,2.3580247,2.3580247,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,forest (managed),3.1305093999999998,4.1140719,4.4317722,4.82600846,5.37738925,5.90457479,6.47988972,7.349483340000001,8.16898195,9.00017071,9.81294178,11.092692020000001,12.39656746,13.6160472,15.440485650000001,17.014396100000003,17.9303502,18.8345859,19.5232733,20.1124114,20.7454397,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,forest (unmanaged),915.8511292000001,907.4520367,909.9224494,906.9606405,904.4217457,901.9424885999999,899.2619668,895.7453508,892.0915934,888.8909259,885.7996088,880.7513262,875.2317271,869.9448792000001,860.8387081999999,851.7897708,844.9994968999999,836.3438636,830.64800715,827.29149936,824.19855063,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,grass,165.3354608,171.3181985,173.36086609999998,171.8344974,170.76457209999998,169.7209994,168.6506895,167.35857869999998,166.1239018,165.131828,164.24283210000002,163.06227090000002,161.91196219999998,160.9462312,159.540492,158.4177527,157.71753529999998,156.9865609,156.58886485,156.38490846,156.2217606,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,otherarable,14.952034999999999,16.187935,12.616036999999999,12.393453000000001,12.252500999999999,12.090582000000001,11.898359,11.643787,11.362310999999998,11.117934,10.853556999999999,10.42304,9.895632,9.334009,8.270578,7.032184,5.9628630000000005,4.405665,3.2029659,2.410348,1.6190632,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,pasture (grazed),16.824641,20.347186,21.607411999999997,25.163842000000002,26.973202,28.657392,30.39253,31.911967,33.444587,33.968492,34.561136999999995,35.661423,36.831078000000005,37.876082,38.793271000000004,39.438682,40.011142,40.035673,39.990415999999996,39.582010000000004,38.299694,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,pasture (other),176.06169599999998,172.267325,168.29344700000001,166.31153500000002,165.090796,163.941727,162.78555200000002,161.496441,160.272905,159.379971,158.5658146,157.4504924,156.3716003,155.47694900000002,154.23414640000001,153.269784,152.68592040000001,152.1136307,151.82196134,151.68305482,151.57978631,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,shrubs,7.2100263,6.8666106,7.0374984000000005,6.9877233,6.9522548,6.9174028,6.8809657,6.836324100000001,6.7924975,6.7571537,6.724553,6.679289600000001,6.6332823,6.5928129,6.5306631,6.4763197,6.43919871,6.39710298,6.37203115,6.35844856,6.3471844740000005,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,tundra,4.251099,4.358691,4.4310659999999995,4.4310659999999995,4.4310659999999995,4.4310659999999995,4.4310659999999995,4.4310659999999995,4.4310659999999995,4.4310659999999995,4.4310659999999995,4.4310659999999995,4.4310659999999995,4.4310659999999995,4.4310659999999995,4.4310659999999995,4.4310659999999995,4.4310659999999995,4.4310659999999995,4.4310659999999995,4.4310659999999995,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,urban,2.1868628,3.0447306,3.349788,3.349788,3.349788,3.349788,3.349788,3.349788,3.349788,3.349788,3.349788,3.349788,3.349788,3.349788,3.349788,3.349788,3.349788,3.349788,3.349788,3.349788,3.349788,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,biomass,0.0,0.0,0.0,0.0,0.479620539,0.9416971920000001,1.6150690799999998,2.6527112500000003,3.7111296300000003,5.03322936,6.642661599999999,9.008649000000002,11.7242585,14.467441599999999,19.375719000000004,24.4489217,28.488838100000002,34.2907596,38.96471675,42.787780440000006,46.91073517,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,crops,107.98060630000003,136.19252780000002,141.81263119999997,149.869468794,159.66263664209987,168.10476313719985,177.04846677799998,189.4840337443001,201.46427826699994,211.03193062629995,219.25945360870003,233.6366474616999,247.48872921899994,259.02534361220023,277.11467087299997,292.048033486,301.7037892100001,312.95647395899994,318.752340249,320.45774346000024,321.4663260189999,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,desert,292.68025209999996,295.53194679999996,293.4455979,293.4455979,293.4455979,293.4455979,293.4455979,293.4455979,293.4455979,293.4455979,293.4455979,293.4455979,293.4455979,293.4455979,293.4455979,293.4455979,293.4455979,293.4455979,293.4455979,293.4455979,293.4455979,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,forest (managed),33.1258292,50.31695299999999,58.290116,62.849665,68.53768099999999,73.900027,79.43915599999998,86.91332299999999,93.42117099999999,99.70967000000002,105.48741299999998,113.04224300000001,119.78548699999999,125.445369,132.308232,137.43363399999998,140.10929399999998,142.68254,145.09026100000003,147.48364,150.52913800000002,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,forest (unmanaged),1530.307882,1493.8052020000002,1497.3541790000004,1491.2013260000003,1484.2543690000002,1478.0448510000003,1471.3934370000002,1461.9804580000005,1453.1228470000003,1445.5091610000004,1438.5510490000004,1427.5309590000004,1416.8461220000004,1407.6305880000004,1393.7900330000002,1382.0561390000003,1374.2939290000004,1365.2098124000004,1359.4706811000003,1356.1387839000004,1353.1129666000004,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,grass,529.51532955,512.9241964400001,539.65428011,536.63239727,533.36286864,530.5386625900001,527.61837668,523.8741909600001,520.4389337500002,517.62697688,515.1063731300001,511.2265826700001,507.59657314000003,504.56469727,500.20555112500006,496.65864591600007,494.368563868,491.7223875200001,489.92982495700005,488.8720937243001,487.88667290910007,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,otherarable,43.718044,43.6733317,40.0542845,38.89043717699999,37.57664540100001,36.33852202199999,34.99649640400001,33.167617449999995,31.378080057,29.753185381000005,28.200102767000004,25.695163331999996,23.126221185000002,20.775121567000003,17.048015512,13.615021827999998,11.177775544899998,8.105415119599998,5.952295833500001,4.607916906099999,3.2987058863999996,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,pasture (grazed),27.273794100000003,43.081283299999996,45.57368829999999,49.9652822,51.96524010000001,53.54675629999999,55.0959085,56.4566661,57.818101399999996,58.139815500000005,58.500809,59.39274919999999,60.3535557,61.228642799999996,62.20188300000002,62.932869,63.56024310000001,63.687187599999994,63.55354319999999,63.0752822,61.7332887,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,pasture (other),985.8147515,979.0146084999998,931.0135170000002,924.9812861000001,919.2465282000002,914.2768641000001,909.1181860000003,902.6389106000003,896.5910798000001,891.7856399000001,887.4181331000001,880.5327952000001,873.9913245000001,868.4849273000001,860.6029809,854.2836633000001,850.3018932000001,845.9432158100002,843.25781442,841.7596838400001,840.4360200940001,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,shrubs,122.34274069999996,114.34857360000001,120.0981346,119.4609774,118.76510649999999,118.15867200000001,117.52568699999999,116.68294860000002,115.9052702,115.26110440000001,114.6847675,113.7849992,112.9384673,112.22862450000001,111.20371118999999,110.37392439,109.84651339,109.25303618,108.879431653,108.667825522,108.47718761099999,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,tundra,179.451496,181.54453699999996,182.477503,182.477503,182.477503,182.477503,182.477503,182.477503,182.477503,182.477503,182.477503,182.477503,182.477503,182.477503,182.477503,182.477503,182.477503,182.477503,182.477503,182.477503,182.477503,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,urban,3.9843577999999997,5.7615778,6.4199369,6.4199369,6.4199369,6.4199369,6.4199369,6.4199369,6.4199369,6.4199369,6.4199369,6.4199369,6.4199369,6.4199369,6.4199369,6.4199369,6.4199369,6.4199369,6.4199369,6.4199369,6.4199369,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,biomass,0.0,0.0,0.0,0.0,4.55632893,8.6112561,14.071464299999999,21.5421145,28.732703400000002,36.941481100000004,45.6977108,56.279091900000005,66.49892399999999,75.080935,88.384133,99.98381699999999,108.239616,118.82813999999998,129.03072799999998,137.108703,145.08167699999998,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,crops,123.9005098,124.20562079999995,122.85832090000011,125.91386510820001,129.80970309099996,132.20953137189994,133.86710659249994,137.49561095880003,140.78808288899995,142.54786173419996,143.0909155934,142.6775218592,141.71233068649997,140.46887854489998,138.31690182079996,136.06666842799999,134.14219988690002,131.7911984808,129.2707473102,126.3496273098,123.4793851813,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,desert,86.44322370000002,87.6517723,87.6938387,87.6938387,87.6938387,87.6938387,87.6938387,87.6938387,87.6938387,87.6938387,87.6938387,87.6938387,87.6938387,87.6938387,87.6938387,87.6938387,87.6938387,87.6938387,87.6938387,87.6938387,87.6938387,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,forest (managed),42.1504799,41.85038050000001,41.61787319999999,42.5249758,42.8980113,43.439741000000005,43.849121800000006,44.4667038,44.2080359,43.97869609999999,43.587220900000005,43.7087316,43.577884600000004,43.39719679999999,42.4707232,41.36474409999999,40.430096,38.8754506,37.8368517,37.244313899999995,36.9132758,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,forest (unmanaged),122.39502845999999,127.49374674,128.33261884,127.14696708000001,125.73806868000001,124.66621843000003,123.65734490000001,122.47243665,121.43851409000003,120.62646621000002,119.95322233000002,119.15106416000002,118.46542194000001,117.93527668000003,117.22523782700002,116.69438081500002,116.37784201600002,116.03539149800002,115.83707381400002,115.72890222210002,115.63756814660002,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,grass,54.76671543999999,48.213580560000004,49.14146547000001,48.750109900000005,48.287153890000006,47.899711110000005,47.47641409000001,46.85481640000001,46.35177645000001,45.943398760000015,45.606738790000016,45.291078671000015,45.04418760400001,44.87363135500001,44.6713408,44.53823582600001,44.46439127300001,44.388524888100015,44.331235111800005,44.30108858490001,44.276545984900004,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,otherarable,102.87951899999999,99.754024,96.65173799999998,89.76489199999999,82.652813,76.697381,70.437762,61.79199999999999,54.17355500000001,47.664545000000004,41.889712,35.407482,29.764329000000004,25.410577800000002,19.5634563,15.0943399,12.309478900000002,9.123441300000001,6.6995289,5.227849320000001,3.8447000199999994,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,pasture (grazed),17.474865500000003,20.2105934,19.998367899999998,29.647889899999996,33.523406900000005,37.052869400000006,40.4759045,43.7740233,46.44054810000001,47.349357999999995,47.6858796,47.38313090000001,46.8508229,46.2777217,44.87651389999999,43.4339111,42.343183499999995,40.70175029999999,38.310430000000004,36.2425372,33.7500287,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,pasture (other),315.60416789999994,312.56351019999994,314.63520550000004,310.33157960000005,307.467617,305.07311530000004,302.59785194,299.26813139,296.58458360000003,294.54060571,292.84324951,291.22637096,289.89083879000003,288.90388129,287.62455303400003,286.64531848300004,286.0136754,285.257626453,284.5656774005,284.1776753275,283.842090604,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,shrubs,142.91082605,145.4632731,145.88240829999998,145.03783649999997,144.18500619999998,143.46835819999998,142.68509269999998,141.4522225,140.4002607,139.52570928999998,138.76343097999998,137.99366712,137.31331162,136.77001012,135.98530091,135.29676482,134.797573234,134.116475052,133.235814575,132.73734602599998,132.29292775439998,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,tundra,18.637168,18.7942,18.9803803,18.9803803,18.9803803,18.9803803,18.9803803,18.9803803,18.9803803,18.9803803,18.9803803,18.9803803,18.9803803,18.9803803,18.9803803,18.9803803,18.9803803,18.9803803,18.9803803,18.9803803,18.9803803,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,urban,1.2842511,2.2458615,2.6542433,2.6542433,2.6542433,2.6542433,2.6542433,2.6542433,2.6542433,2.6542433,2.6542433,2.6542433,2.6542433,2.6542433,2.6542433,2.6542433,2.6542433,2.6542433,2.6542433,2.6542433,2.6542433,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,biomass,0.0,0.0,0.0,0.0,0.761058,1.357268,2.11439,3.08701,3.98435,5.00578,6.1394400000000005,7.557079999999999,8.943439999999999,10.160599999999999,12.03495,13.630289999999999,14.742460000000001,16.10926,16.8154,17.31541,17.749090000000002,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,crops,14.047322500000002,14.139187499999998,13.219178000000001,13.070224772299998,12.803643326,12.4303711227,12.013183329600002,11.7594694103,11.535796052,11.1818834353,10.749104180500002,10.3801048232,9.9556638678,9.5254772842,8.828032738800001,8.175210338200001,7.6737031778,7.043345232300001,6.6822050636000005,6.368035643100001,6.070368049500001,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,desert,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,forest (managed),5.01513,6.087,7.10231,7.58471,7.77747,8.05413,8.2377,8.24914,8.17564,8.020900000000001,7.7666,7.277760000000001,6.76421,6.3025199999999995,5.522819999999999,4.8424700000000005,4.37382,3.77313,3.4937500000000004,3.34056,3.23607,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,forest (unmanaged),63.76333000000001,62.29711,62.06499,61.74578,61.118930000000006,60.674850000000006,60.20145,59.524060000000006,58.97073,58.508,58.107060000000004,57.581124,57.162748,56.860587,56.494106,56.254598,56.127503000000004,56.00567220000001,55.946662200000006,55.91667100000001,55.892696,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,grass,0.1865911,0.16207549999999998,0.16446670000000002,0.1631788,0.161054,0.1595129,0.15797046,0.15598647000000002,0.15444467,0.1532032,0.15218431000000002,0.15097371,0.1500794,0.14947969000000003,0.148826228,0.148453094,0.148279391,0.14813615300000002,0.14807760890000002,0.14805231600000002,0.1480352859,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,otherarable,0.0,0.238164,0.307957,0.289464,0.264657,0.244256,0.2233,0.194914,0.170656,0.149433,0.130489,0.104952,0.0831345,0.0663244,0.044694,0.0293793,0.0207171,0.0119343,0.0073409,0.00491097,0.00291361,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,pasture (grazed),0.37231400000000003,0.294221,0.30378,0.309867,0.276937,0.2436902,0.2164824,0.1945618,0.1740232,0.1468011,0.1214008,0.11482490000000001,0.1079379,0.1024861,0.0943032,0.087489,0.0814729,0.0765344,0.07458970000000001,0.0744135,0.0688705,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,pasture (other),0.06570256,0.05192155,0.05360811,0.05307203,0.052536280000000005,0.05221331,0.05182274,0.05115461,0.050641347,0.050291351,0.050008436,0.049465574,0.049076804,0.048820459999999996,0.048548419999999995,0.0483992863,0.0483340189,0.0482821938,0.04826272469,0.04825509611,0.048250631769999996,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,shrubs,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,tundra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,urban,1.623478,1.804208,1.8576899999999998,1.8576899999999998,1.8576899999999998,1.8576899999999998,1.8576899999999998,1.8576899999999998,1.8576899999999998,1.8576899999999998,1.8576899999999998,1.8576899999999998,1.8576899999999998,1.8576899999999998,1.8576899999999998,1.8576899999999998,1.8576899999999998,1.8576899999999998,1.8576899999999998,1.8576899999999998,1.8576899999999998,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,biomass,0.0,0.0,0.0,0.0,8.474102189,15.602910936,25.078227504999994,38.134055929,49.71132173,62.20457465999999,76.84209791999999,96.79638798,117.28451624000002,136.52651349,167.25615460999995,196.05538492,217.62922269999999,246.56998693,263.91589548,277.14641137000007,289.4619549,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,crops,514.4861780999994,589.3579892000001,637.8237312000001,645.018630592,654.8547167120001,659.7182687759995,662.2283637289997,672.954688249,683.4118241170004,689.1505451640004,690.2915351410003,690.3543726060002,687.6234413269996,682.3040967700002,671.789932791,658.9224652130001,647.6121545520001,631.2005197,619.5285958749998,608.7744646819999,598.8416493029997,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,desert,0.4736614,0.3941989,0.3623491,0.3623491,0.3623491,0.3623491,0.3623491,0.3623491,0.3623491,0.3623491,0.3623491,0.3623491,0.3623491,0.3623491,0.3623491,0.3623491,0.3623491,0.3623491,0.3623491,0.3623491,0.3623491,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,forest (managed),123.782485,116.7250141,115.0299441,118.43092040000002,120.38906479999999,123.16846910000001,125.36968499999999,123.681384,120.10657800000001,117.14007900000001,113.973053,110.090637,105.740461,101.98486500000001,95.16857999999998,89.23540599999998,85.05055399999999,79.55264600000001,78.067913,78.29674200000001,79.15277599999999,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,forest (unmanaged),1949.3956369999999,1897.7646379999999,1856.481106,1840.607922,1821.2173819999998,1806.861988,1792.901397,1772.3334639999998,1755.2731797,1742.2956199,1731.7736974,1718.9586113,1708.48749,1700.7803506,1691.0609259999999,1684.3134211,1680.4935934999999,1676.5636958999999,1674.47120953,1673.35098404,1672.37767359,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,grass,189.67791060000002,185.0987735,177.72368549999996,175.81546869999997,173.66850339999996,172.07035749999997,170.55397489999996,168.40113019999998,166.69503059999997,165.43484216999997,164.45191406999996,163.29881278999997,162.40694587999997,161.78492370999996,161.05995754999995,160.60432966999997,160.37164694999998,160.16014580799995,160.06277239099998,160.01771960499997,159.98445203629998,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,otherarable,37.048659099999995,6.723764899999999,6.707707300000001,6.2272663,5.64037275,5.177382349999999,4.71617987,4.0701209700000005,3.5101890199999994,3.0594395500000005,2.67443415,2.1809732900000003,1.75789676,1.43127462,1.00158817,0.6869682900000001,0.501971081,0.304971306,0.195182935,0.135022166,0.08259747899999999,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,pasture (grazed),29.521648399999997,29.894541199999995,36.086011199999994,44.445897200000005,46.8946591,48.962554499999996,51.102859,52.864783900000006,54.1046428,53.7882056,53.26717080000001,51.822967399999996,50.376375100000004,48.982526,46.5912289,44.1906543,42.3894066,39.73030440000001,37.855606099999996,36.382967,34.2072806,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,pasture (other),19.215946599999995,32.07098178,25.97963038,25.454688639999997,25.07005741,24.80103135,24.559490729999997,24.26780118,24.052569410999997,23.908235454,23.799349337,23.678484551999997,23.589081315999998,23.529509534,23.464036306999997,23.4261608497,23.408295945499997,23.39343147,23.387282697999996,23.38471430407,23.38302157707,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,shrubs,17.001838499999998,17.16125258,16.63422507,16.465007489999998,16.256342269999998,16.101972659999998,15.95519453,15.757168159999999,15.60031915,15.483588529999999,15.39150817,15.2832661,15.19959171,15.14116682,15.07309899,15.030614525,15.009103822,14.989668987,14.980778168,14.9766928778,14.9737213657,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,tundra,0.981574,0.889825,0.959265,0.959265,0.959265,0.959265,0.959265,0.959265,0.959265,0.959265,0.959265,0.959265,0.959265,0.959265,0.959265,0.959265,0.959265,0.959265,0.959265,0.959265,0.959265,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,urban,8.793925100000001,14.2973624,16.5921788,16.5921788,16.5921788,16.5921788,16.5921788,16.5921788,16.5921788,16.5921788,16.5921788,16.5921788,16.5921788,16.5921788,16.5921788,16.5921788,16.5921788,16.5921788,16.5921788,16.5921788,16.5921788,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,biomass,0.0,0.0,0.0,0.0,54.518820000000005,99.84457,159.18314,231.681,290.0843,352.47260000000006,417.55769999999995,510.8654,602.7937000000001,684.8249999999999,813.4459,927.4291000000001,1004.7023,1107.5565000000001,1179.604901,1238.6354,1299.0611799999997,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,crops,1170.6209758999998,1203.9663361999997,1176.1074802,1196.221235082,1195.3998736209999,1192.4253675739997,1185.8404280459995,1191.8194581479997,1200.69447759,1194.4383099889997,1180.5594609410005,1164.7407318950004,1146.0141217790003,1124.8048164690008,1087.987433790001,1049.2866205619998,1021.7108347590004,978.8749270840002,954.8966046430004,935.1854183719997,914.330515278,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,desert,34.178445700000005,34.4579747,34.1181227,34.1181227,34.1181227,34.1181227,34.1181227,34.1181227,34.1181227,34.1181227,34.1181227,34.1181227,34.1181227,34.1181227,34.1181227,34.1181227,34.1181227,34.1181227,34.1181227,34.1181227,34.1181227,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,forest (managed),637.77328,571.41271,429.62475,456.99850999999995,479.36711,500.06199000000004,516.36234,531.04142,540.0677,547.6381700000001,552.3565,552.2268099999999,547.3273300000001,540.97841,524.5963699999999,508.54130000000004,496.45076000000006,480.68611000000004,461.66709999999995,440.54694,418.87660000000005,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,forest (unmanaged),2345.4335300000002,2664.5117000000005,2833.8638700000006,2819.6395600000005,2798.0615300000004,2780.17187,2760.91454,2734.6268600000003,2712.49917,2694.4530200000004,2679.0272600000003,2657.4156420000004,2638.6446360000004,2623.9781880000005,2604.4468500000003,2589.840469,2581.006909,2571.2308260000004,2564.8543127000003,2561.0811561,2557.7422548000004,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,grass,588.5381490000001,376.53780299999994,392.29998000000006,389.73289500000004,385.91661000000005,382.874338,379.6799600000001,375.562294,372.37089900000007,369.8514760000001,367.7174760000001,364.9814330000001,362.721516,361.0275813,358.8431593000001,357.2610242,356.31591970000005,355.2734166000001,354.62584968000004,354.24125254000006,353.88432324,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,otherarable,685.0424689999999,559.003367,440.364944,420.705765,390.766725,365.71543900000006,338.561614,301.720682,270.73635909999996,244.70445320000002,221.8602112,190.07848469999996,161.84297979999997,139.23628920000002,107.97564669999998,83.48427769999999,67.9583015,49.79464254999999,38.05021068000001,30.58932551,23.154080195,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,pasture (grazed),52.723528699999996,9.085457700000003,19.615700299999993,20.491189300000006,20.892429399999997,21.331430500000003,21.658716599999995,21.9562708,22.334583300000002,22.5846554,22.9262102,23.3535585,23.8189941,24.2513827,24.764783899999994,25.244966299999998,25.6860122,26.085687699999994,26.570925600000002,26.919467500000007,27.012027099999994,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,pasture (other),2328.2256719999996,2330.380531,2450.0985049999995,2440.4383629999998,2423.9129339999995,2410.2442559999995,2394.9534809999996,2374.5947115,2358.4681705,2344.828373,2332.4744510999994,2315.6517937,2300.6004639,2288.3885827999998,2270.9882786999997,2256.7251491999996,2247.23539899,2235.6228773699995,2227.6448992399996,2222.4970815859997,2217.390470862,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,shrubs,742.7980892999999,783.3026239000001,738.8099775000001,736.5555612,731.9481101000001,728.1151652000001,723.6305967400001,717.7810174100001,713.52779812,709.8129508500001,706.30504722,701.4707962800001,697.0211865800001,693.2933641100001,687.736489826,682.9722402140001,679.7174953010001,675.6586534180001,672.8692012249,671.0887206732001,669.3317393774,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,tundra,240.731956,240.7436154,240.67603309999998,240.67603309999998,240.67603309999998,240.67603309999998,240.67603309999998,240.67603309999998,240.67603309999998,240.67603309999998,240.67603309999998,240.67603309999998,240.67603309999998,240.67603309999998,240.67603309999998,240.67603309999998,240.67603309999998,240.67603309999998,240.67603309999998,240.67603309999998,240.67603309999998,thous km2, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,urban,116.3402092,168.99758419999998,186.829803,186.829803,186.829803,186.829803,186.829803,186.829803,186.829803,186.829803,186.829803,186.829803,186.829803,186.829803,186.829803,186.829803,186.829803,186.829803,186.829803,186.829803,186.829803,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,biomass,0.0,0.0,0.0,0.0,8.0792883,16.582882599999998,28.543386900000005,41.6260357,49.436771,57.475117000000004,70.994083,90.105236,109.95265599999999,129.459136,164.346716,206.830977,253.323786,319.51385999999997,375.57458980000007,416.639666,459.6287750000002,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,crops,311.92467120000003,428.28109870000003,430.69721629999987,422.2170473770003,436.66382536200024,447.69851793400005,454.415190464,469.40540157900006,480.99035246000017,487.847161365,489.4532783640001,482.16810178599997,473.54082778500003,463.7512546334002,451.8185503252,438.49067792949995,425.18458481159996,408.1754724459001,394.1176458042,381.41013994730014,367.1346967397001,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,desert,1154.214617,1194.895342,1194.9877450000001,1194.9877450000001,1194.9877450000001,1194.9877450000001,1194.9877450000001,1194.9877450000001,1194.9877450000001,1194.9877450000001,1194.9877450000001,1194.9877450000001,1194.9877450000001,1194.9877450000001,1194.9877450000001,1194.9877450000001,1194.9877450000001,1194.9877450000001,1194.9877450000001,1194.9877450000001,1194.9877450000001,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,forest (managed),101.97584040000001,134.4069045,145.33026800000002,152.41969699999999,156.48992400000006,160.18538800000002,162.89619499999998,160.23780499999998,156.725488,152.65833700000002,147.87847250000002,148.27951029999997,148.25210599999997,147.97054269999998,146.29410040000002,143.87105480000005,141.16217369999998,136.6688653,133.54210849999998,132.8420622,133.58569050000003,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,forest (unmanaged),110.07212879000002,58.03721887999999,40.92342608999999,40.81824036999999,40.42832081999999,40.05899791999999,39.708854409999994,39.27296292999999,38.93114676,38.65098505999999,38.40168094999999,38.245696650999996,38.11476957199999,38.011865818999986,37.84950881999999,37.67330434599999,37.49772067199999,37.285962348999995,37.14873868619999,37.06980904529999,36.99924350649999,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,grass,859.257675,723.72887,708.3877129999998,705.7822159999998,697.3993749999998,689.6395649999998,682.3876349999998,674.4163484999998,668.4624933999999,663.6894282999998,659.4702741999998,656.6435960999999,654.3323636999999,652.5361973999999,649.9676299999999,647.4283358099998,645.1491201999999,642.7067481699999,640.9391443899998,639.9542274279999,639.1693641529998,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,otherarable,109.24389359999999,108.2396133,130.31273080000003,125.75812350000001,114.79244940000001,103.8842445,93.08370319999997,80.7592699,70.70762049999999,62.0947273,54.065629000000015,48.348810799999995,43.45421079999999,39.47786429999999,33.5432706,27.221165399999997,21.0631189,13.860565560000001,9.428938869999998,6.922415910000001,4.74356348,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,pasture (grazed),103.7853683,145.49922890000002,151.82868510000003,176.658263,201.54893800000002,227.58938300000003,252.83886,278.0180849999999,301.932974,323.8686809999999,342.62583,349.498038,354.223498,357.43611899999996,354.22225,346.193032,333.63000350000004,309.89900919999997,287.5485064,269.6919649999999,248.51269409999998,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,pasture (other),2458.422947,2354.8308,2347.579746,2333.248031,2306.437851,2280.9751315,2257.3610599,2232.6285883,2213.3571429,2197.8310233,2184.5232710000005,2176.3292054000003,2169.6322299000003,2164.3871007000002,2157.2344414400004,2149.9822663500004,2143.1238429100003,2135.1389141900004,2128.4952273880003,2124.4741483290004,2121.0594636210003,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,shrubs,547.43671807,605.8164908,602.4575586999999,600.6154918409999,595.6769916129999,590.9029793389999,586.2820503239999,581.1522795919999,576.9731942409999,573.4016312209999,570.1043710269998,567.8989506899999,566.0145006914998,564.4870786026999,562.2403523306999,559.8264370916999,557.3829310914999,554.2684074640999,550.7219652811199,548.5127750120199,546.68356034145,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,tundra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,urban,2.6365201,5.240257499999999,6.4683625,6.4683625,6.4683625,6.4683625,6.4683625,6.4683625,6.4683625,6.4683625,6.4683625,6.4683625,6.4683625,6.4683625,6.4683625,6.4683625,6.4683625,6.4683625,6.4683625,6.4683625,6.4683625,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,biomass,0.0,0.0,0.0,0.0,13.8059889,27.372041199999998,44.744213099999996,61.06248790000001,70.28121780000001,79.37784099999999,92.982403,109.26989400000001,123.81533999999999,135.795751,152.695668,168.50590899999997,181.81624,195.874531,203.659672,208.40252900000002,212.744661,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,crops,164.4798679,168.6582839,166.7634255,166.657054655,164.710471578,162.53758574699995,157.45796986599998,153.766613899,152.84326982099998,150.935291783,145.44059384600004,136.94763146199998,128.85748268099996,121.794112652,111.884159278,102.766480154,95.50943782600002,88.67643140999999,86.063499268,84.87423917900004,84.44576299200001,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,desert,4639.457437499999,4677.5868408,4674.5670254999995,4674.5670254999995,4674.5670254999995,4674.5670254999995,4674.5670254999995,4674.5670254999995,4674.5670254999995,4674.5670254999995,4674.5670254999995,4674.5670254999995,4674.5670254999995,4674.5670254999995,4674.5670254999995,4674.5670254999995,4674.5670254999995,4674.5670254999995,4674.5670254999995,4674.5670254999995,4674.5670254999995,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,forest (managed),3.1032077,0.9418943000000001,1.4591024,1.6272055,1.6925957,1.7522547,1.7622254999999998,1.7400388,1.751633,1.7424555000000002,1.6638237,1.5388975999999999,1.4181936000000002,1.31107394,1.14240417,0.98299765,0.85050395,0.70856632,0.64183963,0.6110056199999999,0.59179135,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,forest (unmanaged),0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,grass,15.11647859,5.76751243,6.23865289,6.2347679000000005,6.1648674,6.10067889,6.03655698,5.974118870000001,5.93388146,5.900611970000001,5.86620985,5.83679611,5.81389994,5.797529236,5.7748377060000005,5.753351038,5.73359213,5.709608204999999,5.6924633451,5.6811908865000005,5.6693146689,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,otherarable,88.93892399999999,83.783046,84.442908,84.432706,77.48545499999999,70.855481,63.777215,56.461339,51.522212,47.240235,42.569590999999996,38.238225,34.70675,32.01456099999999,28.211065499999997,24.6358747,21.4907546,17.9089395,15.509715800000002,13.9316762,12.23836649,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,pasture (grazed),4.3357516,7.299794199999999,9.1548585,9.6040231,10.2182995,10.814858800000001,11.276264999999999,11.786385600000001,12.336976100000001,12.820878899999999,13.1186522,12.9645521,12.7636525,12.5686083,12.2760656,12.0157523,11.850145099999999,11.778707,11.81699294,11.84676652,11.901270169999998,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,pasture (other),730.9545843299999,728.1754922,725.1056545,724.6070773,719.2170613,713.9784725000001,708.4731454,702.8453428,699.0335594,695.7394636,692.1708775000001,689.0637298,686.5196015,684.6382537000001,681.9677837,679.318283,676.7492365,673.36532629,670.65216875,668.6982930300001,666.46419573,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,shrubs,37.27819041,7.574098899999999,9.40503163,9.40671913,9.27482576,9.158029296,9.041953357,8.933156714,8.866670094,8.812764097,8.757456743,8.70994528,8.674473011,8.64959866,8.61767539,8.5909149,8.569652804,8.547438236,8.5331074871,8.5238940112,8.5142047612,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,tundra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,urban,9.3391515,13.2247327,15.8673897,15.8673897,15.8673897,15.8673897,15.8673897,15.8673897,15.8673897,15.8673897,15.8673897,15.8673897,15.8673897,15.8673897,15.8673897,15.8673897,15.8673897,15.8673897,15.8673897,15.8673897,15.8673897,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,biomass,0.0,0.0,0.0,0.0,1.220112459,2.6488719720000002,4.834296469999999,7.486774344,9.399955772999999,11.541652522000001,15.192186417000002,20.193287924,25.77893432,31.716312399999996,43.095836379999994,58.46172537,77.19775593,107.94516334,133.15708492000002,152.34804776,174.89948850000002,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,crops,191.34922080000004,233.4294932,277.1524115999999,295.264777048,331.7035412220002,366.52077130900005,398.5949714290003,431.43040319199997,459.7347912250003,483.1052355349999,502.00688084999985,509.27882796000006,514.371503446,516.4619013820002,522.9584117909999,530.842366509,539.5682308720002,548.4065764389999,552.7308442469999,552.0918314660001,547.4934194799998,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,desert,134.306135,133.752619,133.64403800000002,133.64403800000002,133.64403800000002,133.64403800000002,133.64403800000002,133.64403800000002,133.64403800000002,133.64403800000002,133.64403800000002,133.64403800000002,133.64403800000002,133.64403800000002,133.64403800000002,133.64403800000002,133.64403800000002,133.64403800000002,133.64403800000002,133.64403800000002,133.64403800000002,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,forest (managed),44.53663840000001,53.158327,55.15666300000001,56.43690699999999,58.007853999999995,59.349878000000004,60.410181,60.730899,60.1329118,59.1301992,58.05109039999999,59.4645098,60.6350778,61.652185,62.4324796,62.7148743,62.334014700000004,60.7293151,59.3074078,58.9538442,59.58300509999999,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,forest (unmanaged),1002.832209,1008.357494,1002.679889,997.6996839999999,988.4408799999999,979.536642,971.1993829999999,962.0219079999999,954.2744676999998,947.7509170999999,942.03558,938.8425984,936.1024224999999,933.9600077999999,930.2452579999999,925.8770640999999,921.1726641,915.2172226,911.3162751,909.0817223899999,907.11474045,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,grass,1617.594013,1519.12877,1483.8820919999998,1475.815755,1461.7041169999998,1448.177118,1435.5628889999998,1423.0599550000002,1412.5383550000001,1403.6497949999998,1395.7924010000002,1390.9363269,1386.7782566,1383.5073800999999,1378.1103389,1371.9257764,1365.4208299000002,1357.4028549999998,1352.0946528,1348.98665833,1346.1682531000001,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,otherarable,89.00070529999999,84.13531010000001,86.2914814,83.6387156,78.57624940000001,73.18900039999998,67.65846189999999,61.82021859999999,56.47208759999999,51.5975338,46.966471,43.8672429,41.0885488,38.8045233,34.88137780000001,30.1216336,24.78009053,17.638691220000002,12.647656949999998,9.635499280000001,6.89735052,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,pasture (grazed),38.4233284,51.589070099999994,53.9692842,62.79284410000001,71.6796693,81.50942539999998,91.4111129,102.17610099999999,112.76629799999999,122.897325,132.43708999999998,137.654261,142.13785900000002,146.10388500000002,148.679859,149.81495899999996,149.311101,145.37465,140.977004,137.222271,132.14785280000004,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,pasture (other),2129.552929,2162.9731020000004,2153.8725980000004,2141.9789600000004,2123.2604680000004,2104.6696970000003,2086.944871,2068.934669,2053.3317093000005,2039.9104515000001,2028.0061396,2020.8339151000002,2014.7096696,2009.8421897,2002.3781883000001,1993.9523058000002,1985.071842,1973.9462613000003,1966.1228003600002,1961.3180197500003,1956.7856894000001,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,shrubs,284.4546655,283.11493199000006,282.10201204,281.47860834999994,280.51348055999995,279.50525815,278.48997154999995,277.44516973,276.45545732,275.52352548999994,274.61827595999995,274.03516425,273.50426087999995,273.05783778999995,272.32453036,271.39551565,270.24984781599994,268.44543429099997,266.75258953199994,265.46858767,264.0164195109,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,tundra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,urban,3.1560983,5.5665230999999995,6.455441799999999,6.455441799999999,6.455441799999999,6.455441799999999,6.455441799999999,6.455441799999999,6.455441799999999,6.455441799999999,6.455441799999999,6.455441799999999,6.455441799999999,6.455441799999999,6.455441799999999,6.455441799999999,6.455441799999999,6.455441799999999,6.455441799999999,6.455441799999999,6.455441799999999,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,biomass,0.0,0.0,0.0,0.0,3.2461824752999995,6.705569236499999,11.671198665,15.978522296999998,18.417589670999995,21.258949753,26.282750096000004,33.72635388,41.66146362299999,49.681814857999996,64.68557043000001,83.60488616999997,105.19434637,137.0139038,192.29255323000004,232.35066386,268.88041967,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,crops,669.5808413000001,830.6757842000001,905.8235861000002,910.1688144348999,955.0089888270003,996.8619976660004,1034.4461838230002,1092.1518785889994,1139.5544770990007,1176.9526830690004,1206.7029026960001,1220.9560722900005,1230.791718024,1235.3773293799995,1248.93758376,1266.756821468,1288.8779874340003,1321.4468602850002,1325.1539566679999,1319.9960610079995,1314.8772650760002,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,desert,2609.6112694999997,2745.6518892,2732.6534420999997,2732.6534420999997,2732.6534420999997,2732.6534420999997,2732.6534420999997,2732.6534420999997,2732.6534420999997,2732.6534420999997,2732.6534420999997,2732.6534420999997,2732.6534420999997,2732.6534420999997,2732.6534420999997,2732.6534420999997,2732.6534420999997,2732.6534420999997,2732.6534420999997,2732.6534420999997,2732.6534420999997,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,forest (managed),127.2821684,169.4623495,180.624204,189.25177920000002,200.6314806,211.9067119,222.8593708,231.72507294000002,237.86569600000004,242.58686541999998,247.08636763,254.42923989,261.06319665,266.92884081999995,274.45480697,281.93362327,288.56313212,295.36963922,298.33006019000004,302.48323483999997,309.24433734,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,forest (unmanaged),2763.3437444,2697.1514309,2634.7760550000003,2627.6995406000005,2610.0582124000002,2592.2630941,2574.9244934800004,2553.8083337200005,2535.9158028,2520.5554079500002,2506.6291464900005,2496.3761503000005,2487.6932599200004,2480.9017471200004,2469.4797408400004,2455.9436547100004,2440.9881355900006,2421.2741733220005,2407.239443919,2398.7585415270005,2390.8838714580006,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,grass,2005.9143211,1809.2411178000002,1735.2264378,1729.5713272,1713.0970579,1697.2825921,1682.4654776999998,1664.6386240000002,1650.3223815000001,1638.6115095,1628.4157757,1621.4821023000002,1615.7491304,1611.3168598,1604.3354059,1596.6209819,1588.7281895,1579.2306174,1572.88865968,1569.43042754,1566.57210241,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,otherarable,241.44025070000004,261.846817,301.11847,295.397269,277.4886418,259.31571759999997,241.251849,217.92993859999996,197.93550240000002,180.4890503,164.27378870000004,152.6727552,142.65520089999998,134.54484669999997,121.61100590000004,106.62659369999999,90.21053640000001,68.0608428,50.01138790000001,38.652542600000004,28.0956516,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,pasture (grazed),59.352625700000004,87.78985739999999,93.6008297,109.90248969999999,126.5149017,145.40753979999997,164.55591,184.4473223,203.89653950000002,222.5887348,240.1582168,249.76333399999996,257.9195709,265.1646027,269.68182930000006,271.7234660000001,270.872635,263.7878893999999,253.87283720000002,245.46601249999998,234.08217850000003,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,pasture (other),2576.1890110999993,2462.891416,2512.7261237,2502.3461368,2479.3921549,2456.7725032,2435.3797301,2408.6309897,2386.8738562,2368.9882027,2353.6010289,2344.3361943,2336.7170502,2330.7491208,2322.1325642,2312.8742644,2303.50200437,2291.97077121,2280.7207292499997,2274.55181598,2269.86302085,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,shrubs,255.3134418,235.82644899999997,200.6659411,200.2221256,199.1229807,198.04469149999997,197.0064579,195.2494267,193.77823419999999,192.52864839999998,191.4102193,190.81871999999998,190.30939769999998,189.8953192,189.24130187,188.47686217999998,187.62361023999998,186.40554283,184.05160411999998,182.87065293999999,182.0619175,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,tundra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,urban,8.6467227,16.1444738,19.463024,19.463024,19.463024,19.463024,19.463024,19.463024,19.463024,19.463024,19.463024,19.463024,19.463024,19.463024,19.463024,19.463024,19.463024,19.463024,19.463024,19.463024,19.463024,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,biomass,0.0,0.0,0.0,0.0,0.07208134199999999,0.15016589,0.26556887,0.38553340999999997,0.45947261,0.54084973,0.6959988500000001,0.9411153000000001,1.2251386000000002,1.5400226000000001,2.1469578,3.0299609999999997,4.2258989,6.5090751,8.8622728548,11.071474015,14.000936045000001,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,crops,215.30504780000004,265.6871859,337.1951085,332.4517342381,342.8271485832,353.0176329794999,362.63438038839996,372.0822862725001,379.7643187632,385.8682888523,391.50855486540013,397.7500332349,403.1769118316001,407.4976111239999,415.34475472489993,424.24362487669987,433.96768991460004,446.5301286942998,455.50317736019986,460.5879454011998,465.1829869880001,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,desert,134.0737603,133.9175337,132.220351,132.220351,132.220351,132.220351,132.220351,132.220351,132.220351,132.220351,132.220351,132.220351,132.220351,132.220351,132.220351,132.220351,132.220351,132.220351,132.220351,132.220351,132.220351,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,forest (managed),7.552701000000001,10.627227900000001,11.0856379,12.096481499999998,12.9191073,13.675118800000002,14.456704799999997,15.491654299999999,16.3992625,17.301243200000002,18.2403908,19.104877,19.910347999999995,20.622317,21.636764,22.966174000000002,24.599784,27.232399000000004,29.786323,32.218478999999995,35.340759,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,forest (unmanaged),175.65757299999996,180.22552799999997,166.38708699999998,166.66117199999997,165.70047919999996,164.63070989999997,163.62014659999997,162.65579729999996,161.83585979999998,161.15844649999997,160.52786779999997,159.95071,159.45355739999997,159.05863959999996,158.34941969999997,157.52407609999997,156.58817159999998,155.27010759999996,154.2653126,153.61121459999998,152.9241384,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,grass,727.1627052999999,715.1430398999998,601.4899933000002,601.4260072000001,598.3458395000001,594.9276235000001,591.6856569000001,588.4934574000001,585.8107311000001,583.5562912000001,581.4418599,579.6241762000001,578.0666047000001,576.8258399,574.6871586000001,572.2060922000001,569.4336032000001,565.50589,562.3900693,560.2406542,557.8438170000001,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,otherarable,57.58024470000001,29.168485,46.2036281,46.65510679999999,44.158813099999996,41.3979582,38.739775699999996,36.094457999999996,33.869354900000005,32.010356200000004,30.254992,28.596225799999996,27.15953924,26.00583307,23.992067990000002,21.66615771,19.091202770000002,15.58661837,12.98387767,11.308815330000002,9.58837747,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,pasture (grazed),45.1533192,85.16696179999998,91.03410329999998,94.92715800000002,97.2509364,101.745908,105.952043,109.73484600000002,113.20199199999999,116.28188700000001,119.045988,119.83711199999999,120.28913499999999,120.48230000000001,120.623436,120.65543400000001,120.552899,120.59342899999999,120.32572600000002,119.758112,119.07867799999998,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,pasture (other),950.0321663,910.7578734000001,987.0180701999999,986.3954565,981.0322067999999,974.6273702999998,968.5927109999999,962.7374162999998,957.7957313,953.6538446999999,949.8172793,946.7140138999999,944.0851555999999,942.013756,938.4348417,934.2841159000001,929.6400144999999,923.0348897,917.8642535,914.3688893,910.5247596,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,shrubs,390.7577430099999,371.31731756000005,329.74642373999995,329.54704016999995,327.85349769,325.98755647999997,324.21296705,322.48446626,321.02337846999995,319.78849714999996,318.62698144999996,317.64175724999996,316.79352206,316.11362541,314.94446702,313.58443536,312.06085040999994,309.89754645999994,308.17883488099994,306.99445755899995,305.67574867699994,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,tundra,28.489723,28.4168635,27.622236700000002,27.622236700000002,27.622236700000002,27.622236700000002,27.622236700000002,27.622236700000002,27.622236700000002,27.622236700000002,27.622236700000002,27.622236700000002,27.622236700000002,27.622236700000002,27.622236700000002,27.622236700000002,27.622236700000002,27.622236700000002,27.622236700000002,27.622236700000002,27.622236700000002,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,urban,4.2019247,5.5402765,5.965001,5.965001,5.965001,5.965001,5.965001,5.965001,5.965001,5.965001,5.965001,5.965001,5.965001,5.965001,5.965001,5.965001,5.965001,5.965001,5.965001,5.965001,5.965001,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,biomass,0.0,0.0,0.0,0.0,6.23978522396,12.99408340436,22.714294988000002,32.636426703699996,38.821143755799994,45.0507984369,55.309171204500004,71.93858823099998,89.5474501095,107.21123650220001,137.7246418807,174.1104079702,213.5776921004,268.795301043,325.020760648103,371.92230150783,424.40737804521996,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,crops,178.31147349999998,218.66403150000005,224.35435180000007,238.07751002289,258.9511353653402,278.2411415951801,294.33168253347,305.22744516613017,315.6241638678699,324.3147374896803,330.53124646606005,331.15070530483996,329.5953895171597,326.14693259453986,320.79648180976005,315.1205830568101,311.0226364087899,310.2100436554997,315.75377253592,319.4514238691999,324.27084293660994,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,desert,19.159801200000004,19.2960415,19.5860837,19.5860837,19.5860837,19.5860837,19.5860837,19.5860837,19.5860837,19.5860837,19.5860837,19.5860837,19.5860837,19.5860837,19.5860837,19.5860837,19.5860837,19.5860837,19.5860837,19.5860837,19.5860837,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,forest (managed),30.3733857,47.95515699999999,49.537192499999996,52.18528477,56.17893365,60.311509519999994,64.3201902,69.3453893,73.8921397,77.94830699999999,81.46506699999999,83.9445665,85.77914310000001,86.84606799999999,87.7109389,88.0529821,87.90189940000002,86.2957251,85.09629159999999,84.4018878,83.99678139999999,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,forest (unmanaged),226.25588476000001,214.83378858999998,231.09660861,230.60192128,229.37848862,228.11652355,226.80476127,225.48332430000002,224.37570343000002,223.36360457000004,222.29944724000003,221.23122496,220.26762238,219.44347585,218.07775027,216.50220857000002,214.84184732000003,212.72878081000002,211.33821938000003,210.50787416,209.75497734,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,grass,1230.9418110000001,1266.2900630000001,1522.590765,1518.9576899999997,1512.5668419999997,1506.4350279999999,1500.5028349999998,1495.2951869999997,1490.9737449999998,1487.0812509999998,1483.0867999999998,1479.23498,1475.7586019999999,1472.8067409999999,1468.0370079999998,1462.3087015999997,1455.6163420999999,1445.3452404999998,1434.0223729999998,1425.0346123,1415.1539587999998,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,otherarable,324.314385,300.50154299999997,203.62929839999998,196.48437810000001,183.6384347,171.2010304,158.89340840000003,148.28445359999998,139.78297220000002,132.18233540000003,124.1806616,116.31822749999999,109.25750439999999,103.27488271999998,93.88170853,83.72983759,73.7770776,61.78596147,53.51765143999999,47.77898307000001,41.56058982000001,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,pasture (grazed),92.36679840000001,126.45334510000002,124.30818510000002,129.0706738,133.7958067,138.5324011,143.03567930000003,147.4726466,151.7528909,155.9522845,160.07169760000002,163.61526779999997,166.8577571,169.60202869999998,172.16743949999994,174.4971672,176.49112550000004,178.2424169,178.23940599999995,177.33551379999997,175.34455730000005,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,pasture (other),4166.267467000001,3926.013625,3504.9057090000006,3498.2613990000004,3488.1047730000005,3478.071368000001,3468.2109760000003,3459.2894430000006,3451.4654770000006,3444.1717577000004,3436.6444177000003,3429.5165305000005,3422.9750649000007,3417.3611876000004,3408.6911260000006,3398.2434661000007,3385.9717638,3366.6534159000003,3342.1754697000006,3321.4020737,3297.45865476,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,shrubs,1557.2560735000004,1701.7586666000002,1940.1006535,1936.8833235,1931.6672784,1926.6186095,1921.7085272,1917.4880617000001,1913.8340797,1910.4568723,1906.9325206,1903.5719941,1900.4837436999999,1897.8288919,1893.4352389,1887.957466,1881.32150937,1870.46580754,1855.35829575,1842.6871839,1828.57415557,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,tundra,0.2010009,0.2067632,0.390214,0.390214,0.390214,0.390214,0.390214,0.390214,0.390214,0.390214,0.390214,0.390214,0.390214,0.390214,0.390214,0.390214,0.390214,0.390214,0.390214,0.390214,0.390214,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,urban,9.200743200000002,12.6797522,14.1604396,14.1604396,14.1604396,14.1604396,14.1604396,14.1604396,14.1604396,14.1604396,14.1604396,14.1604396,14.1604396,14.1604396,14.1604396,14.1604396,14.1604396,14.1604396,14.1604396,14.1604396,14.1604396,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,biomass,0.0,0.0,0.0,0.0,2.4141600829,4.9996087615,8.7330045377,12.417736171,14.48865209,16.985022386,21.432626169,27.813981069,34.77554678,42.178756621000005,55.283633515000005,71.63564691,89.78030005000001,117.26592422,137.17339693,152.44001913,170.07980939,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,crops,463.25419490000013,586.9997113999999,639.3725880000002,617.663974798,646.588109625,674.0156794830001,699.6229992730001,725.3539196180001,747.272066107,763.202824811,774.762517364,791.1586329909999,805.3019356050002,815.3392317809997,838.4254124080002,869.7214219840002,913.4294605509998,963.718702166,1006.4372096349999,1031.369763174,1050.2541766709999,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,desert,4.538579,4.795164,4.7610358,4.7610358,4.7610358,4.7610358,4.7610358,4.7610358,4.7610358,4.7610358,4.7610358,4.7610358,4.7610358,4.7610358,4.7610358,4.7610358,4.7610358,4.7610358,4.7610358,4.7610358,4.7610358,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,forest (managed),117.4431068,152.1233737,160.5919356,173.0440604,184.2932975,194.8386153,205.2510078,217.8091086,228.44855849999996,238.64013020000002,249.46052070000002,259.8929066,269.3767496,277.9474795,287.7819382,296.9963705,302.3673036,311.7576470000001,317.4857549,324.5198244,335.59681430000006,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,forest (unmanaged),4282.371428399999,4153.2380056,4097.7129788,4098.037325899999,4071.5766636999997,4043.3293246999997,4015.9893877,3988.0224691,3964.4963582999994,3944.7790759999993,3926.9417636,3911.4300298,3898.0270898,3887.5770005,3868.0228392999998,3843.9167735999995,3815.6765512999996,3780.2107943399997,3754.8475592199998,3739.47483573,3725.1204092999997,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,grass,1008.0233955,859.6189801,824.774019,823.6787723,816.3047792,808.7117231999999,801.6342144999999,795.0889768,789.7257623999999,785.3174157199999,781.38076828,778.1272842599999,775.3657648799999,773.23233275,769.41417626,764.9397972099999,760.0126982099999,753.9878329399999,750.0187498299999,747.7808081679999,745.8379836839999,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,otherarable,97.42775189999999,70.65452669999999,125.12663169999999,122.80850430000001,116.98379360000001,110.30754199999998,103.60404510000001,96.90083899999999,90.97401249999999,85.73659690000001,80.80463839999999,76.8294786,73.33469279999998,70.5623979,65.3429074,58.66579360000001,50.5038508,38.7305103,29.5437609,23.5539348,17.585265119999995,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,pasture (grazed),217.3630506,334.30994699999997,357.76069,375.81150499999995,393.451739,416.959156,437.91609,454.773869,469.19602299999997,481.51852,491.52185699999995,488.63446200000004,484.022838,478.119173,469.388586,458.037319,443.39682099999993,423.27060100000006,402.274591,383.493014,362.2830534,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,pasture (other),1610.4853383,1614.9420177999998,1585.1287192000002,1580.4232595,1563.3711764000002,1545.6027459000002,1529.6660117000004,1515.4931661000003,1504.2087659000001,1495.1461561000003,1487.3059637000003,1481.5861046000002,1476.8641184,1473.3323911000002,1466.9353830000002,1459.5367380000002,1451.5802177500002,1442.1597897800002,1436.33434301,1433.2338615100002,1430.6643537190002,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,shrubs,505.46872490000004,522.5363009000001,501.90021800000005,500.90056630000004,497.38445950000005,493.60307570000003,489.9507259,486.50815850000004,483.5575885,481.0416271,478.7574842,476.8943562,475.29944960000006,474.0793732,471.77379086,468.91762002,465.62068914,461.2664434,458.25206587,456.501747903,454.94755902,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,tundra,1.8959769999999998,1.9203000000000001,1.891311,1.891311,1.891311,1.891311,1.891311,1.891311,1.891311,1.891311,1.891311,1.891311,1.891311,1.891311,1.891311,1.891311,1.891311,1.891311,1.891311,1.891311,1.891311,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,urban,16.2411293,23.3799723,25.491687799999998,25.491687799999998,25.491687799999998,25.491687799999998,25.491687799999998,25.491687799999998,25.491687799999998,25.491687799999998,25.491687799999998,25.491687799999998,25.491687799999998,25.491687799999998,25.491687799999998,25.491687799999998,25.491687799999998,25.491687799999998,25.491687799999998,25.491687799999998,25.491687799999998,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,biomass,0.0,0.0,0.0,0.0,4.7686221955,9.631536855,16.507377284,24.301768640999995,28.367033136,32.424265373,39.090828568,49.167421039999994,59.81807696,70.50038293,89.46417785,113.14169594999998,139.81527516999998,178.73884491,215.77086993000003,258.0345537,317.4275590999999,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,crops,263.4344539,265.77893400000005,265.6121572,267.91588782899987,280.47157353800003,293.533240513,305.0269263440001,311.82713176899995,318.2478012870001,322.627978316,325.1796846,326.76698666399994,327.16777403500004,326.379291945,326.14009946100003,324.7218520969999,322.170986294,316.09418710499983,309.742124547,303.10356189600014,294.16510128299996,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,desert,226.16444,226.16487,226.16485,226.16485,226.16485,226.16485,226.16485,226.16485,226.16485,226.16485,226.16485,226.16485,226.16485,226.16485,226.16485,226.16485,226.16485,226.16485,226.16485,226.16485,226.16485,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,forest (managed),320.1262091,343.57194689999994,247.880065,260.8796098,281.7255264,303.3544326,325.29498739999997,352.2373103,376.3648026,398.7438929,420.5091571,439.2862636,455.55632040000006,468.5736657,488.2181762,511.4677236,538.0257026,574.9662038,598.0733966,599.7317360000001,586.5916887000001,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,forest (unmanaged),5299.8654955,5320.5862869,5431.9966051,5419.9472784,5392.9245712,5364.7196410999995,5336.243058700001,5306.7198621,5281.402146699999,5258.7944779,5236.337136200001,5214.8397577000005,5195.6011302,5179.5534435,5152.9353937000005,5121.2806793,5085.8020542,5036.6966327,4998.574319599999,4971.93047479,4945.74090203,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,grass,103.41528170000001,53.429439099999996,78.3840446,78.1782735,77.586582,77.0099246,76.4379549,75.8984598,75.5022966,75.161105,74.8136507,74.4600949,74.1523755,73.9003586,73.49809809999999,73.0568134,72.6081127,72.045459,71.63697321,71.38161543,71.14662174,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,otherarable,240.16209899999998,247.214457,211.009298,206.98354100000003,196.41655499999996,185.619889,174.45415400000005,163.06727600000002,154.08623400000002,146.052322,137.73345300000003,129.19355199999998,121.492366,114.98224800000001,104.22160300000002,91.64226000000001,77.95396699999999,59.511416,46.0383213,37.402875200000004,28.8257297,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,pasture (grazed),26.106392200000002,31.5428012,29.074118199999997,30.553545500000002,31.586458900000004,32.606071199999995,33.4651679,34.273982000000004,35.0372567,35.7873995,36.50434880000001,37.011520999999995,37.4152257,37.6982556,37.70126569999999,37.5038117,37.0665944,36.138024,34.8437136,33.381251500000005,31.317652100000004,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,pasture (other),129.35621189,118.45336789000001,115.61573756000001,115.12012249000003,114.11239444,113.13232098,112.19096537000001,111.30963198,110.63878703,110.06382228000001,109.49750150000003,108.94993836,108.48057866000002,108.10266951000003,107.52307319000002,106.90027649000001,106.28566888,105.55597191000001,105.08148329900001,104.80543420700002,104.56541354500001,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,shrubs,2.3515723,2.2026167,2.2952556,2.2894413,2.2756509,2.2617063,2.2475429,2.233026,2.2217499,2.2118553,2.2020304,2.1924995,2.1841548,2.1773108,2.1661576,2.1532694,2.1393022999999998,2.1206071,2.10590103,2.0964135699999997,2.0875993,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,tundra,1996.1630148,1996.1555529000002,1996.1883338000002,1996.1883338000002,1996.1883338000002,1996.1883338000002,1996.1883338000002,1996.1883338000002,1996.1883338000002,1996.1883338000002,1996.1883338000002,1996.1883338000002,1996.1883338000002,1996.1883338000002,1996.1883338000002,1996.1883338000002,1996.1883338000002,1996.1883338000002,1996.1883338000002,1996.1883338000002,1996.1883338000002,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,urban,4.2498615,6.291534499999999,7.161206,7.161206,7.161206,7.161206,7.161206,7.161206,7.161206,7.161206,7.161206,7.161206,7.161206,7.161206,7.161206,7.161206,7.161206,7.161206,7.161206,7.161206,7.161206,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,biomass,0.0,0.0,0.0,0.0,0.06959854,0.1429344,0.24716997,0.3527904,0.41617740000000003,0.4839152,0.602511,0.7876411999999999,0.9895195999999999,1.2007982,1.5545695999999998,1.96321,2.38746,3.000301,3.4381999999999997,3.7674200000000004,4.162272,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,crops,96.42306599999999,95.43602459999998,101.31539550000004,98.78300388999999,100.32679401999997,102.00545217000001,103.57787753,108.05603762999999,112.03307078999998,115.51765762,118.599952705,120.06857901799998,121.302145121,122.01506031000002,124.44272214699997,128.125327053,133.047377864,140.20236543699997,145.85718281700002,149.05084608100003,151.32963787799994,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,desert,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,forest (managed),27.811012,31.776331,32.460325999999995,34.513924,36.699746000000005,38.805201000000004,40.898151,42.131746,42.89108,43.429548,44.006701,45.574902,47.026514,48.414433,49.825374,50.911660999999995,51.438103000000005,51.720155,51.697141,52.24557899999999,53.662397799999994,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,forest (unmanaged),314.061463,290.832512,305.523416,305.14259,303.15153499999997,301.080284,299.082994,296.38267299999995,294.123992,292.21264499999995,290.523217,289.427588,288.499762,287.7981423,286.4719873,284.8338243,282.98670849999996,280.61756979999996,278.98978049,278.03146308,277.16403583,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,grass,22.103966,22.874067,26.814933999999997,26.74724,26.495437,26.246543,26.016116,25.736405,25.514053999999998,25.333779,25.179497,25.074631999999998,24.988352,24.923816,24.811608,24.682134,24.546825000000002,24.3898204,24.294246599999997,24.2434542,24.2020565,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,otherarable,28.61938,43.324424,38.433983999999995,37.38890299999999,34.768474999999995,32.105997,29.549982,26.495278,23.944677,21.767946,19.802715,18.371611,17.154462,16.206833,14.559007999999999,12.576621000000001,10.359619,7.461349,5.4095835,4.1531913000000005,2.9809443,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,pasture (grazed),30.535076999999994,26.308274999999995,29.561794999999996,32.145272,34.497609,36.847771,38.943962,40.344546,41.486979999999996,42.379307999999995,42.999732,42.779027000000006,42.419984,42.039753999999995,41.307568,40.301973999999994,39.057779999999994,36.907926999999994,34.886261000000005,33.21751999999999,31.314139,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,pasture (other),122.751334,130.15032799999997,105.82375199999998,105.22076299999998,103.95799399999999,102.758331,101.70000719999999,100.54569129999999,99.6577251,98.9616422,98.38833689999998,98.02972869999999,97.7422689,97.53106449999999,97.16906509999998,96.7603355,96.34452550999998,95.88416339,95.62034141999999,95.488019912,95.385658664,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,shrubs,2.9184455000000002,2.5880655,2.7372859000000003,2.7291363,2.7036941000000003,2.6783368,2.65448488,2.6258049,2.60308321,2.58452001,2.5683970200000004,2.55718163,2.5479173100000003,2.54092696,2.52911625,2.51588759,2.50249262,2.487252895,2.478212461,2.473469052,2.469654524,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,tundra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,urban,3.0053849999999995,4.94227,5.557485000000001,5.557485000000001,5.557485000000001,5.557485000000001,5.557485000000001,5.557485000000001,5.557485000000001,5.557485000000001,5.557485000000001,5.557485000000001,5.557485000000001,5.557485000000001,5.557485000000001,5.557485000000001,5.557485000000001,5.557485000000001,5.557485000000001,5.557485000000001,5.557485000000001,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,biomass,0.0,0.0,0.0,0.0,0.9814899841,2.078005781,3.72478145,5.631299177,6.863382796,8.302717591999999,10.749111308000002,14.568423879000001,18.879370165,23.441060299999997,31.750359680000003,42.32980192000001,54.36796900999999,71.55116294000001,125.19227392000002,182.6085052,245.81279242000002,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,crops,337.57703,257.14866989999996,274.2362822000001,268.55069543499997,273.26919292500014,278.38476664200005,283.6891372770001,296.5270406370001,308.243425335,318.67852640099994,328.7676466109998,338.6717192660002,347.0496954530001,353.43219362200017,364.65397371099994,378.25449165,394.460700301,420.307470242,422.31141280799994,410.7908578170001,395.03233500500005,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,desert,448.44933890000004,444.4308841,448.8914527,448.8914527,448.8914527,448.8914527,448.8914527,448.8914527,448.8914527,448.8914527,448.8914527,448.8914527,448.8914527,448.8914527,448.8914527,448.8914527,448.8914527,448.8914527,448.8914527,448.8914527,448.8914527,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,forest (managed),3.4064718999999997,3.1532367,3.4385690999999996,3.7744836000000004,4.194965000000001,4.6598033999999995,5.1597693,5.6193526,6.0357875,6.428308599999999,6.813263600000001,7.1726612,7.4970319,7.769563,8.1615668,8.655877199999999,9.2771163,10.2478938,10.446285699999999,9.453474300000002,8.1133798,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,forest (unmanaged),93.43000239999999,84.4898917,89.4723645,89.66255319999999,89.47171019999999,89.2586531,89.0235414,88.5292149,88.10073019999999,87.71678359999999,87.3283821,86.9694445,86.64803549999999,86.3807639,85.9032819,85.3350681,84.6982465,83.7920269,82.9185452,82.1829703,81.54694929999998,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,grass,577.7196081000001,413.10931000000005,513.1377311000001,513.6157033999999,512.6109794,511.5378241000001,510.40573330000007,508.2002457000001,506.2801693000001,504.5618564000001,502.8411771000001,501.200278,499.7374366,498.51971100000003,496.3730402000001,493.77132990000007,490.79634580000004,486.3796661000001,480.9534066000001,476.97904731000006,473.28619518000005,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,otherarable,61.5881485,128.10784300000003,101.1183085,101.54313409999997,99.9818154,98.30762299999999,96.47178459999998,93.41530909999999,90.71159019999999,88.1711238,85.4328301,82.53653220000002,79.8315432,77.46416390000002,73.2362469,68.03064,62.076548800000005,53.347213700000005,44.24793373,37.15414863,29.92038898,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,pasture (grazed),53.290358499999996,35.7143968,45.576342100000005,49.097939200000006,52.348423499999996,55.55536449999999,58.4313335,60.994598700000004,63.303942099999986,65.321883,66.9972473,67.06084770000001,66.83935650000001,66.43968009999999,66.0034718,65.4732044,64.81317229999999,64.07224540000001,61.913249799999996,59.27751430000001,56.24405479,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,pasture (other),3474.5529638000007,3767.946659,3598.6702076999995,3599.2175058999997,3593.240875,3586.9749033999997,3580.5386869,3569.6052464,3559.9119610999996,3551.1040159,3542.2165214999995,3533.9079584999995,3526.4470081,3520.1875883999996,3508.8011804,3494.5541848999997,3477.6789674999995,3451.1925361999997,3416.6981714999997,3389.2124135,3360.7820270999996,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,shrubs,398.8575680000001,321.26256099999995,376.920224,377.107381,376.470353,375.813049,375.125015,374.047305,373.119332,372.283873,371.4233414,370.4827077,369.6401588,368.9347002,367.6874016,366.1645693,364.4015858,361.6802112,357.8884445,354.911015,351.83208232,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,tundra,91.9407451,84.95392400000001,88.421862,88.421862,88.421862,88.421862,88.421862,88.421862,88.421862,88.421862,88.421862,88.421862,88.421862,88.421862,88.421862,88.421862,88.421862,88.421862,88.421862,88.421862,88.421862,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,urban,7.019664299999999,7.517963699999999,7.946627299999999,7.946627299999999,7.946627299999999,7.946627299999999,7.946627299999999,7.946627299999999,7.946627299999999,7.946627299999999,7.946627299999999,7.946627299999999,7.946627299999999,7.946627299999999,7.946627299999999,7.946627299999999,7.946627299999999,7.946627299999999,7.946627299999999,7.946627299999999,7.946627299999999,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,biomass,0.0,0.0,0.0,0.0,9.30045223852,18.938533533970002,32.6201618438,46.6332607767,55.3676574353,65.4151460283,83.49242743379999,109.21792037489999,137.18884774030002,166.2347342493,218.1578268638,282.548081577,353.994496563,458.2698303369999,545.8138007279999,622.9275361809998,711.399741252,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,crops,1283.4231148000008,1373.0980311000005,1240.9893296999999,1216.7521300550002,1211.0940764449997,1211.197095258,1207.387926154,1208.8060594320004,1207.8624692329997,1202.842508208,1191.9095677569996,1186.095451804,1177.4103905369998,1165.105646268,1147.7931148920004,1127.172659521,1105.8992403740006,1071.9681908669997,1044.2265231440006,1014.1979841980002,974.3783256029997,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,desert,1145.0965787,1151.8131293999998,1165.56988,1165.56988,1165.56988,1165.56988,1165.56988,1165.56988,1165.56988,1165.56988,1165.56988,1165.56988,1165.56988,1165.56988,1165.56988,1165.56988,1165.56988,1165.56988,1165.56988,1165.56988,1165.56988,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,forest (managed),424.1483844,338.62028669999995,326.5752901000001,348.4114267,368.6930551,385.01239110000006,400.6000197,416.02935499999995,432.083573,447.7398839999999,461.727143,469.177168,474.925905,479.7007049999999,477.90771,471.41099899999995,461.155315,441.79795,426.319042,413.4117349999999,399.488117,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,forest (unmanaged),1308.9450053,1256.5884447,1414.0497294000002,1412.7754032,1402.9245208,1391.8789757,1381.3798741,1370.0160674,1361.5315983,1354.5565088,1347.8642627000002,1341.2746948000001,1335.6749113,1331.2986915000001,1323.5923984,1314.8709303,1305.9326881000002,1295.0773339900002,1288.14031512,1284.0366194800001,1280.4032280000001,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,grass,504.35595300000006,365.31238167000004,450.91330066999996,449.61825987000003,445.83228355,441.87043552000006,438.224137461,434.55629958800006,431.80070809500006,429.561916067,427.50288704300004,425.71697295200005,424.246323389,423.13574109000007,421.202013186,419.02975227100006,416.80183647999996,414.036851702,412.0100064962,410.72566781129996,409.5430068473,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,otherarable,19.940618,200.4999753,25.344465900000003,24.7191962,23.9124243,23.028098099999998,22.1602154,21.306980999999997,20.582130600000003,19.949261,19.3516675,18.9973023,18.7154878,18.5287533,18.034112099999998,17.3389438,16.4379175,14.8666833,13.197662000000003,11.795936499999998,10.195899900000002,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,pasture (grazed),121.38181139999999,239.30584,259.6039258,280.911095,299.71322319999996,319.6744005,336.921551,348.08372110000005,356.3434349000001,361.94176669999996,365.09319859999994,356.5549326000001,346.82861410000004,336.36913880000003,326.0701024,315.95753,305.9146733,296.4309491,285.2901821,273.5160487,261.65575299999995,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,pasture (other),3877.1191146999995,3750.7314621000005,3660.3621754,3645.3019862999995,3618.6512841,3590.2886421,3564.2441090999996,3539.7778544999996,3520.9428851999996,3505.5938273999996,3491.6698664,3482.3923143999996,3475.1100328999996,3470.2214223999995,3458.8210992,3444.47118886,3428.0824523799997,3403.8916792299997,3383.55958074,3369.5328258199997,3354.7055344699997,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,shrubs,275.9709656,263.31511963,307.2040345600001,306.5517011900001,304.91996867000006,303.1528626500001,301.5038439300001,299.8314465100001,298.5264439500001,297.44096242000006,296.4306940000001,295.6149282100001,294.9412134910001,294.4467167030001,293.4630473750001,292.2412075640001,290.82255869500005,288.70301752500006,286.4845807850001,284.8970822130001,283.2713524607001,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,tundra,391.48606170000005,393.61301749999996,474.4220948,474.4220948,474.4220948,474.4220948,474.4220948,474.4220948,474.4220948,474.4220948,474.4220948,474.4220948,474.4220948,474.4220948,474.4220948,474.4220948,474.4220948,474.4220948,474.4220948,474.4220948,474.4220948,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,urban,28.1278478,47.0971569,54.963393700000005,54.963393700000005,54.963393700000005,54.963393700000005,54.963393700000005,54.963393700000005,54.963393700000005,54.963393700000005,54.963393700000005,54.963393700000005,54.963393700000005,54.963393700000005,54.963393700000005,54.963393700000005,54.963393700000005,54.963393700000005,54.963393700000005,54.963393700000005,54.963393700000005,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,biomass,0.0,0.0,0.0,0.0,0.03787242700000001,0.08631180800000002,0.16055893799999998,0.24252346500000002,0.30132322799999994,0.36691813,0.46827126999999996,0.6342294599999999,0.8194346900000001,1.0264238799999998,1.4325000199999998,1.99661702,2.7148469100000003,3.9784035,5.0707447000000005,5.9607614,7.065445599999999,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,crops,36.487889199999984,34.04439469999999,31.594534,30.767709820499995,32.4509918996,34.48335248749999,36.635434150399995,41.3424439586,45.6058313941,49.50070213629999,53.249225489900006,56.1684712737,58.75800570479998,60.750251218100004,65.230418216,71.43515684120001,79.27731090949999,90.42787342120003,98.95494239109998,104.3004977834,109.26002547710002,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,desert,0.9572251,1.1625311,1.1497829000000002,1.1497829000000002,1.1497829000000002,1.1497829000000002,1.1497829000000002,1.1497829000000002,1.1497829000000002,1.1497829000000002,1.1497829000000002,1.1497829000000002,1.1497829000000002,1.1497829000000002,1.1497829000000002,1.1497829000000002,1.1497829000000002,1.1497829000000002,1.1497829000000002,1.1497829000000002,1.1497829000000002,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,forest (managed),5.958128,6.4131985,6.493207399999999,6.8560954999999995,7.4532239,8.0565093,8.6732301,9.2193372,9.6287193,9.947511099999998,10.2393241,10.7003339,11.124851999999999,11.517896100000002,11.9695501,12.3347501,12.502678099999999,12.3766039,12.0570954,11.920775599999999,11.891954000000002,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,forest (unmanaged),625.97974411,639.99494155,641.11923978,639.8807304200001,637.04391317,633.87088869,630.64779149,626.15704428,622.11192327,618.4347074550001,614.9672751520001,612.6127751270001,610.5799224460001,609.018605471,605.990004174,602.073531604,597.44499826,591.1813493843,586.8391583165001,584.3322234578001,582.1051337414001,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,grass,60.3382535,68.34269160000001,67.78753389999999,67.60825879999999,67.24304789999998,66.84397599999998,66.4443211,65.90764,65.43280648,65.00776425,64.61307379,64.34964096,64.12327615,63.94901728000001,63.624351360000006,63.21633994,62.749150582,62.140927564,61.739251911000004,61.5168329462,61.329501212500006,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,otherarable,12.8886878,1.9303289000000001,1.7743801000000001,1.729860366,1.69040969,1.6437848,1.59311258,1.5349342799999999,1.47130879,1.4049155100000001,1.33559804,1.28707706,1.242338738,1.2057150189999999,1.1353900590000001,1.036729873,0.9061816100000001,0.698600521,0.5287359663,0.4169972543,0.306801398,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,pasture (grazed),26.874146999999997,32.067199,36.569312,40.231,43.63291,47.18879499999999,50.551010000000005,53.293639,55.76974799999999,57.976544000000004,59.873149000000005,60.29886,60.509664,60.52900400000001,60.1390634,59.329201000000005,57.9933726,55.592735999999995,53.0193052,50.733337999999996,48.0163388,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,pasture (other),364.99030300000004,348.90735800000004,346.26482300000004,344.56065900000004,342.14616500000005,339.595174,337.1341259,334.2371834,331.69750089999997,329.45530909999997,327.4188429,326.1605351,325.09503909999995,324.2869182,322.82086380000004,320.99303230000004,318.91034377,316.21128292,314.47038890000005,313.537965661,312.777620656,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,shrubs,11.2686024,12.0400171,12.0689448,12.037674299999999,11.9734409,11.903040099999998,11.8322881,11.737143159999999,11.65295013,11.57749785,11.50725986,11.46000708,11.419374699999999,11.388055529999999,11.32975862,11.25659175,11.17291882,11.064099468999999,10.992317782,10.952594153,10.9191572719,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,tundra,1.9900248,2.3214209,2.2959842999999998,2.2959842999999998,2.2959842999999998,2.2959842999999998,2.2959842999999998,2.2959842999999998,2.2959842999999998,2.2959842999999998,2.2959842999999998,2.2959842999999998,2.2959842999999998,2.2959842999999998,2.2959842999999998,2.2959842999999998,2.2959842999999998,2.2959842999999998,2.2959842999999998,2.2959842999999998,2.2959842999999998,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,urban,1.3115078000000002,1.8200973,1.9257994999999999,1.9257994999999999,1.9257994999999999,1.9257994999999999,1.9257994999999999,1.9257994999999999,1.9257994999999999,1.9257994999999999,1.9257994999999999,1.9257994999999999,1.9257994999999999,1.9257994999999999,1.9257994999999999,1.9257994999999999,1.9257994999999999,1.9257994999999999,1.9257994999999999,1.9257994999999999,1.9257994999999999,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,biomass,0.0,0.0,0.0,0.0,25.6509636,49.734821,80.53813099999999,110.39882999999999,127.713067,145.61168899999998,174.02867,207.55953,238.35466,268.66217,310.38936,350.82674,385.79769,424.24599,445.8377269999999,459.88138499999997,473.422243,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,crops,407.82482459999994,340.0246171999999,338.3790895,331.4743026489998,319.6467384329999,308.51521762199997,293.6865221345,278.6750622421,269.32672210730004,259.28289882409996,243.86669556840002,226.77214770459992,210.3849934444,193.6012515738,170.15442288799997,146.41209818779998,124.86664522690002,99.92290644209999,85.46210008770002,76.07085530749998,66.63190171389999,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,desert,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,forest (managed),82.67825880000001,120.26983399999999,120.6186457,129.205747,127.605474,125.75010699999999,120.761372,116.194088,115.03698899999999,112.93389800000001,106.133144,95.683378,86.053697,76.418208,63.225025,51.008685,41.091156999999995,30.8358967,25.2608881,21.399396,17.9138285,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,forest (unmanaged),337.6808546,352.72460420000004,371.098916,370.90950219999996,366.01742659999996,361.64531459999995,357.261174,353.29112949999995,350.78049759999993,348.64436659999996,346.24941169999994,343.9100248,342.08115469999996,340.60707529999996,338.75939279999994,337.21904185,336.08208707999995,335.08943371,334.63089412,334.39876111999996,334.228313573,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,grass,26.10908356,34.545014110000004,38.52768167,38.497499069999996,37.984672939999996,37.51705242,37.07202931,36.630182829999995,36.33280937,36.093437019999996,35.85749364,35.640520609999996,35.469284074,35.338218499999996,35.158965562999995,35.00021674,34.877151075,34.769620282,34.723817291,34.704003353999994,34.690351692099995,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,otherarable,46.1930062,56.90403799999999,44.745239,43.543083,38.541301,33.923918,29.362511,24.997230000000002,21.997557999999998,19.454479,16.753892000000004,14.146023,12.018734999999998,10.25635,7.884341,5.713404000000001,3.9428621,2.2325366,1.3852539999999998,0.9441967,0.5861988,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,pasture (grazed),25.035065000000003,0.7659245000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,pasture (other),127.90789899999999,147.545815,138.963372,138.699437,136.91602419999998,135.3074221,133.7435927,132.274397,131.298364,130.48657029999998,129.63739809999998,128.8343137,128.19795240000002,127.6892818,127.0186056,126.42665880000001,125.96240790000002,125.53660470000001,125.33760351000001,125.24169632000002,125.16975849,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,shrubs,3.1767220000000003,3.061644,3.1104322,3.1136846,3.0815207,3.049604,3.0183006,2.982778,2.9573146,2.9367221,2.9168221,2.8982433,2.8829276,2.8711281,2.8536270999999997,2.83709669,2.82352112,2.81105554,2.80552023,2.80307695,2.801367993,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,tundra,0.0677652,0.279852,0.30344,0.30344,0.30344,0.30344,0.30344,0.30344,0.30344,0.30344,0.30344,0.30344,0.30344,0.30344,0.30344,0.30344,0.30344,0.30344,0.30344,0.30344,0.30344,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,urban,13.862011500000001,14.414957500000002,14.788969000000002,14.788969000000002,14.788969000000002,14.788969000000002,14.788969000000002,14.788969000000002,14.788969000000002,14.788969000000002,14.788969000000002,14.788969000000002,14.788969000000002,14.788969000000002,14.788969000000002,14.788969000000002,14.788969000000002,14.788969000000002,14.788969000000002,14.788969000000002,14.788969000000002,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,biomass,0.0,0.0,0.0,0.0,2.6172269557,5.84735865,10.41365693,16.439753069,26.108392525999996,37.386622059000004,56.85868247,89.20219137000001,122.98446598999999,155.98677324000002,216.07347172000001,289.2521942,367.5745058,474.48902769999995,552.4908143,616.8332436000001,687.668946,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,crops,754.0405528000003,711.6049984000001,697.8103677,672.3001354981003,663.0553581115003,655.0349181473,646.3900097764,642.4577293640998,635.3908309234,626.5098681426999,614.1438549849997,600.3743638581,585.1657534238,569.5930301563995,543.4014212909999,510.97329169479997,474.73240702549975,422.60726072019986,384.2437461472999,354.9079026035001,323.09370454870003,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,desert,0.5890224000000001,0.8958975,0.8945633,0.8945633,0.8945633,0.8945633,0.8945633,0.8945633,0.8945633,0.8945633,0.8945633,0.8945633,0.8945633,0.8945633,0.8945633,0.8945633,0.8945633,0.8945633,0.8945633,0.8945633,0.8945633,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,forest (managed),352.138507,404.510174,384.572644,411.417317,435.540255,458.396884,480.09141099999994,498.48031799999995,512.693628,524.5241540000001,531.477912,527.165168,520.547619,512.570753,493.26119900000003,467.531982,439.24625,399.364039,368.196166,337.897087,302.73334400000005,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,forest (unmanaged),923.6872555,904.7491534,927.2741533,926.6837810000001,920.2274474,913.5664092000001,907.0677843,899.4591961,893.2136551,887.9107660000001,882.6835947000001,877.4048978,872.9311614,869.3579744000002,863.7366279000001,857.7718178000001,852.1042511000002,845.7379937000002,841.8989119000001,839.6352397000002,837.731711,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,grass,95.3531161,107.83519930000001,110.1372062,110.1338219,109.0898208,108.0294144,107.0185164,105.8483062,104.9234116,104.16901419999999,103.44915105999999,102.74851890999999,102.18842262,101.76496531999999,101.1452733,100.55591494,100.06468409,99.60094608,99.38292493,99.282205424,99.210009692,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,otherarable,71.80497829999999,76.14973469999998,68.50679219999999,67.81444780999999,63.03971824999999,58.095319890000006,53.23903596,47.65458812999999,42.99208556999999,38.99217350999999,34.98030113000001,30.84528937,27.333095009999997,24.526298099999995,20.185658910000004,15.704071489999999,11.57821365,7.087580409999998,4.54713365,3.1583440200000004,2.0169219800000002,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,pasture (grazed),78.79799429999998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,pasture (other),461.61642853,497.8417201600001,496.15733174,496.06314893,492.27351309999995,488.34897587,484.52414644,480.02022988,476.35218269999996,473.2706340699999,470.25294980999996,467.22477422,464.69951437,462.71278169999994,459.6511376699999,456.5164774,453.67326476999995,450.6777569899999,449.06440983999994,448.22351606099994,447.561535222,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,shrubs,134.09922989999998,146.58000979999997,156.48335759999998,156.52958719999998,155.09988909999998,153.62304029999999,152.19823659,150.58165685,149.26804223,148.17881251999998,147.09439799,145.97750528999998,145.09235443,144.42879254,143.48672603999998,142.63606876,141.96855813,141.37681971,141.118375717,141.004827719,140.92579634,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,tundra,17.4540447,19.686097099999998,19.5972527,19.5972527,19.5972527,19.5972527,19.5972527,19.5972527,19.5972527,19.5972527,19.5972527,19.5972527,19.5972527,19.5972527,19.5972527,19.5972527,19.5972527,19.5972527,19.5972527,19.5972527,19.5972527,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,urban,61.6333256,81.3623267,89.7796705,89.7796705,89.7796705,89.7796705,89.7796705,89.7796705,89.7796705,89.7796705,89.7796705,89.7796705,89.7796705,89.7796705,89.7796705,89.7796705,89.7796705,89.7796705,89.7796705,89.7796705,89.7796705,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,biomass,0.0,0.0,0.0,0.0,0.5033525209999999,1.064549757,1.9156782,2.83360942,3.3785491299999997,3.94491004,4.93443779,6.404262269999999,8.24808955,10.286379230000001,14.188760760000001,19.4753292,26.3553379,38.5775804,49.2355754,58.0138726,68.4677366,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,crops,330.2520814,281.4783337,312.00996549999996,304.8296354890001,306.17988645800006,307.74394701,309.06314887699995,314.349629208,318.695386736,321.98084552299997,324.5775906020001,327.6816651839999,329.794604399,330.953663348,332.7229295330001,334.00208392599995,334.20112216800004,331.5549107469,327.651805281,322.79010012249995,315.7611096968,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,desert,0.0216445,0.0226744,0.0226999,0.0226999,0.0226999,0.0226999,0.0226999,0.0226999,0.0226999,0.0226999,0.0226999,0.0226999,0.0226999,0.0226999,0.0226999,0.0226999,0.0226999,0.0226999,0.0226999,0.0226999,0.0226999,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,forest (managed),17.241629800000002,25.4565372,27.670668300000003,31.227431600000003,34.91578189999999,38.8973748,43.15503830000001,46.8003796,50.0332571,53.1235443,56.2430308,58.61365,60.727217,62.500361000000005,64.948758,67.67472099999999,70.540831,73.84859200000001,75.984697,77.53892900000001,79.202369,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,forest (unmanaged),165.2913732,182.836949,180.9200854,181.7912726,181.4524579,181.0081602,180.5019914,179.3500325,178.34845439999998,177.478601,176.6355634,175.74351339999998,174.9639151,174.3310654,173.24230369999998,171.93519379999998,170.4641112,168.42867682,166.93125322999998,165.98323750999998,165.0764786,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,grass,58.660880000000006,70.01935,70.65567,71.11747000000001,70.71046000000001,70.25822000000001,69.7976,69.08238,68.51490000000001,68.0549,67.629761,67.19116600000001,66.826233,66.542961,66.087895,65.598105,65.11064400000001,64.540288,64.193844,64.00751600000001,63.8515892,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,otherarable,127.660099,124.61861,94.6433,96.54292,92.43576999999999,87.93732,83.20405699999999,76.29697800000001,70.600151,65.69985399999999,60.939125,56.164344,51.973346,48.54878,42.920491,36.473143,29.578373,20.637059999999998,14.557369000000001,10.8898501,7.5306018,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,pasture (grazed),45.162954000000006,15.2627981,14.0388804,13.940701599999999,13.8153405,13.7363353,13.6654473,13.6074431,13.572407100000001,13.5451826,13.5106966,13.2962964,13.0893154,12.871438599999998,12.596486800000001,12.2849043,11.9306955,11.4549981,10.9890953,10.577727999999999,10.1143327,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,pasture (other),57.7453619,101.5135233,101.4065467,101.87940789999999,101.3267171,100.70684510000001,100.06249729999999,99.0659535,98.25951470000001,97.5880842,96.9572843,96.3455696,95.82844159999999,95.4247022,94.7648964,94.04264405,93.31879860000001,92.47412811000001,91.98229364,91.73014398000001,91.53161565799999,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,shrubs,1.5294891,1.9702079000000001,1.9870712,2.0035427,1.9923561,1.97966421,1.96676619,1.94596593,1.92961347,1.91656117,1.90455398,1.89173389,1.88116678,1.87302692,1.85994137,1.84600526,1.83222019,1.81607721,1.806194243,1.800850442,1.796308588,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,tundra,3.50852,4.31489,4.30026,4.30026,4.30026,4.30026,4.30026,4.30026,4.30026,4.30026,4.30026,4.30026,4.30026,4.30026,4.30026,4.30026,4.30026,4.30026,4.30026,4.30026,4.30026,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,urban,8.057978,7.6380623,7.4774414,7.4774414,7.4774414,7.4774414,7.4774414,7.4774414,7.4774414,7.4774414,7.4774414,7.4774414,7.4774414,7.4774414,7.4774414,7.4774414,7.4774414,7.4774414,7.4774414,7.4774414,7.4774414,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,biomass,0.0,0.0,0.0,0.0,8.842798,17.640718,29.629560600000005,42.4840875,50.8021114,60.15031389999999,73.2986008,93.403171,114.093076,133.18682799999996,163.490688,196.91355199999998,228.70626400000003,266.86645599999997,290.5569059,306.67804229999996,321.7813043,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,crops,269.0475446000001,258.82951000000014,240.34428539999996,242.31492207669996,245.5180940383,247.95038833239997,247.3508134218,244.65323370690007,243.1883359983,240.0633736720999,234.0985310638,223.6337860090001,211.9688345182,200.5495739105,182.50836403819991,161.91559176320004,141.79613325099996,116.7378558328,100.90375000440004,89.8040283707,79.02584338379997,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,desert,0.406495,0.405475,0.405629,0.405629,0.405629,0.405629,0.405629,0.405629,0.405629,0.405629,0.405629,0.405629,0.405629,0.405629,0.405629,0.405629,0.405629,0.405629,0.405629,0.405629,0.405629,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,forest (managed),27.160443700000005,31.5751836,37.933150000000005,40.19749,41.406861,42.54713099999999,43.201282,44.112711999999995,45.288742,46.1012,46.12622900000001,44.407195,42.301661,40.19932200000001,36.29944,31.872301,27.608566999999997,22.323515,18.958621,16.622929,14.596370299999998,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,forest (unmanaged),210.93220180000003,210.9820656,225.57296739999998,225.2169735,223.10360150000002,221.1019397,219.10732869999998,217.1794382,215.7928907,214.5789132,213.31468130000002,211.9152214,210.7042304,209.7446232,208.3093599,206.9166222,205.7338168,204.5554438,203.9467816,203.63086035,203.39252985000002,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,grass,168.18744419000004,157.36175110000002,167.0268785,166.0862378,163.8216658,161.8084915,159.9607073,158.3876429,157.2856866,156.3548087,155.44659923,154.53558194,153.79288571,153.23121081,152.44920791,151.74450123,151.2109687,150.748955,150.54174755,150.447286712,150.387436834,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,otherarable,78.43383599999999,76.64150949999997,67.9130088,65.66635000000001,59.6020897,53.798929300000005,48.0855163,42.6655382,38.5993752,35.01777140000001,31.395662299999998,27.5482837,24.1830599,21.4844062,17.3936654,13.2423438,9.555194599999998,5.674529700000001,3.565153,2.4294078999999997,1.5277836,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,pasture (grazed),15.3703068,15.298428600000001,15.6492309,16.217314500000004,16.528957199999997,16.8117265,16.958943300000005,17.151965699999998,17.3360155,17.4166022,17.3416226,16.9002685,16.375560800000002,15.831274499999997,14.904655100000003,13.760351500000004,12.5162976,10.865543400000002,9.566823500000002,8.5407993,7.5155385,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,pasture (other),164.7712053,179.32958749999997,170.74809129999994,169.81364679999993,167.58707629999995,165.55773109999996,163.67197629999995,161.98986759999994,160.79190169999995,159.78913429999994,158.82630579999994,157.88896939999995,157.12793319999994,156.55637634999994,155.75583575999994,155.03699190999995,154.49539751999995,154.03850441999995,153.85122036299995,153.77311107099993,153.72352867999993,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,shrubs,61.5691234,63.66110559999999,67.9653945,67.64013360000001,66.7419554,65.9361003,65.1867983,64.5285536,64.0682398,63.6810037,63.305067699999995,62.9206276,62.6058522,62.3695206,62.0418897,61.7507942,61.530397199999996,61.34221633,61.26206154,61.22692442,61.20239216,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,tundra,1.6765111,1.5347971,1.5519034,1.5519034,1.5519034,1.5519034,1.5519034,1.5519034,1.5519034,1.5519034,1.5519034,1.5519034,1.5519034,1.5519034,1.5519034,1.5519034,1.5519034,1.5519034,1.5519034,1.5519034,1.5519034,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,urban,5.966297400000001,7.9022262,8.4108611,8.4108611,8.4108611,8.4108611,8.4108611,8.4108611,8.4108611,8.4108611,8.4108611,8.4108611,8.4108611,8.4108611,8.4108611,8.4108611,8.4108611,8.4108611,8.4108611,8.4108611,8.4108611,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,biomass,0.0,0.0,0.0,0.0,0.208243,0.416826,0.704235,0.969712,1.11604,1.26859,1.54447,1.98454,2.44623,2.91994,3.71137,4.6517,5.63524,6.92209,7.98930192,9.3266419,11.3541792,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,crops,7.697682499999999,6.8197032,6.536176499999999,6.19717902,5.98093076,5.827572250000001,5.658506859999999,5.568489189999999,5.455869914999999,5.3286815480000005,5.18238861,5.091192313,4.985463421,4.868653163000001,4.697568470999999,4.484105626999998,4.225946342,3.839381138000001,3.6086367409999998,3.5139117750000004,3.419238321999999,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,desert,19.213670699999998,19.3797739,20.120334700000004,20.120334700000004,20.120334700000004,20.120334700000004,20.120334700000004,20.120334700000004,20.120334700000004,20.120334700000004,20.120334700000004,20.120334700000004,20.120334700000004,20.120334700000004,20.120334700000004,20.120334700000004,20.120334700000004,20.120334700000004,20.120334700000004,20.120334700000004,20.120334700000004,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,forest (managed),30.98463,28.262410000000003,28.51878,29.71342,31.60295,33.44585,35.20048,37.08218,38.70679,40.106840000000005,41.33823,42.25495,42.982220000000005,43.501090000000005,44.30986,45.23215,46.29467,47.76622,48.706140000000005,48.708708,48.102255,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,forest (unmanaged),214.6325,219.071472,221.46170899999998,220.745901,219.336569,217.88151,216.437343,214.863649,213.57588499999997,212.452139,211.36856,210.373823,209.517266,208.824296,207.753825,206.54488199999997,205.267425,203.617899,202.4392381,201.6694949,200.937292,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,grass,9.020421220000001,9.15225989,9.297554439999999,9.24595444,9.15924099,9.07448194,8.99468933,8.91213265,8.846541720000001,8.79175927,8.74191558,8.699386549,8.664203812,8.636836199000001,8.596154536,8.552337207,8.508621113,8.457167313,8.425022069899999,8.4068882489,8.3916502254,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,otherarable,2.8568350000000002,4.9248999,5.9097859999999995,5.6440909999999995,5.182869,4.725905,4.2836359999999996,3.8197519999999994,3.4429790000000002,3.120043,2.816726,2.5503029999999995,2.323795,2.142326,1.8658789999999998,1.5600260000000001,1.2454939,0.8585334,0.6209967,0.495896,0.3692274,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,pasture (grazed),6.9378251,7.6722156,7.169917000000001,7.4575354,7.7229161,8.0052123,8.268061,8.497557100000002,8.6942221,8.871803,9.0397571,9.1570435,9.2556351,9.3303709,9.3565011,9.3332452,9.2416254,9.020853500000001,8.726846199999999,8.4119089,7.9729887,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,pasture (other),27.580084489999997,22.680128360000005,16.413495010000002,16.30493316,16.11786752,15.936845589999999,15.76969984,15.605651149999998,15.48284423,15.382986659999998,15.292390359999999,15.21449013,15.151869719999999,15.10412863,15.03767231,14.97173849,14.912513528,14.851035222,14.817916337,14.801120303,14.788292731,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,shrubs,0.20522469000000002,0.25408192,0.28427093,0.28270728,0.28006769,0.27748553,0.27505376,0.27253245,0.27052773,0.26885285,0.26732941,0.26602953,0.26495392,0.26411723,0.26287121,0.26152699,0.26018348,0.258599619,0.257607474,0.257046219,0.256574806,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,tundra,74.3942594,74.9506544,77.3142334,77.3142334,77.3142334,77.3142334,77.3142334,77.3142334,77.3142334,77.3142334,77.3142334,77.3142334,77.3142334,77.3142334,77.3142334,77.3142334,77.3142334,77.3142334,77.3142334,77.3142334,77.3142334,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,urban,2.0095543,2.3653885999999997,2.5059768,2.5059768,2.5059768,2.5059768,2.5059768,2.5059768,2.5059768,2.5059768,2.5059768,2.5059768,2.5059768,2.5059768,2.5059768,2.5059768,2.5059768,2.5059768,2.5059768,2.5059768,2.5059768,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,biomass,0.0,0.0,0.0,0.0,5.3505051,10.775376000000001,18.24039,26.146,30.997189,36.273581,45.104228,57.135290000000005,69.79012,82.55547,104.2959,130.20138,158.03993,196.4998,225.04760258,245.82977496,266.68539243,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,crops,1448.1441087999995,1423.1402992999997,1444.2178766999987,1456.835539257,1471.0869350991009,1485.3908407948004,1496.7487655096,1511.2466375715,1516.6281077603992,1518.5567718526997,1515.7478481373996,1506.7191531321014,1495.5729508599998,1482.7220452935007,1464.681571167699,1444.2123611422007,1423.141082896701,1395.5027151674003,1373.3523667566005,1351.0637043730005,1324.6637511399992,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,desert,103.0261125,98.23209100000001,94.33241040000001,94.33241040000001,94.33241040000001,94.33241040000001,94.33241040000001,94.33241040000001,94.33241040000001,94.33241040000001,94.33241040000001,94.33241040000001,94.33241040000001,94.33241040000001,94.33241040000001,94.33241040000001,94.33241040000001,94.33241040000001,94.33241040000001,94.33241040000001,94.33241040000001,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,forest (managed),212.8848558,230.9330183,233.7854608,236.88054987999996,243.25937011000005,248.48264340000006,252.7026533,254.9787322,261.17402379999993,267.1894773000001,273.16237929999994,280.60165450000005,287.8479369,294.7744391000001,302.63515430000007,310.6214013000001,318.39315880000004,326.6848954,334.0852121,344.3676910999999,358.4798165,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,forest (unmanaged),461.77270626,456.32227146,488.42580056,485.54770088000004,481.04516812,476.69361718,472.65340405,468.34718361,465.47187219,463.12972867,461.01283135,459.34172017000003,457.965772479,456.920376644,455.09090217700003,452.942104648,450.59849330900005,447.502182812,445.35023437,444.063230297,442.837396017,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,grass,198.04532236999998,187.6635233,193.66202462,192.08459315,189.62874288,187.38469401,185.404904429,183.421451322,182.117153837,181.096298487,180.212869553,179.53926024499998,179.003672156,178.606633369,177.96532229299999,177.26307946,176.554786185,175.71705143999998,175.20150389219998,174.9233135015,174.6898825589,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,otherarable,199.00148589999995,220.85198699999998,200.01238600000002,188.70225,170.566301,153.09636600000005,136.860817,119.538336,107.45130499999999,97.526465,88.509631,81.30822800000001,75.30994999999999,70.65217729999999,62.907201,53.99881819999999,44.462108799999996,32.0901636,23.45974559999999,18.2092177,13.248061300000002,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,pasture (grazed),44.086433000000014,20.273710000000005,13.524020999999998,15.789400999999996,18.169452,20.242497999999998,22.073681999999998,23.672932000000003,25.268416999999996,26.721812,27.956591,27.937548000000003,27.799186999999996,27.592511,27.108919,26.407137000000002,25.452837999999996,23.917117000000005,22.383831,21.012437999999996,19.402271000000006,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,pasture (other),61.5609696,89.7349999,85.13118199999998,84.15134399999998,82.85298899999998,81.7479984,80.8197708,79.9539837,79.38877629999999,78.9592156,78.6024245,78.37031689999999,78.1894475,78.05693989999999,77.8503116,77.63045312999999,77.41416387,77.15842271999999,76.98873026,76.892681977,76.81026857699999,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,shrubs,229.36493731999997,222.276215,194.58954149999997,193.356407124,191.38773545899997,189.53420247199998,187.84551416699998,186.04371898399998,184.85226787599998,183.89459383,183.03897664599998,182.39516323799998,181.869374108,181.46816330599998,180.81210789099998,180.07198828599996,179.29166475429997,178.27675024289996,177.48039957189997,176.98639332369999,176.53075609649997,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,tundra,19.679546,21.706934,20.961478,20.961478,20.961478,20.961478,20.961478,20.961478,20.961478,20.961478,20.961478,20.961478,20.961478,20.961478,20.961478,20.961478,20.961478,20.961478,20.961478,20.961478,20.961478,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,urban,13.302846199999998,19.734887699999998,22.227069799999995,22.227069799999995,22.227069799999995,22.227069799999995,22.227069799999995,22.227069799999995,22.227069799999995,22.227069799999995,22.227069799999995,22.227069799999995,22.227069799999995,22.227069799999995,22.227069799999995,22.227069799999995,22.227069799999995,22.227069799999995,22.227069799999995,22.227069799999995,22.227069799999995,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,crops,233.345854,280.8240833,321.65994829999994,318.22738559000004,321.31601228,325.44367566,329.72971335,333.95604976,336.6034642999999,337.95288,338.28322933,344.45427781000006,349.63866901,353.49927649,361.55712639999996,372.8123862,387.03820995000007,405.95040874,420.60276103999996,429.39731253,437.57765198,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,desert,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,forest (managed),95.94852,71.08344199999999,66.4348,70.534562,75.24834899999999,79.581355,83.730434,88.518366,92.899354,97.25376,102.06279,103.82244,105.4268,106.97406000000001,107.94802,107.48967999999999,105.11591,100.84207,96.40245,93.94968999999999,91.72464000000001,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,forest (unmanaged),1023.72915,1001.93553,952.57613,951.2512800000001,945.341262,938.8876530000001,932.519355,925.8489950000001,920.51511,916.1364450000001,912.266509,907.4880330000001,903.5220750000001,900.4946060000001,895.2769840000001,889.0405910000001,882.272228,874.090002,868.7346890000001,865.702204,863.0288389000001,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,grass,96.310314,97.25493800000001,93.628014,93.37791999999999,92.585859,91.76321399999999,90.976996,90.1658312,89.5295552,89.0136103,88.56088439999999,88.0695999,87.67107109999999,87.3715443,86.88314799999999,86.3340048,85.7786301,85.16223009999999,84.80354391,84.62004351,84.47515614,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,otherarable,12.7076,24.4155,41.6038,40.6526,38.2098,35.6041,33.0169,30.2442,27.957,26.0117,24.2274,22.3339,20.7277,19.4684,17.3503,14.8124,12.002,8.41371,5.9316,4.4471,3.08716,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,pasture (grazed),14.926215,15.757932,15.494943,17.88348,20.132963999999998,22.4309,24.51187,26.49143,28.27943,29.850369999999998,31.177390000000003,30.720309999999998,30.14539,29.50143,28.587870000000002,27.440820000000002,26.04968,24.149540000000002,22.326510000000003,20.778664,19.072029,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,pasture (other),96.196721,78.004552,76.566529,76.036722,75.130132,74.25299199999999,73.47836799999999,72.738987,72.1797,71.74544999999999,71.385718,71.0761938,70.8322106,70.65486969999999,70.3607806,70.0329168,69.7070071,69.3552662,69.16217569999999,69.06898409,68.99865402,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,shrubs,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,tundra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,urban,4.105021000000001,7.99308,9.30522,9.30522,9.30522,9.30522,9.30522,9.30522,9.30522,9.30522,9.30522,9.30522,9.30522,9.30522,9.30522,9.30522,9.30522,9.30522,9.30522,9.30522,9.30522,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,biomass,0.0,0.0,0.0,0.0,0.280190413,0.5612280159999999,0.953361399,1.368912057,1.617653309,1.88686255,2.37170997,3.1645612499999998,4.0621348,5.02651955,6.8905618099999995,9.45236465,12.640758869999999,17.9209572,22.079521029,25.102645390000003,28.382677049999998,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,crops,31.257063,30.843581500000003,30.343746899999996,29.70617774,29.611670049999994,29.50187359,29.254085490000005,29.110483430000006,28.794292139999996,28.32363713999999,27.74700532,27.679536480000007,27.487352920000003,27.167611360000002,26.920686620000005,26.62288076,26.20962367,25.46013231,24.56197997,23.553754929999993,22.347784900000008,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,desert,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,forest (managed),34.742433,19.464526,20.880144,22.106789000000006,23.710693999999997,25.362959999999998,27.024248000000004,28.803490999999998,30.499157,32.101942,33.584359,34.356104,34.949163,35.358965000000005,35.522534,35.32504999999999,34.737331999999995,32.990836,31.520954000000003,30.543452,29.396637999999996,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,forest (unmanaged),229.691361,241.79192,243.41956699999997,243.01394999999997,241.62825199999997,240.21405,238.811396,237.20824,235.946465,234.86283500000002,233.77831099999997,232.575626,231.530731,230.68087,229.233429,227.55363799999998,225.78227199999998,223.5386722,222.11251149999998,221.29361139999997,220.56553639999998,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,grass,3.9402157,3.8075343,4.0066124,3.9947947,3.9641242,3.9333778,3.9036906,3.8713911,3.8459236999999997,3.8244133,3.8038534999999998,3.7832003,3.7658544,3.752234,3.7301894399999997,3.7057094,3.68102138,3.65185669,3.63448474,3.62517076,3.617521551,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,otherarable,5.7430375,5.514833,5.236709500000001,5.0899343,4.7853848,4.474701400000001,4.1666018,3.8229672999999997,3.5376415,3.2878217999999997,3.0464993000000002,2.8176221,2.6188291,2.4573923,2.1935091,1.8827866,1.5418383999999998,1.0872152999999998,0.7717291,0.5786629999999999,0.39959475,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,pasture (grazed),0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,pasture (other),2.91783083,2.8227731200000004,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,shrubs,4.8084459,8.2272641,8.4032493,8.3783358,8.3097143,8.2417841,8.1765574,8.104477600000001,8.0488784,8.002495,7.9582954699999995,7.913394350000001,7.8758671200000006,7.846417730000001,7.799039520000001,7.7474869,7.69714256,7.640361760000001,7.608794640000001,7.592741447,7.580163409000001,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,tundra,0.127287,0.086505,0.0910635,0.0910635,0.0910635,0.0910635,0.0910635,0.0910635,0.0910635,0.0910635,0.0910635,0.0910635,0.0910635,0.0910635,0.0910635,0.0910635,0.0910635,0.0910635,0.0910635,0.0910635,0.0910635,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,urban,10.8265628,11.495371,11.673026499999999,11.673026499999999,11.673026499999999,11.673026499999999,11.673026499999999,11.673026499999999,11.673026499999999,11.673026499999999,11.673026499999999,11.673026499999999,11.673026499999999,11.673026499999999,11.673026499999999,11.673026499999999,11.673026499999999,11.673026499999999,11.673026499999999,11.673026499999999,11.673026499999999,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,biomass,0.0,0.0,0.0,0.0,4.58012208,9.432168357999998,16.26432298,23.537982200000002,27.761976800000003,32.239604799999995,39.681903469999995,50.37220627,61.28672316000001,71.96311828,89.8578443,110.31028920000001,131.0901495,158.6295685,186.3713942,207.47736600000002,229.331431,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,crops,164.5595333999999,173.2604366000001,166.63966909999996,167.4879331307,174.56291871679994,181.31319139650003,186.5158302560001,189.23469932769993,192.2017081159,194.05565718850005,193.8648947287002,192.97686353209997,191.35621006259998,188.76156468139996,185.45616651829994,182.22443289870006,179.7870099779,176.15884501550008,171.26684378691996,165.75453434090997,158.49954673746998,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,desert,0.840457,0.845318,0.867397,0.867397,0.867397,0.867397,0.867397,0.867397,0.867397,0.867397,0.867397,0.867397,0.867397,0.867397,0.867397,0.867397,0.867397,0.867397,0.867397,0.867397,0.867397,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,forest (managed),34.282953,36.48315490000001,36.0659867,37.77140289999999,39.09606070000001,40.311114,41.172934000000005,43.100142000000005,45.03674899999999,46.727518,47.936657,48.184752,48.08268999999999,47.72987500000001,46.2585501,44.1615339,41.841811899999996,38.701029600000005,36.147210799999996,34.70872730000001,33.7330211,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,forest (unmanaged),476.01168699999994,443.2448,449.85353,448.733902,444.932556,441.24515560000003,437.6031934,434.59304000000003,432.3144144,430.3225877,428.2541404,426.1151544,424.236717,422.69873279999996,420.1364299,417.3660006,414.70173943,411.67102012,409.60971042,408.42003242,407.396226584,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,grass,123.24557926,118.95063050000002,131.88827550000002,131.4402821,130.3623676,129.3307476,128.3475625,127.4889362,126.81700861,126.24049189,125.68202079999999,125.17360573999999,124.74023969,124.39435783,123.8258501,123.19665382999999,122.55804945199999,121.75638717899999,120.887638149,120.3366404506,119.8665466337,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,otherarable,87.67835999999998,93.89682600000002,105.180024,102.34077300000001,95.264069,88.145745,80.976238,74.417525,69.19276500000001,64.57827299999998,59.904808,55.322916000000006,51.271271000000006,47.921132,42.3123734,35.96164019999999,29.4550966,21.483185000000006,15.887893299999996,12.42773141,9.244160449999999,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,pasture (grazed),58.25324229999999,62.356904500000006,64.3389674,70.2357992,76.2431289,81.95545760000002,87.0875584,91.1416662,94.6944982,97.7049521,100.1327129,100.1212395,99.66103899999999,99.05448360000001,97.90979510000001,96.34528979999999,94.31472559999999,91.18759007000001,86.45541865999999,82.17106523,77.36891164999999,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,pasture (other),706.4248729000001,727.2780289,675.8648775,672.4812637000001,666.9243937,661.6610670000001,656.7913437000001,652.5389490000001,649.0984001,646.1741314,643.4715269,641.41461378,639.69271072,638.32467437,635.98674591,633.245401,630.2576885,626.133474248,621.41652033,618.29569886,615.5111150534,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,shrubs,230.56948677,222.86094125999998,247.56305059000002,246.90333139,245.42874593000002,244.00005317,242.63566664,241.34152558,240.27696858000002,239.35136242000002,238.465849799,237.713279876,237.06686574800003,236.546643452,235.65071504900004,234.58336839100002,233.38825843030003,231.67346509310002,229.35172029950002,227.80284970751003,226.44366142290002,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,tundra,0.07467470000000001,0.054295800000000005,0.0588056,0.0588056,0.0588056,0.0588056,0.0588056,0.0588056,0.0588056,0.0588056,0.0588056,0.0588056,0.0588056,0.0588056,0.0588056,0.0588056,0.0588056,0.0588056,0.0588056,0.0588056,0.0588056,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,urban,8.199843300000001,10.9096548,11.819978,11.819978,11.819978,11.819978,11.819978,11.819978,11.819978,11.819978,11.819978,11.819978,11.819978,11.819978,11.819978,11.819978,11.819978,11.819978,11.819978,11.819978,11.819978,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,biomass,0.0,0.0,0.0,0.0,5.6586522098,11.854519740599999,20.820854111700005,29.982170942200003,36.185889812999996,43.219941055999996,53.79646362599999,68.179603476,82.716569966,96.552228258,119.095315792,143.66722919800003,167.37095975,195.70290244,239.08059885000003,273.58700665000003,307.09889367,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,crops,217.5516435,230.64186290000004,232.34953919999998,233.49838324599997,239.38860110699997,245.222827185,249.14078072700002,260.173881402,270.28697455300005,277.85709992,281.9937337730001,278.61209563,273.82838428,268.10290831,258.91831587999997,249.21112245000006,240.98108925000003,234.178585,223.71387285999998,213.69432645999998,203.91955149999995,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,desert,2062.6683949999997,2073.046055,2061.9284620000003,2061.9284620000003,2061.9284620000003,2061.9284620000003,2061.9284620000003,2061.9284620000003,2061.9284620000003,2061.9284620000003,2061.9284620000003,2061.9284620000003,2061.9284620000003,2061.9284620000003,2061.9284620000003,2061.9284620000003,2061.9284620000003,2061.9284620000003,2061.9284620000003,2061.9284620000003,2061.9284620000003,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,forest (managed),2.2635525999999997,2.2011079999999996,2.2978520000000002,2.478254,2.667864,2.856938,3.0176030000000003,3.0689780000000004,3.113121,3.12368,3.074455,3.040391,2.979568,2.900902,2.742038,2.5741189999999996,2.4428099999999997,2.32723,2.20323,2.113714,2.0398240000000003,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,forest (unmanaged),12.765838779999997,7.179202,7.060933,7.0689969999999995,7.0420180000000006,7.0117840000000005,6.975372999999999,6.913582999999999,6.865724,6.822703000000001,6.7777668,6.743057499999999,6.712353499999999,6.686833399999999,6.647483299999999,6.6088874,6.5754725,6.5391037,6.5052148800000005,6.48157413,6.4585285,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,grass,106.3505165,131.6087586,127.1388651,126.98103440000001,125.9553963,124.92132020000001,123.85007220000001,122.34330630000001,121.24678860000002,120.33705770000002,119.479498,118.8577161,118.34027060000001,117.93334112000001,117.33508912,116.77114308,116.29959594,115.81899193000001,115.46381637,115.242470063,115.041162338,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,otherarable,84.11632900000001,90.6610293,109.67993179999999,109.03317600000001,104.53857259999998,99.7911565,94.60851650000001,87.4940459,81.7539393,76.5619133,71.22658090000002,66.788992,62.8558954,59.57648450000001,54.41971768000001,49.00809729,43.84771992,37.56874693,31.5227135,27.08641987,22.53056578,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,pasture (grazed),13.736221299999999,15.218291,15.533910500000001,17.657644692999998,19.900995184999996,22.254445206,24.46805062,26.47189137,28.35712809,30.046405599999996,31.50011336,32.259913309999995,32.853845820000004,33.288537930000004,33.67898669,34.07727733,34.56793756,35.38454057,34.550220419999995,33.49466683,32.35276024,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,pasture (other),1937.2879682200003,1823.9001847,1866.67055061,1864.60154561,1859.30088405,1853.74762138,1848.08388444,1839.49830959,1832.07804471,1825.33754727,1818.74421423,1814.39580638,1810.5485302499999,1807.3686005,1802.0874141,1795.7634109599999,1788.47049324,1777.07584962,1757.131165929,1742.400273055,1728.3692104470001,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,shrubs,686.8700216,743.4627058,693.0266488,692.4390794,689.3051075000001,686.0976292,682.7931194,677.8121621,673.8704537,670.4520998999999,667.1654155,664.8808518,662.9227456,661.3483623,658.8338802999999,656.0769978999999,653.2022208999999,649.16225732,643.5878902899999,639.6572306099999,635.94731727,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,tundra,0.102718,0.101694,0.100393,0.100393,0.100393,0.100393,0.100393,0.100393,0.100393,0.100393,0.100393,0.100393,0.100393,0.100393,0.100393,0.100393,0.100393,0.100393,0.100393,0.100393,0.100393,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,urban,10.4070964,16.1089724,18.3409002,18.3409002,18.3409002,18.3409002,18.3409002,18.3409002,18.3409002,18.3409002,18.3409002,18.3409002,18.3409002,18.3409002,18.3409002,18.3409002,18.3409002,18.3409002,18.3409002,18.3409002,18.3409002,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,biomass,0.0,0.0,0.0,0.0,3.595011,6.972575000000001,11.28518,14.43084,15.9055,17.367929999999998,20.85575,25.21896,29.45661,33.49089,40.23648,47.34544,54.11143,62.203849999999996,84.77837299800001,102.579293744,118.82448412099998,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,crops,176.74457609999988,187.81036250000005,183.89767710000007,181.58850930550003,177.34213724300002,173.80684670639997,169.60443182490005,168.3993754949999,167.80367452430002,166.9609943398001,164.72604665210008,161.97888336339986,159.3621725072,156.79072814699995,153.18627688769988,150.0774727495,147.9593255387999,146.71572471539994,133.96571803649994,123.31487312209998,113.91964320509996,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,desert,261.78839700000003,264.198175,265.366191,265.366191,265.366191,265.366191,265.366191,265.366191,265.366191,265.366191,265.366191,265.366191,265.366191,265.366191,265.366191,265.366191,265.366191,265.366191,265.366191,265.366191,265.366191,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,forest (managed),3.6598013,2.9409422,3.2159133,3.0457234,2.7546963,2.4923433999999998,2.2101245,1.9058711,1.713546,1.547987,1.3344797,1.2278628,1.1284825,1.0370030000000001,0.8817668700000001,0.73003199,0.60409271,0.47446012000000004,0.40377819000000004,0.36575190999999996,0.33590179,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,forest (unmanaged),0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,grass,16.2878959,13.2389087,13.303256,13.0929008,12.8268493,12.6276189,12.4721965,12.338412100000001,12.2561245,12.1976852,12.148392390000001,12.12214896,12.10190872,12.08678617,12.06507193,12.04476619,12.027646653000001,12.010103255,11.997786312,11.991079286700002,11.9857135947,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,otherarable,33.2599576,32.361857,28.694345200000004,26.557500299999997,23.807595399999993,21.4373441,19.3597272,17.118345599999998,15.4419494,14.0770344,12.8308957,12.1648491,11.6083694,11.1694889,10.447411400000002,9.602115300000001,8.672761299999998,7.355198700000001,5.68415818,4.572000619999999,3.5708708799999997,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,pasture (grazed),33.51016,43.19952000000001,43.15954000000001,50.43723,57.306410000000014,62.75463,67.23987,70.31283000000002,73.12474999999999,75.48088,76.94613999999999,76.72797,76.27829999999999,75.74266000000001,74.14453999999999,71.94501,69.25686999999999,65.14185800000001,58.69260000000001,53.66714399999999,48.63437999999999,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,pasture (other),17.692750900000004,7.623454000000001,7.6163872,7.466718500000001,7.327550500000001,7.23203762,7.161798580000001,7.099300080000001,7.057168500000001,7.026019380000001,7.0004469,6.988262300000001,6.978548363,6.971165112000001,6.959707693,6.946869231000001,6.9334173660000005,6.9155577384,6.8961436193,6.884778042700001,6.87557534017,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,shrubs,265.591626,255.703591,260.938375,258.636766,255.865202,253.50219460000005,251.49210150000005,249.2204163,247.52271710000002,246.1668758,244.98316850000003,244.39640350000002,243.91089700000003,243.53657776000006,242.90400224,242.13361344000003,241.25974252000003,240.00872435000002,238.40703136800005,237.45044879800002,236.67883507100004,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,tundra,26.807032,26.787769,26.894301,26.894301,26.894301,26.894301,26.894301,26.894301,26.894301,26.894301,26.894301,26.894301,26.894301,26.894301,26.894301,26.894301,26.894301,26.894301,26.894301,26.894301,26.894301,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,urban,2.4690608,3.9465445000000003,4.7256990000000005,4.7256990000000005,4.7256990000000005,4.7256990000000005,4.7256990000000005,4.7256990000000005,4.7256990000000005,4.7256990000000005,4.7256990000000005,4.7256990000000005,4.7256990000000005,4.7256990000000005,4.7256990000000005,4.7256990000000005,4.7256990000000005,4.7256990000000005,4.7256990000000005,4.7256990000000005,4.7256990000000005,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,biomass,0.0,0.0,0.0,0.0,1.8584037199999999,3.9777932099999997,7.223008000000001,11.12757949,14.022535000000001,17.3514676,23.085425100000002,31.758354299999997,41.8194256,52.915225899999996,75.04932140000001,107.3752715,150.662715,226.877679,323.9579275,465.48254899999995,674.4414680000001,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,crops,365.0616374,313.33526259999996,307.60092610000004,296.3484056980001,306.898198744,318.0225281419999,329.614707289,353.1885231939999,374.34682065399977,393.0243021619999,411.27451750900013,430.0667245970001,446.3156738109999,459.01420087499986,480.9451491969998,505.71034251699984,531.0221043889999,560.1066021399998,577.6746522480001,583.5894459980001,577.3159927599999,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,desert,68.362198,68.359746,68.370948,68.370948,68.370948,68.370948,68.370948,68.370948,68.370948,68.370948,68.370948,68.370948,68.370948,68.370948,68.370948,68.370948,68.370948,68.370948,68.370948,68.370948,68.370948,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,forest (managed),668.6554015,381.12867579999994,358.9730025,383.12851668,424.51698189999996,469.94376151999995,518.53736785,574.7548609300001,626.33355782,675.16141568,724.65222999,770.95040263,813.1138241,848.6183083,906.80251526,979.1701158000001,1065.66747449,1193.07947707,1271.55530636,1265.37576737,1206.1206237299998,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,forest (unmanaged),9836.294819109999,10224.31286656,10254.270374329999,10245.83627166,10219.51529408,10190.62219118,10159.5357649,10118.93469073,10081.84577252,10046.94801874,10011.10193405,9976.38506502,9944.390411319999,9917.028195429999,9870.20422686,9810.93389848,9739.49488972,9631.007201620001,9535.443801309999,9460.06644732,9384.2023182,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,grass,1284.8810488699999,1253.3117555000001,1265.29293648,1263.66339816,1258.8876104600001,1253.73916985,1248.31819653,1241.49129885,1235.4168809,1229.8414228000001,1224.24144845,1218.90884332,1214.1010043200001,1210.0639101,1203.3256864100001,1195.1191569,1185.730048952,1172.598345553,1162.447888868,1155.647614605,1149.523543922,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,otherarable,996.4603549999999,891.6387549999998,879.645104,876.7289949999998,856.1937389999999,833.3958409999999,808.622453,775.486687,745.658033,717.685546,688.223357,658.097118,629.821155,605.008562,561.527181,506.062995,439.4680880000001,339.429394,261.260093,209.13655999999997,154.885817,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,pasture (grazed),84.0822503,40.4303963,45.7579786,45.87009319999999,46.0784838,47.05122600000001,47.900550900000006,48.92448220000001,50.0353601,51.138516800000005,52.2178957,52.10408939999999,51.93795870000001,51.6334333,51.3299249,50.9400504,50.3855654,49.52427550000001,48.136534600000005,46.2803133,43.734526599999995,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,pasture (other),740.8249435,878.1530591999999,870.5946143,870.5650264999999,868.2290956,865.4640567,862.5068972,858.4051139,854.7066216,851.258438,847.6586317,844.2280377,841.0391802,838.2892558,833.4452405999999,827.3886583,820.3534058,810.2897829999999,802.5696444,797.5688926,793.02645104,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,shrubs,15.20862416,14.988546670000002,15.189228100000001,15.18194561,15.14568324,15.10622106,15.06479401,15.00916561,14.95945888,14.91397636,14.868282480000001,14.82432305,14.784611689999998,14.7513343,14.6943947,14.62350137,14.53928604,14.41140434,14.277726278,14.176569192999999,14.072099256000001,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,tundra,1980.7455579999998,1975.754593,1976.151057,1976.151057,1976.151057,1976.151057,1976.151057,1976.151057,1976.151057,1976.151057,1976.151057,1976.151057,1976.151057,1976.151057,1976.151057,1976.151057,1976.151057,1976.151057,1976.151057,1976.151057,1976.151057,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,urban,18.8532477,18.033142899999998,17.5826521,17.5826521,17.5826521,17.5826521,17.5826521,17.5826521,17.5826521,17.5826521,17.5826521,17.5826521,17.5826521,17.5826521,17.5826521,17.5826521,17.5826521,17.5826521,17.5826521,17.5826521,17.5826521,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,biomass,0.0,0.0,0.0,0.0,0.9950085930000001,2.015985077,3.46105271,4.95915676,5.88180345,6.883859910000001,8.625205670000001,11.544265280000001,14.780766980000001,18.16571867,24.55879846,33.039990200000005,43.1386167,58.8385642,71.90207600000001,81.79837550000002,92.9049083,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,crops,80.3696072,58.34360440000002,54.906734,57.02297493,58.79209801399999,60.37810021900002,61.77238030800001,62.75723591899998,63.499807639000004,63.756980068,63.507791927999996,64.37256844299999,64.93346793599999,65.05806903599999,65.67430543500002,66.40186668900003,67.44155581500002,67.621263484,67.731701585,67.248367475,65.976828798,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,desert,2.5908718,2.8418037,2.8594641,2.8594641,2.8594641,2.8594641,2.8594641,2.8594641,2.8594641,2.8594641,2.8594641,2.8594641,2.8594641,2.8594641,2.8594641,2.8594641,2.8594641,2.8594641,2.8594641,2.8594641,2.8594641,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,forest (managed),16.722621999999998,19.9042649,18.0388199,18.8579325,20.5887247,22.3736403,24.184988500000003,26.611828000000003,28.805677,30.845849,32.808859,34.287673999999996,35.44991,36.300717,37.19278,37.794816000000004,37.875993,37.518762,36.984047,36.623023,36.302334,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,forest (unmanaged),21.66027175,18.27946679,22.12091282,22.05842371,21.97332249,21.8776505,21.77666587,21.68368794,21.59967994,21.52101638,21.43779951,21.34565884,21.25859569,21.183954280000002,21.05093776,20.88803488,20.7048308,20.47149148,20.31268899,20.217303610000002,20.13033917,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,grass,176.21141000000003,147.209339,169.585141,168.871548,167.955713,166.980152,166.003631,164.9781,164.12817,163.383934,162.651284,161.9575361,161.33921370000002,160.8327573,159.9855326,159.0232398,158.031504,156.81772320000002,155.95687900000001,155.4196465,154.90571224,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,otherarable,59.3389068,96.0263,72.72511,70.53332999999999,67.54272,64.28742,61.010208,57.489332,54.453584,51.721036,49.008956,46.593316,44.3964,42.55826700000001,39.416211,35.616029,31.361407000000003,25.538256,21.218944,18.404717999999995,15.596463499999999,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,pasture (grazed),45.109140000000004,53.432532,56.503975999999994,59.832314999999994,63.131857999999994,67.424527,71.356812,75.619369,79.63438099999999,83.35526200000001,86.755203,87.11413399999999,87.22360699999999,87.03962,86.23198800000002,84.87891499999999,82.99379400000001,80.18269200000002,77.34946300000001,74.78758,71.882068,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,pasture (other),776.4648749999999,782.8032939999999,779.14635,775.9603169999999,772.299507,768.096854,764.022519,759.653934,755.890309,752.550389,749.3455289999999,747.0307877,744.9585382,743.2786891,740.4386148,737.0624453,733.3315743,728.1337519,723.8853750000001,720.9969053,717.9595753,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,shrubs,35.19809642,32.717004530000004,34.979032270000005,34.869172660000004,34.727105800000004,34.57161537,34.417864970000004,34.25322304,34.112504390000005,33.98764819,33.865528610000005,33.760039840000005,33.66554989,33.58830708,33.45691042,33.30064058,33.12674895,32.88362286,32.66492556,32.51014456,32.34771682,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,tundra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,urban,2.6935711999999996,4.801278400000001,5.4940488,5.4940488,5.4940488,5.4940488,5.4940488,5.4940488,5.4940488,5.4940488,5.4940488,5.4940488,5.4940488,5.4940488,5.4940488,5.4940488,5.4940488,5.4940488,5.4940488,5.4940488,5.4940488,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,biomass,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,crops,22.714059800000005,22.4769818,23.3687482,24.479215710000002,27.743449998,30.590545626000004,33.4632667,36.613931085,39.45363439800001,42.040933964000004,44.543689552000004,46.852528492999994,49.008628896,50.764174370999996,54.63425885400002,60.201251445,67.702537918,79.96585111,91.139293208,99.28440219,107.90636243000003,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,desert,2.2586988,2.3427854,2.3580247,2.3580247,2.3580247,2.3580247,2.3580247,2.3580247,2.3580247,2.3580247,2.3580247,2.3580247,2.3580247,2.3580247,2.3580247,2.3580247,2.3580247,2.3580247,2.3580247,2.3580247,2.3580247,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,forest (managed),3.1305093999999998,4.1140719,4.4317722,4.71108086,5.25969102,5.79917152,6.37954176,7.10919797,7.78291831,8.43076901,9.11595896,9.83956167,10.53368369,11.16167127,12.20198212,13.53513074,15.16573361,17.7075098,19.8697418,21.5752256,23.575044799999997,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,forest (unmanaged),915.8511292000001,907.4520367,909.9224494,908.7793517,907.0617483999999,904.0923693999999,901.0385957,897.8216769999999,894.8350594999999,892.0431731,889.3165745,887.132797,885.1590589,883.5690526999999,880.5083124,876.2760702,870.6401608,861.2685954,852.7969342,846.6742257,840.1211872,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,grass,165.3354608,171.3181985,173.36086609999998,172.777571,172.0422847,170.7070649,169.4191886,168.16423369999998,167.0605194,166.08436909999998,165.1933551,164.6131663,164.1087653,163.72023929999997,162.9960439,162.0695365,160.97840929999998,159.48718699999998,158.4236834,157.79173790000002,157.2245025,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,otherarable,14.952034999999999,16.187935,12.616036999999999,12.529838000000002,12.55338,12.342538999999999,12.106027000000001,11.842694,11.574566,11.304199,11.026968,10.845106,10.673409,10.527355,10.265407,9.886792,9.338139,8.274868,7.142531999999999,6.200224,5.060817999999999,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,pasture (grazed),16.824641,20.347186,21.607411999999997,22.779141,21.831395999999998,24.696551,27.431022,29.748725999999998,31.851044,33.737697,35.401,35.870895999999995,36.139991,36.233000000000004,35.992243,35.419374,34.504923,32.955049,31.255719,29.682698,27.850206,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,pasture (other),176.06169599999998,172.267325,168.29344700000001,167.563122,167.14891200000002,165.456949,163.891231,162.471916,161.253909,160.20599,159.28255650000003,158.7473345,158.296546,157.9589085,157.3631592,156.60830560000002,155.7098914,154.4451471,153.52706400000002,152.9794301,152.4824876,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,shrubs,7.2100263,6.8666106,7.0374984000000005,7.018857000000001,6.9974792,6.9531096,6.9094,6.8658051,6.8265729,6.7911186,6.758138000000001,6.7368197,6.7181945,6.7038044,6.6769434,6.6417207000000005,6.5983405,6.5341674,6.4833768,6.45026623,6.4176943699999995,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,tundra,4.251099,4.358691,4.4310659999999995,4.4310659999999995,4.4310659999999995,4.4310659999999995,4.4310659999999995,4.4310659999999995,4.4310659999999995,4.4310659999999995,4.4310659999999995,4.4310659999999995,4.4310659999999995,4.4310659999999995,4.4310659999999995,4.4310659999999995,4.4310659999999995,4.4310659999999995,4.4310659999999995,4.4310659999999995,4.4310659999999995,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,urban,2.1868628,3.0447306,3.349788,3.349788,3.349788,3.349788,3.349788,3.349788,3.349788,3.349788,3.349788,3.349788,3.349788,3.349788,3.349788,3.349788,3.349788,3.349788,3.349788,3.349788,3.349788,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,biomass,0.0,0.0,0.0,0.0,0.22942127699999998,0.497562468,0.9127723000000001,1.4254143099999999,1.7795243,2.19070133,2.8951412,3.95805511,5.20609462,6.572968489999999,9.271393400000001,13.1438872,18.229891999999996,27.2055408,35.48692032300001,42.62968965000001,51.42333348000001,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,crops,107.98060630000003,136.19252780000002,141.81262919999998,143.25944020230003,153.6965945584,164.40438410529984,174.68936287099996,185.37591050100013,194.52464888269995,202.1654698899,209.12615227660004,215.26455168979993,220.48827388700002,224.36012084179995,232.27717118459995,242.0891634354,253.5837494989999,269.15795776300024,280.21072236199996,285.34631062700004,288.26195895499984,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,desert,292.68025209999996,295.53194679999996,293.4455979,293.4455979,293.4455979,293.4455979,293.4455979,293.4455979,293.4455979,293.4455979,293.4455979,293.4455979,293.4455979,293.4455979,293.4455979,293.4455979,293.4455979,293.4455979,293.4455979,293.4455979,293.4455979,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,forest (managed),33.1258292,50.316953999999996,58.290116,61.64870499999999,66.774888,72.108932,77.610269,84.029162,89.69053000000001,94.966294,100.24613599999999,105.30326000000001,109.86095499999999,113.74991099999997,119.25252299999997,125.44155800000001,131.93714300000002,139.968017,145.746828,150.227247,155.30405100000002,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,forest (unmanaged),1530.307882,1493.8052020000002,1497.3541790000004,1494.8156680000002,1487.8550150000003,1480.4990660000003,1473.1172620000002,1464.9411660000003,1457.8190480000003,1451.5023670000003,1445.3805070000003,1439.9271060000003,1435.0811080000003,1431.1222120000002,1424.0619000000004,1415.3230530000003,1405.1669640000005,1390.7942140000002,1379.9871590000002,1373.0392360000003,1366.2667325000002,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,grass,529.51532955,512.9241964400001,539.65428011,538.2851319000001,534.84653462,531.35597495,528.0000735200001,524.6052722100001,521.7304334400001,519.2565096000001,516.9244634800002,514.9547290700002,513.23842742,511.8553963600001,509.44558971000004,506.56873844000006,503.35426468,499.01687165300007,495.82578000500007,493.8034655740001,491.8572748150001,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,otherarable,43.718044,43.6733317,40.0542845,39.36415045,38.08119599999999,36.67070168400001,35.193760473,33.554314954000006,32.060396152,30.677313089000002,29.296568038999997,28.059426882000007,26.935583406000006,25.991386766999998,24.338005777,22.236533205999997,19.685845221000005,15.827760189,12.659129021000004,10.4730702959,8.211841953599999,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,pasture (grazed),27.273794100000003,43.081283299999996,45.57368829999999,48.66910850000001,51.512280000000004,54.64369299999999,57.58022810000001,60.07091609999999,62.29242590000001,64.2195959,65.8609283,66.0420088,65.96842869999999,65.74544139999999,65.3809416,64.7993434,63.933314900000006,62.475725800000006,60.69466170000001,58.8844018,56.65266080000001,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,pasture (other),985.8147515,979.0146084999998,931.0135170000002,927.9810062000003,921.7450428000001,915.3035332000001,909.1046402000001,902.9717898000002,897.7297831000002,893.2149873000002,888.9979367000002,885.6768129000001,882.8047582000003,880.5049040000002,876.4340899000002,871.5341359000003,866.0047965000002,858.4762994000001,853.0565441000002,849.7254925500002,846.5844580700001,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,shrubs,122.34274069999996,114.34857360000001,120.0981346,119.82761520000001,119.1097932,118.3670221,117.64238920000001,116.8769454,116.2240618,115.65756990000001,115.1230623,114.66496769999999,114.26706130000001,113.94860860000001,113.38916440000001,112.71444280000001,111.9548103,110.92847963999999,110.18305585,109.72180107999999,109.28860730000001,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,tundra,179.451496,181.54453699999996,182.477503,182.477503,182.477503,182.477503,182.477503,182.477503,182.477503,182.477503,182.477503,182.477503,182.477503,182.477503,182.477503,182.477503,182.477503,182.477503,182.477503,182.477503,182.477503,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,urban,3.9843577999999997,5.7615778,6.4199369,6.4199369,6.4199369,6.4199369,6.4199369,6.4199369,6.4199369,6.4199369,6.4199369,6.4199369,6.4199369,6.4199369,6.4199369,6.4199369,6.4199369,6.4199369,6.4199369,6.4199369,6.4199369,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,biomass,0.0,0.0,0.0,0.0,1.5975670800000001,3.39963722,6.06155165,9.172867449999998,11.25361132,13.64505094,17.457253000000005,22.607849299999998,27.994314499999998,32.9562065,41.460739100000005,51.34948249999999,61.7863527,75.4289071,86.54314810000001,95.56823759999997,105.06657000000001,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,crops,123.9005088,124.20562079999995,122.85832090000011,124.5002048217999,128.76785507049996,132.50911374420002,135.4959126494,140.36204081499997,144.47143339839994,147.56808606939998,149.56065495640004,149.29686137890002,148.44104973589992,147.14219965389998,145.60389244720008,144.03961547659986,142.6011304819001,141.15094455640002,139.75702446970016,137.48430198250003,134.55533027579992,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,desert,86.44322370000002,87.6517723,87.6938387,87.6938387,87.6938387,87.6938387,87.6938387,87.6938387,87.6938387,87.6938387,87.6938387,87.6938387,87.6938387,87.6938387,87.6938387,87.6938387,87.6938387,87.6938387,87.6938387,87.6938387,87.6938387,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,forest (managed),42.1504799,41.85038050000001,41.61787319999999,42.236653999999994,43.113265600000005,44.0216298,44.927492400000006,45.914437400000004,46.5979553,47.227814200000005,47.93583850000001,49.317676600000006,50.6401795,51.89441370000001,53.2937178,54.5673342,55.634086700000005,56.3283894,56.69327800000001,57.2184922,57.89017899999999,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,forest (unmanaged),122.39502845999999,127.49374674,128.33261884,127.59590548000001,126.34545507000003,125.20340671000001,124.17764770000001,123.14464597000001,122.31729390000002,121.64285018000002,121.05033179000002,120.62546629000002,120.27317230000001,120.00481796000001,119.53061739000002,118.96369640000002,118.34077950000001,117.51521832700003,116.94428429900002,116.59845204600002,116.27534868300002,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,grass,54.76671543999999,48.213580560000004,49.14146547000001,48.97609860000001,48.59225908000001,48.20489588000002,47.798051640000004,47.26148572000002,46.842088960000005,46.474751590000004,46.119177810000004,45.87360947000001,45.663915960000004,45.50144840000001,45.26041922000001,45.02456933400001,44.82000008900001,44.613530883,44.49048967100001,44.42028458400001,44.36416023740001,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,otherarable,102.87951899999999,99.754024,96.65173799999998,93.169578,86.84144400000001,80.591998,74.34253500000001,66.98116200000001,60.90347200000001,55.472954,50.13035599999999,46.131721,42.601278,39.75593399999999,35.15276299999999,30.037401000000003,24.8615416,18.538902399999998,14.2188855,11.515887900000001,8.947256900000001,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,pasture (grazed),17.474865500000003,20.2105934,19.998367899999998,24.4102036,29.2680238,34.1322519,38.73424729999999,42.8822838,46.659185099999995,49.8729094,52.3086322,52.34889059999999,51.9888462,51.44485500000001,50.077393099999995,48.17077079999999,45.831366,42.40738670000001,39.23933199999999,36.3869184,33.3379389,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,pasture (other),315.60416789999994,312.56351019999994,314.63520550000004,312.70282860000003,309.8119779,307.0264323,304.3307636,301.22243107,298.77697834,296.70806931,294.82438143,293.69323932000003,292.73665275,291.99303061,290.86986752,289.70543737,288.60418732,287.31603939300004,286.319823125,285.673423226,285.07045059,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,shrubs,142.91082605,145.4632731,145.88240829999998,145.52661479999998,144.78012539999997,144.0288438,143.2498522,142.1767181,141.295984,140.5055844,139.73139238,139.22279816,138.77857738,138.42509088,137.86856092,137.25972549,136.63858403999998,135.81877028,134.91183995,134.252064157,133.610931386,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,tundra,18.637168,18.7942,18.9803803,18.9803803,18.9803803,18.9803803,18.9803803,18.9803803,18.9803803,18.9803803,18.9803803,18.9803803,18.9803803,18.9803803,18.9803803,18.9803803,18.9803803,18.9803803,18.9803803,18.9803803,18.9803803,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,urban,1.2842511,2.2458615,2.6542433,2.6542433,2.6542433,2.6542433,2.6542433,2.6542433,2.6542433,2.6542433,2.6542433,2.6542433,2.6542433,2.6542433,2.6542433,2.6542433,2.6542433,2.6542433,2.6542433,2.6542433,2.6542433,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,biomass,0.0,0.0,0.0,0.0,0.050708,0.1011441,0.17130679999999998,0.24529299999999998,0.29128,0.344224,0.438723,0.580009,0.739217,0.91017,1.241988,1.704109,2.29499,3.32102,4.17987,4.84343,5.6035699999999995,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,crops,14.047322500000002,14.139187499999998,13.219178000000001,12.8397386646,12.7062535393,12.5530840186,12.3616070456,12.374984949299998,12.3233072256,12.2082994691,12.040374179299999,11.982805617199999,11.878440270800002,11.7336022355,11.586181505899999,11.435511913499997,11.272482773599998,11.049438001799999,10.7879628421,10.462345105299999,10.0598860176,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,desert,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,forest (managed),5.01513,6.087,7.10231,7.55362,8.04414,8.55285,9.06927,9.49268,9.898340000000001,10.29513,10.685410000000001,10.924109999999999,11.14264,11.33464,11.5097,11.61674,11.63787,11.414359999999999,11.20768,11.107019999999999,10.96988,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,forest (unmanaged),63.76333000000001,62.29711,62.06499,61.98924,61.593320000000006,61.201280000000004,60.82275,60.33751,59.9623,59.653200000000005,59.364540000000005,59.07571,58.83465,58.646640000000005,58.32511,57.947892,57.542263000000005,57.015477000000004,56.667391,56.46256,56.274716,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,grass,0.1865911,0.16207549999999998,0.16446670000000002,0.16391160000000002,0.16242,0.16098320000000002,0.1596316,0.15808560000000002,0.15690077000000002,0.15593458000000002,0.15505595000000003,0.15425297000000002,0.15359583000000002,0.15308999,0.15228947,0.15141272,0.15054013000000002,0.14952900000000002,0.148940071,0.148630327,0.14838079,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,otherarable,0.0,0.238164,0.307957,0.297601,0.276894,0.256278,0.236271,0.214034,0.195844,0.180243,0.165605,0.152466,0.141266,0.132331,0.118044,0.101491,0.0835001,0.0596792,0.0429151,0.0325119,0.0227325,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,pasture (grazed),0.37231400000000003,0.294221,0.30378,0.318876,0.329865,0.338554,0.343827,0.342631,0.337612,0.328843,0.31638900000000003,0.29697799999999996,0.276675,0.25611459999999997,0.2334894,0.20988,0.1856439,0.15810770000000002,0.1330164,0.11137430000000001,0.0887714,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,pasture (other),0.06570256,0.05192155,0.05360811,0.053312109999999996,0.052678130000000004,0.05210826,0.051611790000000005,0.05107875,0.050700340999999996,0.050415168999999996,0.05017207,0.049965387,0.049807162,0.049698196,0.04948682,0.049241889999999996,0.048989378,0.04868344,0.048511288,0.0484249234,0.048354196200000005,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,shrubs,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,tundra,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,urban,1.623478,1.804208,1.8576899999999998,1.8576899999999998,1.8576899999999998,1.8576899999999998,1.8576899999999998,1.8576899999999998,1.8576899999999998,1.8576899999999998,1.8576899999999998,1.8576899999999998,1.8576899999999998,1.8576899999999998,1.8576899999999998,1.8576899999999998,1.8576899999999998,1.8576899999999998,1.8576899999999998,1.8576899999999998,1.8576899999999998,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,biomass,0.0,0.0,0.0,0.0,0.7067644069999999,1.4540898849999997,2.537191775,3.7485330639999996,4.455748814000001,5.207361039999999,6.643807549999999,8.953367380000001,11.620951160000002,14.57520091,20.16193967,27.83893104,37.39951857,53.8673182,67.69320413999999,78.76371414000002,91.87916340000001,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,crops,514.4861780999994,589.3579892000001,637.8237312000001,636.2128229359998,647.2065280730002,657.9543197829998,667.2461275970004,684.2225410180004,697.6569496129999,707.8255607530002,715.2951547499997,719.795273085,722.6584431880002,723.6361701870001,727.2566617460002,731.7483268579999,736.8386722240001,740.7889676139995,741.6766421210001,738.7344089479999,733.0668944479994,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,desert,0.4736614,0.3941989,0.3623491,0.3623491,0.3623491,0.3623491,0.3623491,0.3623491,0.3623491,0.3623491,0.3623491,0.3623491,0.3623491,0.3623491,0.3623491,0.3623491,0.3623491,0.3623491,0.3623491,0.3623491,0.3623491,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,forest (managed),123.782485,116.7250141,115.0299441,119.3331192,122.87517160000002,126.0620059,129.1609888,129.036713,128.555377,128.31208299999997,128.608835,130.597471,132.534249,134.516388,135.53121300000004,135.3895,133.790105,130.080255,127.152361,126.592749,126.64291800000001,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,forest (unmanaged),1949.3956369999999,1897.7646379999999,1856.481106,1849.7085359999999,1832.6177969999999,1816.269809,1801.4037515999999,1783.2776064,1769.267377,1758.1795343,1748.7675221999998,1741.8658394,1736.2103198,1731.9432981,1724.4754243,1715.8061206,1706.5819870999999,1695.1839784,1687.7814566,1683.5481504,1679.70715,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,grass,189.67791060000002,185.0987735,177.72368549999996,176.88433069999996,174.92130929999996,173.06226189999998,171.39265689999996,169.43270539999997,167.9605308,166.82102236999995,165.87389834999996,165.17756691999998,164.61821461999997,164.20148078999998,163.51526999999996,162.76147898999997,162.01301567,161.17761961999997,160.69715657999998,160.45030741999997,160.25172720399996,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,otherarable,37.048659099999995,6.723764899999999,6.707707300000001,6.44057085,5.913636509999999,5.40344524,4.9274341800000006,4.380002080000001,3.93623392,3.56854452,3.24105706,2.9894514899999995,2.7783748599999996,2.61471557,2.33347264,2.00116806,1.6362499799999999,1.1589974800000002,0.8299980499999999,0.63187503,0.446385188,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,pasture (grazed),29.521648399999997,29.894541199999995,36.086011199999994,41.6715431,46.618915099999995,51.174034299999995,55.14199430000001,58.155648500000005,60.7422117,62.90275110000001,64.58133250000002,63.7649065,62.82942440000001,61.839140799999996,60.1811622,58.0494715,55.474238099999994,51.633274199999995,48.147570699999996,45.3022325,42.0657681,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,pasture (other),19.215946599999995,32.07098178,25.97963038,25.66404254,25.242518559999997,24.89686387,24.62166371,24.35407883,24.164890769,24.026443658999998,23.917395263,23.848590832,23.794836772999997,23.755916671999998,23.691756446,23.622332418,23.554449240999997,23.479859602999998,23.4387298581,23.4184620737,23.402691220599998,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,shrubs,17.001838499999998,17.16125258,16.63422507,16.550260079999997,16.362755289999996,16.18848103,16.0333588,15.85811937,15.72586038,15.62288351,15.53619033,15.47237923,15.42101553,15.38263556,15.31888648,15.24842567,15.1775875,15.09613242,15.048267058,15.023203987,15.002670229,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,tundra,0.981574,0.889825,0.959265,0.959265,0.959265,0.959265,0.959265,0.959265,0.959265,0.959265,0.959265,0.959265,0.959265,0.959265,0.959265,0.959265,0.959265,0.959265,0.959265,0.959265,0.959265,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,urban,8.793925100000001,14.2973624,16.5921788,16.5921788,16.5921788,16.5921788,16.5921788,16.5921788,16.5921788,16.5921788,16.5921788,16.5921788,16.5921788,16.5921788,16.5921788,16.5921788,16.5921788,16.5921788,16.5921788,16.5921788,16.5921788,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,biomass,0.0,0.0,0.0,0.0,24.557949999999998,49.653,85.15303,121.08646999999999,139.87031000000002,159.45089000000002,192.2131,243.685,298.22389999999996,353.1463,450.7907,570.6478,700.0831999999999,885.7764,1022.7418259999998,1132.0441,1255.2192300000004,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,crops,1170.6209758999998,1203.9663361999997,1176.1074802,1158.9311607159993,1177.9213002250003,1196.4741193480006,1208.1187911980003,1228.5088852349993,1249.780636937,1264.1966708929997,1268.5896448359997,1258.7977411479994,1244.6836403400005,1226.479678403,1196.7530826549992,1157.4008367429994,1112.617704884,1039.346270383,984.9480037670005,940.4695065380002,886.7957033370002,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,desert,34.178445700000005,34.4579747,34.1181227,34.1181227,34.1181227,34.1181227,34.1181227,34.1181227,34.1181227,34.1181227,34.1181227,34.1181227,34.1181227,34.1181227,34.1181227,34.1181227,34.1181227,34.1181227,34.1181227,34.1181227,34.1181227,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,forest (managed),637.77328,571.41271,429.62475,457.29339,481.19411,504.64791,525.72716,545.20802,562.77686,578.31619,590.66482,596.12312,597.43898,595.4148299999999,584.6301400000001,568.0902,548.68551,518.04851,490.49227,460.38276,424.41269,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,forest (unmanaged),2345.4335300000002,2664.5117000000005,2833.8638700000006,2831.5286900000006,2811.7533700000004,2792.0510900000004,2772.4220600000003,2750.44389,2733.1986500000003,2718.6150500000003,2704.5150500000004,2691.1211900000003,2679.3271230000005,2669.612148,2653.8298190000005,2636.5031110000004,2619.292941,2598.6973100000005,2585.172159,2576.755168,2569.2325220000002,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,grass,588.5381490000001,376.53780299999994,392.29998000000006,391.744745,388.226431,384.8569290000001,381.59141500000004,378.1013470000001,375.5487880000001,373.44025800000003,371.4134390000001,369.60316300000005,368.058688,366.8198730000001,364.8567880000001,362.774559,360.7731431,358.4531222000001,357.0079133000001,356.15224370000004,355.36937843000004,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,otherarable,685.0424689999999,559.003367,440.364944,434.960893,408.138647,381.30759700000004,354.187282,323.93672899999996,300.3226669999999,279.9669374,259.798627,240.65922429999998,223.6489709,209.4625218,186.11314259999997,159.8494631,132.9941336,99.4100054,77.3250077,63.70228379,50.52602185,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,pasture (grazed),52.723528699999996,9.085457700000003,19.615700299999993,20.564471199999996,21.222684700000006,21.903957799999997,22.4919432,23.011408899999992,23.5478813,24.029539500000002,24.434153300000002,24.746883199999996,25.023921800000004,25.241154599999998,25.351254800000003,25.408887900000003,25.411353699999996,25.392159399999997,25.3331977,25.198104599999997,25.0433905,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,pasture (other),2328.2256719999996,2330.380531,2450.0985049999995,2447.68045,2433.4009969999997,2419.2117109999995,2404.471984,2388.2678632999996,2376.4325124999996,2366.0968884999997,2355.3984777999995,2345.1506675999995,2336.0410249999995,2328.4303572,2315.9134575,2301.8012602999997,2287.1962711999995,2268.2284127,2254.9672334999996,2246.3695817099997,2237.6400368899995,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,shrubs,742.7980892999999,783.3026239000001,738.8099775000001,738.0809837,734.3692415,730.678213,726.6206993000001,722.2204414600001,719.3049642100001,716.6713650700001,713.7571371700001,710.8967528000001,708.33755938,706.1774915100001,702.5462290500001,698.3091162400001,693.72838993,687.433026131,682.795776214,679.710010526,676.5445210170001,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,tundra,240.731956,240.7436154,240.67603309999998,240.67603309999998,240.67603309999998,240.67603309999998,240.67603309999998,240.67603309999998,240.67603309999998,240.67603309999998,240.67603309999998,240.67603309999998,240.67603309999998,240.67603309999998,240.67603309999998,240.67603309999998,240.67603309999998,240.67603309999998,240.67603309999998,240.67603309999998,240.67603309999998,thous km2, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,urban,116.3402092,168.99758419999998,186.829803,186.829803,186.829803,186.829803,186.829803,186.829803,186.829803,186.829803,186.829803,186.829803,186.829803,186.829803,186.829803,186.829803,186.829803,186.829803,186.829803,186.829803,186.829803,thous km2, Regional energy costs scenario,region,sector,1990,2005,2010,2015,2020,2025,2030,2035,2040,2045,2050,2055,2060,2065,2070,2075,2080,2085,2090,2095,2100,Units, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,electricity,6.89938,7.15629,10.1894,10.0835,10.1151,10.1088,9.79743,9.56377,9.53113,9.55045,9.58699,9.78038,9.93401,10.0738,10.2743,10.4205,10.5639,10.7179,10.831,10.9105,11.0677,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,nuclearFuelGenIII,0.181545,0.211038,0.220828,0.231419,0.242622,0.251269,0.260777,0.271558,0.28423,0.298949,0.315972,0.335871,0.359796,0.377421,0.398041,0.422251,0.449398,0.479975,0.500805,0.522528,0.545632,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,regional biomass,1.92552,1.95224,1.98083,2.00379,1.6884,1.57981,1.47377,1.41422,1.32506,1.24512,1.17759,0.991107,0.842691,0.712733,0.442483,0.345904,0.264016,0.0606479,0.0766748,0.197111,0.542312,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,regional coal,0.585,0.588,0.65,0.654294,0.658348,0.662697,0.667225,0.671778,0.675898,0.679376,0.682052,0.683311,0.683283,0.681895,0.67754,0.67098,0.663293,0.654735,0.646129,0.63769,0.629667,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,regional natural gas,1.062,1.23,1.75,1.76257,1.77623,1.79273,1.81539,1.85478,1.91543,1.98334,2.05835,2.14202,2.22532,2.30178,2.36947,2.42805,2.46766,2.47941,2.4804,2.48598,2.49747,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,regional oil,1.52,1.789,3.428,3.48833,3.56271,3.65823,3.76885,3.87251,3.9364,3.97675,4.01135,4.0456,4.07194,4.09825,4.13164,4.16464,4.19705,4.23233,4.30434,4.66919,5.76795,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,electricity,5.88893,6.24946,6.91616,7.07429,7.69329,8.04623,8.14702,8.2344,8.4475,8.60727,8.71996,8.88807,8.94991,8.944,8.95649,8.91158,8.85707,8.80815,8.7582,8.73645,8.70641,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,nuclearFuelGenIII,0.181545,0.211038,0.220828,0.231419,0.242622,0.251269,0.260777,0.271558,0.28423,0.298949,0.315972,0.335871,0.359796,0.377421,0.398041,0.422251,0.449398,0.479975,0.500805,0.522528,0.545632,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,regional biomass,1.92552,1.95224,1.98083,2.00379,1.6884,1.57981,1.47377,1.41422,1.32506,1.24512,1.17759,0.991107,0.842691,0.712733,0.442483,0.345904,0.264016,0.0606479,0.0766748,0.197111,0.542312,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,regional coal,0.585,0.588,0.65,0.654294,0.658348,0.662697,0.667225,0.671778,0.675898,0.679376,0.682052,0.683311,0.683283,0.681895,0.67754,0.67098,0.663293,0.654735,0.646129,0.63769,0.629667,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,regional natural gas,1.062,1.23,1.75,1.76257,1.77623,1.79273,1.81539,1.85478,1.91543,1.98334,2.05835,2.14202,2.22532,2.30178,2.36947,2.42805,2.46766,2.47941,2.4804,2.48598,2.49747,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,regional oil,1.52,1.789,3.428,3.48833,3.56271,3.65823,3.76885,3.87251,3.9364,3.97675,4.01135,4.0456,4.07194,4.09825,4.13164,4.16464,4.19705,4.23233,4.30434,4.66919,5.76795,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,electricity,9.16995,8.23187,9.75578,9.18896,9.51732,9.62479,9.601,9.59052,9.73192,9.83137,9.89623,10.0677,10.1678,10.1424,10.0834,9.96217,9.84187,9.68842,9.58392,9.53573,9.5421,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,nuclearFuelGenIII,0.181545,0.211038,0.220828,0.231419,0.242622,0.251269,0.260777,0.271558,0.28423,0.298949,0.315972,0.335871,0.359796,0.377421,0.398041,0.422251,0.449398,0.479975,0.500805,0.522528,0.545632,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,regional biomass,1.92552,1.95224,1.98083,2.00379,1.6884,1.57981,1.47377,1.41422,1.32506,1.24512,1.17759,0.991107,0.842691,0.712733,0.442483,0.345904,0.264016,0.0606479,0.0766748,0.197111,0.542312,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,regional coal,0.585,0.588,0.65,0.654294,0.658348,0.662697,0.667225,0.671778,0.675898,0.679376,0.682052,0.683311,0.683283,0.681895,0.67754,0.67098,0.663293,0.654735,0.646129,0.63769,0.629667,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,regional natural gas,1.062,1.23,1.75,1.76257,1.77623,1.79273,1.81539,1.85478,1.91543,1.98334,2.05835,2.14202,2.22532,2.30178,2.36947,2.42805,2.46766,2.47941,2.4804,2.48598,2.49747,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,regional oil,1.52789,1.80539,3.44192,3.50116,3.57509,3.66892,3.77632,3.87602,3.93853,3.97799,4.01294,4.04884,4.07674,4.10411,4.13916,4.17284,4.20525,4.24066,4.31197,4.67551,5.76575,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,electricity,7.43553,7.38994,8.20962,8.29907,8.71069,8.95412,8.94584,8.90246,8.89799,8.87997,8.8535,8.86606,8.82844,8.76588,8.71921,8.6671,8.61735,8.57459,8.54108,8.52062,8.48905,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,nuclearFuelGenIII,0.181545,0.211038,0.220828,0.231419,0.242622,0.251269,0.260777,0.271558,0.28423,0.298949,0.315972,0.335871,0.359796,0.377421,0.398041,0.422251,0.449398,0.479975,0.500805,0.522528,0.545632,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,regional biomass,1.92552,1.95224,1.98083,2.00379,1.6884,1.57981,1.47377,1.41422,1.32506,1.24512,1.17759,0.991107,0.842691,0.712733,0.442483,0.345904,0.264016,0.0606479,0.0766748,0.197111,0.542312,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,regional coal,0.585,0.588,0.65,0.654294,0.658348,0.662697,0.667225,0.671778,0.675898,0.679376,0.682052,0.683311,0.683283,0.681895,0.67754,0.67098,0.663293,0.654735,0.646129,0.63769,0.629667,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,regional natural gas,1.062,1.23,1.75,1.76257,1.77623,1.79273,1.81539,1.85478,1.91543,1.98334,2.05835,2.14202,2.22532,2.30178,2.36947,2.42805,2.46766,2.47941,2.4804,2.48598,2.49747,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,regional oil,1.54844,1.85973,3.50372,3.55729,3.62879,3.71418,3.80691,3.88995,3.94694,3.9829,4.01935,4.06226,4.09717,4.12986,4.17348,4.21155,4.24508,4.28256,4.35112,4.70793,5.75568,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,electricity,6.52487,6.60541,6.767,7.07431,7.92016,8.425,8.67228,8.88144,9.23093,9.50462,9.68741,9.94745,10.0554,10.0764,10.0984,10.1093,10.1349,10.1199,10.1194,10.1627,10.1552,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,nuclearFuelGenIII,0.181545,0.211038,0.220828,0.231419,0.242622,0.251269,0.260777,0.271558,0.28423,0.298949,0.315972,0.335871,0.359796,0.377421,0.398041,0.422251,0.449398,0.479975,0.500805,0.522528,0.545632,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,regional biomass,1.92552,1.95224,1.98083,2.00379,1.6884,1.57981,1.47377,1.41422,1.32506,1.24512,1.17759,0.991107,0.842691,0.712733,0.442483,0.345904,0.264016,0.0606479,0.0766748,0.197111,0.542312,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,regional coal,0.585,0.588,0.65,0.654294,0.658348,0.662697,0.667225,0.671778,0.675898,0.679376,0.682052,0.683311,0.683283,0.681895,0.67754,0.67098,0.663293,0.654735,0.646129,0.63769,0.629667,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,regional natural gas,1.062,1.23,1.75,1.76257,1.77623,1.79273,1.81539,1.85478,1.91543,1.98334,2.05835,2.14202,2.22532,2.30178,2.36947,2.42805,2.46766,2.47941,2.4804,2.48598,2.49747,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,regional oil,1.52222,1.79162,3.42998,3.49016,3.56447,3.65976,3.76992,3.87302,3.93671,3.97692,4.01158,4.04606,4.07262,4.09908,4.1327,4.16579,4.1982,4.23349,4.3054,4.67007,5.76764,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,electricity,7.22488,7.31835,8.01967,7.91607,8.52354,8.84464,8.95365,9.04208,9.26996,9.4396,9.5721,9.80239,9.9236,9.97057,10.0541,10.0979,10.124,10.1537,10.1614,10.1689,10.1595,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,nuclearFuelGenIII,0.181545,0.211038,0.220828,0.231419,0.242622,0.251269,0.260777,0.271558,0.28423,0.298949,0.315972,0.335871,0.359796,0.377421,0.398041,0.422251,0.449398,0.479975,0.500805,0.522528,0.545632,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,regional biomass,1.92552,1.95224,1.98083,2.00379,1.6884,1.57981,1.47377,1.41422,1.32506,1.24512,1.17759,0.991107,0.842691,0.712733,0.442483,0.345904,0.264016,0.0606479,0.0766748,0.197111,0.542312,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,regional coal,0.585,0.588,0.65,0.654294,0.658348,0.662697,0.667225,0.671778,0.675898,0.679376,0.682052,0.683311,0.683283,0.681895,0.67754,0.67098,0.663293,0.654735,0.646129,0.63769,0.629667,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,regional natural gas,1.062,1.23,1.75,1.76257,1.77623,1.79273,1.81539,1.85478,1.91543,1.98334,2.05835,2.14202,2.22532,2.30178,2.36947,2.42805,2.46766,2.47941,2.4804,2.48598,2.49747,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,regional oil,1.52,1.789,3.428,3.48833,3.56271,3.65823,3.76885,3.87251,3.9364,3.97675,4.01135,4.0456,4.07194,4.09825,4.13164,4.16464,4.19705,4.23233,4.30434,4.66919,5.76795,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,electricity,7.27701,7.25587,8.27052,8.36019,8.73337,8.98428,9.01971,9.03352,9.08875,9.12465,9.14751,9.2229,9.25636,9.25004,9.27199,9.2687,9.24808,9.24688,9.22939,9.21525,9.19294,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,nuclearFuelGenIII,0.181545,0.211038,0.220828,0.231419,0.242622,0.251269,0.260777,0.271558,0.28423,0.298949,0.315972,0.335871,0.359796,0.377421,0.398041,0.422251,0.449398,0.479975,0.500805,0.522528,0.545632,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,regional biomass,1.92552,1.95224,1.98083,2.00379,1.6884,1.57981,1.47377,1.41422,1.32506,1.24512,1.17759,0.991107,0.842691,0.712733,0.442483,0.345904,0.264016,0.0606479,0.0766748,0.197111,0.542312,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,regional coal,0.585,0.588,0.65,0.654294,0.658348,0.662697,0.667225,0.671778,0.675898,0.679376,0.682052,0.683311,0.683283,0.681895,0.67754,0.67098,0.663293,0.654735,0.646129,0.63769,0.629667,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,regional natural gas,1.062,1.23,1.75,1.76257,1.77623,1.79273,1.81539,1.85478,1.91543,1.98334,2.05835,2.14202,2.22532,2.30178,2.36947,2.42805,2.46766,2.47941,2.4804,2.48598,2.49747,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,regional oil,1.52053,1.7905,3.42969,3.48989,3.56421,3.65953,3.76976,3.87294,3.93667,3.9769,4.01154,4.04599,4.07252,4.09896,4.13255,4.16562,4.19803,4.23332,4.30524,4.66994,5.76768,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,electricity,6.58128,6.87867,7.78959,7.92588,8.67478,9.10588,9.25424,9.3839,9.73393,10.0556,10.3209,10.8435,11.2291,11.5029,11.8715,12.0691,12.1564,12.1401,12.0582,12.0059,11.9382,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,nuclearFuelGenIII,0.181545,0.211038,0.220828,0.231419,0.242622,0.251269,0.260777,0.271558,0.28423,0.298949,0.315972,0.335871,0.359796,0.377421,0.398041,0.422251,0.449398,0.479975,0.500805,0.522528,0.545632,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,regional biomass,1.92552,1.95224,1.98083,2.00379,1.6884,1.57981,1.47377,1.41422,1.32506,1.24512,1.17759,0.991107,0.842691,0.712733,0.442483,0.345904,0.264016,0.0606479,0.0766748,0.197111,0.542312,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,regional coal,0.585,0.588,0.65,0.654294,0.658348,0.662697,0.667225,0.671778,0.675898,0.679376,0.682052,0.683311,0.683283,0.681895,0.67754,0.67098,0.663293,0.654735,0.646129,0.63769,0.629667,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,regional natural gas,1.062,1.23,1.75,1.76257,1.77623,1.79273,1.81539,1.85478,1.91543,1.98334,2.05835,2.14202,2.22532,2.30178,2.36947,2.42805,2.46766,2.47941,2.4804,2.48598,2.49747,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,regional oil,1.52,1.789,3.428,3.48833,3.56271,3.65823,3.76885,3.87251,3.9364,3.97675,4.01135,4.0456,4.07194,4.09825,4.13164,4.16464,4.19705,4.23233,4.30434,4.66919,5.76795,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,electricity,7.89651,7.28096,8.85839,8.74887,9.32937,9.70148,9.7128,9.70765,9.89584,10.0725,10.2294,10.6751,11.054,11.3182,11.6599,11.7931,11.7385,11.6146,11.469,11.3577,11.3363,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,nuclearFuelGenIII,0.181545,0.211038,0.220828,0.231419,0.242622,0.251269,0.260777,0.271558,0.28423,0.298949,0.315972,0.335871,0.359796,0.377421,0.398041,0.422251,0.449398,0.479975,0.500805,0.522528,0.545632,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,regional biomass,1.92552,1.95224,1.98083,2.00379,1.6884,1.57981,1.47377,1.41422,1.32506,1.24512,1.17759,0.991107,0.842691,0.712733,0.442483,0.345904,0.264016,0.0606479,0.0766748,0.197111,0.542312,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,regional coal,0.585,0.588,0.65,0.654294,0.658348,0.662697,0.667225,0.671778,0.675898,0.679376,0.682052,0.683311,0.683283,0.681895,0.67754,0.67098,0.663293,0.654735,0.646129,0.63769,0.629667,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,regional natural gas,1.062,1.23,1.75,1.76257,1.77623,1.79273,1.81539,1.85478,1.91543,1.98334,2.05835,2.14202,2.22532,2.30178,2.36947,2.42805,2.46766,2.47941,2.4804,2.48598,2.49747,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,regional oil,1.52179,1.79205,3.4308,3.49092,3.56521,3.66039,3.77037,3.87323,3.93684,3.977,4.01167,4.04626,4.07291,4.09943,4.13315,4.16628,4.19868,4.23398,4.30584,4.67044,5.76751,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,electricity,7.02714,7.0375,7.7818,6.93548,7.38716,7.79743,8.05267,8.27409,8.54505,8.78384,8.98141,9.2874,9.48418,9.5611,9.63881,9.66478,9.69518,9.70672,9.72464,9.77594,9.81409,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,nuclearFuelGenIII,0.181545,0.211038,0.220828,0.231419,0.242622,0.251269,0.260777,0.271558,0.28423,0.298949,0.315972,0.335871,0.359796,0.377421,0.398041,0.422251,0.449398,0.479975,0.500805,0.522528,0.545632,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,regional biomass,1.92552,1.95224,1.98083,2.00379,1.6884,1.57981,1.47377,1.41422,1.32506,1.24512,1.17759,0.991107,0.842691,0.712733,0.442483,0.345904,0.264016,0.0606479,0.0766748,0.197111,0.542312,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,regional coal,0.585,0.588,0.65,0.654294,0.658348,0.662697,0.667225,0.671778,0.675898,0.679376,0.682052,0.683311,0.683283,0.681895,0.67754,0.67098,0.663293,0.654735,0.646129,0.63769,0.629667,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,regional natural gas,1.062,1.23,1.75,1.76257,1.77623,1.79273,1.81539,1.85478,1.91543,1.98334,2.05835,2.14202,2.22532,2.30178,2.36947,2.42805,2.46766,2.47941,2.4804,2.48598,2.49747,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,regional oil,1.52,1.789,3.428,3.48833,3.56271,3.65823,3.76885,3.87251,3.9364,3.97675,4.01135,4.0456,4.07194,4.09825,4.13164,4.16464,4.19705,4.23233,4.30434,4.66919,5.76795,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,electricity,7.70821,7.43847,10.8126,10.5179,10.6092,10.6613,10.3337,10.0507,9.95144,9.92738,9.97134,10.1701,10.2983,10.3445,10.3935,10.3832,10.3817,10.3263,10.3279,10.3937,10.5427,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,nuclearFuelGenIII,0.181545,0.211038,0.220828,0.231419,0.242622,0.251269,0.260777,0.271558,0.28423,0.298949,0.315972,0.335871,0.359796,0.377421,0.398041,0.422251,0.449398,0.479975,0.500805,0.522528,0.545632,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,regional biomass,1.92552,1.95224,1.98083,2.00379,1.6884,1.57981,1.47377,1.41422,1.32506,1.24512,1.17759,0.991107,0.842691,0.712733,0.442483,0.345904,0.264016,0.0606479,0.0766748,0.197111,0.542312,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,regional coal,0.585,0.588,0.65,0.654294,0.658348,0.662697,0.667225,0.671778,0.675898,0.679376,0.682052,0.683311,0.683283,0.681895,0.67754,0.67098,0.663293,0.654735,0.646129,0.63769,0.629667,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,regional natural gas,1.062,1.23,1.75,1.76257,1.77623,1.79273,1.81539,1.85478,1.91543,1.98334,2.05835,2.14202,2.22532,2.30178,2.36947,2.42805,2.46766,2.47941,2.4804,2.48598,2.49747,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,regional oil,1.52,1.789,3.428,3.48833,3.56271,3.65823,3.76885,3.87251,3.9364,3.97675,4.01135,4.0456,4.07194,4.09825,4.13164,4.16464,4.19705,4.23233,4.30434,4.66919,5.76795,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,electricity,7.67958,7.11201,8.07618,8.0775,8.32873,8.57779,8.56549,8.55832,8.6074,8.65558,8.71059,8.85152,8.94247,8.97535,9.01591,9.01561,9.01393,9.02218,9.02938,9.06247,9.09795,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,nuclearFuelGenIII,0.181545,0.211038,0.220828,0.231419,0.242622,0.251269,0.260777,0.271558,0.28423,0.298949,0.315972,0.335871,0.359796,0.377421,0.398041,0.422251,0.449398,0.479975,0.500805,0.522528,0.545632,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,regional biomass,1.92552,1.95224,1.98083,2.00379,1.6884,1.57981,1.47377,1.41422,1.32506,1.24512,1.17759,0.991107,0.842691,0.712733,0.442483,0.345904,0.264016,0.0606479,0.0766748,0.197111,0.542312,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,regional coal,0.585,0.588,0.65,0.654294,0.658348,0.662697,0.667225,0.671778,0.675898,0.679376,0.682052,0.683311,0.683283,0.681895,0.67754,0.67098,0.663293,0.654735,0.646129,0.63769,0.629667,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,regional natural gas,1.062,1.23,1.75,1.76257,1.77623,1.79273,1.81539,1.85478,1.91543,1.98334,2.05835,2.14202,2.22532,2.30178,2.36947,2.42805,2.46766,2.47941,2.4804,2.48598,2.49747,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,regional oil,1.52,1.789,3.428,3.48833,3.56271,3.65823,3.76885,3.87251,3.9364,3.97675,4.01135,4.0456,4.07194,4.09825,4.13164,4.16464,4.19705,4.23233,4.30434,4.66919,5.76795,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,electricity,8.05451,7.30041,7.60394,7.71294,8.0764,8.32025,8.4714,8.61532,8.85813,9.07643,9.26801,9.5946,9.83412,9.9812,10.1492,10.217,10.2506,10.2698,10.2573,10.2547,10.2475,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,nuclearFuelGenIII,0.181545,0.211038,0.220828,0.231419,0.242622,0.251269,0.260777,0.271558,0.28423,0.298949,0.315972,0.335871,0.359796,0.377421,0.398041,0.422251,0.449398,0.479975,0.500805,0.522528,0.545632,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,regional biomass,1.92552,1.95224,1.98083,2.00379,1.6884,1.57981,1.47377,1.41422,1.32506,1.24512,1.17759,0.991107,0.842691,0.712733,0.442483,0.345904,0.264016,0.0606479,0.0766748,0.197111,0.542312,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,regional coal,0.585,0.588,0.65,0.654294,0.658348,0.662697,0.667225,0.671778,0.675898,0.679376,0.682052,0.683311,0.683283,0.681895,0.67754,0.67098,0.663293,0.654735,0.646129,0.63769,0.629667,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,regional natural gas,1.062,1.23,1.75,1.76257,1.77623,1.79273,1.81539,1.85478,1.91543,1.98334,2.05835,2.14202,2.22532,2.30178,2.36947,2.42805,2.46766,2.47941,2.4804,2.48598,2.49747,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,regional oil,1.52,1.789,3.428,3.48833,3.56271,3.65823,3.76885,3.87251,3.9364,3.97675,4.01135,4.0456,4.07194,4.09825,4.13164,4.16464,4.19705,4.23233,4.30434,4.66919,5.76795,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,electricity,7.56163,6.02046,7.15295,7.32502,7.75882,8.21537,8.30121,8.3727,8.5906,8.79486,8.99066,9.36193,9.66114,9.93363,10.2503,10.4362,10.6207,10.7591,10.9038,11.0821,11.2086,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,nuclearFuelGenIII,0.181545,0.211038,0.220828,0.231419,0.242622,0.251269,0.260777,0.271558,0.28423,0.298949,0.315972,0.335871,0.359796,0.377421,0.398041,0.422251,0.449398,0.479975,0.500805,0.522528,0.545632,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,regional biomass,1.92552,1.95224,1.98083,2.00379,1.6884,1.57981,1.47377,1.41422,1.32506,1.24512,1.17759,0.991107,0.842691,0.712733,0.442483,0.345904,0.264016,0.0606479,0.0766748,0.197111,0.542312,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,regional coal,0.585,0.588,0.65,0.654294,0.658348,0.662697,0.667225,0.671778,0.675898,0.679376,0.682052,0.683311,0.683283,0.681895,0.67754,0.67098,0.663293,0.654735,0.646129,0.63769,0.629667,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,regional natural gas,1.062,1.23,1.75,1.76257,1.77623,1.79273,1.81539,1.85478,1.91543,1.98334,2.05835,2.14202,2.22532,2.30178,2.36947,2.42805,2.46766,2.47941,2.4804,2.48598,2.49747,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,regional oil,1.5225,1.79294,3.43111,3.4912,3.56548,3.66063,3.77053,3.8733,3.93689,3.97703,4.01171,4.04633,4.07301,4.09956,4.13331,4.16645,4.19885,4.23416,4.30601,4.67057,5.76746,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,electricity,6.67054,6.77579,7.33817,7.05647,7.58257,7.90486,8.08981,8.27205,8.56356,8.81071,9.01438,9.29683,9.4547,9.49743,9.54114,9.52819,9.52133,9.50939,9.50501,9.55042,9.58908,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,nuclearFuelGenIII,0.181545,0.211038,0.220828,0.231419,0.242622,0.251269,0.260777,0.271558,0.28423,0.298949,0.315972,0.335871,0.359796,0.377421,0.398041,0.422251,0.449398,0.479975,0.500805,0.522528,0.545632,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,regional biomass,1.92552,1.95224,1.98083,2.00379,1.6884,1.57981,1.47377,1.41422,1.32506,1.24512,1.17759,0.991107,0.842691,0.712733,0.442483,0.345904,0.264016,0.0606479,0.0766748,0.197111,0.542312,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,regional coal,0.585,0.588,0.65,0.654294,0.658348,0.662697,0.667225,0.671778,0.675898,0.679376,0.682052,0.683311,0.683283,0.681895,0.67754,0.67098,0.663293,0.654735,0.646129,0.63769,0.629667,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,regional natural gas,1.062,1.23,1.75,1.76257,1.77623,1.79273,1.81539,1.85478,1.91543,1.98334,2.05835,2.14202,2.22532,2.30178,2.36947,2.42805,2.46766,2.47941,2.4804,2.48598,2.49747,1975$/GJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,regional oil,1.53037,1.81706,3.46005,3.51777,3.59106,3.68256,3.78572,3.88037,3.94116,3.97952,4.01493,4.05295,4.08288,4.11172,4.14907,4.1838,4.21633,4.25209,4.3225,4.68424,5.76285,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,electricity,6.89902,7.1749,10.2119,10.0874,10.0896,10.106,9.81492,9.5691,9.48873,9.43924,9.42088,9.61364,9.921,10.1875,10.6054,11.0506,11.7392,12.0073,11.9548,11.8884,11.9189,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,nuclearFuelGenIII,0.181545,0.211038,0.220828,0.231272,0.242569,0.251554,0.261582,0.272967,0.286267,0.301579,0.319054,0.33939,0.362874,0.379792,0.400524,0.424975,0.452776,0.482883,0.50437,0.52706,0.551086,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,regional biomass,1.91897,1.95077,1.97791,1.99563,1.75149,1.6732,1.58704,1.5173,1.40231,1.29077,1.22675,1.01583,0.81575,0.615582,0.168104,-0.11783,-0.193025,-0.388532,-0.390264,-0.409536,-0.535862,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,regional coal,0.585,0.588,0.65,0.6542,0.658397,0.662933,0.667474,0.671609,0.674847,0.677045,0.678207,0.677977,0.676536,0.6739,0.668932,0.661919,0.653956,0.645187,0.636507,0.628059,0.619856,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,regional natural gas,1.062,1.23,1.75,1.76112,1.77314,1.7874,1.80582,1.83319,1.88123,1.9327,1.98768,2.0456,2.1103,2.17504,2.23526,2.29168,2.34986,2.39536,2.41574,2.42159,2.43207,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,regional oil,1.52,1.789,3.428,3.48757,3.56395,3.66854,3.79595,3.92106,3.99804,4.06855,4.13018,4.18131,4.22882,4.27543,4.32637,4.46927,5.39694,5.31917,5.62977,5.92207,6.34296,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,electricity,5.89422,6.25924,6.93138,7.09132,7.71017,8.06385,8.16252,8.23294,8.40047,8.51232,8.57789,8.81831,9.00485,9.08642,9.5129,9.82986,9.87344,9.78867,9.51513,9.29328,9.12028,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,nuclearFuelGenIII,0.181545,0.211038,0.220828,0.231272,0.242569,0.251554,0.261582,0.272967,0.286267,0.301579,0.319054,0.33939,0.362874,0.379792,0.400524,0.424975,0.452776,0.482883,0.50437,0.52706,0.551086,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,regional biomass,1.91897,1.95077,1.97791,1.99563,1.75149,1.6732,1.58704,1.5173,1.40231,1.29077,1.22675,1.01583,0.81575,0.615582,0.168104,-0.11783,-0.193025,-0.388532,-0.390264,-0.409536,-0.535862,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,regional coal,0.585,0.588,0.65,0.6542,0.658397,0.662933,0.667474,0.671609,0.674847,0.677045,0.678207,0.677977,0.676536,0.6739,0.668932,0.661919,0.653956,0.645187,0.636507,0.628059,0.619856,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,regional natural gas,1.062,1.23,1.75,1.76112,1.77314,1.7874,1.80582,1.83319,1.88123,1.9327,1.98768,2.0456,2.1103,2.17504,2.23526,2.29168,2.34986,2.39536,2.41574,2.42159,2.43207,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,regional oil,1.52,1.789,3.428,3.48757,3.56395,3.66854,3.79595,3.92106,3.99804,4.06855,4.13018,4.18131,4.22882,4.27543,4.32637,4.46927,5.39694,5.31917,5.62977,5.92207,6.34296,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,electricity,9.34527,8.30973,9.88049,9.354,9.65484,9.74978,9.70801,9.67153,9.78863,9.8667,9.90318,10.0406,10.0816,10.0226,9.95236,9.78652,9.69344,9.59377,9.48794,9.37468,9.29272,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,nuclearFuelGenIII,0.181545,0.211038,0.220828,0.231272,0.242569,0.251554,0.261582,0.272967,0.286267,0.301579,0.319054,0.33939,0.362874,0.379792,0.400524,0.424975,0.452776,0.482883,0.50437,0.52706,0.551086,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,regional biomass,1.91897,1.95077,1.97791,1.99563,1.75149,1.6732,1.58704,1.5173,1.40231,1.29077,1.22675,1.01583,0.81575,0.615582,0.168104,-0.11783,-0.193025,-0.388532,-0.390264,-0.409536,-0.535862,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,regional coal,0.585,0.588,0.65,0.6542,0.658397,0.662933,0.667474,0.671609,0.674847,0.677045,0.678207,0.677977,0.676536,0.6739,0.668932,0.661919,0.653956,0.645187,0.636507,0.628059,0.619856,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,regional natural gas,1.062,1.23,1.75,1.76112,1.77314,1.7874,1.80582,1.83319,1.88123,1.9327,1.98768,2.0456,2.1103,2.17504,2.23526,2.29168,2.34986,2.39536,2.41574,2.42159,2.43207,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,regional oil,1.52808,1.80727,3.44452,3.50268,3.57863,3.6815,3.80575,3.92685,4.00262,4.07234,4.13379,4.18657,4.23537,4.28303,4.33571,4.47787,5.36676,5.31917,5.62977,5.92207,6.34296,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,electricity,7.43776,7.39684,8.21946,8.3121,8.73105,8.97679,8.95578,8.9089,8.90972,8.89492,8.8681,8.88033,8.86164,8.81988,8.79518,8.75379,8.71753,8.68874,8.66313,8.64899,8.62224,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,nuclearFuelGenIII,0.181545,0.211038,0.220828,0.231272,0.242569,0.251554,0.261582,0.272967,0.286267,0.301579,0.319054,0.33939,0.362874,0.379792,0.400524,0.424975,0.452776,0.482883,0.50437,0.52706,0.551086,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,regional biomass,1.91897,1.95077,1.97791,1.99563,1.75149,1.6732,1.58704,1.5173,1.40231,1.29077,1.22675,1.01583,0.81575,0.615582,0.168104,-0.11783,-0.193025,-0.388532,-0.390264,-0.409536,-0.535862,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,regional coal,0.585,0.588,0.65,0.6542,0.658397,0.662933,0.667474,0.671609,0.674847,0.677045,0.678207,0.677977,0.676536,0.6739,0.668932,0.661919,0.653956,0.645187,0.636507,0.628059,0.619856,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,regional natural gas,1.062,1.23,1.75,1.76112,1.77314,1.7874,1.80582,1.83319,1.88123,1.9327,1.98768,2.0456,2.1103,2.17504,2.23526,2.29168,2.34986,2.39536,2.41574,2.42159,2.43207,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,regional oil,1.54913,1.86786,3.51785,3.56808,3.6415,3.73552,3.84522,3.9494,4.02039,4.0871,4.14805,4.2079,4.26276,4.31578,4.37772,4.51728,5.25754,5.31917,5.62977,5.92207,6.34296,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,electricity,6.53004,6.61923,6.78644,7.09978,7.94735,8.44737,8.6919,8.89217,9.2136,9.42538,9.55203,9.73099,9.77892,9.7775,9.99546,10.0297,10.0453,10.0071,9.95828,9.91265,9.6957,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,nuclearFuelGenIII,0.181545,0.211038,0.220828,0.231272,0.242569,0.251554,0.261582,0.272967,0.286267,0.301579,0.319054,0.33939,0.362874,0.379792,0.400524,0.424975,0.452776,0.482883,0.50437,0.52706,0.551086,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,regional biomass,1.91897,1.95077,1.97791,1.99563,1.75149,1.6732,1.58704,1.5173,1.40231,1.29077,1.22675,1.01583,0.81575,0.615582,0.168104,-0.11783,-0.193025,-0.388532,-0.390264,-0.409536,-0.535862,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,regional coal,0.585,0.588,0.65,0.6542,0.658397,0.662933,0.667474,0.671609,0.674847,0.677045,0.678207,0.677977,0.676536,0.6739,0.668932,0.661919,0.653956,0.645187,0.636507,0.628059,0.619856,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,regional natural gas,1.062,1.23,1.75,1.76112,1.77314,1.7874,1.80582,1.83319,1.88123,1.9327,1.98768,2.0456,2.1103,2.17504,2.23526,2.29168,2.34986,2.39536,2.41574,2.42159,2.43207,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,regional oil,1.52228,1.79192,3.43035,3.48973,3.56605,3.6704,3.79736,3.9219,3.99871,4.0691,4.1307,4.18207,4.22976,4.27651,4.32769,4.47049,5.3925,5.31917,5.62977,5.92207,6.34296,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,electricity,7.23616,7.32252,8.03412,7.95751,8.56556,8.88936,8.99532,9.07852,9.29743,9.45569,9.56936,9.77931,9.87731,9.90948,9.98341,10.018,10.0574,10.0925,10.1101,10.1213,10.1258,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,nuclearFuelGenIII,0.181545,0.211038,0.220828,0.231272,0.242569,0.251554,0.261582,0.272967,0.286267,0.301579,0.319054,0.33939,0.362874,0.379792,0.400524,0.424975,0.452776,0.482883,0.50437,0.52706,0.551086,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,regional biomass,1.91897,1.95077,1.97791,1.99563,1.75149,1.6732,1.58704,1.5173,1.40231,1.29077,1.22675,1.01583,0.81575,0.615582,0.168104,-0.11783,-0.193025,-0.388532,-0.390264,-0.409536,-0.535862,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,regional coal,0.585,0.588,0.65,0.6542,0.658397,0.662933,0.667474,0.671609,0.674847,0.677045,0.678207,0.677977,0.676536,0.6739,0.668932,0.661919,0.653956,0.645187,0.636507,0.628059,0.619856,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,regional natural gas,1.062,1.23,1.75,1.76112,1.77314,1.7874,1.80582,1.83319,1.88123,1.9327,1.98768,2.0456,2.1103,2.17504,2.23526,2.29168,2.34986,2.39536,2.41574,2.42159,2.43207,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,regional oil,1.52,1.789,3.428,3.48757,3.56395,3.66854,3.79595,3.92106,3.99804,4.06855,4.13018,4.18131,4.22882,4.27543,4.32637,4.46927,5.39694,5.31917,5.62977,5.92207,6.34296,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,electricity,7.28024,7.27537,8.32057,8.43896,8.82135,9.08139,9.11684,9.12806,9.18476,9.23301,9.25217,9.32576,9.3658,9.3717,9.4127,9.44547,9.48355,9.54923,9.55767,9.55251,9.55011,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,nuclearFuelGenIII,0.181545,0.211038,0.220828,0.231272,0.242569,0.251554,0.261582,0.272967,0.286267,0.301579,0.319054,0.33939,0.362874,0.379792,0.400524,0.424975,0.452776,0.482883,0.50437,0.52706,0.551086,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,regional biomass,1.91897,1.95077,1.97791,1.99563,1.75149,1.6732,1.58704,1.5173,1.40231,1.29077,1.22675,1.01583,0.81575,0.615582,0.168104,-0.11783,-0.193025,-0.388532,-0.390264,-0.409536,-0.535862,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,regional coal,0.585,0.588,0.65,0.6542,0.658397,0.662933,0.667474,0.671609,0.674847,0.677045,0.678207,0.677977,0.676536,0.6739,0.668932,0.661919,0.653956,0.645187,0.636507,0.628059,0.619856,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,regional natural gas,1.062,1.23,1.75,1.76112,1.77314,1.7874,1.80582,1.83319,1.88123,1.9327,1.98768,2.0456,2.1103,2.17504,2.23526,2.29168,2.34986,2.39536,2.41574,2.42159,2.43207,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,regional oil,1.52054,1.79067,3.43,3.48941,3.56574,3.67013,3.79716,3.92178,3.99861,4.06902,4.13063,4.18196,4.22962,4.27636,4.3275,4.47031,5.39315,5.31917,5.62977,5.92207,6.34296,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,electricity,6.58128,6.87937,7.79043,7.93668,8.67401,9.09253,9.231,9.34434,9.6564,9.90101,10.0928,10.4882,10.8067,11.2009,11.7303,12.0519,12.2184,12.2438,12.1635,12.1334,12.0738,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,nuclearFuelGenIII,0.181545,0.211038,0.220828,0.231272,0.242569,0.251554,0.261582,0.272967,0.286267,0.301579,0.319054,0.33939,0.362874,0.379792,0.400524,0.424975,0.452776,0.482883,0.50437,0.52706,0.551086,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,regional biomass,1.91897,1.95077,1.97791,1.99563,1.75149,1.6732,1.58704,1.5173,1.40231,1.29077,1.22675,1.01583,0.81575,0.615582,0.168104,-0.11783,-0.193025,-0.388532,-0.390264,-0.409536,-0.535862,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,regional coal,0.585,0.588,0.65,0.6542,0.658397,0.662933,0.667474,0.671609,0.674847,0.677045,0.678207,0.677977,0.676536,0.6739,0.668932,0.661919,0.653956,0.645187,0.636507,0.628059,0.619856,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,regional natural gas,1.062,1.23,1.75,1.76112,1.77314,1.7874,1.80582,1.83319,1.88123,1.9327,1.98768,2.0456,2.1103,2.17504,2.23526,2.29168,2.34986,2.39536,2.41574,2.42159,2.43207,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,regional oil,1.52,1.789,3.428,3.48757,3.56395,3.66854,3.79595,3.92106,3.99804,4.06855,4.13018,4.18131,4.22882,4.27543,4.32637,4.46927,5.39694,5.31917,5.62977,5.92207,6.34296,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,electricity,7.89659,7.2813,8.85899,8.73785,9.30149,9.66803,9.6786,9.66137,9.82752,9.97262,10.1161,10.4952,10.7983,11.0144,11.3471,11.5608,11.7614,11.8252,11.6979,11.6003,11.6052,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,nuclearFuelGenIII,0.181545,0.211038,0.220828,0.231272,0.242569,0.251554,0.261582,0.272967,0.286267,0.301579,0.319054,0.33939,0.362874,0.379792,0.400524,0.424975,0.452776,0.482883,0.50437,0.52706,0.551086,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,regional biomass,1.91897,1.95077,1.97791,1.99563,1.75149,1.6732,1.58704,1.5173,1.40231,1.29077,1.22675,1.01583,0.81575,0.615582,0.168104,-0.11783,-0.193025,-0.388532,-0.390264,-0.409536,-0.535862,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,regional coal,0.585,0.588,0.65,0.6542,0.658397,0.662933,0.667474,0.671609,0.674847,0.677045,0.678207,0.677977,0.676536,0.6739,0.668932,0.661919,0.653956,0.645187,0.636507,0.628059,0.619856,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,regional natural gas,1.062,1.23,1.75,1.76112,1.77314,1.7874,1.80582,1.83319,1.88123,1.9327,1.98768,2.0456,2.1103,2.17504,2.23526,2.29168,2.34986,2.39536,2.41574,2.42159,2.43207,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,regional oil,1.52184,1.7924,3.43132,3.49062,3.56692,3.67118,3.79795,3.92225,3.99898,4.06933,4.13092,4.18238,4.23015,4.27697,4.32824,4.471,5.39067,5.31917,5.62977,5.92207,6.34296,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,electricity,7.03646,7.04004,7.78104,6.93279,7.38551,7.7853,8.03116,8.23833,8.4931,8.71636,8.89475,9.18277,9.36959,9.43911,9.51497,9.50493,9.53867,9.57734,9.58943,9.63036,9.65403,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,nuclearFuelGenIII,0.181545,0.211038,0.220828,0.231272,0.242569,0.251554,0.261582,0.272967,0.286267,0.301579,0.319054,0.33939,0.362874,0.379792,0.400524,0.424975,0.452776,0.482883,0.50437,0.52706,0.551086,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,regional biomass,1.91897,1.95077,1.97791,1.99563,1.75149,1.6732,1.58704,1.5173,1.40231,1.29077,1.22675,1.01583,0.81575,0.615582,0.168104,-0.11783,-0.193025,-0.388532,-0.390264,-0.409536,-0.535862,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,regional coal,0.585,0.588,0.65,0.6542,0.658397,0.662933,0.667474,0.671609,0.674847,0.677045,0.678207,0.677977,0.676536,0.6739,0.668932,0.661919,0.653956,0.645187,0.636507,0.628059,0.619856,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,regional natural gas,1.062,1.23,1.75,1.76112,1.77314,1.7874,1.80582,1.83319,1.88123,1.9327,1.98768,2.0456,2.1103,2.17504,2.23526,2.29168,2.34986,2.39536,2.41574,2.42159,2.43207,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,regional oil,1.52,1.789,3.428,3.48757,3.56395,3.66854,3.79595,3.92106,3.99804,4.06855,4.13018,4.18131,4.22882,4.27543,4.32637,4.46927,5.39694,5.31917,5.62977,5.92207,6.34296,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,electricity,7.70821,7.4385,10.821,10.5108,10.5513,10.61,10.2824,9.97878,9.84756,9.75616,9.69479,9.77963,9.81434,9.79731,9.92274,9.98022,10.1157,10.1401,10.1578,10.2031,10.3324,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,nuclearFuelGenIII,0.181545,0.211038,0.220828,0.231272,0.242569,0.251554,0.261582,0.272967,0.286267,0.301579,0.319054,0.33939,0.362874,0.379792,0.400524,0.424975,0.452776,0.482883,0.50437,0.52706,0.551086,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,regional biomass,1.91897,1.95077,1.97791,1.99563,1.75149,1.6732,1.58704,1.5173,1.40231,1.29077,1.22675,1.01583,0.81575,0.615582,0.168104,-0.11783,-0.193025,-0.388532,-0.390264,-0.409536,-0.535862,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,regional coal,0.585,0.588,0.65,0.6542,0.658397,0.662933,0.667474,0.671609,0.674847,0.677045,0.678207,0.677977,0.676536,0.6739,0.668932,0.661919,0.653956,0.645187,0.636507,0.628059,0.619856,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,regional natural gas,1.062,1.23,1.75,1.76112,1.77314,1.7874,1.80582,1.83319,1.88123,1.9327,1.98768,2.0456,2.1103,2.17504,2.23526,2.29168,2.34986,2.39536,2.41574,2.42159,2.43207,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,regional oil,1.52,1.789,3.428,3.48757,3.56395,3.66854,3.79595,3.92106,3.99804,4.06855,4.13018,4.18131,4.22882,4.27543,4.32637,4.46927,5.39694,5.31917,5.62977,5.92207,6.34296,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,electricity,7.67996,7.11205,8.07626,8.06957,8.30929,8.55863,8.54211,8.51852,8.54933,8.58452,8.621,8.74871,8.83741,8.87992,8.9441,8.95719,8.97674,9.01246,9.03355,9.06063,9.08771,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,nuclearFuelGenIII,0.181545,0.211038,0.220828,0.231272,0.242569,0.251554,0.261582,0.272967,0.286267,0.301579,0.319054,0.33939,0.362874,0.379792,0.400524,0.424975,0.452776,0.482883,0.50437,0.52706,0.551086,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,regional biomass,1.91897,1.95077,1.97791,1.99563,1.75149,1.6732,1.58704,1.5173,1.40231,1.29077,1.22675,1.01583,0.81575,0.615582,0.168104,-0.11783,-0.193025,-0.388532,-0.390264,-0.409536,-0.535862,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,regional coal,0.585,0.588,0.65,0.6542,0.658397,0.662933,0.667474,0.671609,0.674847,0.677045,0.678207,0.677977,0.676536,0.6739,0.668932,0.661919,0.653956,0.645187,0.636507,0.628059,0.619856,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,regional natural gas,1.062,1.23,1.75,1.76112,1.77314,1.7874,1.80582,1.83319,1.88123,1.9327,1.98768,2.0456,2.1103,2.17504,2.23526,2.29168,2.34986,2.39536,2.41574,2.42159,2.43207,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,regional oil,1.52,1.789,3.428,3.48757,3.56395,3.66854,3.79595,3.92106,3.99804,4.06855,4.13018,4.18131,4.22882,4.27543,4.32637,4.46927,5.39694,5.31917,5.62977,5.92207,6.34296,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,electricity,8.05979,7.30366,7.61159,7.72406,8.08778,8.3293,8.47737,8.61287,8.85032,9.06146,9.242,9.56078,9.7992,9.94772,10.1249,10.1952,10.2226,10.24,10.2257,10.2211,10.2199,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,nuclearFuelGenIII,0.181545,0.211038,0.220828,0.231272,0.242569,0.251554,0.261582,0.272967,0.286267,0.301579,0.319054,0.33939,0.362874,0.379792,0.400524,0.424975,0.452776,0.482883,0.50437,0.52706,0.551086,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,regional biomass,1.91897,1.95077,1.97791,1.99563,1.75149,1.6732,1.58704,1.5173,1.40231,1.29077,1.22675,1.01583,0.81575,0.615582,0.168104,-0.11783,-0.193025,-0.388532,-0.390264,-0.409536,-0.535862,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,regional coal,0.585,0.588,0.65,0.6542,0.658397,0.662933,0.667474,0.671609,0.674847,0.677045,0.678207,0.677977,0.676536,0.6739,0.668932,0.661919,0.653956,0.645187,0.636507,0.628059,0.619856,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,regional natural gas,1.062,1.23,1.75,1.76112,1.77314,1.7874,1.80582,1.83319,1.88123,1.9327,1.98768,2.0456,2.1103,2.17504,2.23526,2.29168,2.34986,2.39536,2.41574,2.42159,2.43207,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,regional oil,1.52,1.789,3.428,3.48757,3.56395,3.66854,3.79595,3.92106,3.99804,4.06855,4.13018,4.18131,4.22882,4.27543,4.32637,4.46927,5.39694,5.31917,5.62977,5.92207,6.34296,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,electricity,7.56155,6.02433,7.15893,7.333,7.75548,8.20179,8.27312,8.31719,8.50631,8.67527,8.82843,9.14029,9.37338,9.51882,9.67497,9.76212,9.89953,10.0599,10.2442,10.4575,10.6326,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,nuclearFuelGenIII,0.181545,0.211038,0.220828,0.231272,0.242569,0.251554,0.261582,0.272967,0.286267,0.301579,0.319054,0.33939,0.362874,0.379792,0.400524,0.424975,0.452776,0.482883,0.50437,0.52706,0.551086,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,regional biomass,1.91897,1.95077,1.97791,1.99563,1.75149,1.6732,1.58704,1.5173,1.40231,1.29077,1.22675,1.01583,0.81575,0.615582,0.168104,-0.11783,-0.193025,-0.388532,-0.390264,-0.409536,-0.535862,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,regional coal,0.585,0.588,0.65,0.6542,0.658397,0.662933,0.667474,0.671609,0.674847,0.677045,0.678207,0.677977,0.676536,0.6739,0.668932,0.661919,0.653956,0.645187,0.636507,0.628059,0.619856,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,regional natural gas,1.062,1.23,1.75,1.76112,1.77314,1.7874,1.80582,1.83319,1.88123,1.9327,1.98768,2.0456,2.1103,2.17504,2.23526,2.29168,2.34986,2.39536,2.41574,2.42159,2.43207,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,regional oil,1.52256,1.79339,3.43169,3.49096,3.56725,3.67146,3.79817,3.92238,3.99908,4.06942,4.131,4.1825,4.23029,4.27713,4.32845,4.47119,5.38999,5.31917,5.62977,5.92207,6.34296,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,electricity,6.67401,6.79118,7.35946,7.0881,7.61635,7.94217,8.12513,8.29732,8.57929,8.81123,8.98541,9.23425,9.38442,9.44347,9.51276,9.48663,9.47307,9.45743,9.44179,9.46265,9.45873,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,nuclearFuelGenIII,0.181545,0.211038,0.220828,0.231272,0.242569,0.251554,0.261582,0.272967,0.286267,0.301579,0.319054,0.33939,0.362874,0.379792,0.400524,0.424975,0.452776,0.482883,0.50437,0.52706,0.551086,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,regional biomass,1.91897,1.95077,1.97791,1.99563,1.75149,1.6732,1.58704,1.5173,1.40231,1.29077,1.22675,1.01583,0.81575,0.615582,0.168104,-0.11783,-0.193025,-0.388532,-0.390264,-0.409536,-0.535862,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,regional coal,0.585,0.588,0.65,0.6542,0.658397,0.662933,0.667474,0.671609,0.674847,0.677045,0.678207,0.677977,0.676536,0.6739,0.668932,0.661919,0.653956,0.645187,0.636507,0.628059,0.619856,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,regional natural gas,1.062,1.23,1.75,1.76112,1.77314,1.7874,1.80582,1.83319,1.88123,1.9327,1.98768,2.0456,2.1103,2.17504,2.23526,2.29168,2.34986,2.39536,2.41574,2.42159,2.43207,1975$/GJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,regional oil,1.53062,1.82029,3.46603,3.52216,3.59746,3.69793,3.81799,3.93397,4.00824,4.077,4.13827,4.19316,4.24369,4.2928,4.34795,4.48923,5.33088,5.31917,5.62977,5.92207,6.34296,1975$/GJ, Regional oil production by fuel scenario,region,fuel,1990,2005,2010,2015,2020,2025,2030,2035,2040,2045,2050,2055,2060,2065,2070,2075,2080,2085,2090,2095,2100,Units, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,crude oil,0.341064,0.529418,0.729395,1.15884,1.27668,1.4019,1.5104,1.60443,1.67093,1.75068,1.88468,2.10982,2.36534,2.69574,3.00847,3.3113,3.66772,4.1913,4.44438,4.18003,0.0675054,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Eastern,unconventional oil,0.0,0.0,0.0,0.0115563,0.017747,0.0291938,0.0488576,0.0791328,0.113274,0.160031,0.222624,0.304478,0.40804,0.54974,0.663399,0.783684,0.922247,0.955278,0.979105,1.33197,5.14512,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,crude oil,2.21116,3.03753,3.58936,4.30245,4.40997,4.54481,4.49406,4.26814,3.85299,3.39795,3.04517,2.89869,2.80291,2.78744,2.76606,2.70531,2.68027,2.76398,2.64571,2.26292,0.0336483,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Northern,unconventional oil,0.0,0.0,0.0,0.0429053,0.0613026,0.0946429,0.145371,0.21051,0.261197,0.31061,0.359704,0.418323,0.483524,0.56844,0.609945,0.640263,0.673954,0.629965,0.582855,0.721079,2.56461,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,crude oil,0.248747,0.350567,0.524169,0.657008,0.725235,0.779592,0.814262,0.830734,0.834601,0.857374,0.918755,1.03257,1.16193,1.32951,1.49982,1.65254,1.81502,2.04599,2.1371,1.97619,0.0313989,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Southern,unconventional oil,0.0,0.0,0.0,0.00655188,0.0100814,0.0162345,0.0263392,0.0409729,0.0565782,0.0783733,0.108526,0.149014,0.200442,0.271127,0.330727,0.391107,0.456386,0.466321,0.470807,0.629715,2.39316,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,crude oil,0.742294,1.2309,1.24288,1.56107,1.7283,1.95267,2.1577,2.33986,2.48503,2.67409,2.96381,3.39401,3.9127,4.51952,5.09494,5.63288,6.24838,7.11603,7.49126,6.96585,0.11107,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Africa_Western,unconventional oil,0.0,0.0,0.0,0.0155675,0.0240249,0.0406631,0.069796,0.115405,0.168462,0.244441,0.350094,0.489804,0.674973,0.921662,1.12349,1.33313,1.57115,1.62188,1.65034,2.21967,8.46554,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,crude oil,0.869353,1.08432,1.29441,1.63434,1.69857,1.73646,1.72779,1.65195,1.53333,1.38135,1.27601,1.21938,1.1932,1.18752,1.17954,1.13029,1.08839,0.869608,0.686649,0.363526,0.00111792,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Argentina,unconventional oil,0.00874727,0.042487,0.0499845,0.0852128,0.0986383,0.122507,0.156178,0.191344,0.209276,0.222424,0.236977,0.251649,0.272355,0.30098,0.307569,0.30419,0.301879,0.21355,0.160074,0.120904,0.0880057,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,crude oil,1.59089,2.12771,2.25013,2.27874,2.32835,2.33412,2.30005,2.19493,2.04398,1.87454,1.75574,1.66887,1.59095,1.53112,1.44734,1.31095,1.18214,0.942451,0.759594,0.358526,0.00106685,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Australia_NZ,unconventional oil,0.0,0.0,0.0,0.0227243,0.0323662,0.0486066,0.0744006,0.108257,0.138563,0.171353,0.207393,0.240842,0.274452,0.312241,0.319153,0.310263,0.297249,0.214803,0.16734,0.114244,0.0813133,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,crude oil,2.4986,3.80076,4.5027,5.58974,5.96281,6.16818,6.1912,5.97696,5.65564,5.21634,4.91149,4.72243,4.63843,4.6176,4.58631,4.41071,4.24457,3.67714,3.06225,1.78539,0.00617706,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Brazil,unconventional oil,0.0278285,0.135167,0.159019,0.271306,0.323766,0.408958,0.52893,0.658343,0.738718,0.808911,0.883788,0.949549,1.03665,1.15081,1.18012,1.17481,1.16789,0.897451,0.710528,0.591671,0.484954,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,crude oil,3.21804,3.71498,3.33728,3.30555,3.29258,3.17515,2.94711,2.63502,2.3241,2.02406,1.82233,1.7261,1.6558,1.62973,1.5928,1.49363,1.39818,1.24533,1.12222,0.860193,0.00567288,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Canada,unconventional oil,0.133074,0.646362,0.76042,0.855414,0.903925,0.99774,1.10471,1.16404,1.09961,1.01637,0.942103,0.881181,0.830305,0.808585,0.729442,0.63955,0.565365,0.41354,0.332128,0.344836,0.516224,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,crude oil,1.28888,1.78827,1.93161,1.95288,2.03424,2.08039,2.08176,1.99771,1.86775,1.72827,1.65859,1.62738,1.61143,1.6354,1.64923,1.62803,1.631,1.60117,1.51269,1.26186,0.0154246,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central America and Caribbean,unconventional oil,0.00776849,0.0377324,0.0443909,0.0684814,0.0817522,0.104888,0.139251,0.1776,0.202974,0.229578,0.262638,0.294959,0.331447,0.381705,0.40317,0.416753,0.435267,0.381758,0.344792,0.412559,1.19863,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,crude oil,2.76661,1.16603,1.49347,1.90338,2.06553,2.23155,2.32385,2.33079,2.277,2.17487,2.1091,2.08032,2.06149,2.0568,2.01086,1.89766,1.8015,1.19728,0.827714,0.36766,0.00101705,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Central Asia,unconventional oil,0.0,0.0,0.0,0.018981,0.0287127,0.0464707,0.0751703,0.114958,0.15436,0.198807,0.249132,0.30022,0.355624,0.419441,0.443415,0.449119,0.452988,0.272882,0.182347,0.117155,0.0775171,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,crude oil,5.25142,14.391,19.1894,21.951,25.4383,28.0631,29.8753,30.6942,30.5797,29.9031,29.3099,28.9478,28.5632,28.2898,27.5026,26.0219,24.7431,21.2945,17.9395,12.3703,0.064765,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",China,unconventional oil,0.0163678,0.0794991,0.093528,0.335727,0.495435,0.760524,1.18526,1.77154,2.33816,2.99619,3.71222,4.40433,5.12836,5.94595,6.2043,6.26519,6.30257,4.90087,3.98114,3.96355,4.95673,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,crude oil,0.44182,0.52299,0.581162,0.760061,0.80757,0.829424,0.841017,0.825139,0.797313,0.756541,0.744196,0.756483,0.791529,0.835683,0.874055,0.883466,0.894842,0.799651,0.702153,0.459693,0.00197693,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Colombia,unconventional oil,0.00519542,0.0252347,0.0296879,0.0499766,0.0584138,0.0718319,0.0917824,0.113294,0.126506,0.138821,0.154452,0.171276,0.194918,0.225169,0.239268,0.247022,0.255683,0.200928,0.166595,0.154956,0.157229,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,crude oil,3.42578,2.97939,3.02366,3.18575,3.29248,3.30275,3.23935,3.03651,2.77498,2.46941,2.26347,2.12249,2.02135,1.95164,1.90554,1.81742,1.76176,1.77724,1.71728,1.52359,0.0234982,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-12,unconventional oil,0.0,0.0,0.0,0.0317692,0.0457685,0.0687777,0.104784,0.149764,0.188118,0.225731,0.267368,0.306306,0.348699,0.397996,0.420192,0.430127,0.442994,0.405067,0.378321,0.485492,1.79098,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,crude oil,24.2373,27.5795,24.5568,24.5337,24.1917,23.5868,22.3522,20.2373,17.445,14.6335,12.6138,11.3836,10.413,9.87866,9.40746,8.87331,8.53705,8.5998,8.20915,7.12018,0.107481,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",EU-15,unconventional oil,0.0178474,0.0866868,0.101984,0.355915,0.451207,0.617318,0.862567,1.14288,1.31149,1.44721,1.58167,1.71879,1.85876,2.06716,2.11516,2.13102,2.17043,1.97638,1.81981,2.27952,8.22093,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,crude oil,4.10798,0.988965,0.900538,0.994001,1.02599,1.03917,1.03057,0.987954,0.924698,0.854419,0.813805,0.797122,0.786792,0.785356,0.774229,0.744599,0.728256,0.723384,0.687151,0.599061,0.00898104,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Eastern,unconventional oil,0.0,0.0,0.0,0.00991248,0.0142621,0.0216401,0.0333362,0.0487272,0.0626859,0.0781031,0.0961287,0.115036,0.135728,0.160157,0.170726,0.176224,0.18312,0.164873,0.151381,0.190891,0.684516,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,crude oil,1.60824,1.84152,1.82568,2.76204,2.94012,3.04541,3.05061,2.94247,2.71979,2.41928,2.15761,1.99531,1.87907,1.795,1.71135,1.5971,1.51121,1.47155,1.37224,1.17887,0.0176724,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Europe_Non_EU,unconventional oil,6.15873E-4,0.00299114,0.003519,0.0333572,0.0473527,0.0709775,0.107518,0.154895,0.193702,0.229554,0.262142,0.294133,0.329383,0.370491,0.380808,0.380573,0.381947,0.336691,0.303184,0.376469,1.34916,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,crude oil,0.95278,1.00034,1.00087,0.866146,0.870556,0.864052,0.845945,0.768168,0.662801,0.55844,0.486705,0.444834,0.41218,0.394905,0.37036,0.336232,0.310419,0.290777,0.267129,0.226791,0.00312036,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",European Free Trade Association,unconventional oil,8.43257E-4,0.00409566,0.00481841,0.0131907,0.0168955,0.0233498,0.0334857,0.0442563,0.0506081,0.0558937,0.0615924,0.0676377,0.073969,0.0829708,0.0835264,0.0809365,0.0790576,0.0669136,0.0592761,0.072661,0.238801,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,crude oil,2.57276,5.2652,6.8756,8.42194,10.2482,12.0267,13.5338,14.7251,15.663,16.4149,17.1601,18.0283,18.6304,19.1786,19.5942,19.7317,20.0856,21.2398,20.3858,17.7207,0.26721,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",India,unconventional oil,0.0,0.0,0.0,0.0839861,0.14246,0.250448,0.437783,0.726262,1.06181,1.5005,2.027,2.60175,3.21389,3.91107,4.32074,4.66989,5.05051,4.84096,4.49103,5.64671,20.3662,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,crude oil,1.48448,2.81393,3.08337,4.31914,5.26369,6.14163,6.84586,7.33642,7.6399,7.79803,7.9187,8.19097,8.40306,8.60383,8.72344,8.73684,8.68701,8.94682,8.42306,7.10363,0.103958,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Indonesia,unconventional oil,0.00372942,0.0181141,0.0213105,0.0756681,0.114783,0.182555,0.292566,0.449171,0.611845,0.809977,1.03118,1.27306,1.53344,1.83083,1.98644,2.1185,2.22464,2.06742,1.87495,2.28129,7.97009,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,crude oil,10.7896,10.6485,8.75407,8.39994,7.95658,7.73882,7.48443,6.7744,5.85921,4.93561,4.29869,3.87606,3.52886,3.30618,3.04657,2.69938,2.43738,2.25062,2.02065,1.67447,0.0231841,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Japan,unconventional oil,0.0,0.0,0.0,0.0837667,0.110604,0.161156,0.242102,0.334122,0.3972,0.451168,0.507772,0.559372,0.608756,0.674226,0.671801,0.638861,0.612879,0.51296,0.445154,0.533571,1.76704,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,crude oil,3.24917,4.29714,4.09564,3.91197,3.95938,3.9571,3.89338,3.65757,3.34538,3.01999,2.87247,2.83786,2.86368,2.9456,2.99608,2.9489,2.94289,2.64778,2.42037,1.86066,0.0119881,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Mexico,unconventional oil,0.0235224,0.114251,0.134411,0.1792,0.20367,0.24963,0.318,0.387131,0.422092,0.454716,0.504319,0.55922,0.629683,0.724669,0.763134,0.779258,0.804802,0.643199,0.559585,0.614936,0.939231,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,crude oil,7.31174,12.4561,15.5208,17.2487,18.0175,18.6853,18.7992,18.1706,16.9632,15.5184,14.5073,13.9928,13.4908,13.1742,12.7986,12.0081,11.4755,10.9504,9.87799,8.00783,0.104232,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Middle East,unconventional oil,0.0,0.0,0.0,0.172009,0.250459,0.389111,0.608106,0.896197,1.14995,1.41855,1.71364,2.01937,2.32727,2.68661,2.82223,2.84194,2.8855,2.49581,2.17614,2.5517,7.94434,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,crude oil,0.456803,0.714512,0.951841,1.59289,1.75215,1.93258,2.10661,2.25183,2.35533,2.44059,2.56151,2.78364,2.95304,3.24107,3.56851,3.9036,4.23084,4.79422,4.89353,4.42639,0.0688533,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Pakistan,unconventional oil,7.91555E-4,0.00384445,0.00452293,0.0241498,0.0338799,0.05207,0.0831897,0.129492,0.179579,0.244002,0.323878,0.422976,0.529681,0.680701,0.804565,0.939453,1.07734,1.10311,1.08577,1.41806,5.26907,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,crude oil,11.4724,6.62802,7.09295,7.46228,7.45928,7.4782,7.33422,6.90466,6.27215,5.58312,5.14153,4.90914,4.74977,4.66957,4.50108,4.17198,3.91265,3.08485,2.49042,1.60864,0.00694348,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Russia,unconventional oil,0.0,0.0,0.0,0.0744161,0.103691,0.155729,0.237243,0.340547,0.425193,0.510357,0.607331,0.708459,0.819372,0.952261,0.992536,0.98738,0.983836,0.703096,0.548644,0.512594,0.529217,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,crude oil,0.771506,1.03002,0.976135,0.846232,0.93327,0.950706,0.899581,0.837342,0.767924,0.69329,0.628178,0.603713,0.588488,0.580835,0.569894,0.556842,0.555492,0.587641,0.577182,0.510459,0.0079039,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Africa,unconventional oil,0.0,0.0,0.0,0.00843887,0.0129733,0.0197979,0.0290991,0.0412988,0.0520581,0.0633742,0.074202,0.0871244,0.101519,0.118449,0.125668,0.131788,0.139678,0.133935,0.127154,0.162658,0.602418,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,crude oil,0.95648,1.37765,1.83582,2.09491,2.13199,2.08366,1.98462,1.82833,1.6774,1.54281,1.46534,1.43468,1.41748,1.41892,1.41132,1.37074,1.35031,1.16541,1.00618,0.640708,0.00263262,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Northern,unconventional oil,0.0197177,0.0957721,0.112674,0.161289,0.17931,0.208068,0.247288,0.283442,0.296853,0.311718,0.330518,0.348557,0.37012,0.401045,0.401477,0.395123,0.39515,0.298315,0.242167,0.218353,0.211134,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,crude oil,0.882983,1.44716,1.87931,2.37877,2.56066,2.69238,2.75013,2.68906,2.56442,2.38949,2.28368,2.23754,2.22927,2.25923,2.28625,2.23638,2.1986,1.80914,1.47628,0.833455,0.00291393,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South America_Southern,unconventional oil,0.00940733,0.0456927,0.0537561,0.0980218,0.119377,0.155237,0.207204,0.265104,0.304334,0.341633,0.384099,0.425769,0.476624,0.5436,0.572293,0.58305,0.595042,0.435993,0.339247,0.274184,0.2275,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,crude oil,0.232121,0.565789,0.636926,1.17938,1.42887,1.68574,1.90377,2.07512,2.21427,2.33381,2.47391,2.70325,2.93597,3.19241,3.45714,3.71808,4.00129,4.52408,4.60742,4.16513,0.0653266,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Asia,unconventional oil,3.86677E-4,0.00187809,0.00220955,0.0162287,0.0255325,0.042635,0.0715092,0.114746,0.163772,0.22793,0.307247,0.40519,0.521182,0.665228,0.774834,0.890797,1.01544,1.0383,1.02033,1.33244,4.99375,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,crude oil,2.12301,4.37557,4.47512,4.38974,4.32916,4.22845,4.02786,3.68139,3.21697,2.76801,2.44728,2.25763,2.1087,2.03228,1.99167,1.92924,1.89602,1.95485,1.85742,1.60784,0.0244591,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",South Korea,unconventional oil,0.0,0.0,0.0,0.0437758,0.0601792,0.0880549,0.130291,0.181571,0.21808,0.253026,0.289079,0.325808,0.363768,0.414441,0.439184,0.456593,0.476754,0.445548,0.409194,0.512339,1.86422,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,crude oil,3.26587,6.67465,8.52226,9.90684,11.1363,12.1925,12.984,13.3806,13.3929,13.2404,13.2293,13.5369,13.8933,14.3439,14.562,14.5809,14.7183,15.1522,14.7938,13.0213,0.198612,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Southeast Asia,unconventional oil,0.0114401,0.0555656,0.0653712,0.181774,0.252514,0.374332,0.569702,0.836724,1.09067,1.3934,1.74031,2.12045,2.55056,3.06625,3.32748,3.54486,3.77668,3.50661,3.29679,4.1853,15.2366,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,crude oil,1.15653,2.00626,1.98018,1.87673,1.93673,1.94484,1.8955,1.7776,1.60429,1.42753,1.29986,1.21887,1.1577,1.135,1.13261,1.11553,1.10185,1.14675,1.07726,0.909624,0.0133629,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",Taiwan,unconventional oil,0.00324557,0.0157645,0.0185463,0.037909,0.047671,0.0639558,0.0879996,0.116348,0.135485,0.154593,0.174853,0.194247,0.215366,0.245093,0.260806,0.272793,0.283984,0.266275,0.240673,0.292927,1.02661,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,crude oil,33.4669,38.2249,32.9557,33.2149,33.3798,32.8472,31.3994,28.8916,26.0244,23.1393,21.3913,20.5552,20.0427,19.8786,19.5322,18.4605,17.5056,15.0661,13.0144,8.50799,0.0385776,EJ, -"Core_Tax_25_5,date=2015-29-11T21:05:53+19:00",USA,unconventional oil,0.491657,2.38804,2.80944,3.42315,3.71894,4.28983,5.03923,5.66696,5.71087,5.67103,5.71894,5.78259,5.92419,6.22715,6.04227,5.69179,5.40323,4.02094,3.23547,2.97283,3.15363,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,crude oil,0.341064,0.529418,0.729395,0.938591,1.21101,1.57604,2.01537,2.54686,3.20539,3.979,4.88571,5.88659,6.90158,7.91882,8.75704,9.1483,2.95498,5.95894E-6,8.95239E-8,7.89381E-9,1.59656E-9,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Eastern,unconventional oil,0.0,0.0,0.0,0.00877299,0.0158571,0.0311658,0.0618139,0.119057,0.204442,0.340328,0.547426,0.806634,1.14373,1.55615,1.86392,2.40694,8.43098,11.5932,11.6746,11.6269,10.8782,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,crude oil,2.21116,3.03753,3.58936,3.65152,4.16318,4.80584,5.31034,5.65867,5.93099,6.09014,6.15907,6.25018,6.29603,6.31299,6.24387,5.83865,1.71938,3.19474E-6,4.43206E-8,3.61687E-9,6.78836E-10,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Northern,unconventional oil,0.0,0.0,0.0,0.0341307,0.0545128,0.0950344,0.162875,0.264524,0.378282,0.520896,0.690102,0.856457,1.04338,1.24058,1.32899,1.53616,4.90565,6.21542,5.77973,5.32732,4.62526,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,crude oil,0.248747,0.350567,0.524169,0.793114,1.0069,1.28284,1.57115,1.86333,2.21442,2.63615,3.12823,3.68026,4.20165,4.75609,5.29359,5.5397,1.76718,3.52442E-6,5.17664E-8,4.46433E-9,8.92263E-10,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Southern,unconventional oil,0.0,0.0,0.0,0.00741322,0.0131844,0.0253679,0.048189,0.0871046,0.141237,0.225473,0.350507,0.504303,0.696297,0.934631,1.12673,1.45751,5.04203,6.8568,6.75073,6.57555,6.07945,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,crude oil,0.742294,1.2309,1.24288,1.58814,1.97743,2.70632,3.59216,4.61004,5.81425,7.2123,8.82435,10.624,12.5564,14.4994,16.1678,16.9753,5.50264,1.11038E-5,1.64396E-7,1.4177E-8,2.81761E-9,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Africa_Western,unconventional oil,0.0,0.0,0.0,0.0148443,0.0258925,0.053517,0.110176,0.215504,0.370836,0.616875,0.988736,1.4558,2.08084,2.84932,3.44128,4.46625,15.6998,21.6025,21.4384,20.8814,19.1979,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,crude oil,0.869353,1.08432,1.29441,1.39366,1.34667,1.44962,1.50008,1.50643,1.49978,1.46323,1.41046,1.37574,1.32908,1.27817,1.21141,1.06691,0.276113,3.74054E-7,2.67844E-9,0.0,0.0,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Argentina,unconventional oil,0.00874727,0.042487,0.0499845,0.0750019,0.0806769,0.105683,0.138902,0.177266,0.204721,0.232383,0.259793,0.279731,0.300342,0.319808,0.310791,0.324022,0.879142,0.79114,0.372161,0.128353,0.0175953,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,crude oil,1.59089,2.12771,2.25013,2.33556,2.46421,2.55431,2.61594,2.64857,2.70169,2.71365,2.69909,2.68865,2.67103,2.64183,2.58932,2.37622,0.686812,1.11639E-6,8.9008E-9,3.10548E-10,0.0,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Australia_NZ,unconventional oil,0.0,0.0,0.0,0.0218305,0.0322664,0.0505109,0.0802339,0.123812,0.172315,0.232101,0.302423,0.368424,0.442642,0.519152,0.551131,0.625191,1.95958,2.17195,1.16073,0.457409,0.0712088,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,crude oil,2.4986,3.80076,4.5027,5.52082,5.68831,6.19984,6.46855,6.56163,6.62707,6.564,6.37484,6.22683,6.01011,5.75154,5.41124,4.7607,1.24839,1.97435E-6,1.92651E-8,7.50841E-10,0.0,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Brazil,unconventional oil,0.0278285,0.135167,0.159019,0.276136,0.318027,0.423851,0.564742,0.732363,0.863429,1.00136,1.13489,1.23084,1.32721,1.4127,1.36806,1.42932,3.93956,4.14725,2.66277,1.15569,0.218899,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,crude oil,3.21804,3.71498,3.33728,3.32343,3.37478,3.31726,3.18684,3.03023,2.97357,2.8898,2.79553,2.78332,2.76943,2.76179,2.74094,2.49683,0.566466,9.44978E-7,1.20327E-8,7.93189E-10,0.0,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Canada,unconventional oil,0.133074,0.646362,0.76042,0.903123,0.97642,1.10555,1.26221,1.40982,1.46561,1.49678,1.50327,1.47031,1.44363,1.41776,1.29026,1.25505,2.72205,2.78376,2.17546,1.50753,0.42772,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,crude oil,1.28888,1.78827,1.93161,2.11117,2.27559,2.44223,2.55365,2.6208,2.65829,2.65188,2.61759,2.59,2.49932,2.41544,2.28108,2.02755,0.541952,8.66857E-7,1.00485E-8,6.34395E-10,0.0,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central America and Caribbean,unconventional oil,0.00776849,0.0377324,0.0443909,0.0756052,0.0931959,0.125515,0.172434,0.233138,0.284593,0.342475,0.405677,0.457102,0.503815,0.551852,0.544855,0.582443,1.65298,1.77394,1.36146,0.96177,0.297136,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,crude oil,2.76661,1.16603,1.49347,1.76467,1.99976,2.30426,2.51224,2.63821,2.71453,2.71616,2.66619,2.60311,2.51973,2.43176,2.29201,2.02303,0.524117,5.3991E-7,2.88905E-9,0.0,0.0,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Central Asia,unconventional oil,0.0,0.0,0.0,0.0164943,0.026185,0.0455664,0.0770533,0.123328,0.173134,0.232316,0.298737,0.356702,0.41757,0.477871,0.48785,0.532264,1.49538,1.0504,0.376754,0.10488,0.00908994,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,crude oil,5.25142,14.391,19.1894,22.7518,27.2931,31.7781,34.6142,36.0126,36.7913,36.5215,35.3501,33.8331,31.8948,29.8255,27.4957,23.7944,6.43925,9.41503E-6,7.46777E-8,2.50711E-9,0.0,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",China,unconventional oil,0.0163678,0.0794991,0.093528,0.340362,0.518646,0.841504,1.3322,2.00586,2.68426,3.46153,4.28274,4.91925,5.52818,6.06323,6.00407,6.38231,18.641,18.5185,9.81902,3.71568,0.488386,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,crude oil,0.44182,0.52299,0.581162,0.684864,0.755399,0.814575,0.866325,0.902218,0.937646,0.961471,0.978755,1.00697,1.02901,1.04323,1.03588,0.95802,0.255974,3.84199E-7,3.55719E-9,1.52309E-10,0.0,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Colombia,unconventional oil,0.00519542,0.0252347,0.0296879,0.0466902,0.0566727,0.0733591,0.0975401,0.126827,0.150005,0.175446,0.203076,0.226306,0.252553,0.279112,0.280376,0.303509,0.842362,0.833626,0.504068,0.23894,0.0515819,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,crude oil,3.42578,2.97939,3.02366,3.19667,3.38223,3.4699,3.48345,3.41165,3.31051,3.14235,2.94376,2.80697,2.65504,2.51353,2.35164,2.0738,0.582604,1.01583E-6,1.35128E-8,1.07412E-9,2.00352E-10,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-12,unconventional oil,0.0,0.0,0.0,0.0298792,0.0442871,0.0686165,0.106841,0.159483,0.211146,0.268768,0.329837,0.384637,0.439993,0.49394,0.500541,0.545624,1.66225,1.9763,1.76218,1.58208,1.3651,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,crude oil,24.2373,27.5795,24.5568,25.0975,25.2656,24.9664,24.3544,23.4135,22.5589,21.3822,20.2054,19.3042,18.4022,17.5677,16.5452,14.796,4.23067,7.6058E-6,1.05422E-7,8.71509E-9,1.68717E-9,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",EU-15,unconventional oil,0.0178474,0.0866868,0.101984,0.354615,0.458035,0.63636,0.909175,1.2731,1.61525,1.99736,2.42071,2.78288,3.16887,3.55372,3.59937,3.95748,12.2213,14.9359,13.8446,12.9045,11.5413,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,crude oil,4.10798,0.988965,0.900538,0.887516,0.880311,0.873967,0.899087,0.902409,0.903103,0.884028,0.857893,0.843935,0.826556,0.805301,0.767083,0.683475,0.192767,3.36527E-7,4.38583E-9,3.34019E-10,0.0,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Eastern,unconventional oil,0.0,0.0,0.0,0.0082956,0.0115268,0.0172825,0.0275761,0.0421846,0.0576004,0.0756118,0.0961239,0.115644,0.136977,0.158252,0.163272,0.179824,0.549993,0.654719,0.571945,0.491979,0.334738,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,crude oil,1.60824,1.84152,1.82568,1.97965,2.17034,2.34731,2.47001,2.53894,2.59148,2.59467,2.56486,2.54022,2.49009,2.42155,2.31585,2.09386,0.602971,1.06573E-6,1.43092E-8,1.1443E-9,2.15346E-10,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Europe_Non_EU,unconventional oil,6.15874E-4,0.00299114,0.003519,0.022898,0.03349,0.0526425,0.083393,0.127676,0.174693,0.231416,0.29662,0.356491,0.420147,0.482356,0.497976,0.555143,1.73032,2.08241,1.87212,1.68959,1.46997,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,crude oil,0.95278,1.00034,1.00087,0.994409,1.00268,0.995255,0.973779,0.941254,0.912262,0.873774,0.836344,0.806534,0.776561,0.747833,0.705574,0.625975,0.176109,3.05952E-7,4.08537E-9,3.23822E-10,0.0,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",European Free Trade Association,unconventional oil,8.43257E-4,0.00409566,0.00481841,0.0148078,0.0189811,0.0262732,0.0373848,0.0523234,0.0664552,0.0827179,0.101232,0.117185,0.134525,0.151965,0.154024,0.167864,0.509728,0.601701,0.537112,0.479887,0.373154,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,crude oil,2.57276,5.2652,6.8756,8.76127,12.1016,15.1682,17.8455,20.0792,22.321,24.0708,25.2943,26.3304,26.672,26.7688,26.5578,24.8022,7.09369,1.28779E-5,1.7425E-7,1.39791E-8,2.60954E-9,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",India,unconventional oil,0.0,0.0,0.0,0.0818915,0.158458,0.299947,0.547344,0.938638,1.42364,2.0588,2.83413,3.60803,4.42009,5.2604,5.65277,6.52552,20.2393,25.0541,22.7235,20.59,17.7801,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,crude oil,1.48448,2.81393,3.08337,3.58539,4.39631,5.36192,6.12754,6.70285,7.21085,7.51079,7.6166,7.68663,7.57652,7.36524,7.04366,6.34417,1.77373,3.03965E-6,3.84605E-8,2.79854E-9,4.34846E-10,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Indonesia,unconventional oil,0.00372942,0.0181141,0.0213105,0.0620492,0.0944013,0.157018,0.255853,0.398424,0.553765,0.74092,0.95176,1.14451,1.33729,1.51814,1.55433,1.71527,5.16574,6.00592,5.07432,4.15829,2.98244,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,crude oil,10.7896,10.6485,8.75407,8.3626,8.05126,7.81275,7.493,7.03293,6.58558,6.07161,5.59455,5.20071,4.81877,4.44159,3.99864,3.31537,0.850521,1.34552E-6,1.63659E-8,1.15486E-9,1.00085E-10,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Japan,unconventional oil,0.0,0.0,0.0,0.0781651,0.105424,0.154496,0.229819,0.328766,0.420032,0.519311,0.62685,0.712649,0.798567,0.872828,0.851102,0.872283,2.42666,2.61773,2.13423,1.70101,0.681932,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,crude oil,3.24917,4.29714,4.09564,4.33284,4.63423,4.85891,4.97955,4.97303,4.93374,4.8124,4.65662,4.58197,4.48493,4.36182,4.19852,3.77069,0.995087,1.41911E-6,1.23176E-8,5.0824E-10,0.0,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Mexico,unconventional oil,0.0235224,0.114251,0.134411,0.20425,0.245058,0.315477,0.414794,0.532234,0.619594,0.711332,0.807267,0.886049,0.972919,1.0562,1.04959,1.12218,3.11892,2.96535,1.6957,0.779898,0.142346,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,crude oil,7.31174,12.4561,15.5208,17.0695,18.5146,20.0689,21.1606,21.6779,21.9046,21.6856,21.1637,20.7914,20.0413,19.2511,18.3226,16.3481,4.54563,7.59516E-6,9.23878E-8,6.44169E-9,6.2532E-10,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Middle East,unconventional oil,0.0,0.0,0.0,0.159548,0.242431,0.396858,0.649022,1.01337,1.39709,1.85479,2.37131,2.84902,3.32125,3.78309,3.89993,4.30124,12.9693,14.7765,12.0481,9.48803,4.26063,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,crude oil,0.456803,0.714512,0.951841,1.11223,1.29246,1.45548,1.6068,1.75394,1.92517,2.08076,2.22571,2.40017,2.52223,2.65029,2.78022,2.76938,0.838798,1.65576E-6,2.42516E-8,2.08145E-9,4.1379E-10,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Pakistan,unconventional oil,7.91555E-4,0.00384445,0.00452293,0.0164822,0.024369,0.0382973,0.0615266,0.0972987,0.140015,0.196734,0.269142,0.348475,0.436685,0.538327,0.606717,0.742467,2.42736,3.25585,3.18808,3.08435,2.83219,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,crude oil,11.4724,6.62802,7.09295,7.23031,7.07758,7.26428,7.30232,7.17406,6.97632,6.64325,6.29937,6.05643,5.81478,5.57026,5.216,4.5381,1.18771,1.44177E-6,9.46612E-9,2.83014E-10,0.0,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Russia,unconventional oil,0.0,0.0,0.0,0.0675816,0.0926741,0.14365,0.223971,0.335364,0.444953,0.568204,0.705822,0.829907,0.963625,1.09463,1.11021,1.19399,3.38871,2.80498,1.23445,0.416854,0.0567354,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,crude oil,0.771506,1.03002,0.976135,1.06126,1.15737,1.31295,1.45029,1.56698,1.65681,1.69751,1.70077,1.71915,1.71152,1.69296,1.67038,1.57673,0.477547,8.88537E-7,1.25669E-8,1.04619E-9,2.01017E-10,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Africa,unconventional oil,0.0,0.0,0.0,0.00991955,0.0151546,0.0259633,0.0444821,0.0732513,0.105672,0.14519,0.190565,0.235574,0.283634,0.332687,0.355537,0.414841,1.36251,1.72866,1.63881,1.54095,1.36963,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,crude oil,0.95648,1.37765,1.83582,1.83073,1.59789,1.66805,1.689,1.668,1.63072,1.58402,1.53937,1.53069,1.50118,1.46488,1.38668,1.22449,0.311746,4.42395E-7,3.83312E-9,1.54635E-10,0.0,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Northern,unconventional oil,0.0197177,0.0957721,0.112674,0.146506,0.139815,0.17384,0.21804,0.266005,0.292488,0.319984,0.348991,0.371054,0.392547,0.412884,0.391477,0.401179,1.05338,0.979887,0.551892,0.245577,0.0498734,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,crude oil,0.882983,1.44716,1.87931,2.1612,2.34445,2.62621,2.81314,2.90242,2.95095,2.94526,2.89245,2.85094,2.76496,2.66937,2.53737,2.25587,0.59533,7.97561E-7,5.79511E-9,1.89806E-10,0.0,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South America_Southern,unconventional oil,0.00940733,0.0456927,0.0537561,0.0913914,0.111998,0.155287,0.215323,0.288165,0.347173,0.411792,0.47866,0.53068,0.581624,0.630738,0.622219,0.661365,1.84446,1.65182,0.792383,0.289758,0.0459217,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,crude oil,0.232121,0.565789,0.636926,0.83168,1.06558,1.31658,1.52151,1.68339,1.84828,1.99139,2.11693,2.26392,2.39686,2.51274,2.61933,2.61127,0.798077,1.58566E-6,2.32993E-8,2.00622E-9,4.03422E-10,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Asia,unconventional oil,3.86677E-4,0.00187809,0.00220955,0.0110962,0.0184342,0.0323191,0.0551308,0.0894191,0.129959,0.183436,0.250914,0.323708,0.410182,0.505905,0.567802,0.696557,2.30075,3.10907,3.05628,2.96804,2.75785,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,crude oil,2.12301,4.37557,4.47512,4.57136,4.74442,4.82499,4.78817,4.63449,4.41667,4.12341,3.80385,3.52953,3.24248,2.96994,2.71005,2.3666,0.669463,1.18286E-6,1.60471E-8,1.29355E-9,2.4367E-10,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",South Korea,unconventional oil,0.0,0.0,0.0,0.0427284,0.0621236,0.0954131,0.146859,0.216647,0.281697,0.352679,0.426208,0.483648,0.537344,0.58363,0.576828,0.62266,1.91007,2.30126,2.09266,1.90529,1.66025,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,crude oil,3.26587,6.67465,8.52226,9.52884,10.8779,12.2153,13.2411,13.9535,14.5072,14.7927,14.8595,14.9245,14.7985,14.5497,13.9859,12.6351,3.51171,5.9857E-6,7.46057E-8,5.39701E-9,7.18985E-10,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Southeast Asia,unconventional oil,0.0114401,0.0555656,0.0653712,0.173238,0.243591,0.370471,0.568998,0.848869,1.13484,1.48058,1.87791,2.24165,2.62954,3.01439,3.09828,3.42622,10.2502,11.8468,9.8557,8.027,4.9348,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,crude oil,1.15653,2.00626,1.98018,1.97853,2.0127,2.01982,1.98363,1.92116,1.85526,1.76273,1.652,1.57021,1.4852,1.40972,1.34153,1.2151,0.341654,6.12473E-7,8.41343E-9,6.81535E-10,1.27443E-10,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",Taiwan,unconventional oil,0.00324557,0.0157645,0.0185463,0.0398333,0.0492076,0.0659692,0.0906337,0.122857,0.151052,0.1821,0.214007,0.240415,0.267833,0.295387,0.299762,0.331662,1.0022,1.21676,1.1146,1.01582,0.876123,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,crude oil,33.4669,38.2249,32.9557,33.2946,33.9597,33.7883,32.9797,31.6316,30.6684,29.3194,27.854,27.0837,26.2787,25.527,24.4661,21.674,5.41215,8.2012E-6,8.0265E-8,3.39382E-9,1.38415E-10,EJ, +"Core_Tax_25_5,date=2017-3-11T14:50:41-04:00",USA,unconventional oil,0.491657,2.38804,2.80944,3.57981,3.95437,4.63119,5.52013,6.4315,6.87957,7.25112,7.55717,7.67553,7.85065,8.04237,7.56819,7.64503,19.3946,19.0249,11.9803,5.54183,1.02008,EJ, diff --git a/output/queries/Main_queries.xml b/output/queries/Main_queries.xml index dfaeef0b22..f0c5bec15f 100644 --- a/output/queries/Main_queries.xml +++ b/output/queries/Main_queries.xml @@ -9,7 +9,7 @@ unordered { for $year in distinct-values($outputs/physical-output/@vintage) let $eff_unweight := sum(for $res in $outputs/physical-output[@vintage = $year] - let $eff_curr := $res/parent::*/following-sibling::input-energy/IO-coefficient[@vintage = $year] + let $eff_curr := $res/parent::*/following-sibling::input-energy[1]/IO-coefficient[@vintage = $year] (: where $res/physical-output/@vintage = $year :) return $res div $eff_curr), $weight := sum(for $res in $outputs/physical-output[@vintage = $year] @@ -251,7 +251,7 @@ local:generate-sector-input-coefs(remove($outputNameQueue, 1), $currTree, $coefs $newOutputNameQueue := remove($outputNameQueue, 1), $useOutputs := $currTree//output-primary[@type='output' and @name=$outputName], $useInputs := for $out in $useOutputs[not(following-sibling::keyword[exists(@primary-renewable)])] - return $out/following-sibling::*[@type='input'], + return $out/following-sibling::*[@type='input' and not(@name='oil-credits')], $renewOutputs := for $out in $useOutputs[following-sibling::keyword[exists(@primary-renewable)]] return element output { attribute name { $out/following-sibling::keyword/@primary-renewable }, @@ -296,8 +296,8 @@ local:generate-sector-input-coefs(remove($outputNameQueue, 1), $currTree, $coefs declare function local:generate-ccs-coefs($currTree as node(), $coefs as node()*) as node()* { for $sector in $coefs/@name let $currSector := $currTree/*[@type='sector' and @name=$sector], - $useInputs := $currSector//*[@type='technology' and not(contains(@name, 'CCS')) and not(child::keyword/@primary-renewable)]/*[@type='input'], - $useInputsCCS := $currSector//*[@type='technology' and contains(@name, 'CCS')]/*[@type='input'], + $useInputs := $currSector//*[@type='technology' and not(contains(@name, 'CCS')) and not(child::keyword/@primary-renewable)]/*[@type='input' and not(@name = 'oil-credits')], + $useInputsCCS := $currSector//*[@type='technology' and contains(@name, 'CCS')]/*[@type='input' and not(@name='oil-credits')], $totalOutputSum := for $vintage in distinct-values($useInputs/demand-physical/@vintage | $useInputsCCS/demand-physical/@vintage) return element output { attribute vintage { $vintage }, @@ -380,7 +380,7 @@ local:generate-sector-input-coefs(remove($outputNameQueue, 1), $currTree, $coefs $region in $regionsG let $scenario_split := tokenize($scenario, ' '), $currTree := collection($collection)/scenario[@name = $scenario_split[1] and @date = $scenario_split[2]]/world/*[@type='region' and @name=$region], - $currInputs := $currTree/*[@type='sector' and (@name='unconventional oil production' or exists(child::keyword/@final-energy))]//*[@type='input' and empty(index-of(('trn_pass_road', 'limestone', 'process heat cement', 'industrial energy use', 'industrial feedstocks', 'renewable', 'trn_freight_road', 'trn_pass_road_LDV', 'trn_pass_road_LDV_2W', 'trn_pass_road_LDV_4W', 'unconventional oil'), @name))], + $currInputs := $currTree/*[@type='sector' and (@name='unconventional oil production' or exists(child::keyword/@final-energy))]//*[@type='input' and empty(index-of(('trn_pass_road', 'limestone', 'process heat cement', 'industrial energy use', 'industrial feedstocks', 'renewable', 'trn_freight_road', 'trn_pass_road_LDV', 'trn_pass_road_LDV_2W', 'trn_pass_road_LDV_4W', 'unconventional oil', 'oil-credits'), @name))], $coefs := local:generate-sector-input-coefs(distinct-values($currInputs/@name), $currTree, (), false()), $ccs_coefs := local:generate-ccs-coefs($currTree, $coefs) return @@ -401,6 +401,7 @@ local:generate-sector-input-coefs(remove($outputNameQueue, 1), $currTree, $coefs + @@ -508,7 +509,7 @@ local:generate-sector-input-coefs(remove($outputNameQueue, 1), $currTree, $coefs input demand-physical[@vintage] - *[@type = 'sector' (: collapse :) and @name='electricity']//*[@type = 'technology']/*[@type='input']/demand-physical/node() + *[@type = 'sector' (: collapse :) and @name='electricity']//*[@type = 'technology']/*[@type='input' and @name != 'oil-credits']/demand-physical/node() @@ -577,7 +578,7 @@ local:generate-sector-input-coefs(remove($outputNameQueue, 1), $currTree, $coefs region physical-output[@vintage] - *[@type = 'sector' (:collapse:) and @name='refining']//*[@type='output' (:collapse:)]/physical-output/node() + *[@type = 'sector' (:collapse:) and @name='refining']//output-primary[@type='output' (:collapse:)]/physical-output/node() @@ -589,7 +590,7 @@ local:generate-sector-input-coefs(remove($outputNameQueue, 1), $currTree, $coefs technology physical-output[@vintage] - *[@type = 'sector' (:collapse:) and @name='refining']//*[@type = 'technology']/*[@type='output' (:collapse:)]/physical-output/node() + *[@type = 'sector' (:collapse:) and @name='refining']//*[@type = 'technology']/output-primary[@type='output' (:collapse:)]/physical-output/node() @@ -601,7 +602,7 @@ local:generate-sector-input-coefs(remove($outputNameQueue, 1), $currTree, $coefs technology physical-output[@vintage] - *[@type = 'sector' (:collapse:) and @name='refining']/*[@type = 'subsector']/*[@type = 'technology']/*[@type='output'(:collapse:)]/physical-output/node() + *[@type = 'sector' (:collapse:) and @name='refining']/*[@type = 'subsector']/*[@type = 'technology']/output-primary[@type='output'(:collapse:)]/physical-output/node() @@ -707,13 +708,13 @@ local:generate-sector-input-coefs(remove($outputNameQueue, 1), $currTree, $coefs region demand-physical[@vintage] - *[@type='sector' (: collapse :) and ((@name='building' or @name='industry' or @name='transportation') or (exists(child::keyword/@final-energy)))]//*[@type='input' (: collapse :) and not(@name='trn_pass_road' or @name='limestone' or @name='process heat cement' or @name='industrial energy use' or @name='industrial feedstocks' or @name='renewable')]/demand-physical[@unit='EJ']/node() + *[@type='sector' (: collapse :) and ((@name='building' or @name='industry' or @name='transportation') or (exists(child::keyword/@final-energy)))]//*[@type='input' (: collapse :) and not(@name='trn_pass_road' or @name='limestone' or @name='process heat cement' or @name='industrial energy use' or @name='industrial feedstocks' or @name='renewable' or @name='oil-credits')]/demand-physical[@unit='EJ']/node() sector demand-physical[@vintage] - *[@type='sector' and ((@name='building' or @name='industry' or @name='transportation') or (exists(child::keyword/@final-energy)))]//*[@type='input' (: collapse :) and not(@name='trn_pass_road' or @name='limestone' or @name='process heat cement' or @name='industrial energy use' or @name='industrial feedstocks' or @name='renewable')]/demand-physical[@unit='EJ']/node() + *[@type='sector' and ((@name='building' or @name='industry' or @name='transportation') or (exists(child::keyword/@final-energy)))]//*[@type='input' (: collapse :) and not(@name='trn_pass_road' or @name='limestone' or @name='process heat cement' or @name='industrial energy use' or @name='industrial feedstocks' or @name='renewable' or @name='oil-credits')]/demand-physical[@unit='EJ']/node() @@ -769,13 +770,13 @@ local:generate-sector-input-coefs(remove($outputNameQueue, 1), $currTree, $coefs sector demand-physical[@vintage] - *[@type='sector' and ((@name='building' or @name='industry' or @name='transportation') or (exists(child::keyword/@final-energy)))]//*[@type='input' (: collapse :) and not(@name='trn_pass_road' or @name='limestone' or @name='process heat cement' or @name='industrial energy use' or @name='industrial feedstocks' or @name='renewable')]/demand-physical[@unit='EJ']/node() + *[@type='sector' and ((@name='building' or @name='industry' or @name='transportation') or (exists(child::keyword/@final-energy)))]//*[@type='input' (: collapse :) and not(@name='trn_pass_road' or @name='limestone' or @name='process heat cement' or @name='industrial energy use' or @name='industrial feedstocks' or @name='renewable' or @name='oil-credits')]/demand-physical[@unit='EJ']/node() input demand-physical[@vintage] - *[@type='sector' (: collapse :) and ((@name='building' or @name='industry' or @name='transportation') or (exists(child::keyword/@final-energy)))]//*[@type='input' and not(@name='trn_pass_road' or @name='limestone' or @name='process heat cement' or @name='industrial energy use' or @name='industrial feedstocks' or @name='renewable')]/demand-physical[@unit='EJ']/node() + *[@type='sector' (: collapse :) and ((@name='building' or @name='industry' or @name='transportation') or (exists(child::keyword/@final-energy)))]//*[@type='input' and not(@name='trn_pass_road' or @name='limestone' or @name='process heat cement' or @name='industrial energy use' or @name='industrial feedstocks' or @name='renewable' or @name='oil-credits')]/demand-physical[@unit='EJ']/node() @@ -796,7 +797,7 @@ local:generate-sector-input-coefs(remove($outputNameQueue, 1), $currTree, $coefs sector demand-physical[@vintage] - *[@type='sector' and ((@name='building' or @name='industry' or @name='transportation') or (exists(child::keyword/@final-energy)))]//*[@type='input' and not(@name='trn_pass_road' or @name='limestone' or @name='process heat cement' or @name='industrial energy use' or @name='industrial feedstocks' or @name='renewable')]/demand-physical[@unit='EJ']/node() + *[@type='sector' and ((@name='building' or @name='industry' or @name='transportation') or (exists(child::keyword/@final-energy)))]//*[@type='input' and not(@name='trn_pass_road' or @name='limestone' or @name='process heat cement' or @name='industrial energy use' or @name='industrial feedstocks' or @name='renewable' or @name='oil-credits')]/demand-physical[@unit='EJ']/node() @@ -865,7 +866,7 @@ local:generate-sector-input-coefs(remove($outputNameQueue, 1), $currTree, $coefs sector demand-physical[@vintage] - *[@type='sector' and ((@name='building' or @name='industry' or @name='transportation') or (exists(child::keyword/@final-energy)))]//*[@type='input' and not(@name='trn_pass_road' or @name='limestone' or @name='process heat cement' or @name='industrial energy use' or @name='industrial feedstocks' or @name='renewable')]/demand-physical[@unit='EJ']/node() + *[@type='sector' and ((@name='building' or @name='industry' or @name='transportation') or (exists(child::keyword/@final-energy)))]//*[@type='input' and not(@name='trn_pass_road' or @name='limestone' or @name='process heat cement' or @name='industrial energy use' or @name='industrial feedstocks' or @name='renewable' or @name='oil-credits')]/demand-physical[@unit='EJ']/node() @@ -915,25 +916,25 @@ local:generate-sector-input-coefs(remove($outputNameQueue, 1), $currTree, $coefs sector physical-output[@vintage] - *[@type = 'sector' and (@name='building' or (exists(child::keyword[@final-energy='building'])))]//*[@type='output' (:collapse:) and not(@name= 'internal-gains')]/physical-output/node() + *[@type = 'sector' and (@name='building' or (exists(child::keyword[@final-energy='building'])))]//output-primary[@type='output' (:collapse:)]/physical-output/node() sector physical-output[@vintage] - *[@type = 'sector' and (@name='building' or (exists(child::keyword[@final-energy='building'])))]/*[@type = 'subsector']//*[@type='output' (:collapse:) and not(@name= 'internal-gains')]/physical-output/node() + *[@type = 'sector' and (@name='building' or (exists(child::keyword[@final-energy='building'])))]/*[@type = 'subsector']//output-primary[@type='output' (:collapse:)]/physical-output/node() technology physical-output[@vintage] - *[@type = 'sector' and (@name='building' or (exists(child::keyword[@final-energy='building'])))]//*[@type = 'technology']/*[@type='output' (:collapse:) and not(@name= 'internal-gains')]/physical-output/node() + *[@type = 'sector' and (@name='building' or (exists(child::keyword[@final-energy='building'])))]//*[@type = 'technology']/output-primary[@type='output' (:collapse:)]/physical-output/node() sector physical-output[@vintage] - *[@type = 'sector']//*[@type='output' (:collapse:) and (@name= 'internal-gains')]/physical-output/node() + *[@type = 'sector']//output-internal-gains[@type='output' (:collapse:)]/physical-output/node() @@ -1038,43 +1039,43 @@ local:generate-sector-input-coefs(remove($outputNameQueue, 1), $currTree, $coefs region demand-physical[@vintage] - *[@type = 'sector' (:collapse:) and (@name='industry' or (exists(child::keyword[@final-energy='industry'])))]//*[@type='input' (:collapse:) and not(@name='limestone' or @name='process heat cement' or @name='industrial energy use' or @name='industrial feedstocks' or @name='industrial processes')]/demand-physical/node() + *[@type = 'sector' (:collapse:) and (@name='industry' or (exists(child::keyword[@final-energy='industry'])))]//*[@type='input' (:collapse:) and not(@name='limestone' or @name='process heat cement' or @name='industrial energy use' or @name='industrial feedstocks' or @name='industrial processes' or @name='oil-credits')]/demand-physical/node() sector demand-physical[@vintage] - *[@type = 'sector' and (@name='industry' or (exists(child::keyword[@final-energy='industry'])))]//*[@type='input' (:collapse:) and not(@name='limestone' or @name='process heat cement' or @name='industrial energy use' or @name='industrial feedstocks' or @name='industrial processes')]/demand-physical/node() + *[@type = 'sector' and (@name='industry' or (exists(child::keyword[@final-energy='industry'])))]//*[@type='input' (:collapse:) and not(@name='limestone' or @name='process heat cement' or @name='industrial energy use' or @name='industrial feedstocks' or @name='industrial processes' or @name='oil-credits')]/demand-physical/node() input demand-physical[@vintage] - *[@type = 'sector' (: collapse :) and (@name='industry' or (exists(child::keyword[@final-energy='industry'])))]//*[@type='input' and not(@name='limestone' or @name='process heat cement' or @name='industrial energy use' or @name='industrial feedstocks' or @name='industrial processes')]/demand-physical/node() + *[@type = 'sector' (: collapse :) and (@name='industry' or (exists(child::keyword[@final-energy='industry'])))]//*[@type='input' and not(@name='limestone' or @name='process heat cement' or @name='industrial energy use' or @name='industrial feedstocks' or @name='industrial processes' or @name='oil-credits')]/demand-physical/node() input demand-physical[@vintage] - *[@type = 'sector' and (@name='industry' or (exists(child::keyword[@final-energy='industry'])))]//*[@type='input' and not(@name='limestone' or @name='process heat cement' or @name='industrial energy use' or @name='industrial feedstocks' or @name='industrial processes')]/demand-physical/node() + *[@type = 'sector' and (@name='industry' or (exists(child::keyword[@final-energy='industry'])))]//*[@type='input' and not(@name='limestone' or @name='process heat cement' or @name='industrial energy use' or @name='industrial feedstocks' or @name='industrial processes' or @name='oil-credits')]/demand-physical/node() technology demand-physical[@vintage] - *[@type = 'sector' (: collapse :) and (@name='industry' or (exists(child::keyword[@final-energy='industry'])))]//*[@type = 'technology']/*[@type='input' (: collapse :) and not(@name='limestone' or @name='process heat cement' or @name='industrial energy use' or @name='industrial feedstocks' or @name='industrial processes')]/demand-physical/node() + *[@type = 'sector' (: collapse :) and (@name='industry' or (exists(child::keyword[@final-energy='industry'])))]//*[@type = 'technology']/*[@type='input' (: collapse :) and not(@name='limestone' or @name='process heat cement' or @name='industrial energy use' or @name='industrial feedstocks' or @name='industrial processes' or @name='oil-credits')]/demand-physical/node() all techs of the same name aggregated technology demand-physical[@vintage] - *[@type = 'sector' and (@name='industry' or (exists(child::keyword[@final-energy='industry'])))]/*[@type = 'subsector']/*[@type = 'technology']/*[@type='input' and not(@name='limestone' or @name='process heat cement' or @name='industrial energy use' or @name='industrial feedstocks' or @name='industrial processes')]/demand-physical/node() + *[@type = 'sector' and (@name='industry' or (exists(child::keyword[@final-energy='industry'])))]/*[@type = 'subsector']/*[@type = 'technology']/*[@type='input' and not(@name='limestone' or @name='process heat cement' or @name='industrial energy use' or @name='industrial feedstocks' or @name='industrial processes' or @name='oil-credits')]/demand-physical/node() input demand-physical[@vintage] - *[@type = 'sector' (:collapse:) and (@name='industrial feedstocks' or @name='feedstocks construction' or @name='feedstocks chemicals' or @name='feedstocks primary metals')]//*[@type='input']/demand-physical/node() + *[@type = 'sector' (:collapse:) and (@name='industrial feedstocks' or @name='feedstocks construction' or @name='feedstocks chemicals' or @name='feedstocks primary metals')]//*[@type='input' and not(@name='oil-credits')]/demand-physical/node() @@ -3115,7 +3116,7 @@ local:generate-sector-output-coefs(remove($inputNameQueue, 1), $currTree, $coefs technology price-paid[@vintage] - *[@type = 'sector']/*[@type = 'subsector']/*[@type = 'technology']/*[@type='input' (: collapse :) and @name='non-energy']/price-paid/text() + *[@type = 'sector']/*[@type = 'subsector']/*[@type = 'technology']/*[@type='input' (: collapse :) and @name='non-energy']/price-paid[@vintage = parent::*/parent::*/@year]/text()